@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #edf9ff;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-hed {
  font-size: 46px;
  font-weight: 600;
  line-height: normal;
}

.bg-color-active {
  background-color: #d3ecf7;
  color: #135B7E;
}

/*==================================
  Header Section CSS 
  ==================================*/
.header-section {
  padding: 13px 0 0;

  span {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;

    a {
      font-size: 20px;
      color: #333;
    }
  }
}


/*==================================
  Navigation Section CSS #2A89B7
  ==================================*/
header {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
}

.sticky {
  position: fixed;
  top: 0;
  z-index: 9;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background-color: rgba(255, 255, 255, 0.8);
  
  width: 100%;
}

.top-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 280px;
  margin: 0;
}

.top-nav {
  width: auto;
  position: relative;
  padding-bottom: 13px;
  display: flex;
  justify-content: end;
}

.top-nav span {
  float: right;
  width: auto;
}

.top-nav span img {
  margin-right: 20px;
  vertical-align: middle;
}

.toggle {
  margin-left: 4px;
}

.navigation [id^="drop"] {
  display: none;
}

.mobile-menu-content li {
  list-style-type: none;
  display: inline-block;
}

.mobile-menu-content li a {
  color: #1d1d1d;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: 20px;
}

.mobile-menu-content li a:hover::after,
li a.active-nav::after {
  width: 100%;
  background: #263b7d;
}

.toggle img {
  vertical-align: middle;
}

.mobile-menu {
  float: right;
  cursor: pointer;
  width: 32px;
  display: none;
}

.bar1,
.bar2,
.bar3 {
  height: 4px;
  background-color: #3339;
  margin: 2px 0;
  transition: 0.4s;
  width: 30px;
  border-radius: 6px;
  float: right;
  -webkit-transition: width .5s ease-in;
  -moz-transition: width .5s ease-in;
  -ms-transition: width .5s ease-in;
  -o-transition: width .5s ease-in;
  transition: width .5s ease-in;
}

.bar1 {
  width: 20px;
}

.bar2 {
  width: 30px;
}

.bar3 {
  width: 40px;
}

.change .bar1 {
  -webkit-transform: rotate(-40deg) translate(-2px, 6px);
  transform: rotate(-40deg) translate(-2px, 6px);
  width: 35px;
  background: #3339;
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-1px, -8px);
  transform: rotate(45deg) translate(-5px, -8px);
  width: 35px;
  background: #3339;
}

.change {
  cursor: pointer;
  width: 26px;
  display: none;
}

.mobile-menu:hover .bar1,
.mobile-menu:hover .bar2,
.mobile-menu:hover .bar3 {
  width: 32px;
  -webkit-transition: width .5s ease-out;
  -moz-transition: width .5s ease-out;
  -ms-transition: width .5s ease-out;
  -o-transition: width .5s ease-out;
  transition: width .5s ease-out;
}

.bottom-nav ul li:last-child {
  margin-right: 0;
  border: 1px solid #135B7E;
  border-radius: 10px;

  &:hover {
    background-color: #d3ecf7;
  }
}



#nav-bar {
  top: 0;
  margin: auto;
  text-align: center;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 100%;

  li {
    /* padding:20px 15px; */
    position: relative;

    a {
      text-decoration: none;
      display: block;
      padding: 10px;
      font-size: 20px;
      line-height: 1;
      font-weight: 500;
      position: relative;
      z-index: 1;
      text-align: center;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-image: linear-gradient(to right,
          #2A89B7,
          #2A89B7 50%,
          #333 50%);
      background-size: 200% 100%;
      background-position: -100%;
      color: #333;
      transition: all 0.3s ease-in-out;

      &:before {
        display: block;
        content: '';
        width: 0;
        height: 3px;
        bottom: 5px;
        left: 0;
        bottom: -3px;
        z-index: 0;
        position: absolute;
        background: #2A89B7;
        transition: all 0.3s ease-in-out;
      }

      &:hover {
        background-position: 0%;

        &:before {
          width: 100%;
        }
      }
    }
  }

  .active a {
    background-position: 0%;

    &:before {
      width: 100%;
    }
  }

}

.active-page a {
  background-position: 0% !important;
}

.active-page a::before {
  width: 100% !important;
}





#nav-bar li:last-child a {
  padding: 15px 30px;

  &:hover {
    background-position: 0%;

    &:before {
      width: 0;
    }
  }
}

.top-main {
  position: relative;
}

.header-left {
  float: right;
  margin-bottom: 10px;
}

.header-left span {
  display: flex;
  align-items: center;
  gap: 10px;

  a {
    color: #333;
    font-size: 20px;

    &:hover {
      color: #2A89B7;
    }
  }
}




/*==================================
  Banner Section CSS 
  ==================================*/
.banner-section {
  background: url(../images/banner-bg-img.webp) no-repeat center;
  background-size: cover;
  padding: 300px 0 400px 0;

}




.banner-section .banner-contain {
  max-width: 825px;
}

.banner-section .banner-contain h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  margin: 7px 0;
  color: #606060;
}

.banner-section .banner-contain p,
.banner-section .banner-contain span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #606060;
}

/*==================================
  Infrastructure Section CSS 
  ==================================*/


.infra-main {
  padding: 75px 0;

  & .section-pera {
    text-align: center;
    font-size: 20px;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    color: #606060;
  }
}


