@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css");
:root {
  --font-color: #666;
  --bg-color: #fff;
  --heading-color: #3f3a64;
  --border-radius: 8px;
  --border-radius-full: 35px;
  --border-color: transparent;
  --border-color-light: #eee;
  --nav-color: #292922;
  --dropdown-color: #fff;
  --iframe-filter: grayscale(0%);
  --bg-grey: #f7f7f7;
  --bg-lightgrey: #f8f9fa;
  --layer: rgba(29, 42, 55, 0.7);
}

[data-theme="dark"] {
  --font-color: #c2c2c2;
  --bg-color: #151421;
  --heading-color: #eee;
  --border-color: rgba(255, 255, 255, 0.2);
  --border-color-light: rgba(255, 255, 255, 0.1);
  --nav-color: #fff;
  --dropdown-color: #121725;
  --iframe-filter: grayscale(100%);
  --bg-grey: #100f19;
  --bg-lightgrey: #100f19;
  --layer: rgba(29, 42, 55, 0.8);
}

* {
  padding: 0;
  margin: 0;
  -Designkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html body {
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

@media screen and (min-width: 1200px) {
  html body .container {
    max-width: 1200px;
  }
}

html body section:not(.slider) {
  padding-block: 4.8rem;
}

@media screen and (min-width: 992px) {
  html body section:not(.slider) {
    padding-block: 10rem;
  }
}

html body section:nth-child(odd):not(.slider) {
  background-color: var(--bg-color);
}

html body section:nth-child(even):not(.slider) {
  background-color: var(--bg-grey);
}

html body h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  html body h1 {
    font-size: 6.5rem;
  }
}

html body h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

html body p {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--font-color);
  opacity: 0.8;
  line-height: 1.4;
  margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
  html body p {
    font-size: 1.7rem;
    line-height: 1.6;
  }
}

html body ul {
  list-style: none;
  padding-left: 0;
}

html body a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

html body a:link, html body a:active, html body a:visited {
  text-decoration: none;
}

html body img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

html body span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #7e7d7d;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.5s;
  border-radius: 0.8rem;
  outline: none;
  text-transform: capitalize;
  color: var(--heading-color);
}

.btn:hover {
  color: #009f4d;
}

.btn.btn-pri {
  border-color: #009f4d;
  background-color: rgba(0, 159, 77, 0.9);
  color: #fff;
}

.btn.btn-pri:hover {
  color: #fff;
  background-color: #009f4d;
}

@media screen and (min-width: 768px) {
  .btn {
    padding: 1.5rem 5rem;
  }
}

.btn.btn-sm {
  padding: 1.2rem 2.5rem;
}

.header {
  border-bottom: 1px solid rgba(231, 231, 231, 0.18);
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
  padding-block: 1rem;
}

@media screen and (min-width: 1200px) {
  .header {
    padding-block: 2rem;
  }
}

.header-logo {
  font-size: 0;
  margin-bottom: 0;
}

.header-logo .navbar-brand {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 576px) {
  .header-logo .navbar-brand {
    font-size: 3rem;
  }
}

.header-logo .navbar-brand i {
  color: #009f4d;
}

.header-logo .navbar-brand span {
  display: block;
  padding-left: 3.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.4rem;
  color: #fff;
}

@media screen and (min-width: 576px) {
  .header-logo .navbar-brand span {
    font-size: 1.5rem;
  }
}

.header-nav ul.navbar-nav {
  margin-top: 2rem;
}

@media screen and (min-width: 1200px) {
  .header-nav ul.navbar-nav {
    margin-top: 0;
  }
}

.header-nav ul.navbar-nav li.nav-item a.nav-link {
  text-transform: uppercase;
  padding: 0.4rem !important;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .header-nav ul.navbar-nav li.nav-item a.nav-link {
    padding: 0.6rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .header-nav ul.navbar-nav li.nav-item a.nav-link {
    text-align: left;
    padding: 1.2rem !important;
  }
}

.header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
  border-radius: 0.8rem;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color-light);
}

.header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu li a.dropdown-item {
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
  padding: 0.6rem 2rem;
}

.header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu li a.dropdown-item.active {
  color: #009f4d;
  background-color: var(--bg-color);
}

.header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu[data-bs-popper] {
  left: 0;
}

