:root {
  /*--blue1: #010406;
  --blue2: #02080d;
  --blue3: #030c15;
  --blue4: #04101c;
  --blue5: #051523;
  --blue6: #06192a;
  --blue7: #071d31;
  --blue8: #082138;
  --blue9: #09253f;
  --blue10: #0b2a46;
  --blue11: #233f58;
  --blue12: #3b546b;
  --blue13: #54697d;
  --blue14: #6c7f90;
  --blue15: #8594a2;
  --blue16: #9da9b5;
  --blue17: #b5bfc7;
  --blue18: #ced4da;
  --blue19: #e6e9ec;*/

  --blue1: #00080d;
  --blue2: #00101a;
  --blue3: #001827;
  --blue4: #002135;
  --blue5: #002942;
  --blue6: #00314f;
  --blue7: #003a5d;
  --blue8: #00426a;
  --blue9: #004a77;
  --blue10: #005385;
  --blue11: #196491;
  --blue12: #33759d;
  --blue13: #4c86a9;
  --blue14: #6697b5;
  --blue15: #7fa9c2;
  --blue16: #99bace;
  --blue17: #b2cbda;
  --blue18: #ccdce6;
  --blue19: #e5edf2;
  --blue20: #f4fbff;

  /*--green1: #000402;
  --green2: #000905;
  --green3: #000d09;
  --green4: #00120c;
  --green5: #001b12;
  --green6: #002015;
  --green7: #002418;
  --green8: #00291b;
  --green9: #002e1e;
  --green10: #194234;
  --green11: #33574b;
  --green12: #4c6c61;
  --green13: #668178;
  --green14: #7f968e;
  --green15: #99aba5;
  --green16: #b2c0bb;
  --green17: #ccd5d2;
  --green18: #e6e9ec;
  --green19: #f5f6f7;*/

  --green1: #0c1206;
  --green2: #18250d;
  --green3: #253814;
  --green4: #324b1a;
  --green5: #3e5e21;
  --green6: #4b7128;
  --green7: #57842e;
  --green8: #649735;
  --green9: #70aa3c;
  --green10: #7dbd43;
  --green11: #8ac355;
  --green12: #97ca68;
  --green13: #a4d07b;
  --green14: #b1d78e;
  --green15: #bedea1;
  --green16: #cbe4b3;
  --green17: #d8ebc6;
  --green18: #e5f1d9;
  --green19: #f2f8ec;
  --green20: #fbfff7;
}
.site-margin {
  max-width: 1640px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

li {
  list-style-type: none;
}
.animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animation.animated {
  opacity: 1;
  transform: translateY(0);
}

.header-top {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  z-index: 1;
}
.header-top .ht-box {
  height: 50px;
  display: inline-flex;
  align-items: center;
}
.header-top .ht-box svg {
  color: var(--blue5);
  width: 16px;
  margin-right: 5px;
}
.header-top .ht-right {
  justify-content: end;
}

.header-social-media {
  display: inline-flex;
  justify-content: end;
  margin: 0px;
  padding: 0px;
}
.header-social-media li {
  margin-left: 15px;
}
.header-social-media li a {
  color: var(--blue5);
  transition: 0.4s ease-in-out;
}
.header-social-media li a svg {
  width: 16px;
}

.nav-header-menu {
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 3;
  top: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px) !important;
  padding: 0;
  border-radius: 10px;
  border: solid 1px var(--blue19);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.4s ease-in-out;
}
.nav-header-menu .logo {
  width: 120px;
}
.scrolled-menu {
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 0px;
}

.nav-header-menu li {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
}

.nav-header-menu .nav-item .nav-link {
  color: var(--blue5);
  font-weight: 500;
  font-size: 16px;
  border-radius: 20px;
  text-align: center;
  padding: 5px 20px;
  font-family: "Outfit", sans-serif;
  transition: 0.6s ease-in-out;
  overflow: hidden;
  position: relative;
  font-style: normal;
}

.nav-header-menu .nav-item .nav-link.active {
  font-weight: 700;
  color: var(--blue5) !important;
}

.nav-header-menu .nav-item .nav-link:hover {
  color: var(--blue19);
}
.nav-header-menu .nav-item .nav-link.active:hover {
  color: var(--blue19) !important;
}
.nav-header-menu .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: transparent;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 20px;
}

.nav-header-menu .nav-item .nav-link:hover::before {
  left: 0;
  width: 100%;
  background: var(--blue5);
}
.language-menu-container {
  position: relative;
  display: inline-block;
}