.infra-hedding {
  font-size: 46px;
  font-weight: 600;
  line-height: normal;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

/* .infra-hedding::after{content: '';height: 3px;width: 116px;background-color: #135B7E;position: absolute;bottom: 0;left: 0;right: 0;margin: 0 auto;} */
.infrastructure-main {
  padding: 0 0 60px;

}



.box-img {
  width: 48%;
  position: relative;
  z-index: 1;

  &::after {
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    top: -42px;
    left: -40px;
    padding: 40px 10px;
    background-color: #f7f7f7;
    z-index: -1;
  }
}

.box-img-right {
  width: 48%;
  position: relative;
  z-index: 1;

  &::after {
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    top: -42px;
    right: -30px;
    padding: 40px 10px;
    background-color: #f7f7f7;
    z-index: -1;
  }
}


.infrastructure-main .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}

.box-containt {
  width: 50%;

  p {
    font-size: 18px;
    color: #606060;
  }

  h4 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
  }

}

/*==================================
  Process Section CSS 
  ==================================*/
.section-process {
  width: 100%;
  padding: 60px 0;


  .section-pera {
    max-width: 800px;
    margin: 0 auto;
    color: #606060;
    text-align: center;
    font-size: 18px;
    padding: 0 20px 60px;
  }
}

.section-process .process-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-top: -210px; */
}

.section-process .process-main .box {
  background:  url(../images/product-bg-img.png) no-repeat top #edf9ff;
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 31%;
  /* background-color: #fff; */
  padding: 20px 20px;
  border-bottom: 5px solid #135b7e;
  box-shadow: 0px 5px 10px 0px #00000040;
  position: relative;
  border-radius: 10px;

  &:hover {
    box-shadow: 0px 10px 30px 0px #00000040;
  }
}
#infrastructure-sec img {
  border-radius: 10px;
}

.section-process .process-main .box:hover .img-bg img{
    scale: calc(1.07);
    transition: ease-in-out 0.6s;
}

.inner-box{
    padding: 20px 20px;
}

.img-bg{
  display: flex;
  justify-content: center;
  align-items: center;
}


.img-bg img{
  mix-blend-mode:multiply;
  width: 100%;
  transition: ease-in-out 0.6s;
 
}


.box-hedding {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600; 
  margin: 17px 0 5px;
  text-transform: uppercase;
}

.section-process .box-hedding {
  margin-top: 0px;
  font-size: 21px;
}

.box-contain {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #606060;
}

.see-btn {
  background-color: #135b7e;
  border: 1px solid #135b7e;
  color: #fff;
  width: fit-content;
  padding: 10px 30px;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.6s;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 4px;

  &:hover {
    background-color: #fff;
    color: #135b7e;
  }
}

.img-bg img {
  width: 80%;



}

.box-contain-hed {
  font-size: 21px;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
}

/* Why Choose Us Section CSS */
.why-choose-section {
  padding: 75px 0;
}

.why-choose-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.why-choose-main .hedding-why {
  width: 30%;

  .section-hedding {
    padding: 0;
    background: none;
    color: #135B7E;
    text-align: left;
    font-size: 52px;
    line-height: 58px;
  }
}

.why-choose-main .box {
  width: 21%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 15px;
  background-color: #135B7E;
  /* box-shadow: rgba(255, 255, 255, 0.25) 0px 30px 60px -12px inset, rgba(255, 255, 255, 0.3) 0px 18px 36px -18px inset; */
  box-shadow: 0px 4px 11px -3px #000;

  img {
    width: 70px;
    margin-bottom: 20px;
  }

  h4 {
    font-size: 24px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
  }

  p {
    color: #fff;
    font-size: 18px;
  }
}



.product-contact-section {
  padding: 300px 0 60px;
  /* position: relative; */
  background: rgba(211, 236, 247, 1);
  margin-top: -270px;

  .product-contact-main {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    p {
      color: #606060;
      font-size: 18px;
      text-align: center;
      margin-bottom: 30px;
    }

    a {
      color: #fff;
      font-size: 20px;
      background-color: rgb(0, 83, 119);
      padding: 10px 20px;
      text-align: center;
      transition: all 0.6s;
      border-radius: 4px;

      &:hover {
        background-color: #fff;
        color: rgb(0, 83, 119);
      }
    }
  }
}

.why-choose-us {
  padding: 60px 0;
}

.why-choose-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.why-choose-head-left,
.why-choose-head-right {
  width: 50%;
}

.why-choose-head-left h6 {
  font-size: 21px;
}

.why-choose-head-left h3 {
  padding: 0;
  background: none;
  color: #135B7E;
  text-align: left;
  font-size: 52px;
  line-height: 58px;
}

.why-choose-head-right p {
  color: #606060;
}

.why-us-card {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  flex-wrap: wrap;
}

.card {
  width: 31%;
  background-color: #135B7E;
  box-shadow: 0px 4px 11px -3px #000;
  padding: 40px 15px;
  text-align: center;
  border-radius: 10px;
}

.card h6 {
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
}

.card p {
  color: #fff;
  font-size: 18px;
}

.card img {
  width: 110px;
  padding: 20px;
  border-radius: 50%;
  box-shadow: rgb(211, 236, 247) 0px 0px 14px -1px;
}


/*==================================
   Careers Section CSS 
  ==================================*/
