/*Main Css */

::selection {
  background: #15a356;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #15a356;
}

/* Tabbing CSS */

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

/* Accordion CSS */

.myaccordion li .faq-opt {
  display: none;
}

.myaccordion li.active .faq-opt {
  display: block;
}

.myaccordion li.active .faq-ang h4:before {
  content: "\f077";
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Lato";
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #262626;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
}

a:hover {
  color: #15a356;
}

span {
  display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
  background: transparent;
  border: none;
  border-radius: 0px;
  font-family: "Lato";
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */

.pad-sec {
}

.pad-zero {
  padding: 0px;
}

.pad-l-zero {
  padding-left: 0px;
}

.pad-r-zero {
  padding-right: 0px;
}

.ovr-hiddn {
  overflow: hidden;
}

.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
}

/* Heading Classes */

.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}

.hding-2 h2 {
}

.hding-3 h3 {
}

.hding-4 h4 {
}

.hding-5 h5 {
}

.hding-6 h6 {
}

.para {
}

.highlighted {
  color: #ff5e14;
}

/* Custom Slick Css */

.slick-list {
  margin: 0 -15px;
}

.slick-slide {
  margin: 0 15px;
}

.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}

.slick-dots li {
  margin: 0 20px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  padding: 0px;
  background: #d6d6d6;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #f3c919;
  width: 11px;
  height: 11px;
}

/*header css*/

header {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  padding: 15px 0;
  background-color: #f8f9fe90;
  position: relative;
  z-index: 1;
}

.main-header {
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

/* Hamburger Menu */

.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: #0f4c97;
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: #b70404;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}
.main-header .container-fluid {
  max-width: 1440px;
}
/* Menu Css */

.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}

.menu li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 35px;
}

.menu li a {
  display: block;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
}

.menu li:hover a,
.menu li.active a {
  color: rgb(240, 90, 35);
}

/* home page start */
.home-hero {
  padding-bottom: 75px;
}
.section-width .container-fluid {
  max-width: 1440px;
}

