/*@Media Query Mixin*/
/*@Media Query Mixin End*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--poppins-regular);
}

:root {
  --theme-green: #024442;
  --theme-lightgreen: #235c5c;
  --theme-light: #428482;
  --jost-regular: "jost-regular";
  --jost-medium: "jost-medium";
  --jost-semibold: "jost-semibold";
  --jost-bold: "jost-bold";
  --poppins-regular: "poppins-regular";
}

@font-face {
  font-family: "jost-regular";
  src: url("../fonts/jost-regular.woff2") format("woff2"), url("../fonts/jost-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "jost-medium";
  src: url("../fonts/jost-medium.woff2") format("woff2"), url("../fonts/jost-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "jost-semibold";
  src: url("../fonts/jost-semibold.woff2") format("woff2"), url("../fonts/jost-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "jost-bold";
  src: url("../fonts/jost-bold.woff2") format("woff2"), url("../fonts/jost-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppins-regular";
  src: url("../fonts/poppins-regular.woff2") format("woff2"), url("../fonts/poppins-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  padding-top: 100px;
}
@media screen and (max-width: 1680px) {
  body {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1280px) {
  body {
    padding-top: 85px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    padding-top: 75px;
  }
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 95px;
  }
}
@media screen and (max-width: 600px) {
  body {
    padding-top: 85px;
  }
}
@media screen and (max-width: 400px) {
  body {
    padding-top: 75px;
  }
}

.container {
  max-width: 84%;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 95%;
  }
}

.left-container {
  max-width: 92%;
}
@media screen and (max-width: 1024px) {
  .left-container {
    max-width: 90%;
    margin: auto;
  }
}

.desc {
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin-bottom: 0;
  font-size: 12px;
  font-family: var(--jost-regular);
  color: #fff;
}
@media screen and (max-width: 991px) {
  .desc {
    font-size: 10px;
  }
}

.heading {
  font-size: 36px;
  font-family: var(--jost-medium);
  color: var(--theme-green);
}
@media screen and (max-width: 1680px) {
  .heading {
    font-size: 35px;
  }
}
@media screen and (max-width: 1600px) {
  .heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 1440px) {
  .heading {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .heading {
    font-size: 24px;
  }
}

.sub-heading {
  font-family: var(--jost-medium);
  margin-bottom: 5px;
  color: var(--theme-green);
}

.justify {
  text-align: justify;
}

.theme-btn {
  position: relative;
  border: none;
  padding: 10px 30px;
  background-color: transparent;
  font-family: var(--jost-medium);
  border-radius: 50px;
  z-index: 1;
  transition: all 0.6s ease;
}
.theme-btn:hover {
  color: #fff;
}
.theme-btn:hover:before {
  width: 100%;
  border-radius: 50px;
  background-color: var(--theme-lightgreen);
}
.theme-btn:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 100%;
  background-color: var(--theme-light);
  top: 0;
  left: 0;
  border-radius: 50px;
  transition: all 0.6s ease;
  z-index: -1;
}
.theme-btn i:before {
  vertical-align: -2px;
}

.breadcrumb-box {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .breadcrumb-box .img img {
    width: 180%;
    transform: translateX(-10%);
  }
}
@media screen and (max-width: 600px) {
  .breadcrumb-box .img.right img {
    width: 180%;
    transform: translateX(-40%);
  }
}
.breadcrumb-box .overlay {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  animation: fadeLeft 1s;
}
.breadcrumb-box .overlay .heading {
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .breadcrumb-box .overlay .heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .breadcrumb-box .overlay .heading {
    font-size: 20px;
  }
}

.breadcrumb-area {
  position: relative;
  z-index: 99;
}
.breadcrumb-area .breadcrumb {
  position: absolute;
  top: 5px;
  left: 0;
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb .breadcrumb-item {
  font-size: 14px;
  font-family: var(--jost-regular);
}
@media screen and (max-width: 600px) {
  .breadcrumb-area .breadcrumb .breadcrumb-item {
    font-size: 12px;
  }
}
.breadcrumb-area .breadcrumb .breadcrumb-item.wht a {
  color: #fff;
}
.breadcrumb-area .breadcrumb .breadcrumb-item.wht:before {
  color: #fff;
}
.breadcrumb-area .breadcrumb .breadcrumb-item.active {
  font-family: var(--jost-semibold);
  color: var(--theme-lightgreen);
}
.breadcrumb-area .breadcrumb .breadcrumb-item.active.wht {
  color: #fff;
}
.breadcrumb-area .breadcrumb .breadcrumb-item a {
  color: #303030;
  text-decoration: none;
}

.owl-nav {
  margin-top: 50px;
}
@media screen and (max-width: 1440px) {
  .owl-nav {
    margin-top: 20px;
  }
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 40px;
    height: 40px;
  }
}
.owl-nav .owl-prev:hover:before,
.owl-nav .owl-next:hover:before {
  width: 0;
  height: 0;
}
.owl-nav .owl-prev:hover:after,
.owl-nav .owl-next:hover:after {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1440px) {
  .owl-nav .owl-prev:hover:after,
  .owl-nav .owl-next:hover:after {
    width: 40px;
    height: 40px;
  }
}
.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
  rotate: 360deg;
}
.owl-nav .owl-prev:before,
.owl-nav .owl-next:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .owl-nav .owl-prev:before,
  .owl-nav .owl-next:before {
    width: 40px;
    height: 40px;
  }
}
.owl-nav .owl-prev:after,
.owl-nav .owl-next:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: -1;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  transition: all 0.6s ease;
}
.owl-nav .owl-next {
  left: 10px;
}
@media screen and (max-width: 1440px) {
  .owl-nav .owl-next {
    left: 5px;
  }
}

@media screen and (max-width: 1280px) {
  .right-space {
    margin-right: 40px;
  }
}
@media screen and (max-width: 600px) {
  .right-space {
    margin-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .right-space-991 {
    margin-right: 30px;
  }
}
@media screen and (max-width: 600px) {
  .right-space-991 {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .remv-1024 {
    display: none;
  }
}

.body-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.body-overlay.is-active {
  display: block;
}

@media screen and (max-width: 991px) {
  .orderChange {
    order: 2;
  }
}

.hideondesk {
  display: none;
}
@media screen and (max-width: 600px) {
  .hideondesk {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .hideonmob {
    display: none;
  }
}

.blurimg {
  filter: blur(1.5px);
}

.navbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: linear-gradient(90deg, rgb(1, 35, 34) 40%, rgb(2, 75, 72) 100%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px 0;
}
@media screen and (max-width: 991px) {
  .navbar {
    padding-bottom: 0;
  }
}
.navbar .container {
  align-items: end;
}
@media screen and (max-width: 991px) {
  .navbar .container {
    align-items: center;
    max-width: 100%;
    padding: 0;
  }
}
.navbar .navbar-brand {
  width: 10%;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    width: 15%;
    margin-left: 50px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .navbar .navbar-brand {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-brand {
    width: 30%;
    margin-left: 25px;
  }
}
.navbar .navbar-toggler {
  border: none;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    margin-right: 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-toggler {
    margin-right: 25px;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/icons/menu-bar.png);
}
.navbar .navbar-toggler .navbar-toggler-icon.on {
  background-image: url(../images/icons/menu-close.png);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 15px;
    margin-bottom: 0 !important;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  text-transform: uppercase;
  font-family: var(--jost-regular);
  padding: 0 10px;
  margin: 0 10px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 15px 50px;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 12px 25px;
  }
}
.navbar .navbar-nav .nav-item .nav-link.active:before, .navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}
.navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: -2px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link:before {
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link.mob-number {
    display: none;
  }
}
.navbar .navbar-nav .nav-item .nav-link.mob-number i {
  animation: ring 1s infinite;
}
.navbar .navbar-nav .nav-item .nav-link.mob-number:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--theme-green);
  top: 0;
  left: -10px;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    right: 25px;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  margin: 0;
  padding-bottom: 0;
  border: 1px solid rgba(147, 147, 147, 0.4392156863);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .dropdown-menu {
    background-color: var(--theme-lightgreen);
    padding-top: 0;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li.diff {
  position: relative;
  background-color: var(--theme-lightgreen);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li.diff {
    background-color: unset;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li.diff:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li.diff:before {
    display: none;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li.diff a {
  color: #fff;
}
.navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 10px 70px;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 10px 40px;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #fff;
  background-color: var(--theme-green);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    background-color: unset;
  }
}

#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
  top: unset;
  bottom: 50px;
  width: unset;
  opacity: 1;
  width: 45px;
  height: 45px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    bottom: 10px;
    width: 35px;
    height: 35px;
  }
}
#mainSlider .carousel-control-prev:hover:before,
#mainSlider .carousel-control-next:hover:before {
  width: 0;
  height: 0;
}
#mainSlider .carousel-control-prev:hover:after,
#mainSlider .carousel-control-next:hover:after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
#mainSlider .carousel-control-prev:hover i,
#mainSlider .carousel-control-next:hover i {
  rotate: 360deg;
}
#mainSlider .carousel-control-prev:before,
#mainSlider .carousel-control-next:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}
#mainSlider .carousel-control-prev:after,
#mainSlider .carousel-control-next:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background-color: var(--theme-lightgreen);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
  opacity: 0;
}
#mainSlider .carousel-control-prev i,
#mainSlider .carousel-control-next i {
  transition: all 0.6s ease;
}
#mainSlider .carousel-control-prev {
  left: unset;
  right: 210px;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-control-prev {
    right: 200px;
  }
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-control-prev {
    right: 100px;
  }
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-prev {
    right: 60px;
  }
}
#mainSlider .carousel-control-next {
  right: 150px;
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-control-next {
    right: 50px;
  }
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-next {
    right: 20px;
  }
}
#mainSlider .carousel-indicators [data-bs-target] {
  position: relative;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.6s ease;
}
#mainSlider .carousel-indicators [data-bs-target]:hover {
  opacity: 1 !important;
}
#mainSlider .carousel-indicators [data-bs-target]:hover:before {
  opacity: 1;
  width: 200%;
  height: 200%;
}
#mainSlider .carousel-indicators [data-bs-target].active {
  background-color: var(--theme-lightgreen);
}
#mainSlider .carousel-indicators [data-bs-target].active:before {
  opacity: 1;
  width: 200%;
  height: 200%;
}
#mainSlider .carousel-indicators [data-bs-target]:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.6s ease;
}
#mainSlider .carousel-item .anim {
  animation: zoom-in 10s;
}
#mainSlider .carousel-item .carousel-caption {
  bottom: unset;
  top: 50%;
  transform: translate(0, -50%);
  text-align: unset;
  padding: 20px 30px;
  font-family: var(--jost-medium);
}
#mainSlider .carousel-item .carousel-caption.left {
  left: 10%;
  right: unset;
  animation: fadeLeft 1.5s;
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption.left {
    left: 5%;
  }
}
#mainSlider .carousel-item .carousel-caption.right {
  left: unset;
  right: 15%;
  animation: fadeRight 1.5s;
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption.right {
    right: 10%;
  }
}
#mainSlider .carousel-item .carousel-caption h5 {
  font-size: 50px;
  line-height: 52px;
  text-transform: uppercase;
}
@media screen and (max-width: 1680px) {
  #mainSlider .carousel-item .carousel-caption h5 {
    font-size: 40px;
    line-height: 42px;
  }
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption h5 {
    font-size: 30px;
    line-height: 32px;
  }
}
#mainSlider .carousel-item .carousel-caption p {
  font-size: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  #mainSlider .carousel-item .carousel-caption p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-item .carousel-caption .img img {
    width: 60%;
  }
}

.hmsec01 {
  position: relative;
  padding: 100px 0;
  background-color: #e9e9e9;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec01 {
    padding: 30px 0;
  }
}
.hmsec01 .vector {
  position: absolute;
  top: 0;
  left: -10%;
  z-index: -1;
  opacity: 0.1;
}

.hmsec02 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-lightgreen);
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec02 {
    padding: 30px 0;
  }
}
.hmsec02 .vector {
  position: absolute;
  right: -20px;
  z-index: -1;
  opacity: 0.2;
}
.hmsec02 .item {
  background-color: #fff;
  text-align: center;
  padding: 50px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .hmsec02 .item {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 991px) {
  .hmsec02 .item {
    display: flex;
    text-align: unset;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .hmsec02 .item {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .hmsec02 .item .img img {
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .hmsec02 .item .img img {
    width: unset;
  }
}
@media screen and (max-width: 600px) {
  .hmsec02 .item .img img {
    width: 20%;
  }
}
.hmsec02 .item.diff {
  background-color: var(--theme-green);
  color: #fff;
}
.hmsec02 .item.diff .txt h3 {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .hmsec02 .item .txt {
    padding-left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec02 .item .txt {
    padding-left: unset;
  }
}
.hmsec02 .item .txt h3 {
  color: var(--theme-green);
  font-family: var(--jost-regular);
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .hmsec02 .item .txt h3 {
    margin-top: unset;
  }
}
.hmsec02 .item .txt p {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .hmsec02 .item .txt p {
    text-align: justify;
  }
}

.hmsec03 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .hmsec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 {
    padding: 30px 0;
  }
}
.hmsec03 .txt {
  padding: 0 100px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .hmsec03 .txt {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .txt {
    padding: 0;
    text-align: justify;
  }
}
.hmsec03 .counter {
  padding: 0 100px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .hmsec03 .counter {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .counter {
    padding: 0;
  }
}
.hmsec03 .counter .item {
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .hmsec03 .counter .item {
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .counter .item {
    margin-top: 30px;
  }
}
.hmsec03 .counter .item:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--theme-green);
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .hmsec03 .counter .item:before {
    left: -15px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .counter .item:before {
    left: -13px;
  }
}
.hmsec03 .counter .item.first:before {
  display: none;
}
.hmsec03 .counter .item span {
  font-size: 40px;
  color: var(--theme-green);
  font-family: var(--jost-bold);
}
@media screen and (max-width: 991px) {
  .hmsec03 .counter .item span {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .counter .item span {
    font-size: 20px;
  }
}
.hmsec03 .counter .item .title {
  font-size: 22px;
  color: var(--theme-lightgreen);
  font-family: var(--jost-medium);
}
@media screen and (max-width: 991px) {
  .hmsec03 .counter .item .title {
    font-size: unset;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .counter .item .title {
    font-size: 14px;
    line-height: 16px;
  }
}

.hmsec04 {
  background-color: var(--theme-green);
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .hmsec04 .img {
    padding: 20px 0;
  }
}
.hmsec04 .content {
  position: relative;
  padding: 100px 50px 0 50px;
}
@media screen and (max-width: 1680px) {
  .hmsec04 .content {
    padding: 50px 25px 0 25px;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec04 .content {
    padding: 50px 0 0 25px;
  }
}
@media screen and (max-width: 1280px) {
  .hmsec04 .content {
    padding: 30px 0 0 25px;
  }
}
@media screen and (max-width: 1024px) {
  .hmsec04 .content {
    padding: 30px 0 50px 0;
  }
}
@media screen and (max-width: 991px) {
  .hmsec04 .content {
    padding: 0;
    padding-bottom: 50px;
  }
}
.hmsec04 .content:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border-left: 1px dashed var(--theme-lightgreen);
  left: 100px;
  bottom: -32%;
}
@media screen and (max-width: 1680px) {
  .hmsec04 .content:before {
    left: 70px;
    bottom: -25%;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec04 .content:before {
    left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .hmsec04 .content:before {
    left: 35px;
  }
}
.hmsec04 .content .item {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media screen and (max-width: 1600px) {
  .hmsec04 .content .item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec04 .content .item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .hmsec04 .content .item {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .hmsec04 .content .item {
    margin-top: 25px;
  }
}
.hmsec04 .content .item .icon {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  max-width: 100px;
  flex: 0 0 100px;
  height: 100px;
}
@media screen and (max-width: 1680px) {
  .hmsec04 .content .item .icon {
    max-width: 90px;
    flex: 0 0 90px;
    height: 90px;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec04 .content .item .icon {
    max-width: 70px;
    flex: 0 0 70px;
    height: 70px;
  }
}
.hmsec04 .content .item .icon:before {
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  border: 1px dashed #fff;
  opacity: 0.5;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hmsec04 .content .item .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media screen and (max-width: 1680px) {
  .hmsec04 .content .item .icon img {
    width: 50%;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec04 .content .item .icon img {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .hmsec04 .content .item .icon img {
    width: 50%;
  }
}
.hmsec04 .content .item .txt {
  padding-left: 30px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .hmsec04 .content .item .txt {
    padding-left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec04 .content .item .txt h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .hmsec04 .row {
    --bs-gutter-x: 0;
  }
}
@media screen and (max-width: 1024px) {
  .hmsec04 .row .col-lg-7,
  .hmsec04 .row .col-lg-5 {
    width: 100%;
  }
}

.abtsec01 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .abtsec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .abtsec01 {
    padding: 50px 0 30px;
  }
}
.abtsec01 .vector {
  position: absolute;
  top: 0;
  left: -10%;
  z-index: -1;
  opacity: 0.1;
}

.abtsec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/about/03.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .abtsec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abtsec02 {
    padding: 30px 0;
    text-align: justify;
  }
}
.abtsec02 .promises {
  background-image: url(../images/about/04.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .abtsec02 .promises {
    padding: 30px;
  }
}
.abtsec02 .promises ul {
  display: flex;
  justify-content: space-between;
  position: relative;
  text-align: left;
  margin-bottom: 0;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .abtsec02 .promises ul {
    display: unset;
  }
}
.abtsec02 .promises ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1366px) {
  .abtsec02 .promises ul:before {
    left: -25px;
  }
}
@media screen and (max-width: 1280px) {
  .abtsec02 .promises ul:before {
    left: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .abtsec02 .promises ul:before {
    left: -250px;
    height: 100%;
  }
}
@media screen and (max-width: 991px) {
  .abtsec02 .promises ul:before {
    display: none;
  }
}
.abtsec02 .promises ul li {
  position: relative;
  padding: 20px;
  list-style-type: none;
  margin: 20px;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .abtsec02 .promises ul li {
    margin: 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .abtsec02 .promises ul li {
    margin: 0;
    padding: 5px;
  }
}
@media screen and (max-width: 991px) {
  .abtsec02 .promises ul li {
    text-align: unset;
  }
  .abtsec02 .promises ul li:before {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 600px) {
  .abtsec02 .promises ul li {
    padding-left: 25px;
  }
  .abtsec02 .promises ul li:before {
    left: 0 !important;
  }
}
.abtsec02 .promises ul li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  transform: translate(0, -50%);
  left: -15px;
  opacity: 0;
}

.abtsec03 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-lightgreen);
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .abtsec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abtsec03 {
    padding: 30px 0;
  }
}
.abtsec03 .vector {
  position: absolute;
  right: -7%;
  bottom: -10px;
  z-index: -1;
  opacity: 0.4;
}
.abtsec03 .txt {
  color: #fff;
}
.abtsec03 .txt ul {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .abtsec03 .txt ul {
    padding-left: 20px;
  }
}
.abtsec03 .txt ul li {
  margin: 15px 0;
}
@media screen and (max-width: 600px) {
  .abtsec03 .txt ul li {
    margin: 10px 0;
  }
}

.abtsec04 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-green);
}
@media screen and (max-width: 991px) {
  .abtsec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abtsec04 {
    padding: 30px 0;
  }
}
.abtsec04 .item {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 50px;
}
@media screen and (max-width: 600px) {
  .abtsec04 .item {
    text-align: unset;
    padding: 0;
  }
}
.abtsec04 .item.second:before {
  display: none;
}
.abtsec04 .item:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: -10px;
}
@media screen and (max-width: 991px) {
  .abtsec04 .item:before {
    width: 30%;
    height: 1px;
    top: unset;
    bottom: -35px;
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 600px) {
  .abtsec04 .item:before {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .abtsec04 .item .img img {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .abtsec04 .item .txt p {
    text-align: justify;
  }
}

.abtsec05 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .abtsec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abtsec05 {
    padding: 30px 0;
  }
}
.abtsec05 .item:hover .img:before {
  animation: shine 0.85s;
}
.abtsec05 .item:hover .img img {
  transform: scale(1.1);
}
.abtsec05 .item:hover .txt:after {
  height: 100%;
}
.abtsec05 .item .img {
  position: relative;
  overflow: hidden;
}
.abtsec05 .item .img:before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.abtsec05 .item .img img {
  transition: all 3s ease;
}
.abtsec05 .item .txt {
  position: relative;
  padding: 10px 20px;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .abtsec05 .item .txt {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 600px) {
  .abtsec05 .item .txt {
    padding: 10px 20px;
  }
}
.abtsec05 .item .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme-lightgreen);
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.abtsec05 .item .txt:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-green);
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .abtsec05 .item .txt h4 {
    font-size: 20px;
  }
}

.projectsec01 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-green);
  color: #fff;
}
@media screen and (max-width: 991px) {
  .projectsec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .projectsec01 {
    padding: 50px 0 30px;
  }
}
.projectsec01 .item .hover-effect {
  position: relative;
}
.projectsec01 .item .hover-effect:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.projectsec01 .item:hover .img:before {
  opacity: 1;
}
.projectsec01 .txt {
  padding: 0 150px;
}
@media screen and (max-width: 991px) {
  .projectsec01 .txt {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .projectsec01 .txt {
    padding: 0;
  }
}
.projectsec01 .nav-pills {
  position: relative;
  justify-content: center;
}
.projectsec01 .nav-pills:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .projectsec01 .nav-pills:before {
    width: 100%;
  }
}
.projectsec01 .nav-pills .nav-link {
  position: relative;
  color: #fff;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .projectsec01 .nav-pills .nav-link {
    padding: 15px;
    font-size: 14px;
  }
}
.projectsec01 .nav-pills .nav-link.active {
  background-color: transparent;
}
.projectsec01 .nav-pills .nav-link.active:after {
  width: 100%;
}
.projectsec01 .nav-pills .nav-link:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  background-color: #fff;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}
.projectsec01 .nav-pills .nav-link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #fff;
  bottom: 0;
  transition: all 0.6s ease;
}
.projectsec01 .nav-pills .nav-link.first:before {
  display: none;
}
.projectsec01 .nav-pills .nav-link.first:after {
  right: 0;
}
.projectsec01 .nav-pills .nav-link.second:after {
  left: 0;
}
.projectsec01 .tab-content .item .content {
  background-color: #fff;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 991px) {
  .projectsec01 .tab-content .item .content {
    padding: 10px;
  }
}
.projectsec01 .tab-content .item .content img {
  width: 70%;
}

.inner-page-02 {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .inner-page-02 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .inner-page-02 {
    padding: 50px 0 30px;
  }
}
.inner-page-02 .left-vector,
.inner-page-02 .right-vector {
  position: absolute;
  bottom: -10px;
  z-index: -1;
  opacity: 0.1;
}
.inner-page-02 .left-vector {
  left: 0;
}
.inner-page-02 .right-vector {
  right: 0;
}
.inner-page-02 ul li {
  padding: 5px 0;
}
.inner-page-02 .img.zoom {
  position: relative;
}
.inner-page-02 .img.zoom:hover .icon {
  opacity: 1;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1440px) {
  .inner-page-02 .img.zoom:hover .icon {
    width: 40px;
    height: 40px;
  }
}
.inner-page-02 .img.zoom:hover .icon i {
  transform: translate(-50%, -50%) rotate(360deg);
}
.inner-page-02 .img.zoom .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-lightgreen);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .inner-page-02 .img.zoom .icon {
    width: 50px;
    height: 50px;
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .inner-page-02 .img.zoom .icon {
    width: 40px;
    height: 40px;
  }
}
.inner-page-02 .img.zoom .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .inner-page-02 .img.zoom .icon i {
    font-size: 18px;
  }
}

.inner-page-03 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-lightgreen);
}
@media screen and (max-width: 991px) {
  .inner-page-03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-page-03 {
    padding: 30px 0;
  }
}
.inner-page-03 .nav-pills {
  position: relative;
  justify-content: center;
}
.inner-page-03 .nav-pills:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: 0;
}
.inner-page-03 .nav-pills .nav-item {
  width: 22%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .inner-page-03 .nav-pills .nav-item {
    width: 25%;
  }
}
.inner-page-03 .nav-pills .nav-item .nav-link {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .inner-page-03 .nav-pills .nav-item .nav-link {
    font-size: 14px;
    line-height: 18px;
  }
}
.inner-page-03 .nav-pills .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  transition: all 0.6s ease;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .inner-page-03 .nav-pills .nav-item .nav-link:before {
    height: 100%;
    bottom: 1px;
    transition: all 0.4s ease;
  }
}
.inner-page-03 .nav-pills .nav-item .nav-link:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 0;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  transition: all 0.2s ease;
  z-index: -1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.inner-page-03 .nav-pills .nav-item .nav-link.active {
  background-color: unset;
}
@media screen and (max-width: 600px) {
  .inner-page-03 .nav-pills .nav-item .nav-link.active {
    color: var(--theme-green);
  }
}
.inner-page-03 .nav-pills .nav-item .nav-link.active:before {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .inner-page-03 .nav-pills .nav-item .nav-link.active:after {
    height: 10px;
    bottom: -9px;
  }
}
.inner-page-03 .title {
  background-color: #fff;
  color: var(--theme-green);
  font-family: var(--jost-medium);
  padding: 10px;
  margin-top: 10px;
  display: none;
}
@media screen and (max-width: 600px) {
  .inner-page-03 .title {
    display: block;
    padding: 5px 10px;
  }
}
.inner-page-03 .item {
  position: relative;
}
.inner-page-03 .item:hover .img:before {
  opacity: 1;
}
.inner-page-03 .item:hover .icon {
  opacity: 1;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1440px) {
  .inner-page-03 .item:hover .icon {
    width: 40px;
    height: 40px;
  }
}
.inner-page-03 .item:hover .icon i {
  transform: translate(-50%, -50%) rotate(360deg);
}
.inner-page-03 .item .img {
  position: relative;
}
.inner-page-03 .item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.6s ease;
}
.inner-page-03 .item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-lightgreen);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .inner-page-03 .item .icon {
    width: 100px;
    height: 100px;
  }
}
.inner-page-03 .item .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .inner-page-03 .item .icon i {
    font-size: 18px;
  }
}
.inner-page-03 .item .txt {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .inner-page-03 .item .txt {
    padding: 5px;
  }
}
@media screen and (max-width: 600px) {
  .inner-page-03 .item .txt {
    padding: 10px;
    color: var(--theme-green);
  }
}
.inner-page-03 a {
  color: #000;
  text-decoration: none;
}

.inner-page-04 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-green);
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .inner-page-04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-page-04 {
    padding: 30px 0;
  }
}
.inner-page-04 .vector {
  position: absolute;
  left: -100px;
  bottom: -10px;
  z-index: -1;
  opacity: 0.2;
  transform: rotate(180deg);
}
.inner-page-04 ul li {
  margin: 10px 0;
}
.inner-page-04 ul li::marker {
  color: #fff;
}
.inner-page-04 .owl-nav .owl-prev:hover i,
.inner-page-04 .owl-nav .owl-next:hover i {
  color: #000;
}
.inner-page-04 .owl-nav .owl-prev:before,
.inner-page-04 .owl-nav .owl-next:before {
  border: 1px solid #fff;
}
.inner-page-04 .owl-nav .owl-prev:after,
.inner-page-04 .owl-nav .owl-next:after {
  background-color: #fff;
}
.inner-page-04 .item .icon {
  width: 15%;
}

.inner-page-05 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .inner-page-05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .inner-page-05 {
    padding: 30px 0;
  }
}
.inner-page-05 .item {
  position: relative;
}
.inner-page-05 .item:hover .img:before {
  opacity: 1;
}
.inner-page-05 .item:hover .icon {
  opacity: 1;
  width: 50px;
  height: 50px;
}
.inner-page-05 .item:hover .icon i {
  transform: translate(-50%, -50%) rotate(360deg);
}
.inner-page-05 .item .img {
  position: relative;
  border: 1px solid var(--theme-lightgreen);
}
.inner-page-05 .item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.6s ease;
}
.inner-page-05 .item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-lightgreen);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .inner-page-05 .item .icon {
    width: 100px;
    height: 100px;
  }
}
.inner-page-05 .item .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.6s ease;
}
.inner-page-05 .item .txt {
  font-family: var(--jost-medium);
  text-transform: uppercase;
  padding: 10px;
  text-align: center;
  margin-bottom: 0;
}
.inner-page-05 a {
  color: #000;
  text-decoration: none;
}
.inner-page-05 .owl-nav {
  display: flex;
  justify-content: center;
}
.inner-page-05 .owl-nav .owl-prev:hover i,
.inner-page-05 .owl-nav .owl-next:hover i {
  color: #fff;
}
.inner-page-05 .owl-nav .owl-prev:before,
.inner-page-05 .owl-nav .owl-next:before {
  border: 1px solid var(--theme-green);
}
.inner-page-05 .owl-nav .owl-prev:after,
.inner-page-05 .owl-nav .owl-next:after {
  background-color: var(--theme-green);
}
.inner-page-05 .owl-nav .owl-prev i,
.inner-page-05 .owl-nav .owl-next i {
  color: var(--theme-green);
}

.gallerysec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .gallerysec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .gallerysec01 {
    padding: 50px 0 30px;
  }
}
.gallerysec01 .vector {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: -1;
  opacity: 0.2;
}
.gallerysec01 .txt {
  padding: 0 150px;
}
@media screen and (max-width: 991px) {
  .gallerysec01 .txt {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .gallerysec01 .txt {
    padding: 0;
  }
}
.gallerysec01 .nav-pills {
  position: relative;
  justify-content: center;
}
.gallerysec01 .nav-pills:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  background-color: var(--theme-green);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .gallerysec01 .nav-pills:before {
    width: 100%;
  }
}
.gallerysec01 .nav-pills .nav-link {
  position: relative;
  color: var(--theme-green);
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .gallerysec01 .nav-pills .nav-link {
    padding: 15px;
    font-size: 14px;
  }
}
.gallerysec01 .nav-pills .nav-link.active {
  background-color: transparent;
}
.gallerysec01 .nav-pills .nav-link.active:after {
  width: 100%;
}
.gallerysec01 .nav-pills .nav-link:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  background-color: var(--theme-green);
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}
.gallerysec01 .nav-pills .nav-link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--theme-green);
  bottom: 0;
  transition: all 0.6s ease;
}
.gallerysec01 .nav-pills .nav-link.first:before {
  display: none;
}
.gallerysec01 .nav-pills .nav-link.first:after {
  right: 0;
}
.gallerysec01 .nav-pills .nav-link.second:after {
  left: 0;
}
.gallerysec01 .tab-content a {
  text-decoration: none;
  cursor: pointer;
}
.gallerysec01 .tab-content .item {
  position: relative;
}
.gallerysec01 .tab-content .item:hover .icon {
  background-color: var(--theme-lightgreen);
}
.gallerysec01 .tab-content .item:hover .icon i {
  color: #fff;
}
.gallerysec01 .tab-content .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.gallerysec01 .tab-content .item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 50px;
  height: 50px;
  border: 1px solid #a5a5a5;
  border-radius: 50%;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .gallerysec01 .tab-content .item .icon {
    width: 50px;
    height: 50px;
  }
}
.gallerysec01 .tab-content .item .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--theme-lightgreen);
  font-size: 18px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1440px) {
  .gallerysec01 .tab-content .item .icon i {
    font-size: 16px;
  }
}
.gallerysec01 .tab-content .title {
  background-color: var(--theme-light);
  color: #fff;
  padding: 10px;
  text-align: center;
}
.gallerysec01 .tab-content .title p {
  font-family: var(--jost-medium);
  text-transform: uppercase;
}
@media screen and (max-width: 1280px) {
  .gallerysec01 .tab-content .title p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .gallerysec01 .tab-content .title p {
    font-size: unset;
  }
}

.contactsec01 {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-green);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .contactsec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 {
    padding: 50px 0 30px;
  }
}
.contactsec01 .vector {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: -1;
  opacity: 0.2;
}
.contactsec01 .form-container {
  background-color: #fff;
  padding: 70px;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .form-container {
    padding: 35px 70px 35px 35px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .form-container {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 .form-container {
    padding: 30px;
  }
}
.contactsec01 .form-container h4 {
  color: var(--theme-green);
  font-family: var(--jost-medium);
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .form-container h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .form-container h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 .form-container h4 {
    font-size: 20px;
  }
}
.contactsec01 .form-container .input {
  border-radius: 0;
  margin-top: 40px;
  padding: 10px;
  border: 1px solid #c7c7c7;
  resize: none;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .form-container .input {
    margin-top: 30px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .form-container .input {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 .form-container .input {
    padding: 5px 10px;
    margin-top: 20px;
  }
}
.contactsec01 .form-container .input:focus {
  box-shadow: none;
}
.contactsec01 .form-container .input::-moz-placeholder {
  font-size: 14px;
  color: #838383;
}
.contactsec01 .form-container .input::placeholder {
  font-size: 14px;
  color: #838383;
}
.contactsec01 .contact-details {
  position: relative;
  background-color: var(--theme-light);
  color: #fff;
  padding: 50px;
  margin-left: -60px;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .contact-details {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .contact-details {
    margin-left: 0;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 .contact-details {
    padding: 30px;
  }
}
.contactsec01 .contact-details:before {
  position: absolute;
  content: "";
  width: 37px;
  height: 20px;
  background-color: #033548;
  top: -20px;
  left: 0;
  clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 991px) {
  .contactsec01 .contact-details:before {
    display: none;
  }
}
.contactsec01 .contact-details:after {
  position: absolute;
  content: "";
  width: 37px;
  height: 20px;
  background-color: #033548;
  bottom: -20px;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 50%);
}
@media screen and (max-width: 991px) {
  .contactsec01 .contact-details:after {
    display: none;
  }
}
.contactsec01 .contact-details h4 {
  font-family: var(--jost-medium);
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .contact-details h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .contact-details h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 .contact-details h4 {
    font-size: 20px;
  }
}
.contactsec01 .contact-details .item {
  position: relative;
  margin-top: 70px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .contact-details .item {
    margin-top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .contact-details .item {
    margin-top: 50px;
  }
}
.contactsec01 .contact-details .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: -30px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .contact-details .item:before {
    top: -18px;
  }
}
@media screen and (max-width: 991px) {
  .contactsec01 .contact-details .item:before {
    top: -25px;
  }
}
.contactsec01 .contact-details .item.first {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .contactsec01 .contact-details .item.first {
    margin-top: 25px;
  }
}
.contactsec01 .contact-details .item.first:before {
  display: none;
}
.contactsec01 .contact-details .item p {
  padding-left: 20px;
}

@media screen and (max-width: 600px) {
  footer {
    margin-bottom: 57px;
  }
}
footer .footer {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media screen and (max-width: 991px) {
  footer .footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  footer .footer {
    padding: 30px 0;
  }
}
footer .footer .footer-head {
  color: var(--theme-green);
  font-family: var(--jost-medium);
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  footer .footer .footer-head {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1440px) {
  footer .footer .footer-head {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer .footer-head {
    font-size: 18px;
  }
}
footer .footer ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
footer .footer ul li a {
  position: relative;
  color: #000;
  text-decoration: none;
  padding: 0 5px;
}
footer .footer ul li a:hover:before {
  width: 100%;
}
footer .footer ul li a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--theme-green);
  left: 0;
  bottom: -2px;
  transition: all 0.6s ease;
}
footer .footer ul.social-media li {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 10px;
  transition: all 0.6s ease;
}
footer .footer ul.social-media li:hover {
  cursor: pointer;
}
footer .footer ul.social-media li:hover i {
  transform: rotate(360deg);
  color: #fff;
}
footer .footer ul.social-media li:hover:before {
  width: 0;
  height: 0;
}
footer .footer ul.social-media li:hover:after {
  width: 40px;
  height: 40px;
}
footer .footer ul.social-media li:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid var(--theme-green);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}
footer .footer ul.social-media li:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  background-color: var(--theme-green);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}
footer .footer ul.social-media li a {
  padding: 0;
}
footer .footer ul.social-media li a:before {
  display: none;
}
footer .footer ul.social-media li i {
  color: var(--theme-green);
  transition: all 0.6s ease;
}
footer .copyright {
  background-color: var(--theme-lightgreen);
  padding: 10px 0;
}
footer .copyright .txt {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer .copyright .txt {
    display: unset;
    justify-content: unset;
  }
}
@media screen and (max-width: 600px) {
  footer .copyright .txt p {
    font-size: 12px;
  }
}
footer .copyright .txt a {
  color: #fff;
}

.commonsec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .commonsec01 {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .commonsec01 {
    padding: 50px 0 30px;
  }
}
.commonsec01 .content {
  padding: 0 200px;
}
@media screen and (max-width: 1440px) {
  .commonsec01 .content {
    padding: 0 100px;
  }
}
@media screen and (max-width: 991px) {
  .commonsec01 .content {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .commonsec01 .content {
    padding: 0;
  }
}
.commonsec01 .content h4 {
  font-family: var(--jost-medium);
}

#thank-you {
  background-color: var(--theme-lightgreen);
  height: 100vh;
  display: flex;
  align-items: center;
}
#thank-you h3 {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
}
#thank-you p {
  color: #fff;
}

.popup-form .modal-content {
  border-radius: 0;
}
.popup-form .modal-content .modal-header {
  background-color: var(--theme-lightgreen);
  border-radius: 0;
  color: #fff;
  padding: 15px 30px;
}
.popup-form .modal-content .modal-header .theme-btn-close {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 30px;
  top: 20px;
  color: #fff;
}
.popup-form .modal-content .modal-header .modal-title {
  font-size: 20px;
  font-family: var(--jost-medium);
}
.popup-form .modal-content .modal-body {
  position: relative;
  padding: 30px;
  overflow: hidden;
  z-index: 1;
}
.popup-form .modal-content .modal-body .vector {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: -1;
}
.popup-form .modal-content .modal-body input {
  border-radius: 0;
  padding: 10px;
  border: 1px solid #787878;
  background-color: transparent;
}
.popup-form .modal-content .modal-body input:focus {
  box-shadow: none;
}
.popup-form .modal-content .modal-body input::-moz-placeholder {
  font-size: 12px;
}
.popup-form .modal-content .modal-body input::placeholder {
  font-size: 12px;
}

.float-icons {
  position: fixed;
  top: 200px;
  right: 10px;
  z-index: 99;
}
@media screen and (max-width: 600px) {
  .float-icons {
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
  }
}
.float-icons ul {
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
}
.float-icons ul li {
  background-color: var(--theme-green);
  list-style-type: none;
  border: 1px solid #fff;
  border-radius: 50px;
  margin: 10px 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li {
    border-radius: 0;
    margin: -1px;
    display: inline-block;
    width: 33.1%;
    border: unset;
    text-align: center;
    padding: 5px;
  }
}
@media screen and (max-width: 400px) {
  .float-icons ul li {
    width: 33%;
  }
}
.float-icons ul li:hover {
  margin-left: -130px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover {
    margin-left: -1px;
  }
}
.float-icons ul li:hover p {
  opacity: 1;
  transition: all 0.2s ease;
  transition-delay: 0.2s;
  left: -80px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover p {
    opacity: unset;
    transition: unset;
    transition-delay: unset;
  }
}
.float-icons ul li:hover .img {
  transform: rotate(-360deg);
}
.float-icons ul li:hover .img:before {
  display: block;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover .img:before {
    display: none;
  }
}
.float-icons ul li:first-child {
  margin-top: 0;
}
.float-icons ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a {
    display: unset;
    align-items: unset;
    padding: 0;
  }
}
.float-icons ul li a .img {
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a .img {
    transform: scale(0.8);
  }
}
.float-icons ul li a .img:before {
  position: absolute;
  content: "";
  height: 150%;
  width: 150%;
  background-color: var(--theme-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  display: none;
  transition: all 0.6s ease;
}
.float-icons ul li a p {
  position: absolute;
  color: #fff;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a p {
    position: unset;
    opacity: 1;
    font-size: 14px;
  }
}

.m-backtotop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-green);
  border-radius: 25px;
  text-align: center;
  border: 1px solid #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1440px) {
  .m-backtotop {
    height: 40px;
    width: 40px;
  }
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .m-backtotop.active {
    bottom: 60px;
  }
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  color: #fff;
}
.m-backtotop > div.text {
  text-transform: uppercase;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
  color: #fff;
}
.m-backtotop:hover {
  bottom: 20px;
  cursor: pointer;
  background-color: var(--theme-lightgreen);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .m-backtotop:hover {
    bottom: 65px;
  }
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

@keyframes zoom-in {
  100% {
    transform: scale(1.2);
  }
}
@keyframes fadeLeft {
  0% {
    left: -100%;
  }
}
@keyframes fadeRight {
  0% {
    right: -100%;
  }
}
@keyframes ring {
  20% {
    transform: rotate(45deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes scrollDown {
  50% {
    top: 50%;
  }
}/*# sourceMappingURL=style.css.map */