@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --tm-figtree: "Figtree", sans-serif;
  --tm-poppins: "Poppins", sans-serif;

  --tm-primary: #a61843;
  --tm-primary-500: #df2059;
  --tm-primary-100: #f2a6bd;
  --tm-secondary: #545454;
  --tm-secondary-500: #808080;
  --tm-secondary-100: #cccccc;
  --tm-accent: #4484fc;
  --tm-accent-500: #689cfd;
  --tm-accent-100: #9bbdfd;
  --tm-background: #fbf8f9;
  --tm-background-200: #c79eac;
  --tm-background-500: #824a5d;
  --tm-background-700: #41252e;
  --tm-background-800: #201316;
  --tm-background-1000: #130b0d;
  --tm-white: #ffffff;
  --tm-black: #000000;
  --tm-text-1000: #000000;
  --tm-text-750: rgba(0, 0, 0, 0.75);
  --tm-text-600: rgba(0, 0, 0, 0.6);
  --tm-gradient-1: linear-gradient(222deg, rgba(166, 24, 67, 0.63) 0%, rgba(251, 248, 249, 1) 100%);
  --tm-gradient-2: linear-gradient(90deg, rgba(166, 24, 67, 1) 0%, rgba(68, 132, 252, 1) 100%);
  --tm-gradient-3: linear-gradient(145deg, rgba(68, 132, 252, 0.28) 0%, rgba(251, 248, 249, 1) 25%, rgba(251, 248, 249, 1) 75%, rgba(166, 24, 67, 0.28) 100%);
  --tm-gradient-4: linear-gradient(145deg, rgba(68, 132, 252, 0.38) 0%, rgba(251, 248, 249, 1) 35%, rgba(251, 248, 249, 1) 65%, rgba(166, 24, 67, 0.38) 100%);

  --tm-body-font-size: 1rem;
  --tm-border-radius-sm: 0.5rem;
  --tm-border-radius-md: 0.938rem;
  --tm-border-radius-lg: 1.875rem;

  --tm-line-height-xl: 4.5rem;
  --tm-line-height-lg: 3.7rem;
  --tm-line-height-md: 3rem;
  --tm-line-height-sm: 2rem;
  --tm-line-height-xs: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--tp-poppins);
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--tm-background);
  font-size: var(--tm-body-font-size);
  font-family: var(--tm-poppins);
  line-height: var(--tm-line-height-xs);
  color: var(--tm-text-1000);
  transition: 0.5s;
}

#preloader {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000;
}

#preloader::after {
  content: "";
  background: url(../images/elements/loader2.gif) no-repeat center;
  background-size: 20%;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
}

@media (max-width: 992px) {
  #preloader::after {
    background-size: 40%;
  }

  #preloader img {
    width: 140px;
  }
}

@media (max-width: 768px) {
  #preloader::after {
    background-size: 65%;
  }
  #preloader img {
    width: 120px;
  }
}

@media (max-width: 576px) {
  #preloader::after {
    background-size: 60%;
  }

  #preloader img {
    width: 100px;
  }
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background-color: var(--tm-accent);
}

.cursor-outline {
  width: 50px;
  height: 50px;
  border: 2px solid var(--tm-primary);
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1000;
  pointer-events: none;
}


@media (max-width: 991px) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

.h1,
.h2,
h1,
h2 {
  margin-top: 0;
  font-weight: bold;
  font-family: var(--tm-figtree);
  line-height: var(--tm-line-height-lg);
  color: var(--tm-background-1000);
}

.h3,
.h4,
h3,
h4 {
  margin-top: 0;
  font-weight: bold;
  font-family: var(--tm-figtree);
  line-height: var(--tm-line-height-sm);
  color: var(--tm-background-1000);
}

.h1,
h1 {
  font-size: 4rem;
}

.h2,
h2 {
  font-size: 3rem;
}

.h3,
h3 {
  font-size: 2.25rem;
}

.h4,
h4 {
  font-size: 1.5rem;
}
@media (max-width: 440px) {
    .h1,
    h1 {
        font-size: 3.5rem;
    }

    .h2,
    h2 {
        font-size: 2.5rem;
    }

    .h3,
    h3 {
        font-size: 2.25rem;
    }

    .h4,
    h4 {
    }
}
.p,
p {
  font-size: 1rem;
  font-weight: normal;
  font-family: var(--tm-poppins);
  line-height: var(--tm-line-height-sm);
  margin-bottom: 16px;
}

.small {
  font-size: 0.75rem;
  font-family: var(--tm-poppins);
  line-height: var(--tm-line-height-xs);
}

.bold {
  font-weight: bold;
}

/* @media (max-width: 576px) {
  .h1,
  h1 {
    font-size: 3rem;
  }
} */