.home-hero h1 {
  font-weight: 500;
  font-size: 65.733px;
  line-height: 120%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 25px;
}
.home-hero h1 span {
  color: #15a356;
}
.btn-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-solid-black {
  padding: 12px 25px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-solid-black:hover {
  background-color: transparent;
  color: #000;
}
.btn-outline-black {
  padding: 12px 25px;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn-outline-black:hover {
  background-color: #000;
  color: #fff;
}

.hero-images {
  font-size: 0;
}

.hero-images > li {
  display: inline-block;
  /* vertical-align: top; */
  width: 50%;
}
.hero-images > li:first-child {
  padding-right: 15px;
}

.hero-line-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #15a356;
  text-align: center;
  padding-top: 45px;
  position: relative;
}

@media (min-width: 1200px) {
  .hero-images > li:last-child {
    margin-top: -80px;
  }
}

.sec-heading h2 {
  font-weight: 500;
  font-size: 44.7015px;
  line-height: 120%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sec-heading h2 span {
  color: #15a356;
}

.home-launching-para {
  font-size: 17.0756px;
  line-height: 150%;
  padding: 30px 15px;
}
.line-divider-horizontal {
  width: 100%;
}

.home-launching.section-width {
  padding-bottom: 75px;
}
.glimpse-sec.section-width {
  padding: 40px 0;
  background-color: #f8f9fe;
}
.glimpse-video-wrap {
  position: relative;
  display: inline-block;
}
.glimpse-video-wrap a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: auto;
  color: #fff;
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.glimpse-video-text {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.glimpse-video-text img {
  padding-right: 35px;
}
.glimpse-video-text h6 {
  text-align: left;
}

.home-about {
  padding: 100px 0;
}

.para {
  font-size: 18px;
  line-height: 150%;
}

.home-about .para {
  padding: 25px 0;
}

.about-images {
  font-size: 0;
}
.about-images > li {
  width: 50%;
  display: inline-block;
  padding: 0 15px;
  vertical-align: top;
}

.about-images > li:nth-child(1),
.about-images > li:nth-child(2) {
  padding-bottom: 40px;
}

.about-images > li:nth-child(3) {
  margin-top: -100px;
}
.about-image-box > img {
  width: 100%;
}
.about-img-text h6 {
  font-weight: 300;
  font-size: 22px;
  line-height: 150%;
  padding: 6px 0;
}
.about-img-text {
  padding: 25px 0;
}
.about-image-hori-right {
  display: block;
  margin-left: auto;
}

.about-icon-box {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 220px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.about-icon-box-body h5 {
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.about-icon-box-body p {
  font-size: 14px;
  line-height: 120%;
  max-width: 275px;
}

.about-icon-line-bottom {
  padding-top: 5px;
  margin-left: auto;
  display: block;
  margin-right: 30%;
}
.about-icon-line-top {
  padding-bottom: 5px;
}
.about-icon-box::before {
  content: "";
  border: 1px solid #838383;
  width: 346px;
  height: 170px;
  position: absolute;
  bottom: 40px;
  left: 25px;
}

.home-why-us {
  padding: 50px 0;
  background-color: #f8f9fe;
}
.home-why-us .sec-heading {
  padding-bottom: 30px;
}

.why-us-list {
  font-size: 0;
}
.why-us-list > li {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.why-us-box {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 330px;
}
.why-us-body-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.why-us-body-head h6 {
  font-weight: 300;
  font-size: 17.8901px;
}
.why-us-body {
  width: 100%;
}
.why-us-body h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
}
.why-us-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding-top: 15px;
  max-width: 330px;
}

.why-us-list > li:nth-child(2) {
  padding-top: 120px;
}
.why-us-list > li:nth-child(3) {
  padding-left: 75px;
  margin-top: -50px;
}
.sec-heading h6 {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
.join-us {
  padding: 100px 0;
}
.join-us .para {
  padding: 10px 0 15px;
}

.contact-section {
  padding: 40px 0;
  background-color: #f8f9fe;
}

.contact-section .para {
  padding-top: 15px;
}

.contact-details-sec {
  padding: 20px 0;
  background-color: #f8f9fe;
}

.contact-detail-box span {
  color: #15a356;
  font-size: 48px;
  padding-bottom: 10px;
}
.contact-detail-box h5 {
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
}
.contact-detail-box p {
  font-size: 16px;
  line-height: 150%;
  padding: 10px 0;
}
.contact-detail-box a {
  font-size: 16px;
  text-decoration-line: underline;
  color: #262626;
}
footer {
  padding-top: 175px;
  background-color: #f8f9fe;
}

.footer-top {
  padding: 35px 0 55px;
  border-top: 1px solid #727272;
  border-bottom: 1px solid #727272;
}
.footer-para {
  padding-top: 15px;
  font-size: 16px;
  line-height: 150%;
}

.footer-menu > li {
  padding-top: 25px;
}
.footer-menu a {
  font-size: 14px;
  line-height: 150%;
  color: #262626;
}
.footer-menu a span {
  color: #15a356;
  font-size: 16px;
  margin-right: 15px;
  vertical-align: middle;
}

.footer-bottom {
  padding: 25px 0;
}
.footer-bottom p {
  font-size: 14px;
}

.map-wrap {
  height: 460px;
  padding-left: 50px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
}

.logo img {
  max-width: 80px;
}
.footer-logo {
  max-width: 110px;
}

.popup-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 100%;
  background-color: #ffffff90;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

.popup-wrap {
  width: 100%;
  max-width: 560px;
  height: 630px;
  margin: auto;
  box-shadow: 3.534px 28.784px 30px 10px rgba(24, 23, 23, 0.3);
  border: 2px solid #d2d2d2;
  padding: 35px 50px;
  background-color: #fff;
  position: relative;
}

.pop-close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #000;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-wrap img {
  max-width: 80px;
  margin: auto;
  display: block;
  padding-bottom: 15px;
}
.popup-wrap h5 {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.input-field label {
  display: block;
  font-size: 16px;
  padding-bottom: 5px;
}
.input-field input {
  width: 100%;
  height: 45px;
  border: 1px solid #d2d2d2;
  padding: 0 15px;
  background-color: #fff;
}
.input-field {
  padding-bottom: 10px;
}
.popup-form-wrap {
  max-width: 400px;
  margin: auto;
}
.popup-form-wrap button {
  background-color: #15a356;
  height: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}
.popup-contacts > li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 50%;
}
.popup-contacts {
  font-size: 0;
  padding-top: 25px;
}
.popup-contacts i {
  font-size: 14px;
}
.popup-contacts a {
  color: #000;
  font-size: 16px;
}
.form-results {
  text-align: center;
  font-weight: 500;
  padding-top: 10px;
}
@media (max-width: 1440px) {
}

@media (max-width: 1200px) {
  img {
    max-width: 100%;
    height: auto;
  }
  /* .menu-Bar {
    display: block;
    top: 0px;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #0f4c97;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 100vw;
  } */

  .logo img {
    max-width: 50%;
  }
  .container {
    position: relative;
  }
  .menu li a {
    font-size: 12px;
  }

  header .col-md-3 {
    max-width: 33.333%;
  }
  header .col-md-6 {
    max-width: 66.666%;
  }
}

@media (max-width: 767px) {
  .home-hero {
    text-align: center;
    padding: 40px 0;
  }
  .home-hero h1 {
    font-size: 44px;
  }
  .btn-flex {
    justify-content: center;
    margin-bottom: 25px;
  }
  .hero-line-text {
    font-size: 12px;
  }
  .sec-heading h2 {
    font-size: 32px;
  }
  .home-launching-para {
    font-size: 16px;
    padding: 15px 15px;
  }
  .glimpse-video-text {
    position: static;
    align-items: center;
    text-align: center;
    padding-top: 25px;
  }

  .glimpse-video-text img {
    display: none;
  }

  .sec-heading h6 {
    font-size: 18px;
  }
  .home-about {
    padding: 40px 0;
  }

  .about-icon-box {
    margin-top: 50px;
  }
  .about-img-text h6 {
    font-size: 16px;
  }
  .sec-heading h2 br {
    display: none;
  }
  .why-us-list {
    padding-top: 25px;
  }

  .why-us-list > li:nth-child(2) {
    padding-top: 30px;
  }

  .why-us-list > li {
    width: 100%;
  }
  .why-us-list > li:nth-child(3) {
    padding-left: 0;
    margin-top: 0;
    padding-top: 30px;
  }

  .join-us {
    padding: 40px 0;
  }

  .join-us .sec-heading {
    padding-top: 30px;
  }
  .para {
    font-size: 16px;
  }
  .map-wrap {
    padding-left: 0;
    padding-top: 30px;
  }
  .contact-detail-box {
    text-align: center;
    padding-bottom: 25px;
  }
  .contact-detail-box h5 {
    font-size: 24px;
  }

  footer {
    padding-top: 100px;
    text-align: center;
  }

  .glimpse-video-text h6 {
    text-align: center;
  }

  .glimpse-video-wrap a {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    font-size: 14px;
  }
  .home-launching.section-width {
    padding-bottom: 40px;
  }

  .popup-wrap {
    height: auto;
    padding: 25px 15px;
    width: calc(100% - 15px);
  }
  .popup-wrap h5 {
    padding-bottom: 15px;
  }

  .popup-contacts a {
    font-size: 12px;
  }
  .input-field input {
    height: 40px;
  }
}