.banner-inner {
  background-color: #d3ecf7;
  padding: 185px 0 30px 0;
  text-align: center;
  background-image: url(../images/inner-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-inner h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  color: #333;
}

.banner-inner span {
  font-size: 14px;
  line-height: 25px;
  color: #333;

  a {
    color: #333;
  }
}

.banner-inner span a:hover {
  color: #135B7E;
}

.career-section {
  padding: 75px 0;
}

.career-section .contain-career-section {
  text-align: center;
  margin: 0 auto;
}

.career-section .contain-career-section .section-hed {
  color: #135B7E;
  text-align: center;
}

.career-section .contain-career-section .caree-email {
  color: #333;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 01px;
}

.career-section .contain-career-section .section-pera {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin: 15px 0 0;
  color: #606060;
}

.contact-detail {
  padding: 50px 0 0;
}

.contact-detail form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-detail form input {
  width: 32%;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  outline: none;
  border-radius: 10px;
  border: 1px solid #135b7e;
  margin-bottom: 2%;
}

.contact-detail form .file-input {
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 0;
}

.contact-detail form textarea {
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 10px;
  resize: none;
  font-size: 18px;
  outline: none;
  min-height: 100px;
  border-radius: 10px;
  border: 1px solid #135b7e;
  margin-bottom: 2%;
}

.contact-detail form .submit-button {
  max-width: 200px;
  border: 1px solid #135B7E;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 20px;
  background-color: #135B7E;
  cursor: pointer;
  margin-bottom: 0;
  transition: all 0.6s;
  padding: 14px 20px;
  display: inline-block;
  width: 100%;

  &:hover {
    background-color: #fff;
    color: #135B7E;
  }
}


/*==================================
   About Section CSS 
  ==================================*/
.about-section .section-pera {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
  font-size: 20px;
  color: #606060;
}

.our-section {
  padding: 90px 0 60px;
}

.our-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-section .our-main .box {
  width: 30%;
  padding: 20px 20px 50px 20px;
  gap: 0;
  text-align: center;
  background-color: #d3ecf7;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.34);
  border-radius: 20px;

  img {
    box-shadow: 0px -4px 4px -2px rgba(0, 0, 0, 0.34);
    background-color: #d3ecf7;
    border-radius: 50%;
    width: 100px;
    margin-top: -75px;
    padding: 20px;
  }

  h3 {
    font-size: 24px;
    text-transform: capitalize;
    color: #333;
    font-weight: 600;
    margin: 0 0 20px;
  }

  p {
    color: #606060;
    font-size: 18px;
  }
}

.section-hedding {
  padding-top: 60px;
  font-size: 52px;
  text-align: center;
  color: #fff;
  padding-bottom: 250px;
  background-color: #135B7E;
}

.values-section {
  padding: 0 0 60px;

  .values-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -210px;

    .box {
      position: relative;
      z-index: 1;
      background-color: white;
      width: 30%;
      text-align: center;
      padding: 50px 30px;
      border-bottom: 5px solid #135B7E;
      box-shadow: 0px 5px 10px 0px #00000040;
      display: flex;
      flex-direction: column;
      align-items: center;
      row-gap: 20px;

      &:hover {
        box-shadow: 0px 10px 30px 0px #00000040;
      }

      img {
        padding: 20px;
        width: 100px;
        background-color: #d3ecf7;
        border-radius: 50%;
      }

      h3 {
        font-size: 24px;
        text-transform: capitalize;
        color: #333;
        font-weight: 600;
      }

      p {
        color: #606060;
        font-size: 18px;

      }
    }
  }
}


.join-us-main {
  padding: 60px 0;
  display: flex;
  align-items: center;
  gap: 5%;
  flex-wrap: wrap;

  .join-hed {
    width: 30%;
  }

  h3 {
    font-size: 52px;
    color: #135B7E;
    font-weight: 700;
    line-height: 58px;
  }

  p {
    color: #606060;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 30px;

  }



}

.join-containt {
  background-color: #fff;
  padding: 20px 30px 30px 60px;
  box-shadow: 0px 0px 11px -4px #3333;
  width: 65%;
  position: relative;

}

.join-containt::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 100px;
  top: 22px;
  left: 30px;
  background-color: #135B7E;
}

.join-now-btn {
  background-color: #d3ecf7;
  border: 1px solid transparent;
  padding: 7px 25px;
  color: #333;
  font-size: 18px;
  margin: 0;
  transition: all 0.6s;
  border-radius: 6px;
  display: inline-block;

  &:hover {
    color: #135B7E;
    background-color: #fff;
    border-color: #fff;
  }
}

/*==================================
  Contact Us Section CSS 
  ==================================*/

.location-maps iframe {
  display: block;
}

.contact-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: '';
  width: 525px;
  height: 709px;
  display: inline-block;
  background: url(../images/contact-background.png) no-repeat center center;
  position: absolute;
  opacity: 0.2;
  z-index: -1;
}

.contact-section::before {
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(-1);
}

.contact-section::after {
  top: 0;
  right: 0;
}

.contact-main {
  display: flex;
  gap: 4%;

  h3 {
    font-size: 46px;
    color: #135B7E;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
  }
}

.contact-main .contact-info {
  width: 40%;
}

.contact-form {
  width: 60%;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4%;
}

.contact-form form input {

  width: 48%;
  padding: 10px 20px;
  font-size: 18px;
  font-family: 'Poppins';
  outline: none;
  border-radius: 10px;
  border: 1px solid #135b7e;
  margin-bottom: 4%;
  color: #000;
}


.contact-form form select {
  width: 48%;
  padding: 10px 20px;
  font-size: 18px;
  font-family: 'Poppins';
  outline: none;
  border-radius: 10px;
  border: 1px solid #135b7e;
  margin-bottom: 4%;
  background: #fff;
}




.contact-form textarea {
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 10px;
  resize: none;
  font-size: 18px;
  outline: none;
  min-height: 100px;
  border-radius: 10px;
  border: 1px solid #135b7e;
  margin-bottom: 2%;
}

