/* ============================================= reset styles start ============================================= */
/* ============================================= *,
*::before,
*::after {
  outline: 1px solid red;
} ============================================= */
* {
  margin: 0;
  padding: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
/* ============================================= reset styles end ============================================= */

/* ============================================= root styles start ============================================= */
:root {
  --font-fredoka: "Fredoka", sans-serif;
  --font-poppins: "Poppins", sans-serif;

  --background-primary: #ffffff;
  --background-secondary: #edf1fa;
  --background-third: #abc0ea;

  --text-primary: #222222;
  --text-secondary: #6b6b6b;
  --text-third: #000000;

  --accent-color: #4877d1;
}
::-moz-selection {
  background: var(--accent-color);
  color: #ffffff;
}
::selection {
  background: var(--accent-color);
  color: #ffffff;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background-primary);
}
body.no-scroll {
  overflow: hidden;
}
main {
  overflow-x: hidden;
}
/* ============================================= root styles end ============================================= */

/* ============================================= global styles start ============================================= */
.section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.section-box {
  margin-top: 50px;
  margin-bottom: 50px;
}
.section-box > * + * {
  margin-top: 10px;
}
.section-title-1,
.section-title-2,
.section-title-3 {
  color: var(--text-primary);
  font-family: var(--font-fredoka);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 600;
  line-height: 156%;
}
.section-title-1 {
  text-align: center;
  font-size: 64px;
}
.section-title-2 {
  font-size: 40px;
  line-height: 110%;
}
.section-title-3 {
  font-size: 32px;
  line-height: 110%;
}
.section-text-1,
.section-text-2 {
  color: var(--text-secondary);
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
}
.section-text-1 {
  font-size: 18px;
}
.section-box .section-text-1 {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section-text-2 {
  font-size: 16px;
}
.button {
  --button-text-color: #ffffff;
  border-radius: 999px;
  padding: 16px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-family: var(--font-fredoka);
  font-size: 16px;
  font-style: normal;
  height: 58px;
  font-weight: 600;
  line-height: 156%;
  text-transform: capitalize;
  position: relative;
  border: none;
}
.button-pri::after,
.button-sec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  display: inline-block;
  right: 0;
  bottom: 0;
  border-radius: 999px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.button-pri::after {
  border: 1px solid var(--accent-color);
  background-color: #91ade3;
}
.button-sec::after {
  border: 1px solid var(--accent-color);
  background-color: #7497bd;
}
.button-pri:hover::after,
.button-sec:hover::after {
  right: -2%;
  bottom: -8%;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button:disabled::after {
  display: none;
}
.button-md {
  font-size: 24px;
  height: 72px;
}
.button .button-icon {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.button .button-icon svg {
  width: 40%;
  height: 40%;
}
.button:hover .button-icon {
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.button-pri {
  color: var(--button-text-color);
  background: var(--accent-color);
}
.button-pri .button-icon {
  background: #91ade3;
}
.button-sec {
  color: var(--accent-color);
  background: var(--button-text-color);
}
.button-sec .button-icon {
  background: #b6c9ed;
}

.wiggle {
  -webkit-animation: wiggle 2s linear infinite alternate;
          animation: wiggle 2s linear infinite alternate;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
.input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.input-label {
  color: #525151;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  cursor: pointer;
  text-transform: capitalize;
}
.input-label .required {
  color: #ff2323;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
}
.input-field,
.input-textarea {
  width: 100%;
  border-radius: 16px;
  background: var(--background-secondary);
  font-family: var(--font-poppins);
  border: none;
  padding: 16px;
  font-size: 16px;
  outline: none;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
}
.input-field:disabled,
.input-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.input-textarea {
  resize: none;
  min-height: 250px;
}
.bg-element {
  position: absolute;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
/* ============================================= global styles end ============================================= */

/* ============================================= navbar styles start ============================================= */
.navbar-container {
  padding-left: 0;
  padding-right: 0;
}
.navbar {
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}
.navbar .site-logo {
  width: 80px;
}
.navbar .site-logo img {
  width: 100%;
}
.navbar .nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.navbar .nav-items .nav-item {
  color: var(--text-primary);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.navbar .nav-items .nav-item:hover,
.navbar .nav-items .nav-item.active {
  color: var(--accent-color);
}
.navbar .auth-button {
  font-family: var(--font-poppins);
}
.nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.menu-button {
  --size: 40px;
  border: none;
  background: var(--accent-color);
  border-radius: 8px;
  width: var(--size);
  height: var(--size);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner-navbar {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}
/* ============================================= navbar styles end ============================================= */

/* ============================================= mobile navbar styles start ============================================= */
.mobile-navbar {
  position: fixed;
  width: 70%;
  min-width: 300px;
  height: 100vh;
  right: -100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  z-index: 100;
  gap: 30px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mobile-navbar.show {
  right: 0;
}
.mobile-navbar .nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.mobile-navbar-overlay {
  position: fixed;
  z-index: 90;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  inset: 0;
  display: none;
}
.mobile-navbar-overlay.show {
  display: block;
}
/* ============================================= mobile navbar styles end ============================================= */

/* ============================================= home banner styles start ============================================= */
.home-banner {
  position: relative;
  height: 100vh;
  width: 100%;
}
.home-banner .banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
}
.home-banner .container {
  padding-top: 112px;
  height: 100%;
}
.home-banner .container .row {
  height: 100%;
}
.banner-title {
  color: var(--text-primary);
  font-family: var(--font-fredoka);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
}
.banner-text {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
.home-banner-content-container {
  padding-top: 60px;
}
.home-banner-image-container {
  position: relative;
}
.home-banner-image {
  position: absolute;
  width: 490px;
  top: -20%;
  right: 0;
  z-index: -1;
}
.home-banner-image .main-image {
  width: 100%;
  height: 100%;
}
.home-banner-image .image-element {
  position: absolute;
  bottom: 0;
  /* animation: element-animation 1s ease alternate infinite; */
}
.home-banner-image .image-element.first-element {
  left: 0;
}
.home-banner-image .image-element.sec-element {
  right: 0;
}
/* @keyframes element-animation {
  form {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(8deg);
  }
} */
/* ============================================= home banner styles end ============================================= */

/* ============================================= service banner styles start ============================================= */
.service-banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.service-banner .service-banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
}
.service-banner .container {
  padding-top: 8%;
}
.service-banner .col-12 {
  position: relative;
}
.service-banner-image {
  position: absolute;
  width: 40%;
  bottom: -70%;
  right: -15%;
}
/* ============================================= service banner styles end ============================================= */

/* ============================================= team banner styles start ============================================= */
.team-banner {
  padding-top: 112px;
  background-color: var(--background-secondary);
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.team-banner-img {
  position: absolute;
  z-index: 10;
}
.team-banner-img-1 {
  left: 0;
  bottom: 0;
  width: 21%;
}
.team-banner-img-2 {
  right: -5%;
  bottom: 0;
  width: 25%;
}
.team-banner .banner-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-banner .content {
  margin-top: 4%;
  width: 47%;
  margin-left: auto;
  margin-right: auto;
}
/* ============================================= team banner styles end ============================================= */

/* ============================================= service styles end ============================================= */
.service .row {
  margin-top: 80px;
}
.service-item {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.service-item > * + * {
  margin-top: 10px;
}
.service-item .service-item-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.service-item .service-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-item .service-item-image .service-element {
  position: absolute;
  z-index: -1;
}
.service-item.service-item-1 .service-element {
  left: 20%;
  top: -8%;
  width: 100px;
  height: auto;
}
.service-item.service-item-2 .service-element {
  right: 20%;
  top: 5%;
  width: 100px;
  height: auto;
}
/* ============================================= service styles end ============================================= */

/* ============================================= service work styles start ============================================= */
.service-work {
  margin-top: 300px;
  position: relative;
}
.service-work .service-work-bg {
  position: absolute;
  left: 0;
  top: -20%;
  z-index: -1;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
}
.work-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20%;
}
.work-items .work-item {
  --size: 21%;
  aspect-ratio: 1/1;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: #abc0ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  padding: calc(var(--size) / 8);
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.work-items .work-item::before {
  position: absolute;
  z-index: -1;
  width: 140%;
  height: 140%;
  content: "";
  display: inline-block;
  background: var(--background-secondary);
  margin: -60px;
  border-radius: 999px;
}
.work-items .work-item img {
  width: 40%;
  position: absolute;
  top: -20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.work-items .work-item.work-item-2 {
  margin-top: 6%;
}
.work-items .work-item.work-item-3 {
  margin-top: -2%;
}
.work-items .work-item.work-item-4 {
  margin-top: 8%;
}
/* ============================================= service work styles end ============================================= */

/* ============================================= testimonial styles start ============================================= */
.testimonial-section {
  margin-top: 300px;
  margin-bottom: 300px;
}
.testimonial-carousel{
  padding: 10px;
}
.testimonial-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.testimonial-item {
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.12);
}
.testimonial-item .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.testimonial-item .client-img {
  --size: 50px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  overflow: hidden;
}
.testimonial-item .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonial-item .client-name {
  color: var(--text-primary);
  font-family: var(--font-fredoka);
  text-transform: capitalize;
  font-style: normal;
  font-size: 18px;
}
.testimonial-item .time {
  color: var(--text-secondary);
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 16px;
}
.testimonial-item .verify-con {
  border-radius: 5px;
  padding: 2px 5px;
  background-color: #f4f5f7;
  color: #6a6f74;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.testimonial-item .details {
  color: var(--text-secondary);
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  margin-top: 20px;
  line-height: 164%;
  height: 150px;
  overflow-y: auto;
}
.testimonial-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-carousel .owl-nav button {
  --size: 50px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--accent-color) !important;
  margin: 0 !important;
}
.testimonial-carousel .owl-nav button span {
  font-size: 32px;
  color: #ffffff;
  vertical-align: middle;
  margin-bottom: 5px;
}
/* ============================================= testimonial styles end ============================================= */

/* ============================================= feature styles start ============================================= */
.feature-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-items .feature-item {
  background: var(--background-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 16px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  cursor: pointer;
  gap: 10px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.feature-items .feature-item .icon {
  --size: 80px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: #c6d5f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.feature-items .feature-item .icon svg {
  width: 50%;
  height: 50%;
}
.feature-items .feature-item .feature-title {
  font-size: 32px;
  line-height: 110%;
  margin-top: 20px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.feature-items .feature-item .feature-text {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.feature-items .feature-item:hover {
  background: var(--background-third);
}
.feature-items .feature-item:hover .icon {
  background: var(--background-secondary);
}
.feature-items .feature-item:hover .feature-title,
.feature-items .feature-item:hover .feature-text {
  color: #ffffff;
}
/* ============================================= feature styles end ============================================= */

/* ============================================= cta styles start ============================================= */
.cta-section {
  background: #507ca3;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}
.cta-section .section-title-1 {
  text-align: left;
  color: #ffffff;
}
.cta-section .section-text-1 {
  text-align: left;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 40px;
}
.cta-section .left-icon,
.cta-section .right-icon {
  position: absolute;
  z-index: 0;
}
.cta-section .left-icon {
  bottom: 3%;
  left: -3%;
}
.cta-section .right-icon {
  right: -5%;
  top: 3%;
}
.cta-section .cta-img {
  position: absolute;
  z-index: 1;
  width: 25%;
  bottom: 0;
  right: 20%;
}
/* ============================================= cta styles end ============================================= */

/* ============================================= explore styles start ============================================= */
.exp-img-container {
  position: relative;
  width: 100%;
}
.exp-img-container {
  position: relative;
  width: 80%;
}
.exp-img-container .exp-main-img {
  width: 100%;
  height: 100%;
}
.exp-img-container .img-element {
  position: absolute;
  z-index: -1;
}
.exp-img-container .img-element-1 {
  left: 2%;
  top: 20%;
}
.exp-img-container .img-element-2 {
  right: 0;
  top: 30%;
}
.exp-service .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exp-service .exp-content > * + * {
  margin-top: 12px;
}
.exp-service-items {
  list-style: none;
  font-family: var(--font-poppins);
  padding-left: 0;
}
.exp-service-items > * + * {
  margin-top: 10px;
}
.exp-service-item img {
  width: 18px;
  margin-right: 10px;
}
/* ============================================= explore styles end ============================================= */

/* ============================================= plan styles start ============================================= */
.plan-item {
  background-color: var(--background-secondary);
  border-radius: 24px;
  padding: 40px;
}
.plan-item > * + * {
  margin-top: 32px;
}
.plan-item-img {
  width: 40%;
  display: block;
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
}
.plan-feature-items {
  margin-top: 20px;
  list-style: none;
  font-family: var(--font-poppins);
  padding-left: 0;
  margin-bottom: 0;
}
.plan-feature-item img {
  width: 18px;
  margin-right: 10px;
}
.plan-feature-item b {
  color: var(--text-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 164%;
}
.plan-item .button-wrapper {
  text-align: center;
}
/* ============================================= plan styles end ============================================= */

/* ============================================= faq accordion styles start ============================================= */
.faq-accordion > * + * {
  margin-top: 24px;
}
.faq-accordion .accordion-item {
  border: none;
}
.faq-accordion .accordion-item .accordion-header .accordion-button {
  background: var(--background-secondary);
  border-radius: 8px !important;
  color: var(--text-primary);
  font-family: var(--font-fredoka);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.faq-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M20%2010V20M20%2020V30M20%2020H30M20%2020H10%22%20stroke%3D%22%231E3258%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}
.faq-accordion .accordion-item .accordion-header .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* ============================================= faq accordion styles end ============================================= */

/* ============================================= service cta styles end ============================================= */
.service-cta {
  background: var(--accent-color);
  text-align: center;
}
.service-cta .section-title-1 {
  text-align: center;
}
.service-cta .section-text-1 {
  max-width: 1050px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* ============================================= service cta styles end ============================================= */

/* ============================================= team section styles start ============================================= */
.team-members {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
}
.team-member {
  text-align: center;
}
.team-member > * + * {
  margin-top: 10px;
}
.member-img-container {
  position: relative;
  width: 80%;
  aspect-ratio: 1/1;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.member-img-container .member-bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.member-img-container .member-img {
  width: 70%;
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
}
.member-img-container .member-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
/* ============================================= team section styles end ============================================= */

/* ============================================= schedule styles start ============================================= */
.schedule-form .button-pri:hover::after {
  right: -0.6%;
  bottom: -15%;
}
/* ============================================= schedule styles end ============================================= */

/* ============================================= visit section styles start ============================================= */
.visit-section {
  padding-top: 100px;
  padding-bottom: 20%;
  background: var(--background-secondary);
  position: relative;
  overflow: hidden;
}
.visit-element {
  position: absolute;
  z-index: 0;
}
.visit-element-1 {
  left: -15%;
  top: 20%;
}
.visit-element-2 {
  right: 2%;
  bottom: -10%;
}
.visit-section .container {
  position: relative;
  z-index: 1;
}
.contact-item {
  position: absolute;
  aspect-ratio: 1/1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 30px;
  gap: 10px;
}
.contact-item-icon {
  width: 50px;
}
.contact-item-1 {
  width: 300px;
  left: 10%;
  top: 10%;
}
.contact-item-2 {
  width: 400px;
  right: 5%;
  top: 0;
}
.contact-item-3 {
  left: 25%;
  bottom: -30%;
}
.contact-item-4 {
  right: 27%;
  bottom: -18%;
}
.visit-img {
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* ============================================= visit section styles end ============================================= */

/* ============================================= auth styles start ============================================= */
.auth-section {
  position: relative;
}
.auth-bg-element-1 {
  width: 400px;
  left: -6%;
  top: 0;
}
.auth-bg-element-2 {
  width: 400px;
  right: 0%;
  bottom: -2%;
}
.auth-container {
  width: 100%;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 80px 50px;
  background-image: url("../images/auth-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.auth-box {
  width: 40%;
  margin-left: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
}
.auth-box > * + * {
  margin-top: 20px;
}
.auth-form > * + * {
  margin-top: 20px;
}
.auth-form .terms {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
#otp-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
#otp-container .input-field {
  text-align: center;
  width: 60px;
  aspect-ratio: 1/1;
}
.auth-form button[type="submit"] {
  width: 100%;
}
.auth-footer {
  text-align: center;
}
.auth-footer > * + * {
  margin-top: 20px;
}
.auth-footer-text {
  color: var(--text-secondary);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.auth-box a {
  color: var(--accent-color);
  text-decoration: underline;
}
.auth-box .section-text-2 a {
  text-decoration: none;
}
.separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.separator .bar {
  width: 100%;
  height: 1px;
  background-color: var(--text-secondary);
}
.social-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #111;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
}
.social-button img {
  width: 20px;
}
.password-wrapper {
  position: relative;
}
.password-wrapper .eye-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3%;
  border: none;
  outline: none;
  background: none;
}
.password-wrapper .eye-icon span {
  display: none;
}
.password-wrapper .eye-icon span.show {
  display: block;
}
/* ============================================= auth styles end ============================================= */

/* ============================================= footer styles start ============================================= */
footer {
  padding-top: 100px;
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #6b6b6b;
  color: var(--text-primary);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 26.375px;
}
footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 50px;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.footer-items .footer-item:last-child {
  max-width: 340px;
}
.footer-item-title {
  color: var(--text-primary);
  font-family: var(--font-fredoka);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.footer-item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: left;
}
.footer-item-link:hover {
  text-decoration: underline;
}
.footer-item-link {
  color: var(--text-secondary);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
footer .sub-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
}
footer .sub-form input {
  width: 100%;
  height: 100%;
  border-radius: 12px 0 0 12px;
  padding: 10px 0 10px 20px;
  border: 1px solid #d4d4d8;
  outline: none;
  font-family: var(--font-poppins);
}
footer .sub-form button {
  height: 100%;
  border-radius: 0 12px 12px 0;
  border: none;
  color: #ffffff;
  padding: 10px 30px;
  margin-left: -2px;
  background: var(--accent-color);
  color: #fff;
  text-align: right;
  font-family: var(--font-fredoka);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.footer-contact-title {
  color: var(--text-primary);
  font-family: var(--font-fredoka);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-contact {
  color: #6b6b6b;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
/* ============================================= footer styles end ============================================= */

/* ============================================= Responsive styles start ============================================= */
@media (max-width: 1600px) {
  .cta-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .service-banner-image {
    right: 0;
  }
  .service-banner .banner-title {
    font-size: 60px;
  }
}
@media (max-width: 1400px) {
  .service-banner .banner-title {
    font-size: 50px;
  }
  .service-banner-image {
    bottom: -100%;
  }
}
@media (max-width: 1200px) {
  .button {
    padding: 8px 18px;
    height: 45px;
    font-weight: 500;
  }
  .navbar .site-logo {
    width: 60px;
  }
  .banner-title {
    font-size: 50px;
  }
  .home-banner-image {
    width: 350px;
  }
  .button-md {
    font-size: 18px;
    height: 50px;
  }
  .button-md .button-icon {
    --size: 30px;
  }
  .home-banner-image .image-element {
    width: 55px;
  }
  .section-title-1 {
    font-size: 50px;
  }
  .section-text-1 {
    font-size: 16px;
  }
  .service .row {
    margin-top: 50px;
  }
  .section-title-2 {
    font-size: 30px;
  }
  .section-text-2 {
    font-size: 14px;
  }
  .work-title.section-title-2 {
    font-size: 25px;
  }
  .testimonial-item .details {
    font-size: 14px;
  }
  .feature-items .feature-item .feature-title {
    font-size: 26px;
  }
  .cta-section .section-text-1 {
    margin-top: 16px;
    margin-bottom: 20px;
  }
  .cta-section .cta-img {
    width: 30%;
  }
  .work-items {
    margin-top: 10%;
  }
  .button .button-icon {
    --size: 30px;
  }
  .team-banner {
    height: 80vh;
  }
  .team-banner .content {
    margin-top: 0;
  }
  .team-banner-img-1 {
    width: 25%;
  }
  .team-banner-img-2 {
    width: 30%;
  }
  .visit-element-1 {
    width: 400px;
  }
  .contact-item-1 {
    top: 0;
    width: 250px;
  }
  .contact-item-2 {
    width: 300px;
  }
  .contact-item-3 {
    width: 300px;
    left: 20%;
  }
  .contact-item-4 {
    width: 300px;
    right: 18%;
  }
  .visit-element-2 {
    width: 400px;
  }
}

@media (max-width: 1023px) {
  .button {
    font-size: 14px;
  }
  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar .nav-items {
    gap: 16px;
  }
  .navbar .nav-items .nav-item {
    font-size: 14px;
  }
  .section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .section-title-1 {
    font-size: 36px;
  }
  .section-title-2 {
    font-size: 26px;
  }
  .home-banner-image {
    top: -22%;
    width: 300px;
  }
  .banner-title {
    font-size: 35px;
  }
  .section-text-1 {
    font-size: 14px;
  }
  .home-banner-image .image-element {
    width: 50px;
  }
  .home-banner {
    height: 75vh;
  }
  .service-work {
    margin-top: 100px;
  }
  .work-title.section-title-2 {
    font-size: 20px;
  }
  .feature-items .feature-item .feature-title {
    font-size: 20px;
  }
  .cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cta-section .right-icon {
    width: 200px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .cta-section .left-icon img,
  .cta-section .right-icon img {
    width: 100%;
    height: auto;
  }
  .cta-section .left-icon {
    width: 100px;
  }
  .service-banner-image {
    bottom: -70%;
  }
  .service-banner .banner-title {
    font-size: 40px;
  }
  .service-banner .container {
    padding-top: 10%;
  }
  .service-banner {
    height: 70vh;
  }
  .exp-img-container {
    width: 100%;
  }
  .plan-item-img {
    width: 20%;
  }
  .plan-item .section-title-3 {
    font-size: 26px;
  }
  .plan-feature-item b {
    font-size: 18px;
  }
  .team-banner {
    height: 55vh;
  }
  .team-member .section-title-2.member-name {
    font-size: 20px;
  }
  .contact-item {
    gap: 5px;
  }
  .contact-item .section-title-3 {
    font-size: 18px;
  }
  .contact-item .section-text-2 {
    font-size: 12px;
  }
  .contact-item-1 {
    left: 5%;
    width: 200px;
  }
  .contact-item-2 {
    right: 2%;
    width: 240px;
  }
  .contact-item-3 {
    width: 240px;
  }
  .contact-item-4 {
    width: 220px;
  }
  .visit-img {
    width: 300px;
  }
}

@media (max-width: 991px) {
  .footer-item-link {
    font-size: 14px;
  }
  .footer-item-title {
    margin-bottom: 20px;
  }
  footer {
    padding-top: 50px;
  }
  .auth-container{
    padding: 30px;
  }
  .auth-box{
    width: 100%;
  }
}
@media (max-width: 767px) {
  .navbar-container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .navbar .site-logo {
    width: 50px;
  }
  .navbar .nav-items {
    display: none;
  }
  .menu-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .mobile-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-navbar .nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto;
  }
  .mobile-navbar .nav-items .nav-item.active {
    color: var(--accent-color);
  }
  .mobile-navbar .nav-items .nav-item {
    color: #ffffff;
  }
  .mobile-navbar .close-button {
    position: absolute;
    top: 10px;
    left: 10px;
    border: none;
    background: none;
  }
  .home-banner .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home-banner .container .row {
    height: auto;
  }
  .home-banner-image-container {
    height: 380px;
  }
  .home-banner-image {
    top: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    width: 250px;
  }
  .home-banner-content-container {
    padding-top: 0;
  }
  .home-banner {
    height: 100vh;
  }
  .home-banner .container {
    padding-top: 0;
  }
  .banner-title {
    font-size: 25px;
  }
  .banner-text {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .home-banner-image .image-element {
    width: 40px;
  }
  .section {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .section-box {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .section-title-1 {
    font-size: 28px;
  }
  .section-text-1 {
    font-size: 13px;
  }
  .section-title-2 {
    font-size: 18px;
  }
  .section-text-2 {
    font-size: 13px;
  }
  .service-work {
    margin-top: 100px;
    margin-bottom: 50px;
  }
  .work-title.section-title-2 {
    font-size: 14px;
  }
  .work-items .work-item {
    --size: 25%;
    gap: 2px;
  }
  .work-items .work-item img {
    width: 35%;
  }
  .work-items .work-item .work-tag {
    font-size: 13px;
  }
  .feature-items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .cta-section {
    padding-top: 20px;
  }
  .cta-section .cta-img {
    right: 0;
    width: 40%;
  }
  .service-banner .banner-title {
    font-size: 30px;
  }
  .service-banner .container {
    padding-top: 20%;
  }
  .exp-img-container {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-item {
    padding: 20px;
  }
  .plan-item > * + * {
    margin-top: 10px;
  }
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
  .team-banner .content {
    width: 90%;
  }
  .team-members {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .contact-item {
    padding: 10px;
  }
  .contact-item-icon {
    width: 20px;
  }
  .contact-item .section-title-3 {
    font-size: 16px;
  }
  .contact-item-1 {
    width: 142px;
  }
  .contact-item-2 {
    width: 175px;
  }
  .contact-item-3 {
    width: 180px;
    left: 3%;
    bottom: -26%;
  }
  .visit-img {
    width: 220px;
  }
  .contact-item-4 {
    width: 180px;
    right: 4%;
    bottom: -25%;
  }
  .visit-section {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .footer-bottom {
    font-size: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .work-title.section-title-2 {
    font-size: 12px;
    font-weight: 600;
  }
  .section.service-work {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cta-section .cta-img {
    display: none;
  }
  .section-title-1 {
    font-size: 24px;
  }
  .team-banner-img-1 {
    width: 30%;
  }
  .team-banner-img-2 {
    width: 35%;
  }
  .team-member .section-title-2.member-name {
    font-size: 18px;
  }
  .auth-footer-text{
    font-size: 14px;
  }
  .auth-container{
    min-height: auto;
    padding: 20px;
  }
  .input-field, .input-textarea{
    padding: 10px;
    border-radius: 8px;
  }
}
@media (max-width: 375px) {
  .auth-container{
    padding: 0;
  }
  .auth-box{
    padding: 0;
  }
  .auth-bg-element-1,
  .auth-bg-element-2{
    display: none;
  }
}