@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "AllRoundGothic", "sans-serif";
  font-weight: 600 !important;
}

@font-face {
  font-family: AllRoundGothic;
  src: url("../assets/fonts/all-round-gothic/AllRoundGothic-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: AllRoundGothic;
  src: url("../assets/fonts/all-round-gothic/AllRoundGothic-Demi.ttf");
  font-weight: 600;
}
@font-face {
  font-family: AllRoundGothic;
  src: url("../assets/fonts/all-round-gothic/AllRoundGothic-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: AllRoundGothic;
  src: url("../assets/fonts/all-round-gothic/AllRoundGothic-Book.ttf");
  font-weight: 400;
}
@font-face {
  font-family: AllRoundGothic;
  src: url("../assets/fonts/all-round-gothic/AllRoundGothic-XLig.ttf");
  font-weight: 300;
}
@font-face {
  font-family: FuturaNext;
  src: url("../assets/fonts/futura-next/FuturaNext-ExtraBold.otf");
  font-weight: 800;
}
@font-face {
  font-family: FuturaNext;
  src: url("../assets/fonts/futura-next/FuturaNext-Bold.otf");
  font-weight: 700;
}
@font-face {
  font-family: FuturaNext;
  src: url("../assets/fonts/futura-next/FuturaNext-DemiBold.otf");
  font-weight: 600;
}
@font-face {
  font-family: FuturaNext;
  src: url("../assets/fonts/futura-next/FuturaNext-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: FuturaNext;
  src: url("../assets/fonts/futura-next/FuturaNext-Book.otf");
  font-weight: 400;
}
@font-face {
  font-family: FuturaNext;
  src: url("../assets/fonts/futura-next/FuturaNext-Light.otf");
  font-weight: 300;
}
.banner {
  background-color: rgb(27, 44, 63);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.banner__content {
  transform: translateY(-50%);
  z-index: -1;
}
.banner .blob {
  position: absolute;
  z-index: -1;
  height: 200px;
  width: 200px;
  top: 0;
  left: 0;
  filter: blur(80px);
}
.banner .blob.turquoise {
  left: 15%;
  border-radius: 44% 56% 68% 32%/59% 57% 43% 41%;
  background: rgb(14, 233, 196);
  background: radial-gradient(circle, rgb(14, 233, 196) 0%, rgb(33, 208, 178) 33%, rgba(255, 255, 255, 0) 100%);
  animation: aurora 120s ease-in-out infinite;
  filter: blur(80px);
  height: 900px;
  width: 800px;
}
.banner .blob.vivid-sky-blue {
  border-radius: 72% 28% 46% 54%/36% 73% 27% 64%;
  top: 100%;
  right: 0%;
  background: rgb(0, 199, 255);
  background: radial-gradient(circle, rgb(0, 199, 255) 0%, rgb(29, 205, 254) 33%, rgba(255, 255, 255, 0) 100%);
  height: 400px;
  width: 400px;
  animation: aurorareverse 200s ease-in-out infinite;
}
.banner .blob.vivid-sky-blue--2 {
  top: 50%;
  left: auto;
  right: 0;
  height: 600px;
  width: 600px;
  animation: aurorareverse 200s ease-in-out infinite;
}
.banner .blob.sea-salt {
  border-radius: 28% 72% 39% 61%/73% 28% 72% 27%;
  top: -20%;
  right: -25%;
  left: auto;
  height: 500px;
  width: 500px;
  background: rgb(247, 247, 247);
  transform: scale(2);
  background: radial-gradient(circle, rgb(247, 247, 247) 0%, rgba(247, 247, 247, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  animation: aurora-two 300s ease-in-out infinite;
}
@media (max-width: 575px) {
  .banner .blob.sea-salt {
    display: none;
  }
}

@keyframes aurora {
  0%, 100% {
    transform: rotate(-2turn) translate(-250px) rotate(2turn);
  }
  50% {
    transform: rotate(2turn) translate(250px) rotate(-2turn);
  }
}
@keyframes aurora-two {
  0%, 100% {
    transform: rotate(-3turn) translate(-300px) rotate(3turn);
  }
  50% {
    transform: rotate(3turn) translate(300px) rotate(-3turn);
  }
}
@keyframes aurorareverse {
  0%, 100% {
    transform: rotate(4turn) translate(300px) rotate(-4turn);
  }
  50% {
    transform: rotate(-4turn) translate(-300px) rotate(4turn);
  }
}
.mark {
  position: relative;
  isolation: isolate;
}
.mark::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: -20px;
  right: 0;
  height: 100px;
  width: 100%;
  transform: translateY(-50%);
  background: url("../assets/images/mark.png") no-repeat;
  background-size: contain;
  background-position: center left;
  z-index: -1;
}

.svg-icon__wrapper {
  position: relative;
  isolation: isolate;
}
.svg-icon__wrapper::after {
  position: absolute;
  content: "";
  height: 100px;
  width: 100px;
  background-color: rgba(33, 208, 178, 0.8);
  top: 0px;
  left: -10px;
  border-radius: 50%;
  z-index: -1;
}
.svg-icon__wrapper svg {
  height: 160px;
  width: 160px;
  fill: rgb(27, 44, 63);
}

.testimonial__profile {
  height: 120px;
  width: 120px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #21d0b2;
  margin-bottom: 16px;
}
.testimonial__profile img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.testimonial__content {
  text-align: center;
}
.testimonial__content .name {
  font-size: 18px;
  font-weight: bold;
}
.testimonial__content .designation {
  opacity: 0.6;
  margin-bottom: 16px;
}
.testimonial .slick-arrow {
  visibility: hidden;
  position: relative;
}
.testimonial .slick-arrow:hover::before {
  background-color: #21d0b2;
}
.testimonial .slick-arrow::before {
  visibility: visible;
  position: absolute;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: rgba(28, 206, 255, 0.8);
  color: #fff;
  line-height: 46px;
  content: "→";
  font-size: 24px;
  transition: 0.2s ease-in-out;
}
.testimonial .slick-arrow.slick-prev::before {
  visibility: visible;
  position: absolute;
  content: "←";
}

.accordion .accordion-section {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.accordion .accordion-section .accordion-title {
  padding: 10px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
}
.accordion .accordion-section .accordion-content {
  padding: 10px;
  display: none; /* Hide content by default */
  background-color: #fff;
}

.support-monkey img {
  height: 220px;
}/*# sourceMappingURL=main.css.map */