.contact-form textarea {
  margin-bottom: 4%;
}


.contact-form form .submit-btn-contact {
  max-width: 200px;
  border: 1px solid #135B7E;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 20px;
  background-color: #135B7E;
  cursor: pointer;
  margin-bottom: 0;
  transition: all 0.6s;
  padding: 14px 20px;
  display: inline-block;
  width: 100%;
  border-radius: 10px;

  &:hover {
    background-color: #fff;
    color: #135B7E;
  }
}


.contact-email,
.contact-info-location {
  display: flex;
  align-items: start;
  font-size: 20px;
  gap: 15px;
  color: #333;

  img {
    margin-top: 4px;
  }
}

.contact-info-location {
  padding-bottom: 30px;
  border-bottom: 1px solid #3336;
}

.contact-email {
  padding-top: 30px;

  a {
    font-size: 20px;
    color: #333;

    &:hover {
      color: #135B7E;
    }
  }
}








/* Popup styling */
.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 99999;
  /* Sit on top */
}

/* Popup content */
.popup-content {
  background-color: #fff;
  margin: 10% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border-radius: 8px;
  width: 550px;
  /* Could be more or less, depending on screen size */
  position: relative;
  z-index: 99;
}

.popup-content h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 25px;
  color: #333;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-content form input {
  padding: 15px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  outline: none;
}

.popup-content form textarea {
  resize: none;
  font-size: 18px;
  padding: 15px;
  font-family: "Poppins", sans-serif;
  height: 120px;
  outline: none;
}

.inquire-btn {
  background-color: #135b7e;
  border: 1px solid #135b7e;
  color: #fff;
  transition: all 0.6s;
  cursor: pointer;
  min-width: 260px;
  margin: 0 auto;

  &:hover {
    background-color: #fff;
    color: #135B7E;

  }
}

/* Close button */
.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  position: absolute;
  right: 32px;
  top: 20px;
  z-index: 999;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.close:hover,
.close:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}







/*==================================
  Footer Section CSS 
  ==================================*/
.footer-section {
  background-color: rgba(211, 236, 247, 1);
  padding: 60px 0 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.footer-left {
  display: flex;
  width: 50%;
  gap: 50px;
  border-right: 1px solid rgba(57, 70, 220, 0.2);
}

.footer-logo-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24%;
}

.footer-media {
  display: flex;
  gap: 10px;
}

.footer-media a img:hover {
  filter: brightness(0.7);
}

.contact-info {
  width: 60%;

  ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;

    li {
      display: flex;
      align-items: start;
      gap: 10px;
      font-size: 20px;
      color: #333;

      a {
        text-decoration: none;
        color: inherit;

        &:hover {
          color: #135B7E;
        }
      }
    }
  }
}

.footer-left .contact-info ul li img {
  margin-top: 3px;
}

.footer-left .contact-info h3,
.footer-right h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 20px;
}

.footer-right {
  width: 40%;

  ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;

    li {
      width: 50%;
      margin-bottom: 10px;
      font-size: 20px;
      color: #333;
      padding-left: 15px;
      position: relative;

      &::before {
        content: '';
        width: 6px;
        height: 6px;
        background-color: #333;
        display: inline-block;
        border-radius: 50%;
        position: absolute;
        top: 12px;
        left: 0;
      }
    }
  }
}

.footer-right ul li a {
  text-decoration: none;
  color: inherit;
  transition: all 0.6s;
  transition: all 0.6s;
  border-bottom: 3px solid transparent;

  &:hover {
    color: #135B7E;
    border-bottom-color: #135B7E;
  }
}

.copy-right {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;

  span {
    text-align: center;
  }
}





/* vision-sec */
#vision-sec {
  margin-top: 40px;
  padding-bottom: 80px;
}

.vision-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  margin-left: 40px;
}

.vision-left {
  width: 50%;
}

.vision-right {
  width: 50%;
  padding: 20px;
}

.vision-left img {
  margin-top: -40px;
  margin-left: -40px;
}

.vision-right li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*! flex-direction: row; */
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.vision-right li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vision-right li h3 {
  font-size: 24px;
  text-transform: capitalize;
  color: #333;
  font-weight: 600;
  margin-bottom: 0px;
}

.vision-right li p {
  color: #606060;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
}

.vision-right img {
  max-width: 60px;
}

.list-right {
  width: 86%
}





/* our-values*/
#our-values {
  background: url(../images/values-background.png) no-repeat center center;
  padding: 80px 0;
  position: relative;
  transform: perspective(1px) translateZ(0);
}

#our-values::before {
  content: '';
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: -1;
}

#our-values h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.values-list li {
  display: flex;
  flex-direction: column;
  width: 30%;
  -webkit-backdrop-filter: blur(10px) brightness(108%);
  backdrop-filter: blur(7px) brightness(108%);
  border: 1px solid rgba(255, 255, 255, .19);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  transform: perspective(1px) translateZ(0);
}

.values-list li::before {
  content: '';
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  border-radius: 20px;
  z-index: -1;
}

.values-list li h3 {
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.values-list li p {
  color: #fff;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
}

.values-list li span {
  width: 62px;
  height: 62px;
  background: #135b7e;
  border-radius: 50%;
  padding: 10px;
  margin-top: -50px;
  margin-bottom: 10px;
}


/* join-us-section */
#join-us-section {
  margin: 60px 0;
}

.join-content {
  background: #135b7e;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
}

