@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Source+Sans+Pro:wght@400;600;700;900&family=Syne:wght@400;500;600;700;800&display=swap");

@import url(./faq.css);

* {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  list-style: none !important;
  box-sizing: border-box;
  scroll-behavior: smooth;
}



.blink-text {
  color: #00917c;
  font-weight: 600;
  animation: blinker 1.5s linear infinite;
}


@keyframes blinker {
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}

}


.overflow-hidden {
  overflow: hidden;
}

.overflow_hidden {
  overflow: hidden !important;
}
.overflow_x_hidden {
  overflow-x: hidden !important;
  height: 100%;
}

:root {
  /* FONT-SIZE */
  --fs-sm: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 26px;
  --fs-4xl: 28px;
  --fs-4xxl: 32px;
  --fs-5xl: 40px;
  --fs-6xl: 44px;
  /* FONT-WEIGHT */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  /* COLORS */
  --clr-primary: #00917c;
}

/* FONT-FAMILY */
.ff_mont {
  font-family: "Montserrat", sans-serif;
}

.ff_poppins {
  font-family: "Poppins", sans-serif;
}

.ff_source {
  font-family: "Source Sans Pro", sans-serif;
}

.ff_syne {
  font-family: "Syne", sans-serif;
}

.ff_Satoshi {
  font-family: "Satoshi", sans-serif;
}

/* FONT-SIZE */
.text_sm {
  font-size: var(--fs-sm);
}

.text_md {
  font-size: var(--fs-md);
}

.text_lg {
  font-size: var(--fs-lg);
}

.text_2xl {
  font-size: var(--fs-2xl);
}

.text_3xl {
  font-size: var(--fs-3xl);
}

.text_4xl {
  font-size: var(--fs-4xl);
}

.text_4xxl {
  font-size: var(--fs-4xxl);
}

.text_5xl {
  font-size: var(--fs-5xl);
}

.text_6xl {
  font-size: var(--fs-6xl);
}

/* FONT-WEIGHT */
.fw_regular {
  font-weight: var(--fw-regular);
}

.fw_medium {
  font-weight: var(--fw-medium);
}

.fw_semibold {
  font-weight: var(--fw-semibold);
}

.fw_bold {
  font-weight: var(--fw-bold);
}

.fw_extrabold {
  font-weight: var(--fw-extrabold);
}

.fw_black {
  font-weight: var(--fw-black);
}

/* colors */
.text_primary {
  color: var(--clr-primary);
}

.bg_primary {
  background-color: var(--clr-primary);
}

.opacity_70 {
  opacity: 0.7;
}

.btn_primary {
  background-color: var(--clr-primary);
  padding: 13px 15px;
  transition: all 300ms linear !important;
}
.btn_secondary {
  background-color: var(--clr-primary);
  padding: 10px 22px;
  transition: all 300ms linear !important;
}

.btn_primary:hover,
.btn_secondary:hover {
  background-color: white;
  color: var(--clr-primary) !important;
  box-shadow: 0px 0px 14px white;
}

.hero-gif {
  transform: translateX(0%);
}

.nav_bar {
  position: fixed;
  background: black;
  width: 100%;
  height: 100vh !important;
  top: 0%;
  left: -100%;
  justify-content: center;
  transition: all 300ms ease-in-out !important;
  z-index: 10000 !important;
  padding: 0px 0 20px 0;
}

.menu {
  width: 35px;
  height: 20px;
  outline: none;
  z-index: 1;
}

.line1 {
  content: "";
  height: 3px;
}

.line2 {
  content: "";
  height: 3px;
}

.line3 {
  content: "";
  height: 3px;
  transition: all linear 300ms;
}

.menu:hover .line3 {
  width: 100% !important;
}

.show_nav {
  left: 0;
}

li a {
  transition: all 300ms linear !important;
}

li a:hover {
  color: var(--clr-primary) !important;
}
.close-btn {
  position: absolute;
  top: 3%;
  right: 5%;
  transform: translateX(00%);
}

