@import url("https://fonts.googleapis.com/css2?family=Alatsi:wght@100;200;300;400;500;600&display=swap");

:root {
  --yellow: #001489;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --border: .1rem solid rgba(0, 0, 0, .3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

.a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: #7a7f7f;
  text-transform: capitalize;
  padding-left: 1rem;
  text-transform: uppercase;
  font: 700 40px/1.2 poppins, sans-serif;
  /* border-left: 1rem solid var(--yellow); */
}

.heading span {
  color: var(--yellow);
}

.p2ButtonStyle {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  text-decoration: none;
}
.headertextColor{
  color: var(--yellow) !important;
}
.headerButtonTextColor{
  color: var(--white) !important;
}

.p2ButtonStyle:hover {
  background: var(--white);
  color: var(--yellow) !important;
  border: var(--border);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  /* padding: 1.5rem; */
  /* display: -webkit-box; */
  /* display: -ms-flexbox; */
  /* display: flex; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  margin-right: 20%;
}

.header .logo span {
  color: var(--yellow);
}

.btnwidth {
  background-color: var(--yellow);
}

.header .navbar a {
  font-size: 2rem;
  /* color: var(--yellow) !important; */
  text-transform: uppercase;
  margin: 0 1rem;
  text-decoration: none;
}

.header .navbar a:hover {
  color: var(#7a7f7f);
}

@media screen and (min-width: 992px){
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.5rem !important;
  padding-left: 0 !important;
}
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
  animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--yellow);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
  animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--yellow);
}

.header .login-form p a:hover {
  text-decoration: underline;
}

/* //landing */
/* If the screen size is 1200px wide or more, set the font-size to 80px */
@media (min-width: 1200px) {
  .responsive-font-example {
    font-size: 6rem;
  }
}
/* If the screen size is smaller than 1200px, set the font-size to 80px */
@media (max-width: 1199.98px) {
  .responsive-font-example {
    font-size:4.5rem;
  }
}

@media (min-width: 1200px) {
  .home .slide {
      min-height: 60rem; 
  }
}
/* If the screen size is smaller than 1200px, set the font-size to 80px */
@media (max-width: 1199.98px) {
  .home .slide {
      min-height: 40rem; 
  }
}