.join-content h3 {
  font-size: 46px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.join-content p {
  color: #fff;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 10px;
}


/* infrastructure-list */

.infrastructure-list {
  margin-top: 60px;
}

.infrastructure-list-line {
  display: table-cell;
  position: relative;
  width: 40px;
}

.infrastructure-list-line::before {
  content: '';
  left: 7px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed #135b7e;
}

.infrastructure-list-line::after {
  content: '';
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid #135b7e;
  box-sizing: border-box;
  background: #edf9ff;
}

.infrastructure-list-content {
  display: table-cell;
  padding: 0 0 50px;
}

.infrastructure-list li:last-child .infrastructure-list-line::before {
  display: none;
}

.infrastructure-list-content h4 {
  font-size: 24px;
  text-transform: capitalize;
  color: #135b7e;
  font-weight: 600;
  margin-bottom: 0px;
}

.infrastructure-list-content p {
  font-size: 18px;
  color: #333;
  line-height: normal;
  font-weight: 400;
}

/*==================================
  thankyou page 
  ==================================*/
.thank-u-sec {
  padding: 200px 0 70px 0;
  text-align: center;
  position: relative;
}
.thank-u-sec h1 {
  font-size: 64px;
  color: #333;
}
.thank-u-sec p {
  color: #333;
}

.checkmark-wrapper {
  width: 80px;
  height: 80px;
  display: inline-block;
  position: relative;
}

.checkmark {
  width: 100%;
  height: 100%;
}

.checkmark-circle {
  stroke: green;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: circle-animation 0.6s ease-in-out forwards;
}

.checkmark-check {
  stroke: green;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: check-animation 0.3s ease-in-out 0.7s forwards;
}

@keyframes circle-animation {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes check-animation {
  100% {
    stroke-dashoffset: 0;
  }
}



/* responsive */

@media (max-width:1024px) {
  .logo {
    max-width: 230px;
    margin: 0;
  }

  .header-left {
    position: absolute;
    right: 0;
    top: 2px;
  }

  /* Process Section CSS  */
  .section-process .process-main .box {
    width: 48%;
  }

  .section-process .process-main {
    row-gap: 30px;
  }

  /* Infrastructure Section CSS  */
  .section-infrastructure .infrastructure-main .infrastructure-left p {
    font-size: 20px;
  }

  .section-infrastructure .infrastructure-main .infrastructure-left .infrastructure-info {
    & span {
      font-size: 20px;
    }
  }

  .section-infrastructure .infrastructure-main .infrastructure-right {
    & span {
      font-size: 20px;
    }
  }

  .section-infrastructure .infrastructure-main .infrastructure-right {
    padding: 34px;
  }

  /* About Section CSS  */
  .about-section .about-main .about-left .about-counter {
    padding: 28px 20px;
  }

  .about-section .about-main .about-left .about-counter .counter-box .counter-containt {
    font-size: 20px;
  }

  .about-section .about-main .about-left .about-counter .counter-box .counter {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .about-section .about-main .about-right {
    padding: 20px 0 0 35px;
  }

  .about-section .about-main .about-right .section-hed {
    margin-bottom: 0px;
  }

  .about-section .about-main .about-right .section-pera {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .vision-left {
    width: 100%;
    text-align: center;
  }

  .vision-right {
    width: 100%;
    padding: 20px;
  }

  .vision-left img {
    margin-top: -40px;
    margin-left: 0px;
  }

  .vision-content {
    flex-direction: column;
    margin-left: 0px;
  }

  .values-list {
    flex-wrap: wrap;
    gap: 45px;
    justify-content: center;
  }

  .values-list li {
    width: 47%;
  }

  /* Footer Section CSS  */
  .footer-section .footer-main .footer-left {
    display: flex;
    width: 60%;
    gap: 50px;
  }

  .footer-section .footer-main .footer-right {
    width: 35%;
  }

  /* About Section */
  .values-section {
    padding: 0 0 60px;

    .values-main {
      .box {
        width: 32%;
      }
    }
  }

  .our-main {
    justify-content: center;
    row-gap: 90px;
    column-gap: 6%;
  }

  .our-section .our-main .box {
    width: 47%;
  }

  .why-choose-main .hedding-why {
    width: 100%;
    align-items: center;
  }

  .why-choose-main .box {
    width: 29%;
    margin-top: 30px;
  }

  .section-process .process-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -0;
    gap: 4%;

    .box {
      margin-bottom: 20px;
    }
  }

  .infrastructure-main .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .box.box-2 {
    flex-direction: column-reverse;
  }

  .box-containt {
    width: 80%;

  }

  .box-img,
  .box-img-right {
    width: 80%;

  }

  .join-containt {
    background-color: #fff;
    padding: 20px 100px 30px;
    box-shadow: 0px 0px 11px -4px #3333;
    width: 65%;
    position: relative;
  }

}

@media (max-width:991px) {

  /* .logo {max-width: 130px;margin: 0; } */
  .mobile-menu-content li {
    margin: 5px 5px;
  }

  /* Infrastructure Section CSS  */
  .section-infrastructure .infrastructure-main .infrastructure-left,
  .section-infrastructure .infrastructure-main .infrastructure-right {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .section-infrastructure .infrastructure-main .infrastructure-left .infrastructure-info {
    flex-direction: column;
  }

  .section-infrastructure .infrastructure-main .infrastructure-left p {
    padding: 0 0 20px 0;
  }

  .section-infrastructure .infrastructure-main .infrastructure-right {
    padding: 25px 15px;

    & .infrastructure-info {
      flex-direction: column;
      align-items: center;
    }
  }

  /* About Section CSS  */
  .about-section .about-main .about-left {
    width: 100%;
    text-align: center;
  }

  .about-section .about-main .about-left .about-counter {
    max-width: 643px;
    margin: 0 auto;
  }

  .about-section .about-main .about-right {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .about-section .about-main .about-right .section-hed {
    font-size: 40px;
  }

  .about-section .about-main .about-right .section-pera {
    font-size: 17px;
    line-height: 26px;
  }

  /* Subscribe To Newsletter Section CSS  */
  .section-subscribe .subscribe-main .section-hed {
    font-size: 40px;
  }

  .section-subscribe .subscribe-main #Email {
    padding: 10px 0 10px 65px;
    font-size: 20px;
  }

  .section-subscribe .subscribe-main .sub-btn {
    padding: 11px 46px;
    font-size: 20px;
  }

  .section-subscribe .subscribe-main .section-hed {
    margin-bottom: 20px;
  }

  /* Footer Section CSS  */
  .footer-section .footer-main .footer-right ul li {
    width: 100%;
    margin: 0;
  }

  .footer-section .footer-main .footer-left {
    width: 100%;
  }

  .footer-section .footer-main .footer-left .contact-info {
    width: 90%;
    padding-right: 20px;
  }

  .footer-section .footer-main .footer-left .footer-media {
    flex-direction: column;
  }





  #nav-bar {}

  #nav-bar {
    gap: 0;
    /* width: 100%; */

    & li {
      & a {
        padding: 10px 8px;
      }
    }
  }

  .header-left {
    display: none;
  }



  .career-section {
    padding: 35px 0;
  }

  .section-hed {
    font-size: 52px;
  }

  .contact-section {
    padding: 35px 0;
  }

  .location-maps {
    padding: 35px 0 0;
  }

  .join-us-main {
    & h3 {
      font-size: 44px;
      font-weight: 700;
      line-height: 49px;
    }
  }

  .join-containt {
    padding: 20px 30px 30px 60px;

  }

  .product-contact-section {
    padding: 240px 0 60px;
  }

  .why-choose-section {
    padding: 35px 0;
  }

  .why-choose-main .hedding-why {
    & .section-hedding {
      text-align: center;
    }
  }

  .values-section {
    padding: 0 0 35px;
  }

  .join-us-main {
    padding: 35px 0 60px;
  }

  .infra-main {
    padding: 35px 0;
  }

  .why-choose-head-left h3 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width:768px) {

  /* Header Section CSS  */
  .header-section {
    display: none;
  }

  /* Navigation Section CSS  */
  .mobile-menu {
    position: absolute;
    right: 20px;
    top: 39px;
  }

  .mobile-menu,
  .change {
    display: inline-block;
  }

  .top-nav,
  .top-appointment {
    display: none;
  }

  .logo {
    max-width: 150px;
    margin: 0;
  }

  #shortmenu {
    transition-duration: 0.3s;
    height: 100vh;
    max-width: 320px;
    width: 100%;
    z-index: -1;
    position: fixed;
    top: 0;
    right: -320px;
    margin-top: 0;
    display: block;
    z-index: 9999;
  }

  .active-menu {
    right: 0 !important;
  }

  .active-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: -1;
  }

  .mobile-menu-content {
    background: #fff;
    padding: 26px;
    height: 100vh
  }

  .bottom-nav ul {
    height: 80vh;
    overflow: scroll;
    padding-right: 10px;
  }

  .change {
    float: right;
    margin-bottom: 20px;
  }

  .bottom-nav ul li {
    width: 100%;
    margin: 0;
  }

  .bottom-nav li a {
    font-size: 14px;
    padding: 14px 22px;
    display: block;
    border-bottom: 1px solid #ddd;
  }

  .bottom-nav li:last-child a,
  .bottom-nav li:nth-last-child(2) a {
    border-bottom: none;
  }

  .bottom-nav li:last-child a {
    text-align: center;
    padding: 10px 0;
  }

  .bottom-nav li:hover a::after {
    display: none;
  }

  .top-main {
    align-items: normal;
  }

  #nav-bar {
    display: block;
  }

  #nav-bar li a {
    text-align: left;
    padding: 20px 0;

    &:hover {
      background-position: 0%;

      &:before {
        width: 0;
      }

    }

    .why-choose-head-left,
    .why-choose-head-right {
      width: 100%;
    }

  }


  /* Banner Section CSS  */
  .banner-section .banner-contain {
    max-width: 100%;
    text-align: center;
  }

  .banner-section {

    padding: 150px 0 200px 0;
  }

  /* Infrastructure Section CSS  */
  .section-infrastructure .infrastructure-main .infrastructure-left p {
    padding: 0px 0 20px 0;
    font-size: 20px;
  }

  .section-infrastructure .infrastructure-main .infrastructure-left {
    padding-bottom: 50px;
  }

  .section-infrastructure .infrastructure-main .infrastructure-left .infrastructure-info {
    padding: 10px 0;
  }

  /* Process Section CSS  */
  .box-contain {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
  }

  .section-process {
    padding-bottom: 60px;
  }

  /* About section CSS */
  .about-section .about-main .about-right .section-pera {
    font-size: 20px;
    line-height: 26px;
  }

  .about-section .about-main .about-right .section-hed {
    font-size: 53px;
  }

  .section-subscribe .subscribe-main .section-hed {
    font-size: 52px;
  }

  .values-list {
    gap: 43px;
  }

  /* Footer Section CSS  */
  .footer-section .footer-main {
    flex-wrap: wrap;
  }

  .footer-section .footer-main .footer-right {
    width: 100%;
  }

  .footer-section .footer-main .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-section .footer-main .footer-left .contact-info {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .footer-section .footer-main .footer-left .footer-media {
    flex-direction: row;
  }

  .footer-section .footer-main .footer-left .contact-info ul li {
    flex-direction: column;
    align-items: center;
  }

  .footer-section .footer-main .footer-right {
    & h3 {
      text-align: center;
    }

    ul li {
      text-align: center;
      list-style-type: none;
    }
  }

  .footer-section .footer-main .footer-left .contact-info {
    margin-bottom: 30px;
  }

  .footer-section .footer-main .footer-right {
    & ul {
      padding: 0;
    }
  }

  /* About Section */
  .values-section {
    padding: 0 0 60px;

    .values-main {
      justify-content: center;
      column-gap: 4%;
      row-gap: 30px;

      .box {
        width: 48%;
      }
    }
  }

  .join-us-main {
    flex-direction: column;
    row-gap: 20px;

    .join-hed {
      width: 100%;
    }

    h3 {
      font-size: 36px;
      width: 100%;
      text-align: center;
    }

    p {
      width: 80%;
      color: #333;
      font-size: 18px;
      text-align: center;
    }
  }


  .why-choose-main .box {
    width: 48%;
    margin-top: 30px;
  }

  .why-choose-main {
    justify-content: center;
    align-items: center;
    column-gap: 4%;
  }


  .why-choose-main .hedding-why {
    & .section-hedding {
      text-align: center;
    }
  }


  .contact-main {
    display: flex;
    gap: 4%;
    flex-wrap: wrap;

    & h3 {
      text-align: center;
    }
  }

  .contact-info {
    width: 100%;
  }

  .contact-form {
    width: 100%;
    margin-bottom: 50px;
  }

  .contact-form form {
    justify-content: center;
  }

  .join-us-main {
    & p {
      width: 100%;
      color: #333;
      font-size: 18px;
      text-align: justify;
    }
  }

  .join-containt {
    width: 100%;
  }


  .active a {
    background-position: 0% !important;

    &:before {
      display: none !important;
    }
  }

  .contact-main .contact-info {
    width: 100%;
  }

  .why-choose-head-left,
  .why-choose-head-right {
    width: 100%;
  }

  .why-us-card .card {
    width: 48%;
    margin: 20px 0;
  }

  .why-us-card {
    padding-top: 30px;
    justify-content: center;
    gap: 4%;
  }

  .why-choose-head-right p {
    margin-top: 10px;
  }
}