.small-logo {
  position: absolute;
  top: 2%;
  left: 5%;
  transform: translateX(00%);
}
.hero_glow {
  top: 2%;
  left: -50px;
  z-index: -1;
}
.footer_glow {
  top: 40px;
  right: -80px !important;
  z-index: -1;
}

/* counting-section-css */

.on_hover_transition:hover {
  background-color: var(--clr-primary) !important;
}

.on_hover_transition {
  transition: all 300ms linear !important;
}

.border_top_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* google-section-css */

.google_card {
  padding: 27px 22px 27px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  backdrop-filter: blur(50px);
}

.google_card:hover {
  border-color: var(--clr-primary) !important;
  transition: all 200ms linear !important;
}

.mx_12 {
  margin: 0 12px;
}

.google_glow_position {
  position: absolute;
  right: -180px;
  top: -150px;
}

.mail_img::before {
  position: absolute;
  content: url(/assets/img/svg/list-mail.svg);
  left: 0;
  top: 0;
}

.location_img::before {
  position: absolute;
  content: url(/assets/img/svg/locarion-list.svg);
  left: 0;
  top: 0;
}

.phone_img::before {
  position: absolute;
  content: url(/assets/img/svg/phone-list.svg);
  left: 0;
  top: 0;
}

.bg_border_top {
  border-top: 1px solid #ffffff1e;
}

.service_card {
  padding: 20px 20px 14px 20px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(50px);
  min-height: 372px !important;
  transition: linear 200ms;
}

.service_card:hover {
  border-color: var(--clr-primary);
}

.service_card_img {
  width: 72px;
}

footer {
  background-image: url(/assets/img/png/Shadow.png);
  background-position: bottom left;
  background-size: 100%;
  background-repeat: no-repeat;
}

.service_slider_glow {
  position: absolute;
  top: 0;
  left: -7%;
  z-index: -1;
}

.index_3 {
  z-index: 3;
}

.count-digit::after {
  content: "+";
}

.about {
  animation: top 10s linear infinite;
}

.splitting .char {
  animation: slide-in 0.1s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: calc(60ms * var(--char-index));
}

@keyframes slide-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes top {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10%);
  }

  100% {
    transform: translateY(0);
  }
}

@media (min-width: 576px) {
  :root {
    /* FONT-SIZE */
    --fs-sm: 16px;
    --fs-md: 18px;
    --fs-lg: 20px;
    --fs-2xl: 25px;
    --fs-3xl: 30px;
    --fs-4xl: 30px;
    --fs-4xxl: 34px;
    --fs-5xl: 44px;
    --fs-6xl: 50px;
  }
  .loder-img {
    transform: translate(-40px, -10px) !important;
    width: 100px !important;
  }
  #loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 200px !important;
    transform: translateX(-50%);
    height: 200px !important;
    margin: 0px 0 0 -80px !important;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--clr-primary);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
}
.loder-img {
  transform: translateX(-40%) !important;
  width: 75px;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  transform: translateX(-50%);
  height: 150px;
  margin: 0px 0 0 -60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--clr-primary);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@media (min-width: 992px) {
  :root {
    /* FONT-SIZE */
    --fs-sm: 16px;
    --fs-md: 18px;
    --fs-lg: 20px;
    --fs-2xl: 25px;
    --fs-3xl: 30px;
    --fs-4xl: 40px;
    --fs-4xxl: 45px;
    --fs-5xl: 57.8px;
    --fs-6xl: 64px;
  }
  .hero-gif {
    transform: translateX(15%) !important;
  }
  .service_card {
    min-height: 457px !important;
  }
  .glow {
    width: 250px;
    height: 250px;
    background: var(--clr-primary) !important;
    border-radius: 50%;
    filter: blur(300px);
    z-index: -1;
    -webkit-filter: blur(120px);
    opacity: 0.7;
    animation: glow 3s linear infinite;
  }
  @keyframes glow {
    0% {
      transform: scale(0.5);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.5);
    }
  }