.landingBImg{
 background-image: url("/images/homeImg.jpg");
 background-position: center center;
 background-size: contain;
 width: 100%;
 min-height: 300px;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contactBox {
  border: var(--border);
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  /* padding-right: 3rem; */
}

.contactIcons {
  height: 8%;
  /* width: 5%; */
  color: var(--yellow);
}

.contact-bar {
  position: relative;
  /* input { padding: 12px; } */
  /* position: absolute;  */
  padding: 12px;
  top: 2px;
  left: 5px;
  z-index: 1;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}

.home .slide {
  /* min-height: 60rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  /* font-size: 6rem; */
  color: #7a7f7f;
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content span {
  color: var(--yellow);
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}

.about {
  padding: 5rem 2% 5% 5%;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
}

.about .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.services {
  background: var(--light-bg);
}

.servicePtag {
  overflow: scroll;
  height: 30%;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  text-align: left;
}

/* .projects {
  background: var(--black);
} */

.projects .heading {
  color: #7a7f7f;
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
  text-decoration: none
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .box-container .box:hover .image .pImageFolder {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img { 
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .image .pImagFolder { 
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.pricing {
  background: var(--light-bg);
}

.pricing .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--yellow);
  color: var(--black);
}

.pricing .box-container .box h3 {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: bold;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding-left: 20px;
}

/* .contact {
  background: var(--black);
} */

.contact .heading {
  color: #7a7f7f;
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* gap: 2rem; */
}
.addressRow{
  gap: 2rem;
  margin-bottom: 15px;
}

.contact-information {
  display: flex;
  justify-content: center;
  height: 100%;
  margin-left: 3rem;
}

.contactAddressH4 {
  font: 600 18px/1.2 poppins, sans-serif;
  color: #303134;
}

.contactAddressSpan {
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
}

.contact .row .contact-information h3 {
  margin-bottom: 30px;
}

.contact .row .contact-information ul li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact .row .contact-information ul li:last-child {
  margin-bottom: 0;
}

.contact .row .contact-information ul li .icon {
  width: 50px;
}

.contact .row .contact-information ul li .icon i {
  font-size: 25px;
}

.contact .row .contact-information ul li .text {
  max-width: calc(100% - 50px);
}

.contact .row .contact-information ul li .text span,
.contact-information ul li .text a {
  display: block;
  line-height: 24px;
  max-width: 230px;
  font-size: large;
  line-height: 35px;
  color: var(--white);
}

.contact .row .column .map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  width: 100%;
  height: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  background: var(--light-bg);
  padding: 2rem;
  border: ridge;
  /* border-radius: 15px; */
  margin-left: 25px;
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: #7a7f7f;
  text-transform: capitalize;
}

.contact .row form h3 span {
  color: var(--yellow)
}

.contact .row form input[type="submit"] {
  background-color: var(--yellow);
}

.contact .row form input[type="submit"].p2ButtonStyle:hover {
  background: var(--white);
  color: var(--yellow);
  font-weight: 700;
  border: var(--border);
}

.contact .row form .box {
  margin: .7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

/* .blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
} */

.logo-container {
  text-align: center;
  background: var(--light-bg);
  display: table-row-group;
}

.logobrandingBorder {
  border-right: 1px solid gray;
  padding-left: 8%;
}

.logobrandingBorderImg {
  display: flex;
  align-items: center;
}

.logoTextAlign {
  z-index: 1000;
  background: var(--white);
}

.logo-container img {
  height: 10rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer {
  text-align: center;
}


.contact-information ul li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  text-align: left;
}

.contact-information ul li:first-child {
  margin-top: 30px;
}

.contact-information ul li:last-child {
  margin-bottom: 0;
}

.contact-information ul li .icon {
  width: 50px;
  color: var(--yellow);
}

.contact-information ul li .icon i {
  font-size: 25px;
}

.contact-information ul li .text {
  max-width: calc(100% - 50px);
  font-weight: 600;
}

.contact-information ul li .text span,
.contact-information ul li .text a {
  display: block;
  line-height: 24px;
  max-width: 230px;
  font-size: small;
  text-decoration: none;
}

.contactUsDiv1 {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.Home_contactinfos__3WQGA {
  width: 100%;
  float: left;
  margin-top: 8px;
}

.Home_rightctinfo__2nWLG {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Home_rightctinfo__2nWLG h4 {
  font-size: 1.6rem;
  margin: 5px 0;
}

.Home_rightctinfo__2nWLG p {
  font-size: 1.4rem;
  margin: 0;
  word-break: break-word; /* fixes long email */
}

.Home_leftctinfo__1V-0_ {
  width: auto;   /* fixed width */
  flex-shrink: 0;
}
.Home_contactdtcover__HCNHX {
  display: flex;
  flex-direction: column;   /* stack icon + text */
  align-items: center;      /* center everything */
  text-align: center;
}

.Home_contactdtcover__HCNHX h4 {
  font: 600 18px/1.2 poppins, sans-serif;
  color: #303134;
}

.Home_contactdtcover__HCNHX p {
  font: 400 16px/1.4 Lato, sans-serif;
}

.Home_contactdtcover__HCNHX p a {
  color: #303134;
  text-decoration: none;
}

.contactImageStyle {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer .contact-information ul li .text span,
.footer .contact-information ul li .text a {
  color: var(--white);
  text-decoration: none;
}

.footer .contact-information ul li .icon i {
  color: var(--white);
}

.footerUl {
  list-style-type: none;
  line-height: 2;
  font-size: medium;
  font-weight: 600;
}

.footerUl li a {
  color: var(--white);
  text-decoration: none;
}

.footerDesc {
  font-size: medium;
  font-weight: 600;
  line-height: 2;
  color: white;
  text-align: left;
}

.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-copyright-wrapper {
  padding: 15px 0;
  color: var(--white);
  border-top: 1px solid #4a4a4a;
  font-size: 12px;
}

.footer .credit span {
  color: var(--yellow);
}

.footer {
  background: var(--yellow);
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.footer .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.footer .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--yellow);
  color: var(--black);
}

.footer .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
}

.footer .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}

.footer .box-container .box .price span {
  font-size: 2rem;
}

.footer .box-container .box .list {
  padding: 1rem 0;
}

.footer .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.footerheading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--white);
  text-transform: capitalize;
  padding-left: 1rem;
  /* border-left: 1rem solid var(--yellow); */
}


.contactFormInput {
  /* width: 100%;    */
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: initial;
}

@media (min-width: 1200px) {
  .contactFormInput {
    width: 100%;
  }
}
/* If the screen size is smaller than 1200px, set the font-size to 80px */
@media (max-width: 1199.98px) {
  .contactFormInput {
    width: -webkit-fill-available;
  }
}


@media (min-width: 1200px) {
  .paddingFree{
   padding-right: 3rem !important; 
  }
}
/* If the screen size is smaller than 1200px, set the font-size to 80px */
@media (max-width: 1199.98px) {
  .paddingFree{
    padding-left: .1rem !important;;
  }
}
.reviewImages {
  height: 30%;
  width: 30%;
  /* display: contents; */
  display: -webkit-inline-box;
}

.brandingStyle {
  font: 700 40px/1.2 poppins, sans-serif;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.logo-container .row .column h3 {
  color: #7a7f7f;
}

.logoPtag {
  font: 400 16px/1.4 Lato, sans-serif;
  color: #302424;
  margin-bottom: 10px;
}

.logo-container .row .column span {
  color: var(--yellow);
}

.aboutImg {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.aboutImgDiv {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.aboutImgSrc {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}

.aboutImgSrc1 {
  visibility: inherit;
  position: absolute;
  inset: 0px;
  box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: block;
  width: 0px;
  height: 0px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.timelyDelivery {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.timelyDeliveryDiv {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.timelyDeliveryImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;

}

.timelyDeliveryImg2 {
  visibility: inherit;
  position: absolute;
  inset: 0px;
  box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: block;
  width: 0px;
  height: 0px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.noChargeDiv {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.noChargeDiv1 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.noChargeImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}

.noChargeImg2 {
  visibility: inherit;
  position: absolute;
  inset: 0px;
  box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: block;
  width: 0px;
  height: 0px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.constructionGuaDiv {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.constructionGuaDiv2 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.constructionGuaImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}

.constructionGuaImg2 {
  visibility: inherit;
  position: absolute;
  inset: 0px;
  box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: block;
  width: 0px;
  height: 0px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.Home_fixmid__2p61M {
  max-width: 1220px;
  width: 95%;
  margin: 0 auto;
}

.Home_whatunique__nVZPX {
  width: 100%;
  float: left;
  padding: 50px 0;
}

.Home_uniqueleft__3WFEs {
  align-self: center;
  padding: 10px 0;
}

.Home_uniqueright__1eD3P {
  padding-left: 8% !important;
}

.Home_uniquelist__3lDTb {
  margin: 20px 0;
}

.Home_uniqueimg__2dKE- {
  width: 29%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.Home_uniquecontent__2NW8V {
  display: inline-block;
  vertical-align: middle;
  width: 71%;
  padding: 3px 10px;
}

.Home_uniquelist__3lDTb {
  margin: 20px 0;
}

.Home_uniqueimg__2dKE- {
  width: 29%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.Home_uniquecontent__2NW8V {
  display: inline-block;
  vertical-align: middle;
  width: 71%;
  padding: 3px 10px;
}

.Home_headingtitle__1Pp9y h2 {
  color: #7a7f7f;
  font: 700 40px/1.2 poppins, sans-serif;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.Home_headingtitle__1Pp9y h2 span {
  color: var(--yellow);
}


.Home_uniqueleft__3WFEs p {
  color: #414244;
  /* font: 400 16px/1.6 Lato, sans-serif; */
  font: 400 15px/1.4 Lato, sans-serif;
  margin-bottom: 20px;
  letter-spacing: .6px;
  text-align: left;
}

.Home_uniqueimg__2dKE- span {
  display: inline-block;
  position: relative;
}

.Home_uniquecontent__2NW8V h3 {
  font: 600 20px/1.4 Lato, sans-serif;
  color: #303134;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.Home_uniquecontent__2NW8V p {
  font: 400 15px/1.4 Lato, sans-serif;
  color: #303134;
  letter-spacing: .6px;
  text-align: left;
}

.imageBox {
  position: relative;
  background: rgba(255, 255, 255, 1);
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
  color: #2c3e50;
  box-shadow: inset 0 0 0 3px #2c3e50;
  -webkit-transition: background 0.4s 0.5s;
  transition: background 0.4s 0.5s;
}

.imageBox:hover {
  background: rgba(255, 255, 255, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.imageBox svg line {
  stroke-width: 3;
  stroke: #ecf0f1;
  fill: none;
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}

.imageBox:hover svg line {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.imageBox svg line.top,
.imageBox svg line.bottom {
  stroke-dasharray: 330 240;
}

.imageBox svg line.left,
.imageBox svg line.right {
  stroke-dasharray: 490 400;
}

.imageBox:hover svg line.top {
  -webkit-transform: translateX(-600px);
  transform: translateX(-600px);
}

.imageBox:hover svg line.bottom {
  -webkit-transform: translateX(600px);
  transform: translateX(600px);
}

.imageBox:hover svg line.left {
  -webkit-transform: translateY(920px);
  transform: translateY(920px);
}

.imageBox:hover svg line.right {
  -webkit-transform: translateY(-920px);
  transform: translateY(-920px);
}

/*# sourceMappingURL=style.css.map */


/* how it works */

.Home_processcovers__1ZMZH {
  width: 100%;
  float: left;
  padding: 65px 0 0;
  margin-bottom: 20px;
}

.homeProcessDiv {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.homeProcessDiv2 {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  margin-top: 15%;
}

.homeProcessImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}

.homeProcessBorder {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.homeProcessBorderImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}


.homeProcessBorderDiv {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.homeProcessBox {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.homeProcessBoxDiv {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.homeProcessBoxImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}

.homeProcessList {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0px;
}

.homeProcessListDiv {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
}

.homeProcessListImg {
  max-width: 100%;
  display: block;
  margin: 0px;
  border: none;
  padding: 0px;
}

.Home_fixmid__2p61M {
  max-width: 1220px;
  width: 95%;
  margin: 0 auto;
}

.Home_processcover__2Rc7Z {
  width: 100%;
  float: left;
  padding: 45px 0 0;
  position: relative;
  margin-bottom: 40px;
}

.Home_processorder__ssXrW {
  position: relative;
  border-style: ridge;
}

.Home_processlists__3AGVg {
  min-height: 348px;
  position: relative;
  margin-top: 15%;
}

.Home_processlists__3AGVg h5 {
  margin-top: 30px;
  font: 600 19px/1.4 Lato, sans-serif;
  color: #303134;
  margin-bottom: 12px;
}

.Home_processlists__3AGVg p {
  font: 400 16px/1.4 Lato, sans-serif;
  color: #303134;
  min-height: 80px;
}

.Home_processlists__3AGVg h3 {
  color: var(--yellow);
  margin-top: 30px;
  font: 600 47px/1.4 Lato, sans-serif;
  position: absolute;
  bottom: 0;
}

.Home_processbtncovers__Di5Dj {
  width: 100%;
  float: left;
  text-align: right;
}

/* ***************** Packages ************************* */

.packageLink ul li h2 button {
  font: 400 16px/1.6 Lato, sans-serif;
  color: #303134;
}

.box-container .box div h5 {
  font-size: x-large;
  color: var(--yellow);
  font-weight: bolder;
}

.box-container .box div h3 {
  color: #7a7f7f;
}

.packagescontent {
  text-align: left;
  /* padding: 18px 36px; */
  background: var(--light-bg);
}

.packagescontent ul {
  list-style: none;
}

.packagescontent ul li {
  font: 200 15px Lato, sans-serif;
  color: #414244;
  padding-left: 20px;
  position: relative;
  padding-bottom: 10px;
}

.packagescontent p {
  font: 400 16px/1.5 Lato, sans-serif;
}

.packagescontent ul li::before {
  content: "\2022";
  color: var(--yellow);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: x-large;
}

.list ul {
  list-style: none;
}

.list ul li div h2 button::before {
  margin-right: 5%;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}



/* **************************Box Styling css ******************* */


.boxBoaderStyle {
  width: 100px;
  height: 120px;
  /* background: #3084ac; */
  margin: auto;
  border: 2px solid #256584;
  text-align: center;
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: 500ms ease;
}

.boxBoaderStyle:before {
  position: absolute;
  width: 0;
  height: 2px;
  content: '';
  background: #fff;
  top: -2px;
  left: -2px;
  transition: 100ms width ease 300ms;
  -web-kit-transition: 100ms width ease 300ms;
}

.boxBoaderStyle:after {
  position: absolute;
  width: 2px;
  height: 0;
  content: '';
  background: #fff;
  top: -2px;
  right: -2px;
  transition: 100ms height ease 200ms;
  -web-kit-transition: 100ms height ease 200ms;
}

.boxBoaderStyle-inner:after {
  position: absolute;
  width: 0;
  height: 2px;
  content: '';
  background: #fff;
  bottom: -2px;
  right: -2px;
  transition: 100ms width ease 100ms;
  -web-kit-transition: 100ms width ease 100ms;
}

.boxBoaderStyle-inner:before {
  position: absolute;
  width: 2px;
  height: 0;
  content: '';
  background: #fff;
  bottom: -2px;
  left: -2px;
  transition: 100ms height ease 0ms;
  -web-kit-transition: 100ms height ease 0ms;
}

.boxBoaderStyle:hover {
  border-color: var(--yellow)
    /* background: #0f2834; */
}

.boxBoaderStyle:hover:before {
  width: 402px;
  transition: 100ms width ease 0ms;
  -web-kit-transition: 100ms width ease 0ms;
}

.boxBoaderStyle:hover:after {
  height: 252px;
  transition: 100ms height ease 100ms;
  -web-kit-transition: 100ms height ease 100ms;
}

.boxBoaderStyle:hover .boxBoaderStyle-inner:after {
  width: 402px;
  transition: 100ms width ease 200ms;
  -web-kit-transition: 100ms width ease 200ms;
}

.boxBoaderStyle:hover .boxBoaderStyle-inner:before {
  height: 252px;
  transition: 100ms height ease 300ms;
  -web-kit-transition: 100ms height ease 300ms;
}



/* ***********************************REVIEW SLIDER************************** */
.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card {
  border-radius: 25px;
  background-color: #FFF;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background-color: #4070F4;
  border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}

.card-image {
  position: relative;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}

/* @media (min-width: 1200px) {
  .responsive-font-example {
    font-size: 6rem;
  }
} */
/* If the screen size is smaller than 1200px, set the font-size to 80px */
@media (max-width: 1199.98px) {
  .minimumwidth {
    width: inherit !important;
  }
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: var(--yellow);
}

.description {
  font-size: 14px;
  color: #707070;
  text-align: center;
  font: 400 16px/1.4 Lato, sans-serif;
}

.button {
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: #265DF2;
}

.swiper-navBtn {
  color: #6E93f7;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}

/* *******************AboutVision********************** */
.aboutVisionDesc {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin: 0
}

.aboutVisionBorder {
  box-sizing: border-box;
  display: block;
  max-width: 100%
}

.aboutHeading {
  color: #7a7f7f;
  font: 700 40px/1.2 poppins, sans-serif;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.aboutHeading span {
  color: var(--yellow);
}

.Home_leftcorevalue__1zekh {
  padding-right: 3% !important;
}

.Home_lcorevaluecover__bcsd2 {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 0 5px 8px;
  position: relative;
}

.Home_lcorelist__2wWAx {
  padding: 20px;
}

.Home_lcorevaluecover__bcsd2 h3 {
  font: 400 20px/1.4 Lato, sans-serif;
  color: #303134;
  text-transform: uppercase;
  margin: 15px 0;
}

.Home_lcorelist__2wWAx p {
  font: 400 16px/1.4 Lato, sans-serif;
  color: #303134;
  text-align: left;
}

.Home_lcorevaluecover__bcsd2:before {
  content: "";
  position: absolute;
  height: 0;
  background: transparent;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.Home_lcorevaluecover__bcsd2:after {
  width: 1px;
  left: -5px;
  bottom: -10px;
}

.Home_lcorelist__2wWAx ul {
  list-style: none;
}

.Home_lcorelist__2wWAx ul li {
  padding-left: 20px;
  position: relative;
  padding-bottom: 8px;
  font: 400 16px/1.4 Lato, sans-serif;
  color: #303134;
  text-align: left;
}

.Home_lcorelist__2wWAx ul li:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  left: 0;
  top: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ************************Animation*************************** */


@keyframes moveInleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }

}


/* ************************************************ */



/* .navbar-brand {
  background-image: url("/images/p2plogo.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
} */

/* .navbar-nav .nav-item:hover {
  background-color: var(--white)
} */

/* .navbar-light .navbar-nav .nav-link {
  color: var(--yellow) !important;
} */

.navbar-nav li {
  font-size: 2rem;
  color: var(--yellow);
  text-transform: uppercase;
  margin: 0 1rem;
  text-decoration: none;
}