@media (max-width:767px) {
  .values-list li {
    width: 100%;
  }
}

@media (max-width:600px) {
  .section-hed {
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 15px;
  }

  /* Banner Section CSS  */
  .banner-section {
    padding: 150px 0 50px;
}
  .banner-section .banner-contain h1 {
    font-size: 46px;
    line-height: 55px;
  }

  /* Process Section CSS  */
  .section-process .process-main .box {
    width: 100%;
  }

  /* Subscribe To Newsletter Section CSS  */
  .section-subscribe .subscribe-main .section-hed {
    font-size: 40px;
    line-height: 45px;
  }

  .section-subscribe .subscribe-main form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .section-subscribe .subscribe-main .sub-btn {
    max-width: 50%;
    margin: 0 auto;
  }

  .contact-detail form input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }

  /* About Section */
  .our-section .our-main .box {
    width: 100%;

    p {
      font-size: 16px;
    }
  }

  .join-content h3 {
    font-size: 36px;
  }

  .values-section {
    padding: 0 0 60px;

    .values-main {
      justify-content: center;
      column-gap: 4%;
      row-gap: 30px;

      .box {
        width: 100%;

        p {
          font-size: 16px;
        }
      }
    }
  }

  .join-us-main {
    & p {
      width: 100%;
      text-align: center;
      font-size: 16px;
    }
  }

  .why-choose-main .box {
    width: 100%;
    margin-top: 30px;
  }

  .why-choose-main .hedding-why {
    & .section-hedding {
      text-align: center;
    }
  }

  .box-img {
    width: 80%;

  }

  .box-containt {
    width: 100%;

  }

  .banner-inner h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    position: relative;
    z-index: 99;
  }


  .banner-inner {
    padding: 125px 0 30px 0;}

  .popup-content form input {
    padding: 10px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
  }

  .join-containt::after {
    content: '';
    position: absolute;
    width: 0px;

    background-color: none;
  }

  .join-now-btn {

    display: flex;
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
  }

  .section-process .section-pera,
  .box-containt p,
  .infra-main .section-pera, .product-contact-main p, .why-choose-head-right p {
    text-align: justify !important;
    font-size: 16px;
  }

  .about-section .section-pera {
    text-align: justify;
    font-size: 18px;

  }

  .career-section .contain-career-section .section-pera {
    text-align: justify;
    font: 16px;

  }


  .footer-section .footer-main .footer-left .footer-logo-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
  }

  .section-hed {
    font-size: 26px;

  }

  .infra-hedding {
    font-size: 26px;

  }
  .why-choose-head-left h3 {
    font-size: 28px;
  }

  .why-choose-head-left h6 {
    font-size: 18px;
  }
}