.current-language {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: auto;
}

.current-language:hover {
  background: #e9ecef;
  border-color: #1a2a6c;
}

.current-language img {
  width: 24px;
  height: 18px;
  /*margin-right: 10px;*/
  border-radius: 2px;
}

.current-language span {
  font-weight: 500;
  color: #333;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.language-menu-container:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f1f1;
}

.language-option:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.language-option:hover {
  background: #f8f9fa;
}

.language-option img {
  width: 24px;
  height: 18px;
  margin-right: 10px;
  border-radius: 2px;
}

.language-option span {
  color: #333;
  font-weight: 500;
}

.mega-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0px;
}
.mega-btn:focus {
  background-color: transparent;
}
.button-solids {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: auto 0;
  width: 34px;
  height: 34px;
}

.mega-menu-btn:hover .line-1 {
  width: 32px;
}

.mega-menu-btn:hover .line-2 {
  width: 24px;
}

.mega-menu-btn:hover .line-3 {
  width: 10px;
}

.button-solids .line {
  height: 1px;
  background-color: var(--blue4);
  transition: 0.3s ease-in-out;
}

.button-solids .line-1 {
  width: 20px;
}

.button-solids .line-2 {
  width: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.button-solids .line-3 {
  width: 24px;
}
.mmbtn-mobile {
  display: none;
}
.home-banner {
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0px;
  left: 0px;
  background: linear-gradient(to bottom, #436d9426, #ffffff);
  z-index: 0;
  overflow: hidden;
}
.home-banner-animation {
  position: absolute;
  left: 0px;
  top: 15%;
  width: 30vw;
  z-index: 3;
  transform: rotate(40deg);
}
.home-banner-text {
  font-family: "Outfit", sans-serif !important;
  font-style: normal;
  position: absolute;
  font-size: 400px;
  color: var(--blue19);
  font-weight: 900;
  bottom: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 0;
  line-height: 300px;
}

.home-banner-container {
  position: absolute;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.home-banner-title {
  position: relative;
  z-index: 2;
}
.home-banner-image {
  position: absolute;
  z-index: 2;
  width: 70%;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.h1-box {
  position: relative;
  margin-top: 200px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.mega-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top right,
    var(--blue20) 50%,
    var(--blue19) 50%
  );
  color: white;
  z-index: 11;
  padding-top: 79px;
  animation: backanimation 10s linear infinite;
}
.mm-lang-box {
  display: none;
}
.mega-menu-logo {
  width: 120px;
}
.menu-service-menu {
  padding-left: 0px !important;
}
.menu-service-menu li {
  margin-bottom: 15px;
}
.menu-service-box {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--blue19);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.3s ease-in-out;
  width: 100%;
}
.menu-service-box:hover {
  box-shadow: rgba(149, 157, 165, 0.8) 0px 8px 24px;
}
.img-box {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 8px;
}
.menu-service-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.menu-service-box:hover img {
  transform: scale(1.1);
}
.menu-service-box span {
  margin-left: 5px;
}
.mmt-right {
  display: inline-flex;
  align-items: center;
  justify-content: end;
}
.menu-contact-content-list {
  padding-left: 0px !important;
}
.menu-contact-content-list li a {
  color: var(--blue5);
}
.menu-map {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  height: 300px;
  width: 100%;
}
.menu-map iframe {
  width: 100%;
  height: 100%;
}
.close-menu {
  background: none;
  border: none;
  color: var(--blue3);
  font-size: 30px;
  cursor: pointer;
}
.mm-center {
  margin-top: 50px;
}
.mega-menu-left-menu {
  padding-left: 0px;
}
.mega-menu-left-menu li {
  margin-bottom: 10px;
}
.mega-menu-left-menu li a {
  padding: 5px 0px;
  display: block;
  color: var(--blue5);
  font-size: 18px;
  transition: 0.3s ease-in-out;
}
.mega-menu-left-menu li a:hover {
  padding: 5px 5px;
  color: var(--blue10);
}
.mm-bottom {
  margin-top: 25px;
}
.mega-menu-animation {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 20vw;
}
.mega-menu-social-links a {
  color: var(--blue5);
  border: solid 1px var(--blue10);
  border-radius: 100%;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.mega-menu-social-links a:hover {
  border: solid 1px transparent;
  background-color: var(--blue10);
  color: #ffffff;
}
.mega-menu-social-links a svg {
  width: 40px;
}
.home-banner .circle-box {
  position: absolute;
  right: 5%;
  bottom: 25%;
  width: 200px;
  height: 200px;
  background-color: var(--green17);
  border-radius: 50%;
  z-index: 2;
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: solid 1px var(--green5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.inner-circle svg {
  width: 50px;
  height: 50px;
  color: var(--green5);
}

.text-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: rotate 10s linear infinite;
}

.text-path-svg text {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  fill: var(--green4);
  letter-spacing: 9px;
}

.text-path-svg path {
  fill: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.banner-1 {
  margin-top: 50px;
}
.banner-1 .row {
  height: 500px;
}
.banner-1 img {
  border-radius: 20px;
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.banner-1-right-box {
  display: inline-flex;
  align-items: center;
  height: 500px;
  width: 100%;
}
.b1rb-left {
  width: 100px;
  height: 100%;
  background-color: var(--green12);
  border-radius: 20px 0px 0px 20px;
}
.b1rb-right {
  width: inherit;
  height: 100%;
  background-color: var(--green16);
  border-radius: 0px 20px 20px 0px;
  padding: 20px;
}
.banner-2 {
  margin-top: 30px;
}
.b2-mini-title {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
.b2-mini-title p {
  margin-bottom: 0;
  margin-left: 10px;
  font-weight: 300;
}
.b2-mini-title svg {
  width: 20px;
  color: #ffea00;
}
.b-2-img-box {
  display: block;
  position: relative;
}
.b-2-img-box .img-1 {
  margin-left: auto;
  height: 400px;
  width: 40%;
  object-fit: cover;
  border-radius: 20px 20px 0px 20px;
}
.b-2-count-list-1 {
  position: absolute;
  right: 0px;
  top: 70px;
  width: 60%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.b-2-check-list {
  padding-left: 0px;
  display: block;
}
.b-2-check-list li {
  display: inline;
  margin-bottom: 50px;
}
.b-2-count-list-2 {
  position: absolute;
  left: 0px;
  bottom: 70px;
  width: 40%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.counter-box {
  text-align: center;
  width: 100%;
}
.count-number {
  font-size: 50px;
  font-weight: 600;
  color: var(--blue7);
  display: block;
}

.counter-box p {
  font-size: 18px;
  color: var(--blue5);
}
.b-2-gradient-text {
  position: absolute;
  bottom: 80px;
  left: 10px;
}
.b-2-img-box .img-2 {
  display: block;
  height: 300px;
  object-fit: cover;
  margin-left: auto;
  width: 60%;
  position: relative;
  border-radius: 0px 0px 0px 20px;
}
.b-2-right {
  position: relative;
  padding-left: 0px;
}
.b-2-right a {
  margin-top: 25px;
}
.b-2-right .img-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 500px;
  border-radius: 20px 20px 20px 0px;
  object-fit: cover;
}

/*.site-carousel {
  width: 100%;
  overflow-x: auto;
  margin: 3em auto;
  display: flex;
  gap: 1em;
  scroll-behavior: smooth;
  anchor-name: --site-carousel;
  scroll-snap-type: x mandatory;
  scroll-marker-group: after;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.site-carousel.is-dragging {
  cursor: grabbing;
}
.site-carousel::scroll-marker-group {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.site-carousel .card::scroll-marker {
  content: "";
  height: 1em;
  width: 1em;
  background-color: var(--blue15);
  border-radius: 50%;
}
.site-carousel .card:scroll-marker:target-current {
  background-color: var(--blue10);
}
.site-carousel::-webkit-scrollbar {
  display: none;
}
.site-carousel::scroll-button(right),
.site-carousel::scroll-button(left) {
  content: ">";
  border: none;
  background-color: var(--blue11);
  font-size: 16px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: fixed;
  position-anchor: --site-carousel;
  position-area: right center;
  translate: -50%;
}
.site-carousel::scroll-button(left) {
  content: "<";
  position-area: left center;
  translate: 50%;
}
.site-carousel::scroll-button(right):disabled,
.site-carousel::scroll-button(left):disabled {
  opacity: 0.5;
  cursor: auto;
}
.site-carousel .card {
  scroll-snap-align: start;
  flex: 0 0 20em;
  aspect-ratio: 5 / 3;
  background-color: var(--blue16);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}*/
.banner-3 {
  margin-top: 50px;
}
#serviceCarousel {
  --f-carousel-slide-height: 100%;
  --f-carousel-spacing: 10px;
  --f-carousel-slide-bg: var(--blue20);

  --f-carousel-gap: 8px;
  --f-carousel-slide-width: calc((100% - 16px) / 3);
  --f-arrow-pos: 10px;

  --f-arrow-width: 38px;
  --f-arrow-height: 38px;

  --f-arrow-svg-width: 16px;
  --f-arrow-svg-height: 16px;
  --f-arrow-svg-stroke-width: 2.5;

  --f-arrow-color: #475569;
  --f-arrow-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%),
    0 3px 7px -3px rgb(0 0 0 / 30%);

  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #fff;
  --f-arrow-hover-bg: #f9f9f9;
  --f-arrow-active-bg: #f0f0f0;
}

#serviceCarousel .f-carousel-slide {
  width: 100%;
}
#serviceCarousel .f-carousel__slide {
  padding: 25px;
  display: block;
  border-radius: 20px;
}
#serviceCarousel .f-carousel__slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}
.service-carousel p {
  margin-top: 20px;
}

.service-carousel a {
  margin-top: 15px;
}
.banner-4 {
  margin-top: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
@supports (-webkit-touch-callout: none) {
  .banner-4 {
    background-attachment: scroll;
    position: relative;
  }
}
.banner-4 .container-fluid {
  position: relative;
  z-index: 1;
}
.banner-4 .row {
  height: 500px;
}
.b-4-left {
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.overlay-2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-color: #22221c62;
  mix-blend-mode: multiply;
}

.b-4-right {
  padding: 30px;
  height: 100%;
}
.b-4-r-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
  background-color: #ffffff7b;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: end;
}
.b-4-r-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-5 {
  margin-top: 50px;
}
.referance-carousel-box {
  background-color: var(--blue20);
  padding: 0px;
}
#referanceCarousel {
  --f-carousel-slide-height: 100%;
  --f-carousel-spacing: 10px;

  --f-carousel-gap: 8px;
  --f-carousel-slide-width: calc((100% - 16px) / 6);
  --f-arrow-pos: 10px;

  --f-arrow-width: 38px;
  --f-arrow-height: 38px;

  --f-arrow-svg-width: 16px;
  --f-arrow-svg-height: 16px;
  --f-arrow-svg-stroke-width: 2.5;

  --f-arrow-color: #475569;
  --f-arrow-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%),
    0 3px 7px -3px rgb(0 0 0 / 30%);

  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #fff;
  --f-arrow-hover-bg: #f9f9f9;
  --f-arrow-active-bg: #f0f0f0;
}

#referanceCarousel .f-carousel-slide {
  width: 100%;
}
#referanceCarousel .f-carousel__slide {
  height: 150px;
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
#referanceCarousel .f-carousel__slide img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}
#referanceCarousel .f-carousel__slide:hover img {
  filter: grayscale(0%);
}
.banner-6 {
  margin-top: 50px;
}
.banner-6 .col-xxl-3 {
  margin-bottom: 25px;
}
.banner-6 .card {
  border-radius: 16px;
  border: 0px !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

.banner-6 .card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.banner-6 .card-title {
  color: var(--blue5);
}

.banner-6 .card-footer {
  background-color: #ffffff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  display: inline-flex;
  align-items: center;
}

.footer-custom {
  background: var(--blue19);
  color: var(--blue5);
}

.footer-custom a {
  color: var(--blue5);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.footer-custom a:hover {
  color: var(--blue10);
}

.footer-custom .footer-logo-area {
  margin-bottom: 2rem;
  align-items: center;
}

.footer-custom .footer-logo-area img {
  max-width: 150px;
  height: auto;
}

.footer-custom .btn-social {
  color: var(--blue5);
  border: 1px solid #6c757d;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 50%;
}
.footer-custom svg {
  width: 30px;
  color: var(--blue5);
}
.footer-custom .btn-social:hover {
  background-color: var(--blue11);
  border-color: var(--blue5);
  color: #fff;
}

.footer-custom .services-grid .service-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--blue18);
  border-radius: 5px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-custom .services-grid .service-item:hover {
  background-color: var(--blue20);
}

.footer-custom .services-grid .service-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
}