.positioning-chatbox {
      position: fixed;
    top: 55%;
    right: 26px;
    z-index: 34;
  
    width: 71px !important;
  }
  .green_y_line::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 75%;
    background-color: var(--clr-primary);
    left: 0;
    top: 15%;
  }
}

@media (min-width: 1200px) {
  .nav_bar {
    position: static !important;
    background-color: unset !important;
    backdrop-filter: unset;
    width: unset;
    height: unset !important;
  }
  .service_card {
    min-height: 370px !important;
  }
}

@media (min-width: 1400px) {
  .service_card {
    min-height: 350px !important;
  }
}

#scrollFaq.show {
  opacity: 1;
  visibility: visible;
}

#scroll {
  position: fixed;
  z-index: 9999;
  right: 39px;
  bottom: 12px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: var(--clr-primary);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  transition: all 300ms linear;
  animation: top 2s linear infinite;
}

#scrollFaq {
  position: fixed;
  z-index: 9999;
  right: 39px;
  bottom: 12px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: var(--clr-primary);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  transition: all 300ms linear;
  animation: top 2s linear infinite;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
#scrollFaq span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  box-shadow: 0px 0px 14px #00917c;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

#scrollFaq:hover {
  box-shadow: 0px 0px 14px #00917c;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.goggle_img {
  width: 48px;
}

.lh_169 {
  line-height: 169%;
}

.lh_174 {
  line-height: 174%;
}

.accordion-body {
  padding: 0px 0px 14px 21px !important;
}

.accordian_text_width {
  max-width: 812px;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background-color: transparent !important;
}

.accordion-button:focus {
  border: none !important;
  box-shadow: none !important;
}

.accordion-item {
  background-color: transparent !important;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px);
  border-radius: 8px;
}

.accordion-button {
  background-color: transparent !important;
  font-size: var(--fs-md) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/png/minus.png) !important;
  /* margin-left: auto !important; */
}

.accordion-button::after {
  background-image: url(/assets/img/png/plus.png) !important;
  transition: transform 500ms ease-in-out !important;
}

.facbook:hover,
.linkden:hover,
.mail:hover,
.insta:hover {
  scale: 1.04;
}

.positioning-chatbox {
          position: fixed;
    top: 52%;
    right: 26px;
    z-index: 34;
      width: 55px;
}


.slick-dots li button:before {
  color: var(--clr-primary) !important;
  font-size: 10px !important;
}

/*PRELOADING------------ */

#preloader-box {
  min-height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  /* justify-content: center; */
  z-index: 99999;
  display: flex;
  align-items: center;
  background-color: rgb(1, 0, 0);
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #015b4e;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00d8b8;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.menu_nav {
  --bold: 700;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.25rem;
}

.menu-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: black;
  text-decoration: none;
}
.menu-link:hover {
  font-weight: 900;
}

.menu.fix .menu-link::after {
  content: attr(data-text);
  content: attr(data-text) / "";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  font-weight: var(--bold);
}
@media speech {
  .menu.fix .menu-link::after {
    display: none;
  }
}

nav {
  font: 120% system-ui !important;
}
nav ul li a {
  text-decoration: none !important;
  transition: all 500ms ease-in-out !important;
}
nav ul li a:hover {
  color: var(--clr-primary);
  -webkit-text-stroke-width: 1.9px;
  -webkit-text-stroke-color: #00917c;
}

.raz-hover:hover img {
  filter: brightness(0);
}

.logo-img {
  width: 25%;
}

@media (max-width: 576px) {
  .logo-img {
    width: 50% !important;
  }
}



.positioning-whatspp {
    width: 62px !important;
    position: fixed;
    bottom: 140px;
    z-index: 323;
    right: 24px;
}

@media (max-width: 576px) {
    .positioning-whatspp {
    width: 62px !important;
    position: fixed;
    bottom: 130px;
    z-index: 323;
    right: 22px;
}
}  

@media (min-width: 576.9px) and (max-width: 820px) {
    .positioning-whatspp {
    width: 62px !important;
    position: fixed;
    bottom: 130px;
    z-index: 323;
    right: 22px;
}
}





  