@media (max-width:480px) {

  /* Infrastructure Section CSS  */
  .section-infrastructure .infrastructure-main .infrastructure-left p {
    font-size: 20px;
    text-align: justify;
  }

  .section-infrastructure .infrastructure-main .infrastructure-left .section-hed {
    font-size: 40px;
  }

  /* Banner Section CSS  */
  .banner-section .banner-contain h1 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin: 0;
  }

  .banner-section .banner-contain p,
  .banner-section .banner-contain span {
    font-size: 16px;
    text-align: center;
  }

  /* About Section CSS  */
  .about-section .about-main .about-left .about-counter .counter-box {
    width: 33.33%;
  }

  .about-section .about-main .about-right .section-pera {
    text-align: justify;
  }

  .join-content h3 {
    line-height: 42px;
  }

  .list-right {
    width: 100%;
  }

  .footer-left .contact-info h3,
  .footer-right h3 {
    font-size: 22px;
  }

  .footer-right ul li a {
    font-size: 18px;
  }

  .contact-info {
    & ul {
      & li {
        & a {
          &:hover {
            font-size: 18px;
            color: #135B7E;
          }
        }
      }
    }
  }

  .vision-right li p {
    text-align: justify;
  }

  .vision-right li h3 {
    text-align: center;
  }

  .vision-right li {
    justify-content: center;
  }

  .contact-form form {
    & input {
      width: 100%;

    }
  }

  .contact-main {
    & h3 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 10px;
    }
  }

  .contact-email,
  .contact-info-location {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .contact-detail form input {
    margin-bottom: 4%;
  }

  .contact-section {
    padding: 35px 0 0;
  }

  .contact-form {
    width: 100%;
    margin-bottom: 40px;
  }

  .contact-form form select {
    width: 100%;
  }

  .why-choose-main .hedding-why {
    & .section-hedding {
      text-align: center;
      font-size: 26px;
      line-height: 52px;
    }
  }

  .section-hedding {
    padding-top: 60px;
    font-size: 26px;
    text-align: center;
    color: #fff;
    padding-bottom: 250px;
    background-color: #135B7E;
  }

  .join-containt {
    background-color: #fff;
    padding: 10px 10px 20px;
    box-shadow: 0px 0px 11px -4px #3333;
    width: 100%;
    position: relative;
  }

  .join-containt::after {
    content: '';
    position: absolute;
    width: 0px;

    background-color: none;
  }

  .popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 320px;
    position: relative;
    z-index: 99;
  }

  .footer-section .footer-main .footer-left .footer-logo-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
  }

  .infra-hedding {
    font-size: 30px;
    color: #135B7E;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-section {
    background-color: rgba(211, 236, 247, 1);
    padding: 30px 0 0;
  }

  .infrastructure-main {
    padding: 0 0 35px;
  }

  .img-bg {
    padding: 0;
  }

  .why-us-card .card {
    width: 100%;
  }

 
}