@media screen and (min-width: 992px) {
  .header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu[data-bs-popper] {
    left: 50%;
    -Designkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu::before {
  content: " ";
  display: block;
  position: absolute;
  top: 22px;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--bg-color);
  -Designkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  border: 1px solid var(--border-color-light);
  border-right: transparent;
  border-bottom: transparent;
}

@media screen and (min-width: 768px) {
  .header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu::before {
    top: 27px;
  }
}

@media screen and (min-width: 992px) {
  .header-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu::before {
    top: -8px;
  }
}

.header .navbar-dark .navbar-toggler {
  color: #fff;
  background-color: #009f4d;
  padding: 0.8rem;
  font-size: 1.7rem;
}

.header .navbar-dark .navbar-toggler .close {
  display: none;
}

.header-search {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}

.header-search .btn {
  display: inline-block;
}

.header-search .btn.btn--open {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  padding: 0 !important;
  background-color: #009f4d;
  outline: none;
  -Designkit-transform-origin: 50%;
          transform-origin: 50%;
  -Designkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 992px) {
  .header-search .btn.btn--open {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
  }
}

.header-search .btn.btn--open i {
  -Designkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-search form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  -Designkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

@media screen and (min-width: 992px) {
  .header-search form {
    position: absolute;
    left: 50px;
    right: 50px;
  }
}

.header-search form input {
  height: 100vh;
  width: 100%;
  outline: none;
  font-size: 3.4rem;
  background-color: transparent;
  color: #fff;
  border: none;
}

@media screen and (min-width: 992px) {
  .header-search form input {
    font-size: 5.4rem;
  }
}

.header-search form input:focus {
  background-color: transparent;
  color: #fff;
  border: none;
  -Designkit-box-shadow: none;
          box-shadow: none;
}

.header-search form input::-Designkit-input-placeholder {
  color: #fff;
}

.header-search form input:-ms-input-placeholder {
  color: #fff;
}

.header-search form input::-ms-input-placeholder {
  color: #fff;
}

.header-search form input::placeholder {
  color: #fff;
}

.header-search form .btn.btn--close {
  font-size: 5rem;
  color: #fff;
  height: 100vh;
  margin-right: 0;
  margin-top: 5rem;
  padding-inline: 3rem;
}

@media screen and (min-width: 992px) {
  .header-search form .btn.btn--close {
    font-size: 7rem;
    margin-right: 6rem;
    margin-top: 6rem;
    padding-inline: 5rem;
  }
}

.header-search form .btn.btn--close i {
  -Designkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -Designkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.searching .header-search .btn.btn--open {
  -Designkit-transform: scale(70);
          transform: scale(70);
}

.header.searching .header-search .btn.btn--open i {
  opacity: 0;
}

.header.searching .header-search form {
  opacity: 1;
  pointer-events: all;
}

.header.searching .header-search form .btn.btn--close i {
  -Designkit-transform: rotate(0);
          transform: rotate(0);
} 
.header-theme {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.header-theme label {
  cursor: pointer;
}

.header-theme label input {
  display: none;
}

.header-theme label input:checked ~ .header-theme__icon i.sun {
  opacity: 1;
  visibility: visible;
}

.header-theme label input:checked ~ .header-theme__icon i.moon {
  opacity: 0;
  visibility: hidden;
}

.header-theme label .header-theme__icon {
  position: relative;
}

.header-theme label .header-theme__icon i {
  display: inline-block;
  font-size: 2.2rem;
  color: #fff;
  -Designkit-transition: 0.6s;
  transition: 0.6s;
  padding: 2rem;
}

.header-theme label .header-theme__icon i.sun {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.header.open-nav {
  background-color: rgba(0, 0, 0, 0.8);
}

.header.open-nav .header-theme {
  position: absolute;
  top: 10px;
  right: 40px;
  -Designkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .header.open-nav .header-theme {
    position: inherit;
    -Designkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

.header.open-nav .header-theme i {
  padding: 1rem;
}

@media screen and (min-width: 1200px) {
  .header.open-nav .header-theme i {
    padding: 2rem;
  }
}

.header.open-nav .header-search {
  position: absolute;
  top: 10px;
  right: 90px;
  -Designkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .header.open-nav .header-search {
    position: inherit;
    -Designkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

.header.open-nav .navbar-toggler .close {
  display: block;
}

.header.open-nav .navbar-toggler .nav {
  display: none;
}

.header.scrolling {
  background-color: var(--bg-color) !important;
  border-bottom: none;
  padding-block: 0.6rem;
  -Designkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1200px) {
  .header.scrolling {
    padding-block: 1rem;
  }
}

.header.scrolling .header-logo a.navbar-brand {
  color: var(--heading-color);
}

.header.scrolling .header-logo a.navbar-brand span {
  color: var(--heading-color);
  opacity: 0.9;
}

.header.scrolling .header-nav ul.navbar-nav li.nav-item a.nav-link {
  color: var(--heading-color);
  opacity: 0.7;
}

.header.scrolling .header-nav ul.navbar-nav li.nav-item a.nav-link.active {
  color: #009f4d;
}

.header.scrolling .header-theme label .header-theme__icon i {
  color: var(--heading-color);
  opacity: 0.9;
}

.slider {
  position: relative;
}

.slider .carousel-item::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--layer);
}

.slider .carousel-item img {
  height: 550px;
}

@media screen and (min-width: 992px) {
  .slider .carousel-item img {
    height: auto;
  }
}

.slider .carousel-item .carousel-caption {
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  display: -Designkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -Designkit-box-orient: vertical;
  -Designkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: flex;
  -Designkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .slider .carousel-item .carousel-caption {
    left: 15%;
    right: 15%;
    -Designkit-transform: translateY(-4rem);
            transform: translateY(-4rem);
  }
}

.slider .carousel-item .carousel-caption h1 {
  text-align: left;
  -Designkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -Designkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

@media screen and (min-width: 1200px) {
  .slider .carousel-item .carousel-caption h1 {
    width: 80%;
  }
}

.slider .carousel-item .carousel-caption p {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.6;
  margin-block: 2.4rem;
  -Designkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
}

@media screen and (min-width: 1200px) {
  .slider .carousel-item .carousel-caption p {
    width: 70%;
    font-size: 2rem;
  }
}

.slider .carousel-item .carousel-caption div {
  -Designkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -Designkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

.slider button[class*="carousel-control-"] {
  z-index: 12;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: #151421;
  bottom: 50px;
  top: inherit;
  left: inherit;
  background-color: var(--bg-color);
  -Designkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  font-size: 1.6rem;
  opacity: 1;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (min-width: 1200px) {
  .slider button[class*="carousel-control-"] {
    bottom: 100px;
  }
}

.slider button[class*="carousel-control-"]:hover {
  -Designkit-transform: scale(1.2);
          transform: scale(1.2);
}

.slider .carousel-control-prev {
  right: 80px;
}

@media screen and (min-width: 768px) {
  .slider .carousel-control-prev {
    right: 170px;
  }
}

@media screen and (min-width: 1200px) {
  .slider .carousel-control-prev {
    right: 225px;
  }
}

.slider .carousel-control-next {
  right: 15px;
}

@media screen and (min-width: 768px) {
  .slider .carousel-control-next {
    right: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .slider .carousel-control-next {
    right: 150px;
  }
}

.slider-shape {
  position: absolute;
  z-index: 10;
  bottom: -2px;
  left: 0;
  right: 0;
}

.slider-shape svg {
  width: 100%;
  vertical-align: middle;
}

.slider-shape svg path {
  fill: var(--bg-color);
}

.slider .carousel-item img {
  height: 268px;
  -o-object-position: top;
     object-position: top;
}

@media screen and (min-width: 992px) {
  .slider .carousel-item img {
    height: 385px;
  }
}

.slider .carousel-caption {
  -Designkit-transform: translateY(4rem) !important;
          transform: translateY(4rem) !important;
}

.slider .carousel-caption h1 {
  width: 100% !important;
  font-size: 3rem !important;
  text-align: center !important;
}

@media screen and (min-width: 992px) {
  .slider .carousel-caption h1 {
    font-size: 5rem !important;
  }
}

.slider .carousel-caption p {
  width: 100% !important;
  opacity: 0.6 !important;
  text-align: center !important;
  margin-block: 0.8rem !important;
}

@media screen and (min-width: 992px) {
  .slider .carousel-caption p {
    margin-block: 2.4rem !important;
  }
}

.about-left-wrap {
  position: relative;
  display: inline-block;
}

.about-left-wrap img {
  position: relative;
  z-index: 2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  -Designkit-box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
}

.about-left-wrap__shape {
  border-radius: 25% 70% 84% 22% / 42% 75% 25% 75%;
  -Designkit-box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #009f4d;
  opacity: 0.4;
}

.about-left-wrap__info {
  position: absolute;
  z-index: 5;
  right: 20%;
  bottom: 0;
  min-width: 100px;
  min-height: 100px;
  -Designkit-box-shadow: 30px 30px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 30px 30px 30px rgba(0, 0, 0, 0.2);
  background-color: #009f4d;
  border-radius: 0.8rem;
  text-align: center;
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -Designkit-box-orient: vertical;
  -Designkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -Designkit-transform: translateX(25%) rotate(-45deg);
          transform: translateX(25%) rotate(-45deg);
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  .about-left-wrap__info {
    min-width: 200px;
    min-height: 200px;
    padding: 3.5rem;
    right: 20%;
  }
}

@media screen and (min-width: 1200px) {
  .about-left-wrap__info {
    right: 0;
  }
}

.about-left-wrap__info-content {
  -Designkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.about-left-wrap__info-content h3 {
  color: #fff;
  font-size: 3rem;
}

@media screen and (min-width: 992px) {
  .about-left-wrap__info-content h3 {
    font-size: 3.5rem;
  }
}

.about-left-wrap__info-content p {
  color: #fff;
  opacity: 0.8;
  font-size: 2rem;
}

@media screen and (min-width: 992px) {
  .about-left-wrap__info-content p {
    font-size: 2.2rem;
  }
}

.about-right {
  margin-top: 4.8rem;
}

@media screen and (min-width: 992px) {
  .about-right {
    margin-top: 0;
  }
}

.about-right-main {
  margin-top: 2.4rem;
}

.about-right-main h5 {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--heading-color);
}

.about-right-main p {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--font-color);
  margin-top: 2.4rem;
  opacity: 0.8;
}

.about-right-footer {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 4.8rem;
}

.about-right-footer a.btn {
  margin-right: 2.4rem;
  padding-block: 1rem;
}

.about-right-footer__play-video {
  display: -Designkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 5.5rem;
  height: 5.5rem;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid #009f4d;
  border-radius: 50%;
}

@media screen and (min-width: 992px) {
  .about-right-footer__play-video {
    width: 7rem;
    height: 7rem;
  }
}

.about-right-footer__play-video span {
  display: inline-block;
  color: #009f4d;
  font-size: 3rem;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

.about-right-footer__play-video:hover span {
  -Designkit-transform: scale(1.2);
          transform: scale(1.2);
}

.about-footer {
  margin-top: 4.8rem;
}

@media screen and (min-width: 992px) {
  .about-footer {
    margin-top: 10rem;
  }
}

.about-footer-item {
  background-color: var(--bg-grey);
  overflow: hidden;
  border-radius: 0.8rem;
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -Designkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4rem 3.5rem;
  position: relative;
}

.about-footer-item__icon h1 {
  font-size: 3rem;
  color: #009f4d;
  width: 4rem;
}

@media screen and (min-width: 992px) {
  .about-footer-item__icon h1 {
    width: 6rem;
    font-size: 3.5rem;
  }
}

.about-footer-item__content {
  -Designkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 100px;
}

@media screen and (min-width: 992px) {
  .about-footer-item__content {
    min-height: 140px;
  }
}

.about-footer-item__content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -Designkit-box;
  -Designkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -Designkit-box-orient: vertical;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (min-width: 992px) {
  .about-footer-item__content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}

.about-footer-item__content p {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--font-color);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -Designkit-box;
  -Designkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -Designkit-box-orient: vertical;
  opacity: 0.8;
}

.about-footer-item__link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}

.about-footer-item:hover .about-footer-item__content h3 {
  color: #009f4d;
}

.Design-left-main {
  padding-top: 2.4rem;
}

.Design-left-main-item h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #009f4d;
}

@media screen and (min-width: 992px) {
  .Design-left-main-item h1 {
    font-size: 3.5rem;
  }
}

.Design-left-main-item h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-block: 1rem;
}

@media screen and (min-width: 992px) {
  .Design-left-main-item h3 {
    margin-block: 2.4rem;
    font-size: 2.2rem;
  }
}

.Design-left-main-item p {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--font-color);
  opacity: 0.8;
}

.Design-right-item {
  overflow: hidden;
  border-radius: 0.8rem;
}

.Solution {
  background-image: url("../img/bg1.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.Solution::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: var(--layer);
}

.Solution-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.Solution-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .Solution-content h3 {
    font-size: 3.5rem;
  }
}

.Solution-content p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  margin-block: 1rem;
}

@media screen and (min-width: 992px) {
  .Solution-content p {
    margin-block: 2.4rem;
  }
}

.Solution-content__play-btn {
  display: -Designkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  line-height: 5.5rem;
  text-align: center;
  border-radius: 50%;
  border: 3px solid #fff;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (min-width: 992px) {
  .Solution-content__play-btn {
    width: 7rem;
    height: 7rem;
    line-height: 7rem;
    text-align: center;
    border-radius: 50%;
  }
}

.Solution-content__play-btn span {
  font-size: 2.2rem;
  color: #fff;
}

.Solution-content__play-btn:hover {
  -Designkit-transform: scale(1.1);
          transform: scale(1.1);
}

.Gallery-main {
  padding-top: 2.4rem;
}

.Gallery-main-item {
  padding-inline: 1rem;
}

@media screen and (min-width: 992px) {
  .Gallery-main-item {
    padding-inline: 0;
  }
}

.Gallery-main-item .card-img-bottom {
  border-radius: 0.8rem;
}

.Gallery-main-item .card-img-bottom__overlay {
  background-color: rgba(20, 20, 20, 0.7);
}

.Gallery-main-item .card-img-bottom__content {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -Designkit-box-orient: vertical;
  -Designkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0;
}

.Gallery-main-item .card-img-bottom__content p {
  text-align: center;
  color: #fff;
  font-size: 2rem;
}

.Gallery-main-item .card-img-bottom__content ul {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -Designkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.Gallery-main-item .card-img-bottom__content ul li {
  display: inline-block;
}

.Gallery-main-item .card-img-bottom__content ul li a {
  display: -Designkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

.Gallery-main-item .card-img-bottom__content ul li a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}

.Gallery-main-item__title {
  margin-top: 2.4rem;
}

.Gallery-main-item__title h3 a {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

.Gallery-main-item__title h3 a:hover {
  color: #009f4d;
}

.Gallery-main-item__title p {
  text-align: center;
}

.why-chose-us .heading-block .container {
  max-width: 510px;
}

@media screen and (min-width: 992px) {
  .why-chose-us .heading-block .container {
    max-width: 730px;
  }
}

.why-chose-us-main {
  padding-top: 2.4rem;
}

.why-chose-us-main-item {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 110px;
}

.why-chose-us-main-item__icon h3 {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid #009f4d;
  border-radius: 0.8rem;
  color: #009f4d;
  font-size: 3rem;
}

@media screen and (min-width: 576px) {
  .why-chose-us-main-item__icon h3 {
    width: 80px;
    height: 80px;
  }
}

.why-chose-us-main-item__content {
  padding-left: 2rem;
}

@media screen and (min-width: 992px) {
  .why-chose-us-main-item__content {
    padding-left: 4rem;
  }
}

.why-chose-us-main-item__content h3 {
  font-size: 0;
}

.why-chose-us-main-item__content h3 a {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  -Designkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .why-chose-us-main-item__content h3 a {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

.why-chose-us-main-item__content h3 a:hover {
  color: #009f4d;
}

.why-chose-us-main-item__content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -Designkit-box;
  -Designkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -Designkit-box-orient: vertical;
}

.why-chose-us-main .col:nth-child(4n + 2) .why-chose-us-main-item__icon h3 {
  border-color: #213364;
  color: #213364;
}

.why-chose-us-main .col:nth-child(4n + 3) .why-chose-us-main-item__icon h3 {
  border-color: #ff4c4c;
  color: #ff4c4c;
}

.why-chose-us-main .col:nth-child(4n + 4) .why-chose-us-main-item__icon h3 {
  border-color: #f48924;
  color: #f48924;
}

.about-your-project-left .heading-block p {
  margin-top: 1rem;
}

@media screen and (min-width: 992px) {
  .about-your-project-left .heading-block p {
    margin-top: 2.4rem;
  }
}

.about-your-project-right {
  display: -Designkit-box;
  display: -ms-flexbox;
  display: flex;
  -Designkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -Designkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .about-your-project-right {
    -Designkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.about-your-project-right a.btn i {
  margin-left: 1rem;
}

.mfp-content {
  max-width: 750px !important;
}

.mfp-content .mfp-iframe-scaler iframe {
  height: 420px !important;
}

.footer {
  background-color: #151421;
  border-top: 1px solid rgba(231, 231, 231, 0.18);
  overflow-x: hidden;
}

.footer-top-item {
  padding-inline: 1rem;
}

.footer-top-item__heading {
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.footer-top-item__content p {
  font-size: 1.7rem;
  font-weight: 400;
  color: #97a1a9;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .footer-top-item__content p {
    font-size: 1.8rem;
  }
}

.footer-top-item__content ul li {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  color: #97a1a9;
  padding-block: 0.3rem;
}

@media screen and (min-width: 768px) {
  .footer-top-item__content ul li {
    font-size: 1.8rem;
  }
}

.footer-top-item__content ul li a {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 400;
  color: #97a1a9;
  opacity: 0.8;
  -Designkit-transition: 0.8s;
  transition: 0.8s;
}

@media screen and (min-width: 768px) {
  .footer-top-item__content ul li a {
    font-size: 1.8rem;
  }
}

.footer-top-item__content ul li:hover a {
  color: #fff;
  opacity: 1;
}

.footer-top-item--logo .footer-top-item__logo {
  margin-bottom: 2.5rem;
}

.footer-top-item--logo .footer-top-item__logo a {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (min-width: 576px) {
  .footer-top-item--logo .footer-top-item__logo a {
    font-size: 3rem;
  }
}

.footer-top-item--logo .footer-top-item__logo a i {
  color: #009f4d;
}

.footer-top-item--logo .footer-top-item__logo a span {
  display: block;
  padding-left: 3.6rem;
  font-weight: 600;
  font-size: 1.4rem;
  opacity: 0.9;
  margin-top: 0.6rem;
  color: #fff;
}

@media screen and (min-width: 576px) {
  .footer-top-item--logo .footer-top-item__logo a span {
    font-size: 1.5rem;
  }
}

.footer-top-item--logo .footer-top-item__logo a:hover {
  color: inherit;
}

.footer-top-item--logo .footer-top-item__content-social li {
  display: inline-block;
}

.footer-top-item--logo .footer-top-item__content-social li a {
  display: inline-block;
  font-size: 1.7rem;
  padding: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(231, 231, 231, 0.18);
}

.footer-bottom__copy {
  text-align: center;
  color: #97a1a9;
  font-size: 1.7rem;
}

.footer-bottom__copy-link {
  font-size: 1.7rem;
  color: #009f4d;
  -Designkit-transition: 0.6s;
  transition: 0.6s;
}

.footer-bottom__copy-link:hover {
  color: #fff;
}

.btn-to-top {
  position: fixed;
  z-index: 30;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: #009f4d;
  color: #fff;
  display: inline-block;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.btn-to-top:hover {
  -Designkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #fff;
}

.btn-to-top.show {
  opacity: 1;
  visibility: visible;
}

.heading-block {
  margin-bottom: 2.4rem;
}

.heading-block span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #7e7d7d;
  text-transform: uppercase;
  line-height: 3rem;
  letter-spacing: 0.1rem;
}

.heading-block h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 3.2rem;
}

@media screen and (min-width: 576px) {
  .heading-block h3 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .heading-block h3 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
}

.heading-block.heading-block--center span {
  text-align: center;
}

.heading-block.heading-block--center h3 {
  text-align: center;
}

.heading-block.heading-block--center p {
  text-align: center;
}

.card-img-bottom {
  position: relative;
  overflow: hidden;
}

.card-img-bottom__img {
  overflow: hidden;
}

.card-img-bottom__img img {
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

.card-img-bottom__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4.6rem 5rem;
  -Designkit-transform: translateY(100%);
          transform: translateY(100%);
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

.card-img-bottom__content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.card-img-bottom__content p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}

.card-img-bottom__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--layer);
  opacity: 0;
  visibility: hidden;
  -Designkit-transition: 0.4s;
  transition: 0.4s;
}

.card-img-bottom__link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.card-img-bottom:hover .card-img-bottom__img img {
  -Designkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card-img-bottom:hover .card-img-bottom__overlay {
  opacity: 1;
  visibility: visible;
}

.card-img-bottom:hover .card-img-bottom__content {
  -Designkit-transform: none;
          transform: none;
}

.card-img-bottom:hover .card-img-bottom__link {
  display: block;
}