.footer-custom .services-grid .service-item span {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-custom a.text-white-50:hover {
  color: #fff !important;
  padding-left: 5px;
}

.footer-custom .fa-angle-right {
  font-size: 1.25rem;
  line-height: 1;
}

.footer-custom h5 {
  font-weight: bold;
}

.footer-custom .copyright {
  background: var(--blue18);
}

.footer-custom .copyright a {
  color: var(--blue5);
  text-decoration: none;
}

.footer-custom .copyright a:hover {
  color: var(--blue10);
}

.footer-custom .footer-menu a {
  color: var(--blue5);
  text-decoration: none;
  padding: 0 10px;
  border-right: 1px solid var(--blue5);
}

.footer-custom .footer-menu a:last-child {
  border-right: none;
}

.page-banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.page-banner .col-md-12 {
  height: 450px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.page-banner-box {
  display: block;
  width: 100%;
  text-align: center;
}
.page-banner-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  width: 100%;
}
.page-banner-link a {
  margin-right: 5px;
  margin-left: 5px;
  color: #ffffff;
}

.banner-7 {
  margin-top: 30px;
}
.b-7-left {
  position: relative;
  height: 400px;
}
.b-7-left img {
  position: absolute;
  border-radius: 20px;
}
.b-7-left .img-1 {
  top: 0;
  left: calc(var(--bs-gutter-x) * 0.5);
  height: 100%;
  object-fit: cover;
}
.b-7-left .img-2 {
  top: 50%;
  left: 40%;
  width: 40%;
}
.b-7-left .circle-box {
  position: absolute;
  left: 55%;
  top: 12%;
  width: 200px;
  height: 200px;
  background-color: var(--green16);
  border-radius: 50%;
  z-index: 2;
}
.about-content-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.about-content-list-item {
  padding: 10px;
  text-align: center;
  display: inline-flex;
  align-items: center;
}
.about-content-list-item svg {
  width: 34px;
  color: #ffffff;
  margin-right: 5px;
  background-color: var(--green11);
  border-radius: 50%;
  padding: 3px;
}

.banner-8 {
  margin-top: 50px;
  background-color: var(--blue4);
}
.banner-8 {
  padding: 50px 0px;
}
.banner-8 .icon-list {
  display: grid;
  margin-top: 30px;
}
.banner-8 .icon-item {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.banner-8 .icon-box {
  width: 90px;
  height: 90px;
  padding: 5px;
  background-color: var(--green10);
  color: #ffffff;
  border-radius: 20px;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
}
.banner-8 .icon-box svg {
  width: 100%;
}
.banner-8 .icon-box-2 {
  background-color: #f1f100;
  color: #000000;
}

.banner-8 .icon-box p {
  width: 100%;
}
.b-8-right {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}
.b-8-r-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.b-8-r-box .mini-box {
  flex: 1 1 50%;
  height: 300px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.b-8-r-box .mini-2 {
  background-color: var(--blue16);
}
.b-8-r-box .mini-3 {
  background-color: var(--green16);
}
.b-8-r-box .mini-3 .counter-box p {
  color: var(--green3) !important;
}
.b-8-r-box .mini-3 .count-number {
  color: var(--green3) !important;
}
.banner-9 {
  margin-top: 50px;
}

#documentCarousel {
  --f-carousel-slide-height: 100%;
  --f-carousel-spacing: 10px;
  --f-carousel-slide-bg: #d1d1d12b;

  --f-carousel-gap: 8px;
  --f-carousel-slide-width: calc((100% - 16px) / 6);
  --f-arrow-pos: 10px;

  --f-arrow-width: 38px;
  --f-arrow-height: 38px;

  --f-arrow-svg-width: 16px;
  --f-arrow-svg-height: 16px;
  --f-arrow-svg-stroke-width: 2.5;

  --f-arrow-color: #475569;
  --f-arrow-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%),
    0 3px 7px -3px rgb(0 0 0 / 30%);

  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #fff;
  --f-arrow-hover-bg: #f9f9f9;
  --f-arrow-active-bg: #f0f0f0;
}

#documentCarousel .f-carousel-slide {
  width: 100%;
}
#documentCarousel .f-carousel__slide a {
  height: 100%;
}
#documentCarousel .f-carousel__slide {
  height: 300px;
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
#documentCarousel .f-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.banner-10 {
  margin-top: 50px;
}
.banner-10 a {
  width: 90px;
}
.b-10-l-box {
  display: block;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  height: 100%;
  background-color: var(--blue20);
  border: solid 1px #f5f5f5;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.4s ease-in-out;
}
.b-10-l-box:hover {
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.b-10-l-box p {
  margin-top: 20px;
}
.b-10-l-box .img-box {
  border-radius: 14px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.b-10-l-box img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.b-10-l-box:hover img {
  transform: scale(1.1);
}
.b-10-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.b-10-r-box {
  flex: 1;
  display: inline-flex;
  width: 100%;
  align-items: center;
  background-color: var(--blue20);
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.4s ease-in-out;
}
.b-10-r-box:hover {
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.b-10-r-box .img-box {
  width: 250px;
  height: 250px;
  overflow: hidden;
}
.b-10-r-box img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.b-10-r-box:hover img {
  transform: scale(1.1);
}
.b-10-r-box .content-box {
  display: block;
  width: max-content;
  margin-left: 20px;
}

.b-10-r-box p {
  margin-top: 20px;
}
.banner-11 {
  margin-top: 50px;
}
.banner-11 .service-box {
  position: relative;
  height: 380px;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
}
.banner-11 .service-box .service-box-content {
  width: 100%;
  margin-top: 50px;
}
.banner-11 .service-box .service-icon {
  width: 100px;
  height: 100px;
  background-color: var(--green10);
  border-radius: 50%;
  color: #ffffff;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.banner-11 .service-box .service-icon svg {
  width: 100%;
  transition: 0.3s ease-in-out;
}
.banner-11 .service-box:hover .service-icon {
  background-color: var(--blue10);
}
.banner-11 .service-box a {
  width: 90px;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.banner-11 .service-box img {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 150px;
  height: 150px;
  clip-path: ellipse(120px 120px at 100% 0%);
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.banner-11 .service-box:hover img {
  clip-path: ellipse(150px 150px at 100% 0%);
}

.overlay-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 0px;
  right: 0px;
  clip-path: ellipse(120px 120px at 100% 0%);
  z-index: 2;
  background-color: #0000003e;
  transition: 0.3s ease-in-out;
}
.banner-11 .service-box:hover .overlay-3 {
  clip-path: ellipse(150px 150px at 100% 0%);
}

.banner-12 {
  margin-top: 50px;
  position: relative;
}
.banner-12 img {
  width: 100%;
  border-radius: 20px;
  position: sticky;
  top: 120px;
}

.banner-13 {
  margin-top: 50px;
  background: linear-gradient(to right, #f4f4f4 0% 70%, transparent 70% 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: fillBackground 2s forwards;
  border-radius: 20px 0px 0px 20px;
  padding: 20px;
}
@keyframes fillBackground {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}

.banner-13 .product-image {
  width: 100%;
}

.banner-14 {
  margin-top: 50px;
}
.banner-20 {
  margin-top: 50px;
}

.product-video {
  width: 100%;
}
.product-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-14-right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.product-detail-content {
  width: 100%;
  padding: 50px;
}
.product-detail-content .t-blue-40 {
  margin-bottom: 40px;
}
.product-detail-content ul li {
  list-style-type: disc;
  margin-bottom: 15px;
}

.banner-15 {
  margin-top: 50px;
}
.product-list-box {
  height: 450px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(
    to right,
    var(--blue18) 0% 50%,
    var(--green18) 50% 100%
  );
  margin-bottom: 30px;
  transition: 0.4s ease-in-out;
  background-position: left;
  background-size: 150% 100%;
}
.product-list-box:hover {
  /*background: linear-gradient(
    to right,
    var(--blue18) 0% 30%,
    var(--green18) 30% 100%
  );*/
  background-position: right;
}
.product-list-box-content {
  width: 100%;
  position: relative;
  margin-top: 25px;
}
.product-list-box a {
  width: 90px;
}
.product-list-box img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.div-banner-16 {
  margin-top: 50px;
}
.div.banner-17 {
  margin-top: 50px;
}
.b-17-right svg {
  width: 20px;
}
.map-container {
  height: 400px;
  width: 100%;
  margin-top: 50px;
}
.map-container iframe {
  height: 100%;
  width: 100%;
}
.banner-18 {
  margin-top: 50px;
}
.banner-18 img {
  width: 100%;
  border-radius: 20px;
}
.whatsapp {
  position: fixed;
  bottom: 5%;
  right: 5%;
  border-radius: 50%;
  background-color: #25d366;
  width: 50px;
  height: 50px;
  padding: 10px;
  color: #ffffff;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  z-index: 12;
}
.whatsapp svg {
  width: 100%;
}
.author-logo img {
  width: 80px;
}
.banner-19 {
  margin-top: 50px;
  color: var(--blue5);
}