@media (max-width:375px) {

  /* About Section CSS  */
  .about-section .about-main .about-left .about-counter .counter-box .counter {
    font-size: 30px;
  }

  .about-section .about-main .about-left .about-counter .counter-box .counter-containt {
    font-size: 16px;
    line-height: 16px;
  }

  .about-section .about-main .about-right .section-pera {
    font-size: 16px;
  }

  .about-section .about-main .about-right .section-pera {
    font-size: 20px;
    line-height: 30px;
  }

  /* Footer CSS*/
  .section-subscribe .subscribe-main .sub-btn {
    max-width: 80%;
  }

  .footer-section .footer-main .footer-left .footer-logo-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .box-hedding {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    margin: 27px 0 5px;
    text-transform: uppercase;
  }

  .box-contain-hed {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
  }

  .box-contain {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
  }
}

@media (max-width:320px) {

  /* Banner Section CSS  */
  .banner-section .banner-contain h1 {
    font-size: 30px;
    line-height: 46px;
  }

  .banner-section {
    padding: 60px 0 60px;
  }
  .thank-u-sec h1 {
    font-size: 51px;
    color: #333;
}
}









@media (max-width:1024px) {
  .footer-left {
    border: none;
  }

}



@media (max-width:768px) {
  .section-hed {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px;
  }




  .footer-right {
    & ul {

      & li {
        margin: 0;

        &::before {
          content: '';
          width: 0;
          height: 0;
          background-color: none;
          display: inline-block;
          border-radius: 0%;
          position: absolute;
          top: 0;
          left: 0;
        }
      }
    }
  }


  .banner-section {
    background: url(../images/banner-bg-img.png) no-repeat center;
    background-size: cover;
    position: relative;
    z-index: -9;
  }
  
  
  section.banner-section::after {
    content: " ";
    position: absolute;
    background-color: #3333;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -8;
  }
  .banner-section .banner-contain p, .banner-section .banner-contain span {

    color: #fff;
}
.banner-section .banner-contain h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  margin: 7px 0;
  color: #fff;
}
}



@media (max-width:600px) {

  .contact-detail form .submit-button {
    margin: 0 auto;
  }

  .logo {
    max-width: 100px;
    margin: 0;
  }

  .mobile-menu {
    position: absolute;
    right: 20px;
    top: 27px;
  }

  .banner-section .banner-contain h1 {
    font-size: 45px;
    line-height: 55px;

}
.banner-section .banner-contain p, .banner-section .banner-contain span {
  font-size: 18px;
}
}




@media (max-width:480px) {
  .section-hed {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .career-section .contain-career-section .section-pera {
    font-size: 18px;
    line-height: 30px;
  }
  .banner-section .banner-contain h1 {
    font-size: 34px;
    line-height: 45px;
}

.close {
  right: 0;
  top: 0;

}

}



@media (max-width: 320px) {
  .section-hed {
    font-size: 20px;
    line-height: 26px;
  }

  .career-section .contain-career-section .section-pera {
    font-size: 16px;
    line-height: 25px;
  }
  .banner-section {
    padding: 140px 0 60px;
}
}