.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 575px) {
  .container {
    overflow: hidden;
  }
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.m-0 {
  margin: 0 !important;
}

.m-4 {
  margin: 4px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-12 {
  margin: 12px !important;
}

.m-16 {
  margin: 16px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-28 {
  margin: 28px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-100 {
  margin: 100px !important;
}

.m-160 {
  margin: 160px !important;
}

.m-240 {
  margin: 240px !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-4 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.mx-8 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.mx-12 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.mx-16 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.mx-20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}
.mx-28 {
  margin-right: 28px !important;
  margin-left: 28px !important;
}
.mx-40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}
.mx-60 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}
.mx-100 {
  margin-right: 100px !important;
  margin-left: 100px !important;
}
.mx-160 {
  margin-right: 160px !important;
  margin-left: 160px !important;
}
.mx-240 {
  margin-right: 240px !important;
  margin-left: 240px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-28 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.my-160 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.my-240 {
  margin-top: 240px !important;
  margin-bottom: 240px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.mt-240 {
  margin-top: 240px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-4 {
  margin-right: 4px !important;
}

.me-8 {
  margin-right: 8px !important;
}

.me-12 {
  margin-right: 12px !important;
}

.me-16 {
  margin-right: 16px !important;
}

.me-20 {
  margin-right: 20px !important;
}

.me-28 {
  margin-right: 28px !important;
}

.me-40 {
  margin-right: 40px !important;
}

.me-60 {
  margin-right: 60px !important;
}

.me-100 {
  margin-right: 100px !important;
}

.me-160 {
  margin-right: 160px !important;
}

.me-240 {
  margin-right: 240px !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mb-240 {
  margin-bottom: 240px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-4 {
  margin-left: 4px !important;
}

.ms-8 {
  margin-left: 8px !important;
}

.ms-12 {
  margin-left: 12px !important;
}

.ms-16 {
  margin-left: 16px !important;
}

.ms-20 {
  margin-left: 20px !important;
}

.ms-28 {
  margin-left: 28px !important;
}

.ms-40 {
  margin-left: 40px !important;
}

.ms-60 {
  margin-left: 60px !important;
}

.ms-100 {
  margin-left: 100px !important;
}

.ms-160 {
  margin-left: 160px !important;
}

.ms-240 {
  margin-left: 240px !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-4 {
  padding: 4px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-12 {
  padding: 12px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-28 {
  padding: 28px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-100 {
  padding: 100px !important;
}

.p-160 {
  padding: 160px !important;
}

.p-240 {
  padding: 240px !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-4 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-8 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-12 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-20 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-28 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-40 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-60 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-100 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-160 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-240 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-28 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.py-160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.py-240 {
  padding-top: 240px !important;
  padding-bottom: 240px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pt-240 {
  padding-top: 240px !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-4 {
  padding-right: 4px !important;
}

.pe-8 {
  padding-right: 8px !important;
}

.pe-12 {
  padding-right: 12px !important;
}

.pe-16 {
  padding-right: 16px !important;
}

.pe-20 {
  padding-right: 20px !important;
}

.pe-28 {
  padding-right: 28px !important;
}

.pe-40 {
  padding-right: 40px !important;
}

.pe-60 {
  padding-right: 60px !important;
}

.pe-100 {
  padding-right: 100px !important;
}

.pe-160 {
  padding-right: 160px !important;
}

.pe-240 {
  padding-right: 240px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-4 {
  padding-bottom: 0.25rem !important;
}

.pb-8 {
  padding-bottom: 0.5rem !important;
}

.pb-12 {
  padding-bottom: 1rem !important;
}

.pb-16 {
  padding-bottom: 1.5rem !important;
}

.pb-20 {
  padding-bottom: 3rem !important;
}

.pb-28 {
  padding-bottom: 3rem !important;
}

.pb-40 {
  padding-bottom: 3rem !important;
}

.pb-60 {
  padding-bottom: 3rem !important;
}

.pb-100 {
  padding-bottom: 3rem !important;
}

.pb-160 {
  padding-bottom: 3rem !important;
}

.pb-240 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-4 {
  padding-left: 0.25rem !important;
}

.ps-8 {
  padding-left: 0.5rem !important;
}

.ps-12 {
  padding-left: 1rem !important;
}

.ps-16 {
  padding-left: 1.5rem !important;
}

.ps-20 {
  padding-left: 3rem !important;
}

.ps-28 {
  padding-left: 3rem !important;
}

.ps-40 {
  padding-left: 3rem !important;
}

.ps-60 {
  padding-left: 3rem !important;
}

.ps-100 {
  padding-left: 3rem !important;
}

.ps-160 {
  padding-left: 3rem !important;
}

.ps-240 {
  padding-left: 3rem !important;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .navbar {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
} */

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
  }
}

/* @media (min-width: 576px) {
  .navbar {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .navbar {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .navbar {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .navbar {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .navbar {
    max-width: 1320px;
  }
} */

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--tm-text-1000);
  font-size: 1.125rem;
  font-weight: bold;
  transition: 0.3s;
  font-family: var(--tm-figtree);
}

nav ul li a:hover {
  color: var(--tm-primary);
}

nav ul li a.active {
  color: var(--tm-primary);
}

nav .logo {
  width: 200px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  background: #000;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 10px;
}

.bar:nth-child(2) {
  transform: translateX(-10px);
}

.menu-toggle.active .bar:nth-child(1) {
  width: 30px;
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  width: 30px;
  transform: rotate(-45deg) translate(7px, -8px);
}

.mobile-nav-connect {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    transition: all 0.3s ease-in-out;
  }

  .navbar.sticky {
    padding: 20px;
  }

  .menu {
    display: block;
    width: 80%;
    position: fixed;
    top: 82px;
    right: 0;
    background: white;
    text-align: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
    height: calc(100vh - 77px);
  }

  .menu ul {
    display: block;
    padding: 40px 0;
  }

  .menu ul li {
    margin: 28px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-connect {
    display: block;
    padding: 0 40px;
  }

  .mobile-nav-connect .mobile-nav-content h4 {
    margin-bottom: 16px;
  }

  .mobile-nav-connect .mobile-nav-content p {
    margin-bottom: 40px;
    color: var(--tm-text-600);
  }
  .mobile-nav-connect .mobile-nav-socials a {
    display: inline-block;
    background: var(--tm-primary);
    border-radius: 10px;
    height: 40px;
    width: 40px;
    padding-top: 10px;
    transition: all 0.5s ease-in-out;
  }

  .mobile-nav-connect .mobile-nav-socials a i {
    font-size: 1.2rem;
    color: white;
  }

  .mobile-nav-connect .mobile-nav-socials a:hover {
    background: var(--tm-accent);
  }
}

nav .logo img {
  display: flex;
  place-items: center;
  width: 100%;
}

.hero-section {
  width: 100%;
  background: var(--tm-gradient-4);
}

.hero-section-container {
  display: flex;
  align-items: center;
}

.hero-section .hero-content h1 {
  font-family: var(--tm-figtree);
  line-height: var(--tm-line-height-xl);
  margin-bottom: 16px;
  color: var(--tm-primary);
  /* background: var(--tm-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25)); */
  width: 80%;
}

.hero-section .hero-content .hero-desc {
  font-family: var(--tm-poppins);
  font-size: 1rem;
  line-height: var(--tm-line-height-sm);
  margin-bottom: 40px;
  color: var(--tm-text-600);
  width: 90%;
}

.hero-btn {
  background: var(--tm-gradient-2);
  font-weight: normal;

  transition: all 0.3s ease-in-out, background 0.4s;
}

.hero-btn:hover {
  transform: translateY(-3px); /* Slight lift effect */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

/* Gradient shine effect on hover */
.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease-in-out;
}

.hero-btn:hover::after {
  left: 100%;
}

.hero-btn-container {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-section .hero-section-container .hero-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  /* overflow: hidden; */
}

.hero-section .hero-section-container .hero-image img {
  width: 100%;
  z-index: 1;
}

.hero-section .hero-section-container .hero-image .hero-blob {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 100%;
  height: auto;
}

.hero-section .hero-section-container .hero-image .hero-image-card {
  position: absolute;
  top: 425px;
  right: -30px;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 0.5px solid #a6184336;
  z-index: 2;
  padding: 3px 25px;
 
}

.hero-section .hero-section-container .hero-image .hero-image-card p {
  color: var(--tm-text-600);
  font-size: 12px;
  line-height: var(--tm-line-height-xs);
  margin-bottom: 0;
}

.hero-section .hero-section-container .hero-image .hero-image-icon {
  position: absolute;
  top: 465px;
  left: 95px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 15px;
  border: 0.5px solid #689cfd4b;
  z-index: 2;
  padding: 5px;
  display: grid;
  place-items: center;
}

.hero-section .hero-section-container .hero-image .hero-image-icon img {
  width: 90%;
}

@media screen and (min-width: 1400px) {
  .hero-section .hero-section-container .hero-image .hero-image-icon {
    top: 550px;
  }
  .hero-section .hero-section-container .hero-image .hero-image-card {
    top: 460px;
  }
}

@media screen and (max-width: 1200px) {
  .hero-section .hero-section-container .hero-image .hero-image-icon {
    top: 380px;
    left: 75px;
  }
  .hero-section .hero-section-container .hero-image .hero-image-card {
    top: 305px;
    right: -50px;
  }
}

@media screen and (max-width: 991px) {
  .hero-section-container {
    padding-top: 160px;
  }

  .hero-section .hero-content {
    text-align: center;
  }
  .hero-section .hero-btn-container {
    display: grid;
    justify-content: center;
  }
  .hero-section .hero-content h1 {
    width: 100%;
  }
  .hero-section .hero-content .hero-desc {
    width: 100%;
  }

  .hero-section .hero-section-container .hero-image {
    overflow: unset;
  }
  .hero-section .hero-section-container .hero-image .hero-image-card {
    top: 475px;
    right: -15px;
  }
  .hero-section .hero-section-container .hero-image .hero-image-icon {
    top: 595px;
    left: 115px;
  }
}

@media screen and (max-width: 767px) {
  .hero-section .hero-section-container .hero-image .hero-image-icon {
    top: 433px;
    left: 79px;
  }
  .hero-section .hero-section-container .hero-image .hero-image-card {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hero-section .hero-section-container .hero-image .hero-image-icon {
    display: none;
  }
  .hero-section .hero-section-container .hero-image {
    overflow: hidden;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-align: center;
  height: 55px;
  font-family: var(--tm-figtree);
  font-size: 1.125rem;
  color: var(--tm-white);
  background-color: var(--tm-primary);
  text-align: center;
  padding: 0px 40px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  font-weight: regular;
}

.btn-primary {
  background: var(--tm-accent);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--tm-primary);
  transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
  width: 350px;
  height: 350px;
}

.btn-rounded {
  background: var(--tm-primary);
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-rounded i {
  color: var(--tm-white);
  font-size: 1.5rem;
  transition: all 0.5s ease-in-out;
}

.btn-rounded:hover {
  box-shadow: 0 0 6px 2px #a6184352;
}

.btn-rounded:hover i {
  transform: rotate(45deg);
}

.bg-primary {
  background: var(--tm-primary) !important;
}

.bg-primary-100 {
  background: var(--tm-primary-100) !important;
}

.bg-primary-500 {
  background: var(--tm-primary-500) !important;
}

.bg-secondary {
  background: var(--tm-secondary) !important;
}

.bg-secondary-100 {
  background: var(--tm-secondary-100) !important;
}

.bg-secondary-500 {
  background: var(--tm-secondary-500) !important;
}

.bg-accent {
  background: var(--tm-accent) !important;
}

.bg-accent-100 {
  background: var(--tm-accent-100) !important;
}

.bg-accent-500 {
  background: var(--tm-accent-500) !important;
}

.creative-3d-button {
  position: relative;
  width: 200px;
  height: 55px;
  text-align: center;
  line-height: 54px;
  font-family: var(--tm-figtree);
  font-size: 1.125rem;
  background: var(--tm-gradient-2);
  display: block;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--tm-border-radius-md);
  letter-spacing: 1px;
  transform: perspective(500px) rotateY(-5deg);
  text-shadow: 6px 3px 2px rgba(0, 0, 0, 0.4);
  transition: 0.5s ease-in-out;
  overflow: hidden;
  cursor: pointer;
}

.creative-3d-button:hover {
  transform: perspective(500px) rotateY(15deg);
  text-shadow: -6px 3px 2px rgba(0, 0, 0, 0.4);
}

.creative-3d-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffffff87, transparent);
  transition: 0.5s;
}

.creative-3d-button:hover::before {
  left: 100%;
}

.home-about-section .home-about-left {
  position: relative;
}

.home-about-section .home-about-left img {
  width: 100%;
  height: auto;
  border-radius: var(--tm-border-radius-lg);
}

.home-about-section .home-about-left .rotating-btn {
  position: absolute;
  bottom: -35px;
  right: -50px;
}

.home-about-section .home-about-left .rotating-btn img {
  animation: rotateImage 10s linear infinite;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 991px) {
  .home-about-section .home-about-left .rotating-btn {
    bottom: 25px;
    right: 25px;
  }
}

.home-about-section .home-about-left .rotating-btn a {
  background-color: var(--tm-primary-100);
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  padding: 4px;
}

.home-about-section .home-about-left .rotating-btn a i {
  position: absolute;
  color: var(--tm-white);
  font-size: 2.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
}

.home-about-section .home-about-left .rotating-btn a:hover i {
  font-size: 3rem;
}

.home-about-section .home-about-right {
  display: flex;
  align-items: center;
}

.home-about-section h2 {
  width: 85%;
}

@media screen and (max-width: 991px) {
  .home-about-section h2 {
    padding-top: 40px;
    width: 100%;
  }
}

.home-about-section .home-about-right .home-about-points {
  padding-left: 20px;
}

.home-about-section .home-about-right .home-about-points ul li {
  list-style: none;
  display: flex;
  margin-bottom: 8px;
}

.home-about-section .home-about-right .home-about-points ul li i {
  font-size: 1.25rem;
  color: var(--tm-primary);
  margin-right: 28px;
  margin-top: 3px;
}

.home-about-section .home-about-right .home-about-points ul li p {
  color: var(--tm-text-600);
}

.home-more-section .home-more-heading-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-more-section .home-more-heading-container .home-more-heading h2 {
  width: 85%;
}

@media screen and (max-width: 575px) {
  .home-more-section .home-more-heading-container .home-more-heading h2 {
    width: 100%;
  }

  .home-more-section .home-more-heading-container {
    padding: 0 28px;
  }
}

.home-more-section .home-more-title {
  background-color: var(--tm-accent-100);
  padding: 1px 25px;
  width: fit-content;
  border-radius: var(--tm-border-radius-lg);
  color: var(--tm-background);
  font-family: var(--tm-figtree);
  font-weight: bold;
  font-size: 1.125rem;
}

.home-more-section .home-more-right-img img {
  width: 100%;
  height: 250px;
  border-radius: var(--tm-border-radius-md);
  object-fit: cover;
  object-position: center;
}

.home-more-section .home-more-left-img img {
  width: 100%;
  height: auto;
  border-radius: var(--tm-border-radius-md);
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 901px) {
  .home-more-section .home-more-right-img img {
    display: none;
  }

  .home-more-section .home-more-left-img img {
    margin-bottom: 40px;
  }
}

.home-more-section .home-more-desc {
  padding: 0 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.bento-grid-section {
  margin-bottom: 80px;
}

.bento-grid-section .bento-box {
  padding: 10px;
}

.bento-box-1,
.bento-box-2,
.bento-box-3,
.bento-box-4 {
  height: 370px;
  background-color: var(--tm-accent-100);
  border-radius: var(--tm-border-radius-lg);
  background: var(--tm-background);
  box-shadow: 5px 5px 16px #b3b3b378, -5px -5px 16px #ffffff;
}

.bento-box-5,
.bento-box-6,
.bento-box-7 {
  height: 175px;
  background-color: var(--tm-accent-100);
  border-radius: var(--tm-border-radius-lg);
  background: var(--tm-background);
  box-shadow: 5px 5px 16px #b3b3b378, -5px -5px 16px #ffffff;
}

.bento-box-1 video,
.bento-box-5 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--tm-border-radius-lg);
}

.bento-box-1 {
  position: relative;
}

.bento-box-1-content {
  position: absolute;
  top: 20px;
  left: 20px;
}

.bento-box-1-content p {
  width: 60%;
}

.bento-box-2 {
  background-image: url("../images/images/bento\ image\ 1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bento-box-2-content {
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: space-around;
  place-items: center;
  text-align: center;
  padding: 40px;
}

.bento-box-3 {
  background-image: url("../images/images/bento\ image\ 2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 28px;
}

.bento-box-3-content {
  text-align: end;
}

.bento-box-4 {
  position: relative;
  overflow: hidden;
}

.bento-box-4-content {
  position: relative;
  z-index: 1;
  padding: 40px 28px;
}

.bento-box-4 img {
  width: 75%;
  position: absolute;
  bottom: -10px;
  right: 0;
}

.bento-box-6 {
  display: grid;
}

.bento-box-6 .bento-box-6-content {
  display: flex;
  align-items: center;
}

.bento-box-6 .bento-box-6-btn {
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 0 15px 15px 0;
}

.bento-box-6 a {
  text-decoration: none;
}

/* .bento-box-6 a i {
  color: var(--tm-white);
  font-size: 1.3rem;
} */

.bento-box-6 p {
  font-family: var(--tm-figtree);
  font-size: 1.5rem;
  margin: 20px 0 0 10px;
}

.bento-box-7 {
  position: relative;
  overflow: hidden;
}

.bento-box-7-content {
  width: 100%;
  height: 100%;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.bento-box-7-content p {
  padding-left: 40px;
}

.bento-box-7 img {
  width: 90%;
  position: absolute;
  bottom: -10px;
  right: 0;
}

@media screen and (max-width: 901px) {
  .bento-grid-section {
    padding: 0 28px;
  }
}

.service-section {
  margin-bottom: 80px;
  background-color: #9bbdfd26;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.service-section .service-header {
  text-align: center;
}

.service-section .service-header .service-header-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.service-section .service-header .service-header-desc {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.service-section .service-header .service-header-desc p {
  font-family: var(--tm-poppins);
  font-size: 1rem;
  color: var(--tm-text-750);
}

.service-section .service-box-section {
  padding: 0 10px;
}

.service-section .service-box {
  background-color: var(--tm-white);
  border-radius: var(--tm-border-radius-md);
  overflow: hidden;
  box-shadow: 2px 2px 14px 4px #00000014;
}

.service-section .service-box .service-box-img {
  height: 265px;
  overflow: hidden;
}

.service-section .service-box img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease-in-out;
}

.service-section .service-box .service-box-content {
  padding: 10px 30px 0 30px;
}

.service-section .service-box .service-box-content h4 {
  margin-bottom: 4px;
}

.service-section .service-box .service-box-content p {
  margin-bottom: 8px;
  color: var(--tm-text-600);
}

.service-section .service-box-section .service-box .service-btn {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  border-top: #0000001a 1px solid;
  padding: 25px;
  font-size: 1.125rem;
  color: var(--tm-accent);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.service-section .service-box-section .service-box:hover img {
  transform: scale(1.1); /* Slight zoom effect */
}

.service-section .service-box-section .service-box .service-btn::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--tm-accent);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.service-section .service-box-section .service-box .service-btn i {
  margin-left: 4px;
  transition: all 0.3s ease-in-out;
}

.service-section .service-box-section .service-box .service-btn:hover {
  color: var(--tm-accent-500);
}

/* Expand underline on hover */
.service-section .service-box-section .service-box .service-btn:hover::after {
  width: 50%;
}

/* Slide arrow to the right on hover */
.service-section .service-box-section .service-box .service-btn:hover i {
  margin-left: 6px;
}

@media screen and (max-width: 901px) {
  .service-section .service-box-section {
    padding: 28px 28px;
  }

  .service-section .service-box img {
    height: 300px;
  }

  .service-section .service-box .service-box-img {
    height: 300px;
  }
}

.home-programs-section .home-program-card {
  padding: 8px;
}

.home-programs-section .home-program-card .home-program-card-content {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--tm-border-radius-md);
  position: relative;
}

.home-programs-section .home-program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease-in-out;
}

.home-program-card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(166 24 67));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.home-program-card-content:hover::before {
  opacity: 1;
}

.home-program-card-content:hover img {
  transform: scale(1.1);
}

.home-programs-section .home-program-card .home-program-card-content .home-program-card-header {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 12px;
  padding: 0 16px;
}

.home-programs-section .home-program-card .home-program-card-content .home-program-card-header h5 {
  font-family: var(--tm-figtree);
  color: var(--tm-background);
  font-size: 1.125rem;
}

.home-programs-section .home-program-card .home-program-card-content .home-program-card-header p {
  font-family: var(--tm-poppins);
  color: var(--tm-background);
}

.home-programs-section .home-program-left {
  display: flex;
  align-items: center;
}

.home-programs-section .home-program-left .home-program-content {
  padding-right: 60px;
}

.home-programs-section .home-program-left .home-program-content h2 {
  margin-bottom: 16px;
}

.home-programs-section .home-program-left .home-program-content p {
}
    .home-program-desc ul li {
        padding-right: 60px;
        line-height: 2rem;
    }

@media screen and (max-width: 901px) {
  .home-programs-section .home-program-left .home-program-content {
    padding-right: 40px;
    padding-left: 40px;
    margin-bottom: 60px;
  }

  .home-programs-section .home-program-card {
    padding: 28px;
  }
}

.testimonial-section {
  position: relative;
  min-height: 400px;
  padding: 60px 0;
}

.testimonial-section .testimonial-blob-1 {
  position: absolute;
  left: 60px;
  bottom: 0;
  width: 350px;
}

.testimonial-section .testimonial-blob-2 {
  position: absolute;
  right: 60px;
  top: 0;
  width: 350px;
}

.testimonial-section .testimonial-box {
  background: rgba(255, 255, 255, 0.27);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  min-height: 400px;
  position: relative;
}

.testimonial-section .testimonial-box .testimonial-box-container {
  min-height: 400px;
}

.testimonial-section .testimonial-box .profile-section {
  display: flex;
  margin-left: 20%;
  gap: 40px;
  padding: 40px 0;
  /*text-align: center;*/
  align-items: center;
}

.testimonial-section .testimonial-box .profile-section .profile-picture {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.testimonial-section .testimonial-box .review-content-section {
  justify-content: center;
  /*margin-bottom: 40px;*/
}

.testimonial-section .testimonial-box .review-content-section i {
  margin-left: 14%;
  font-size: 3rem;
  color: var(--tm-secondary-100);
}

.testimonial-section .testimonial-box .review-content-section p {
  width: 70%;
  margin-left: 20%;
}

.testimonial-section .testimonial-box .testimonial-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#testimonial-container {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-slide.active {
  display: block;
}

@media screen and (max-width: 990px) {
  .testimonial-section {
    overflow: hidden;
  }

  .test-btn-1 {
    position: absolute;
    bottom: 20px;
    right: 120px;
    z-index: 2;
  }

  .test-btn-2 {
    position: absolute;
    bottom: 20px;
    right: 50px;
    z-index: 2;
  }

  .testimonial-section .testimonial-box .review-content-section {
    /*margin-bottom: 100px;*/
  }
}

@media screen and (max-width: 600px) {
  .testimonial-section .testimonial-box .profile-section {
    display: flex;
    margin-left: 0;
    margin-bottom: 50px;
    gap: 40px;
    padding: 40px 0;
    /*text-align: center;*/
    align-items: center;
  }

  .testimonial-section .testimonial-box .review-content-section p {
    width: 100%;
    margin-left: 0;
  }

  .testimonial-section .testimonial-box .review-content-section i {
    margin-left: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  width: 100%;
  padding: 100px 0 0 0;
  background-color: var(--tm-background);
  box-shadow: 0 -6px 12px #00000017;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--tm-text-600);
  margin-bottom: 20px;
  margin-right: 60px;
}

.footer-socials {
  display: flex;
}

    .footer-socials a {
        margin-right: 28px;
        padding: 4px 7px 2px 8px;
        border-radius: 50%;
        background-color: var(--tm-secondary-100);
        font-size: 1rem;
        transition: 0.3s ease-in;
        color: #551a8b;
    }

.footer-socials a:hover {
  border-radius: 50%;
  background-color: var(--tm-primary);
  color: var(--tm-background);
}

.footer h5 {
  font-family: var(--tm-poppins);
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.footer .footer-links {
  list-style: none;
}

.footer .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-links a {
  text-decoration: none;
  color: var(--tm-text-600);
  font-size: 1.125rem;
  font-family: var(--tm-poppins);
  transition: 0.3s ease-in;
}

.footer .footer-links a:hover {
  color: var(--tm-primary);
}

.footer .footer-contact {
  list-style: none;
}

.footer .footer-contact li {
  margin-bottom: 12px;
}

.footer .footer-contact a {
  text-decoration: none;
  color: var(--tm-text-600);
  font-size: 1.125rem;
  font-family: var(--tm-poppins);
  transition: 0.3s ease-in;
}

.footer .footer-contact a:hover {
  color: var(--tm-primary);
}

.footer .footer-contact i {
  margin-right: 20px;
  font-size: 1.125rem;
  color: var(--tm-primary);
  transition: all 0.3s ease-in-out;
}

.footer .footer-contact li:hover i {
  font-size: 1.25rem;
}

.footer .footer-copy {
  text-align: center;
  margin: 16px 0;
  color: var(--tm-text-600);
}

@media screen and (max-width: 901px) {
  .footer-socials {
    margin-bottom: 40px;
  }
  .footer .footer-links {
    margin-bottom: 40px;
  }
  .footer {
    padding: 100px 40px 0 40px;
  }
}

/* About Page Start */

.page-banner {
  width: 100%;
  height: 350px;
  background: var(--tm-gradient-4);
  display: flex;
  align-items: center;
}

.page-banner .container {
  position: relative;
}

.page-banner .banner-pattern {
  position: absolute;
  top: -210px;
  right: 30px;
  width: 500px;
  height: auto;
  opacity: 0.4;
}

.page-banner h2 {
  margin-bottom: 16px;
}

.page-banner .breadcrumb {
  list-style: none;
  display: flex;
}

.page-banner .breadcrumb li {
  margin-right: 8px;
}

.page-banner .breadcrumb li.active a {
  color: var(--tm-primary-500);
}

.page-banner .breadcrumb li a {
  text-decoration: none;
  color: var(--tm-text-750);
  font-family: var(--tm-poppins);
  font-size: 1rem;
}

.page-banner-2 {
  width: 100%;
  height: 350px;
  background: var(--tm-background);
  display: flex;
  align-items: center;
}

.page-banner-2 .banner-underline span:nth-child(odd) {
  display: block;
  height: 12px;
  background: var(--tm-accent);
  margin-bottom: 16px;
}

.page-banner-2 .banner-underline span:nth-child(even) {
  display: block;
  height: 12px;
  background: var(--tm-primary-500);
  margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
    .page-banner {
        margin-top: 80px;
    }
}

@media screen and (max-width: 786px) {
    .page-banner .banner-pattern {
        display: none;
    }
}

.story-section .story-image {
  width: 80%;
  position: relative;
}

.story-section .story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--tm-border-radius-md);
}

.story-section .story-image video {
  position: absolute;
  width: 275px;
  height: 275px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--tm-border-radius-md);
  bottom: -200px;
  right: -85px;
}

.story-section .story-content {
  padding-left: 28px;
  position: relative;
}

.story-section .story-content img {
  position: absolute;
  width: 95%;
  top: 30px;
  left: 70px;
}

@media screen and (max-width: 991px) {
  .story-section .story-image {
    width: 100%;
    margin-bottom: 40px;
  }
  .story-section .story-image video {
    display: none;
  }

  .story-section .story-content {
    padding: 0 28px;
  }

  .story-section .story-content img {
    position: absolute;
    width: 95%;
    top: 30px;
    left: 0px;
  }
}

.mission-section {
  background-color: var(--tm-white);
  overflow: hidden;
}

.mission-section .mission-img-container {
  overflow: hidden;
}

.mission-section .mission-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease-in-out;
  transform: scale(1.1);
}

.mission-section .mission-img-container img:hover {
  transform: scale(1.2);
}

.mission-section .mission-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 60px;
  transition: all 0.4s ease-in-out;
}


.mission-section .mission-content:hover {
  box-shadow: inset 0px 0 12px #a618437a;
}

    .mission-section .mission-content p{
        margin-bottom: 0;
    }

@media screen and (max-width: 901px) {
  .mission-section {
    overflow: hidden;
  }

  .mission-section .mission-content {
    padding: 60px;
  }

  .mission-reverse {
    flex-direction: column-reverse;
  }
}

.meet-coach-section .meet-coach-img {
  position: relative;
}

.meet-coach-section .meet-coach-img img {
  width: calc(100% - 28px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 28px 28px var(--tm-secondary);
}

.meet-coach-section .meet-coach-content {
  padding: 0 60px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.meet-coach-section .meet-coach-img .quotes-box {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 47px;
  background: #fbf8f9b5;
  padding: 20px 40px;
}

.meet-coach-section .meet-coach-img .quotes-box p {
  color: var(--tm-text-600);
  font-style: italic;
}

.meet-coach-section .meet-coach-img .quotes-box .quotes-box-container {
  position: relative;
}
.meet-coach-section .meet-coach-img .quotes-box .quotes-box-container .forward {
  position: absolute;
  top: -10px;
  left: -25px;
  font-size: 1.5rem;
}

.meet-coach-section .meet-coach-img .quotes-box .quotes-box-container .backward {
  position: absolute;
  top: 40px;
  right: -25px;
  font-size: 1.5rem;
  transform: rotate(180deg);
}

@media screen and (max-width: 575px) {
  .meet-coach-section .meet-coach-img .quotes-box p {
    color: var(--tm-text-600);
    font-style: italic;
    font-size: 0.75rem;
    line-height: 1.3rem;
  }

  .meet-coach-section .meet-coach-img .quotes-box h4 {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .meet-coach-section .meet-coach-content {
    padding: 40px;
  }
}

/* About Page End */

/* Service Page Start */

.service-header-section .service-header-left {
  position: relative;
}

.service-header-section .service-header-left-img-container {
  width: 100%;
  position: relative;
}

.service-header-section .service-header-left img {
  width: 100%;
  height: auto;
  border-radius: var(--tm-border-radius-md);
}

.service-header-section .service-header-tag {
  position: absolute;
  right: 0;
  bottom: -28px;
  background-color: var(--tm-primary-100);
  padding: 20px;
  border-radius: 10px 0 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-header-section .service-header-tag p {
  font-family: var(--tm-figtree);
  font-size: 1.125rem;
  color: var(--tm-background);
  font-weight: bold;
}

.service-header-section .service-header-tag i {
  font-size: 1.5rem;
  color: gold;
  margin-right: 16px;
}

.service-header-section .service-header-right {
  padding: 0 0 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-header-right-tag {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-header-right-tag-left {
  font-family: var(--tm-poppins);
  font-size: 0.75rem;
}

.service-header-right-tag-left span {
  font-family: var(--tm-figtree);
  font-size: 2rem;
  font-weight: bold;
  margin-right: 5px;
}

.service-header-right-tag-center span::before {
  content: "";
  display: block;
  width: 6px;
  height: 50px;
  background: var(--tm-black);
  margin: 0 auto;
}
.services-section .service-card:nth-child(even) .services-row {
    flex-direction: row-reverse;
}

.services-section {
}

.services-section .service-card {
  width: 100%;
  min-height: 600px;
}

.services-section .service-card:nth-child(odd) {
  background-color: #9bbdfd33;
}

.services-section .service-card:nth-child(even) {
  background-color: #f2a6bd33;
}

.services-section .service-card:nth-child(odd) .btn-service {
  background-color: var(--tm-accent);
}

.services-section .service-card:nth-child(even) .btn-service {
  background-color: var(--tm-primary);
}

.services-section .service-card:nth-child(odd) .btn-service span,
.services-section .service-card:nth-child(even) .btn-service span {
  position: relative;
  z-index: 1;
}

.services-section .service-card:nth-child(odd) .btn-service::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--tm-primary);
  transition: width 0.5s, height 0.5s;
}

.services-section .service-card:nth-child(even) .btn-service::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--tm-accent);
  transition: width 0.5s, height 0.5s;
}

.services-section .service-card:nth-child(odd) .btn-service:hover::before,
.services-section .service-card:nth-child(even) .btn-service:hover::before {
  width: 350px;
  height: 350px;
}

.services-section .service-card .service-card-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-programs-carousel-container {
  width: 85%;
  height: 600px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.service-programs-carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  position: relative;
}
.service-programs-carousel-item {
  width: 80%;
  height: 185px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin: 20px 0;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}
.service-programs-carousel-item.main {
  width: 100%;
  height: 275px;
  font-size: 24px;
  transform: scale(1.0001);
}

.service-programs-carousel-item .service-program-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 75%;
}

.service-programs-carousel-item .service-program-card-content h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  line-height: 2rem;
}

.service-programs-carousel-item .service-program-card-content p {
  font-size: 0.75rem;
  font-weight: normal;
  color: white;
  line-height: 1.4rem;
}

.service-programs-carousel-item.main .service-program-card-content h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  line-height: 3rem;
}

.service-programs-carousel-item.main .service-program-card-content p {
  font-size: 1rem;
  font-weight: normal;
  color: white;
  line-height: 1.4rem;
}

.service-programs-carousel-item .service-program-card-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.service-programs-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.service-programs-buttons button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .services-section .service-card .service-card-content {
    padding: 60px 40px;
  }

  .service-header-section .service-header-right {
    padding: 60px 40px 0 40px;
  }
  /*.services-section .service-card:nth-child(even) .row {
    flex-direction: column-reverse;
  }*/
}

.services-section .service-card .service-card-programs {
  min-height: 600px;
}

/* Privacy Policy Page Start */
.cr-contents p {
  margin-bottom: 20px;
}

/* Privacy Policy Page End */

/* Contact Page Start */
.contact-details-section .contact-details-section-header {
  text-align: center;
}

.contact-details-section .contact-cards {
  padding: 0 3px;
}

.contact-details-section .contact-card {
  height: 240px;
  background-color: #efedee;
  border-radius: var(--tm-border-radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-details-section .contact-card div {
  display: contents;
}

.contact-details-section .contact-card div i {
  margin-right: 16px;
  color: var(--tm-primary);
  font-size: 1.125rem;
  transition: all 0.3s;
}

.contact-details-section .contact-card div p {
  color: var(--tm-text-600);
  font-size: 1.125rem;
  transition: all 0.3s;
}

.contact-details-section .contact-card:hover {
  background-color: var(--tm-primary-100);
  transition: 0.3s;
  box-shadow: 0px 0px 15px 0px var(--tm-primary-100);
}

.contact-details-section .contact-card:hover i {
  transform: scale(1.5);
}

.contact-details-section .contact-card:hover p {
  color: var(--tm-text-1000);
}

.contact-form-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-container {
  position: relative;
}

.contact-form-container .contact-form-blob-1 {
  position: absolute;
  width: 400px;
  top: -50px;
  right: -30px;
}

.contact-form-container .contact-form-blob-2 {
  position: absolute;
  width: 400px;
  bottom: -20px;
  left: -70px;
}

.contact-form-container .contact-form {
  background: rgba(255, 255, 255, 0.27);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 40px 40px;
}

.contact-form-container .contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--tm-primary-500);
  padding-left: 20px;
  color: var(--tm-text-600);
}

.contact-form-container .contact-form select {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--tm-primary-500);
  padding-left: 20px;
  color: var(--tm-text-600);
}

.contact-form-container .contact-form textarea {
  width: 100%;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--tm-primary-500);
  padding-left: 20px;
  color: var(--tm-text-600);
  padding-top: 16px;
}

.contact-form-container .contact-form button {
  width: 100%;
  text-align: center;
  display: block;
  transition: all 0.5s ease-in-out;
}

.contact-form-container .contact-form button:hover {
  background-color: var(--tm-primary-500);
  transform: translateY(-3px);
  box-shadow: 0px 6px 10px 2px #a6184340;
}

.map-section {
  width: 100%;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--tm-border-radius-md);
}

@media screen and (max-width: 991px) {
  .contact-details-section .contact-card {
    height: 120px;
    margin-bottom: 20px;
  }

  .contact-form-section .contact-form-container {
    overflow: hidden;
  }
}

/* Service Details Start */

.sv-details-space {
  padding-bottom: 160px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sv-details-space {
    padding-bottom: 200px;
  }
}

.service-details-section .sv-details-wrapper {
  padding-right: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-section .sv-details-wrapper {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-details-section .sv-details-wrapper {
    padding-right: 0px;
  }
}

.service-details-section .sv-details-wrapper .sv-details-thumb .service-details-img {
  width: 100%;
  height: auto;
  border-radius: var(--tm-border-radius-md);
  margin-bottom: 60px;
}

.service-details-section .sv-details-wrapper ul li {
  list-style-type: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--tm-text-750);
}

.service-details-section .sv-details-wrapper ul li i {
  color: var(--tm-primary);
  margin-right: 12px;
}

.service-program-container {
  padding: 12px;
}

.service-program-container .service-program-card {
  padding: 12px;
}

.service-program-container .service-program-card {
  background-color: var(--tm-white);
  border-radius: var(--tm-border-radius-md);
  overflow: hidden;
  box-shadow: 2px 2px 14px 4px #00000008;
}

.service-program-container .service-program-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--tm-border-radius-sm);
}

.service-program-container .service-program-card .service-program-card-content p {
  color: var(--tm-text-750);
}

.service-program-container .service-program-card .program-btn-container {
  display: flex;
  justify-content: end;
  width: 100%;
  float: right;
}

.service-programs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--tm-background);
}

/* .service-program-container .service-program-card .program-btn-container a {
  background: var(--tm-primary);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.service-program-container .service-program-card .program-btn-container a i {
  color: var(--tm-white);
  font-size: 1.5rem;
} */

.sv-details-category {
  background: var(--tm-white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0px 1px 3px rgba(32, 33, 36, 0.12);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sv-details-category {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .sv-details-category {
    padding: 30px;
  }
}

.sv-details-category-list ul li {
  list-style-type: none;
  background: var(--tm-background);
  box-shadow: 0px 1px 3px rgba(32, 33, 36, 0.08);
  border-radius: 8px;
  transition: 0.5s;
  margin-bottom: 1px;
  border: 1px solid #00000008;
}
.sv-details-category-list ul li:last-child {
  margin-bottom: 0;
}
.sv-details-category-list ul li:hover {
  transform: scaleX(1.1);
}
.sv-details-category-list ul li.active {
  transform: scaleX(1.1);
}
.sv-details-category-list ul li.active a {
  color: var(--tm-primary);
}
.sv-details-category-list ul li.active a span::before {
  background-color: var(--tp-common-blue-3);
}
.sv-details-category-list ul li.active a i {
  color: var(--tm-primary);
}
.sv-details-category-list ul li a {
  font-weight: 400;
  font-size: 17px;
  color: #202124;
  text-decoration: none;
  display: block;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
  padding: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sv-details-category-list ul li a {
    font-size: 15px;
  }
}
.sv-details-category-list ul li a:hover {
  color: var(--tm-primary);
}
.sv-details-category-list ul li a:hover span::before {
  background-color: var(--tm-primary);
}
.sv-details-category-list ul li a:hover i {
  color: var(--tm-primary);
}
.sv-details-category-list ul li a span::before {
  content: "";
  height: 4px;
  width: 4px;
  background-color: var(--tp-common-black);
  border-radius: 50%;
  transition: 0.3s;
  display: inline-block;
  margin-right: 15px;
  transform: translateY(-4px);
}
.sv-details-category-list ul li a i {
  font-size: 20px;
  transition: 0.3s;
  transform: translateX(3px);
}
.sv-details-social-link a {
  margin-right: 25px;
  font-size: 18px;
  color: #82868c;
  transition: 0.3s;
}
.sv-details-social-link a:hover {
  color: var(--tm-primary);
}

.sv-details-contact {
  padding: 0;
  border-radius: var(--tm-border-radius-md);
  overflow: hidden;
  background: var(--tm-white);
  box-shadow: 0px 1px 3px rgba(32, 33, 36, 0.12);
}

.sv-details-contact .sv-details-contact-image {
  width: 100%;
  margin-bottom: 28px;
}

.sv-details-contact .sv-details-contact-image img {
  width: 100%;
}

.sv-details-contact .sv-details-contact-content {
  padding: 0 32px;
}

.sv-details-contact .sv-details-contact-content ul li {
  margin-bottom: 12px;
  list-style: none;
}

.sv-details-contact .sv-details-contact-content ul li i {
  margin-right: 28px;
  color: var(--tm-primary);
}

.sv-details-contact .sv-details-contact-content ul li a {
  text-decoration: none;
  color: var(--tm-text-750);
}

.sv-details-features {
  display: flex;
  flex-wrap: wrap;
}

.sv-details-features .sv-details-features-item {
  margin-right: 60px;
}

.sv-details-features .sv-details-features-item {
  margin-right: 60px;
}

.sv-details-features .sv-details-features-stars i {
  color: var(--tm-primary);
}

.sv-details-features .sv-details-feature {
  display: flex;
}

.sv-details-features .sv-details-feature i {
  margin-right: 12px;
  color: var(--tm-primary-500);
}

.sv-details-features .sv-details-feature p {
  margin-top: -3px;
  font-family: var(--tm-poppins);
  color: var(--tm-text-600);
}

/* Service Details End */
.hero-badge{
    max-width:120px;
    margin-bottom: 0;
}
.text-danger {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
.whatsapp {
    cursor: pointer;
    position: fixed;
    bottom: 80px;
    right: 18px;
    width: 100px;
    z-index: 100;
}

@media only screen and (max-width: 800px) {
    .whatsapp {
        bottom: 148px;
        right: 12px;
        width: 100px;
        z-index: 100;
    }
}
@media only screen and (max-width: 600px) {
    .whatsapp {
        bottom: 0px;
        right: -10px;
        width: 100px;
        z-index: 100;
    }
}
.error-page-content {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.error-page-content h1{
    color: var(--tm-primary)
}

.modal-whatsapp {
    display: none;
    position: fixed;
    z-index: 1000;
    background: #eae3db;
    right: 43px;
    bottom: 177px;
    width: 275px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 6px 11px 0px #0000004d;
}

.modal-whatsapp-header {
    display: flex;
    justify-content: start;
    background: #00826a;
    align-items: center;
    padding: 12px;
    position: relative;
}

    .modal-whatsapp-header button {
        background: none;
        border: none;
        background: none;
        border: none;
        position: absolute;
        right: 8px;
        top: 2px;
    }

    .modal-whatsapp-header button i{
        font-size: 2rem;
        color: var(--tm-background)
    }

    .modal-whatsapp-header img {
        border-radius: 50%;
        width: 45px;
        margin-right: 20px;
    }

.modal-whatsapp-header h5{
    color: var(--tm-white);
    font-size: 1rem;
    font-weight: normal;
}

.modal-whatsapp-body{
    padding: 20px;
}

    .modal-whatsapp-body .greeting-msg {
        width: fit-content;
        background: white;
        padding: 12px;
        border-radius: 0 30px 30px 30px;
    }

.modal-whatsapp-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

    .modal-whatsapp-footer input {
        width: 185px;
        height: 40px;
        border-radius: 25px;
        padding: 0 18px;
        border: none;
    }

    .modal-whatsapp-footer button {
        width: 40px;
        background: #00826a;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }

    .modal-whatsapp-footer button i {
        color: var(--tm-white)
    }
.whatsapp-active {
    display: block;
}
.whatsapp-hide {
    display: none;
}


#responseMessage {
    text-align: center;
}

    #responseMessage h2 {
        color: #037f5e;
    }

.certification-section {
    display: block;
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.certification-mobile-section{
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.certification-mobile-section img{
    width: 150px;
    margin: 10px;
}

@media (max-width: 767px) {
    .certification-mobile-section {
        display: flex;
    }

    .certification-section {
        display: none;
    }
}
.contact-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
    box-sizing: border-box;
    background: rgba( 0, 0, 0, 0.15 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
}

.contact-popup-form {
    overflow: auto;
    max-height: 98vh;
    width: 35%;
    background: rgba( 255, 255, 255, 0.65 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 16px );
    -webkit-backdrop-filter: blur( 16px );
    border-radius: 10px;
    border-radius: 15px;
    scrollbar-width: none;
}

    .contact-popup-form .contact-form{
        padding: 20px 30px;
    }

    .contact-popup-form p {
        font-size: 0.5rem;
        line-height: 1rem;
        margin-bottom: 0;
    }

    .contact-popup-form input{
        height: 45px !important;
    }

    .contact-popup-form select {
        height: 45px !important;
    }

    .contact-popup-form textarea {
        height: 50px;
    }

    .close-button {
        width: auto !important;
        position: absolute;
        top: 17px;
        right: 25px;
        background: transparent;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: #333;
    }

@media (max-width: 990px) {
    .contact-popup-form {
        width: 50%;
    }
}

@media (max-width: 767px){
    .contact-popup-form {
        width: 75%;
    }
}

@media (max-width: 550px) {
    .contact-popup-form {
        width: 95%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grecaptcha-badge{
    display: none !important;   
}

@media (max-width: 767px) {
    .lead-with-us-button {
        display: none;
    }
}

.lead-with-us-button-arrow {
    display: none;
}

@media (max-width: 767px) {
    .lead-with-us-button-arrow {
        display: flex;
    }
}
.service-programs {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.swiper {
    width: 80%;
    height: 100%;
}

.swiper-slide {
    background: #fff;
    position: relative;
    border-radius: 15px;
}



    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-slide .service-program-card-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 75%;
        color: #ffffff;
    }

        .swiper-slide .service-program-card-content h4 {
            font-size: 1.3rem;
            color: #ffffff !important;
        }

        .swiper-slide .service-program-card-content p {
            font-size: 0.85rem;
            line-height: 1.5rem;
        }

    .swiper-slide.swiper-slide-active .service-program-card-content h4 {
        font-size: 1.5rem;
    }

    .swiper-slide.swiper-slide-active .service-program-card-content p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .swiper-slide .service-program-card-button {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
    