@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #2f8cce;
    --secondary: #2a83a3;
    --btn-color: #305bc7;
    --btn-color-two: #10A9DC;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f1eeee;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1500px;
    }
}

section {
    position: relative;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3b4468;
    font-family: "Jost", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* loader */

#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #CCCCCC, #293773 95%);
    margin: auto;
    overflow: hidden;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;
}

#preloader>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-align: center;
    visibility: hidden;
    font-size: 8rem;
    color: #225290;
    background: linear-gradient(to bottom, #2E3678 25%, #4D78B4 57%, #609CD2 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}

#preloader>span:last-of-type {
    color: #225290;
    background: linear-gradient(to bottom, #2E3678 25%, #4D78B4 57%, #609CD2 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#preloader>.show {
    opacity: 1;
    visibility: visible;
    color: #225290;
    background: linear-gradient(to bottom, #2E3678 25%, #4D78B4 57%, #609CD2 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#preloader .preloaderVideo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes jump {
    25% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2.5em);
    }

    75% {
        transform: translateY(0);
    }
}

#preloader .typing {
    opacity: 1;
    visibility: visible;
}

#preloader .typing span {
    width: 3rem;
    height: 3rem;
    background: #fff;
    border-radius: 50%;
    margin: 0;
    animation: jump 1500ms infinite;
}

#preloader .typing span:nth-child(2) {
    animation-delay: 250ms;
}

#preloader .typing span:nth-child(3) {
    animation-delay: 500ms;
}

/* loader */

/* navigation css */
.headBtn {
    display: flex;
    gap: 0.8125rem;
}

.headBtn .btn1.two {
    background-color: var(--primary);
}

.headBtn .btn1.two:hover {
    background-color: var(--primary);
}

.headBtn .btn1.three {
    background-color: var(--btn-color);
}

.headBtn .btn1.three:hover {
    background-color: var(--btn-color-two);
}

.btn1 {
    text-transform: uppercase;
    color: var(--white);
    font-weight: bold;
    background-color: var(--btn-color-two);
    padding: 0.6875rem 1.2em;
    border-radius: 7px;
}

.btn1:hover {
    background-color: var(--btn-color);
    color: var(--white);
}

.btn2 {
    background-color: transparent;
    border: 1px solid var(--white);
}

.form-inline a {
    color: var(--white);
    font-size: 1.5rem;
}

.form-inline {
    gap: 1.5625rem;
    margin-left: 2.5rem;
    margin-top: 1rem;
}

.cart span {
    background: var(--white);
    color: var(--black);
    width: 22px;
    height: 22px;
    font-size: 0.875rem;
    border-radius: 50px;
    display: grid;
    place-items: center;
    position: absolute;
    right: -1.6rem;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid var(--primary);
}

.cart {
    position: relative;
}

/* navigation css */

/* slider css */

.main-slider {
    min-height: 100vh;
    height: 100%;
    border-radius: 0 0 100px 100px;
    overflow: hidden;
}

.manVideo {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.main-slider:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #02212d2e, #111d21e6);
    opacity: 0.8;
}

.main-slider .homeSlider {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
} */

/* .homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
} */

.slideOne {
    overflow: hidden;
    height: 100%;
}

.slideOne * {
    transform: translateX(-100%);
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 6.875rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
}

.slideOne h1 span {
    display: block;
    font-size: 1.5625rem;
    font-weight: 500;
}

.slideOne h2 {
    font-size: 2.6875rem;
    text-transform: uppercase;
    color: var(--white);
}

.slideOne h2 span {
    color: var(--primary);
}

.slideOne p {
    color: var(--white);
    font-size: 1.625rem;
    line-height: 1.5;
    width: 91%;
    margin: 1.2rem 0 1.8rem 0;
}

.slideOne .themeBtn {
    transition: none;
}

.themeBtn {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--white);
    background: var(--primary);
    border-radius: 7px;
    padding: 9px 0.8em;
    display: inline-block;
}

.themeBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.banImg {
    position: relative;
}

.banPath li span {
    background: var(--white);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    margin: 0;
}

.banPath li span:before {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 8%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.banBox h3 {
    font-size: 1.4375rem;
    color: #141414;
    font-weight: 600;
}

.banBox p {
    line-height: 1.75;
    margin: 0;
}

.banBox {
    background: var(--white);
    width: 300px;
    text-align: left;
    padding: 1rem 1rem;
    border-radius: 10px;
    margin: 0;
    position: absolute;
    top: 2.3rem;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 1s ease;
    z-index: 11;
    max-height: 285px;
    overflow-y: auto;
}

.banPath {
    display: flex;
    position: absolute;
    top: 25%;
    transform: translateX(-50%);
    left: 50%;
    flex-direction: column;
}

.banPath li {
    position: relative;
}

.banPath li:hover .banBox {
    opacity: 1;
    visibility: visible;
}

.banPath li:nth-child(2) {
    left: 16rem;
    top: -3rem;
}

.banPath li:nth-child(1) {
    left: 7rem;
    top: -7rem;
}

.banPath li:nth-child(3) {
    top: 2.5rem;
    right: -23rem;
}

.banPath li:nth-child(4) {
    top: 4rem;
    left: -3rem;
}

.banPath li:nth-child(5) {
    top: 24rem;
    left: -6.5rem;
}

.banPath li:nth-child(5) .banBox,
.banPath li:nth-child(6) .banBox {
    top: unset;
    bottom: 2.3rem;
}

.banPath li:nth-child(6) {
    top: 23.5rem;
    left: 8.5rem;
}

.socialLinks {
    position: absolute;
    top: 38%;
    left: 5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
}

.socialLinks li a {
    background: #716062;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.625rem;
}

.socialLinks li:nth-child(2) a {
    background: #3b5998;
}

.socialLinks li:nth-child(3) a {
    background: #03a9f4;
}

.socialLinks li:nth-child(4) a {
    background: #007ab9;
}

.socialLinks li:nth-child(5) a {
    background: #bc0202;
}

.socialLinks:before {
    content: "";
    position: absolute;
    background: var(--white);
    height: 108px;
    width: 1px;
    left: 0;
    right: 0;
    margin: auto;
    top: -7.5rem;
}

/* slider css */

/* Cart Sec Css Start */

.cartSec {
    background: url(../images/cartBg.webp) bottom/contain no-repeat;
    padding-bottom: 7.5rem;
    margin-top: -3rem;
}

.cardsSec [class*="col-"] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
}

.cartBox {
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 7px 9px rgb(0 0 0 / 16%);
    padding: 1.875rem 0 2.75rem 0;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.cartBox:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.cartBox img {
    transition: 0.5s ease;
}

.cartBox:hover img {
    filter: brightness(0) invert(1);
}

.cartBox:hover h3,
.cartBox:hover p {
    color: var(--white);
}

.cartBox h3 {
    font-size: 1.5625rem;
    color: #1d1d1d;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem 0;
    transition: 0.5s ease;
}

.cartBox p {
    line-height: 1.4;
    width: 95%;
    /* height: 180px; */
    margin: auto;
    transition: 0.5s ease;
    overflow-y: auto;
}

/* Cart Sec Css End */

/* Symptoms Sec Css Start */

.secHeading {
    font-size: 3.125rem;
    color: #1d1d1d;
    text-transform: uppercase;
}

.secHeading span {
    font-weight: lighter;
}

.symptomsHeading p {
    font-size: 1.625rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.symptomsWrap {
    display: flex;
    align-items: start;
    justify-content: space-around;
}

.symptomsCart {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 550px;
    margin-top: 4rem;
}

.symptomsCart2 li:nth-child(2) {
    margin-top: auto;
    margin-bottom: 3rem;
    margin-left: -6rem;
}

.symptomsCart1 li:nth-child(2) {
    margin-left: 5rem;
}

.symptomsCart2 li:nth-child(3) {
    margin-left: -12rem;
    margin-bottom: -4rem;
}

.symptomsCart2 li:nth-child(1) {
    margin-left: -6rem;
    margin-top: -4rem;
}

.symptomsCart2 {
    min-height: 700px;
    margin-right: 5rem;
}

.featureBox h3 {
    font-size: 1.125rem;
    color: #161616;
    font-weight: 600;
}

.featureBox p {
    font-size: 0.875rem;
    color: #141414;
    line-height: 1.5;
    margin: 0;
}

.featureBox {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 15px 22px rgb(0 0 0 / 16%);
    width: 200px;
    height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 1rem 1.25rem;
    overflow-y: auto;
}

.featureBox span {
    background: #707070;
    width: 314px;
    height: 1px;
    position: absolute;
    left: 25%;
}

.featureBox span:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #333333;
    border-radius: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.symptomsCart1 li:nth-child(2) .featureBox span {
    left: 29%;
}

.symptomsCart2 .featureBox span {
    width: 159px;
    right: 28.6%;
    left: inherit;
}

.symptomsCart2 .featureBox span:before {
    right: auto;
}

.symptomsCart2 li:nth-child(3) .featureBox span {
    right: 34%;
}

.symptomsCart2 li:nth-child(2) .featureBox span {
    width: 383px;
    bottom: 50.5%;
    right: 22.5%;
}

.symptomsCart2 li:nth-child(2) .featureBox span:after {
    content: "";
    position: absolute;
    background: #707070;
    height: 185px;
    width: 1px;
    right: 0;
}

.symptomsImg {
    position: relative;
}

.symptomsImg:before,
.symptomsImg:after {
    content: "";
    position: absolute;
    border: 7px solid var(--primary);
    width: 433px;
    height: 433px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    left: 0;
    right: 0;
    animation: circleAnim 2s ease-out infinite;
}

.symptomsImg:after {
    width: 609px;
    height: 609px;
    border: 7px solid rgb(47 140 206 / 14%);
    animation: circleAnim 2s 0.5s ease-out infinite;
}

@keyframes circleAnim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.125);
    }

    100% {
        transform: scale(1);
    }
}

/* Symptoms Sec Css End */

/* Service Sec Css Start */

.serviceSec {
    background: #fcfcfc;
    border-radius: 100px;
    box-shadow: 0 3px 22px rgb(0 0 0 / 16%);
    padding: 6.875rem 0 13.9375rem 0;
    margin-top: 1.4375rem;
}

.serviceSec .row+.row {
    margin-top: 6rem;
}

.line {
    background: var(--primary);
    width: 2px;
    height: 78%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.line span {
    background: var(--primary);
    width: 37px;
    height: 37px;
    position: absolute;
    border-radius: 50%;
    border: 5px solid var(--white);
    right: -1.2rem;
    top: 9.7rem;
}

.line span:nth-child(2) {
    top: 46%;
}

.line span:nth-child(3) {
    top: inherit;
    bottom: 14.5%;
}

.serviceImg img {
    border-radius: 20px;
    box-shadow: 0 16px 50px rgb(0 0 0 / 16%);
}

.serviceContent h3 {
    font-size: 2.5rem;
    color: #161616;
    margin: 1.5rem 0 1rem 0;
    min-height: 48px;
}

.serviceContent p {
    width: 50%;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.serviceContent .themeBtn {
    display: flex;
    width: fit-content;
    align-items: center;
    padding: 0 0 0 2.5rem;
}

.serviceContent .themeBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.serviceContent .themeBtn div {
    background: var(--secondary);
    width: 94px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 0 7px 7px 0;
    margin-left: 2.5rem;
}

/* Service Sec Css End */

/* Happy Sec Css Start */

.happySec {
    padding: 3.125rem 0 5rem 0;
    margin-top: -7rem;
    z-index: 1;
}

.happySec:before {
    position: absolute;
    content: "";
    background: #e8f9ff;
    width: 85%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 20px 20px 80px 80px;
    z-index: -1;
    top: 0;
}

.happyCart figure img {
    border-radius: 1.25rem;
    box-shadow: 0 7px 9px rgb(0 0 0 / 16%);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.happyCart {
    position: relative;
    transition: 0.5s ease;
    display: block;
}

.happyCart:hover .happyBtn {
    opacity: 0;
}

.happyCart:hover .happyContent {
    opacity: 1;
}

.happyBtn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: fit-content;
    margin: auto;
    color: var(--white);
    font-size: 2rem;
    transition: 0.5s ease;
    background: unset;
    border: unset;
}

.happyContent p {
    color: var(--white);
    line-height: 1.5;
    width: 78%;
    margin-bottom: 3rem;
}

.happyContent h3 {
    font-size: 1.25rem;
    color: var(--white);
    padding-bottom: 1rem;
}

.happyContent {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
    background: rgb(47 140 206 / 78%);
    border-radius: 20px;
    opacity: 0;
    transition: 0.5s ease;
}

.happySlider {
    padding: 3rem 0;
}

.happyCart iframe {
    width: 100%;
    height: 350px;
    border-radius: 1rem;
}

.happySec .swiper-button-next,
.happySec .swiper-button-prev {
    border: 2px solid #707070;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--white);
    top: 60%;
}

.happySec .swiper-button-next:after,
.happySec .swiper-button-prev:after {
    font-size: 1rem;
    color: #707070;
}

.happySec .swiper-button-next {
    right: 6rem;
}

.happySec .swiper-button-prev {
    left: 6rem;
}

/* Happy Sec Css End */

/* Health Sec Css Start */

.healthSec {
    background: url(../images/healthBg.webp) center/cover no-repeat;
    border-radius: 50px;
    margin-top: 8.75rem;
    transform-origin: center;
}

.healthSec:before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #363636, #111111);
    opacity: 0.66;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 50px;
}

.healthContent h2 {
    font-size: 4.375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
}

.healthContent h2 span {
    color: var(--primary);
    display: block;
    font-weight: 400;
    margin-top: 1rem;
}

.healthContent h3 {
    font-size: 6.25rem;
    color: var(--white);
}

.healthImg {
    margin: -3.5rem 0 0 0;
}

.healthHeading h2 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 15rem;
    z-index: 1;
    -webkit-text-stroke: 2px var(--white);
    -webkit-text-fill-color: transparent;
    opacity: 0.35;
    line-height: 1;
    user-select: none;
    text-wrap: nowrap;
    flex: 1 0 70%;
}

.healthHeading {
    margin-top: -15rem;
}

.healthWrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 10rem;
}

.healthContent {
    position: relative;
    z-index: 2;
}

.healthImg img {
    position: relative;
    z-index: 1;
}

/* Health Sec Css End */

/* Download Sec Css Start */

.downloadSec {
    margin: 11.25rem 0 10rem 0;
}

.downloadBg {
    background: #f4f4f4;
    border: 1px solid #d5d5d5;
    border-radius: 90px;
    padding-right: 4rem;
}

.downloadContent {
    margin-top: 7.5rem;
    position: relative;
    z-index: 1;
}

.downloadContent p {
    font-size: 2.0625rem;
    line-height: 1.4;
    margin: 1rem 0 2rem 0;
}

.downloadContent p span {
    font-weight: 600;
}

.mobileImg {
    margin: -3rem 0 -2rem 0;
    z-index: 1;
    position: relative;
}

.appBg {
    position: absolute;
    bottom: -1rem;
    left: 1rem;
}

/* Download Sec Css End */

/* Testimonial Sec Css Start */

.testimonialSec {
    background: url(../images/testimonialBg.webp) center left/contain no-repeat;
    padding: 1rem 0 10rem 0;
}

.reviewBox {
    background: var(--white);
    border-radius: 19.5px;
    padding: 2rem 3rem;
    position: relative;
    border: 1px solid #dbdbdb;
    box-shadow: 0 10px 0 rgb(0 0 0 / 16%);
}

.quote {
    position: absolute;
    right: 0;
    top: 0;
    width: 101px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/shape.webp) no-repeat;
    background-position: top right;
}

.quote img {
    margin: 0 -10px 10px 0;
    display: block;
}

.revewImg {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.revewImg>img {
    width: 70px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.revewImg h6 {
    font-size: 1.375rem;
    color: var(--black);
    margin: 8px 0 0;
    font-weight: 500;
}

.reviewBox p {
    color: var(--black);
    margin: 1.2rem 2rem 2rem 0;
    line-height: 1.7;
}

.reviewSlider {
    padding: 2rem 0 5rem 0;
}

.reviewSlider .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: lch(16 0.01 0 / 0.25);
    opacity: 1;
}

.reviewSlider .swiper-pagination-bullet-active {
    background: #272727;
}

.reviewSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.path {
    position: absolute;
    right: 0;
    top: -3rem;
    z-index: -1;
}

.mainWrap {
    position: relative;
}

/* Testimonial Sec Css End */

/* Contact Sec Css Start */

.contactSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 90%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 60px;
    top: 0;
}

.contactForm .form-group input,
.contactForm .form-group select {
    height: 40px;
}

.contactForm .form-group .form-control,
.contactForm .form-group select {
    width: 100%;
    background: transparent;
    border: 2px solid var(--white);
    border-top: unset;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    padding-left: 1rem;
    color: var(--white);
}

.contactForm .form-group .form-control::placeholder {
    color: var(--white);
}

.contactForm .form-group {
    margin-bottom: 3rem;
}

.contactForm {
    margin-top: 3rem;
}

.contactForm .themeBtn {
    background: var(--secondary);
}

.contactImg {
    margin: -7rem 0 0 0;
}

.contactImg img {
    width: 100%;
}

/* Contact Sec Css End */

/* Footer Css Start */

footer {
    background: linear-gradient(180deg, #1e1e1e, #111111);
    padding-top: 8.75rem;
    border-radius: 100px 100px 0 0;
    margin-top: -5rem;
}

footer h3 {
    color: var(--white);
    font-size: 1.375rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer ul li a {
    color: var(--white);
    font-size: 1.125rem;
}

footer ul li a:hover {
    color: var(--primary);
}

.links li+li {
    margin-top: 6px;
}

.contactLinks li a i {
    color: var(--primary);
    font-size: 2rem;
}

.contactLinks li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactLinks li+li {
    margin-top: 1.5rem;
}

.copyRight p {
    color: var(--white);
    text-align: center;
    margin: 0;
}

.topBtn {
    background: #474747;
    font-size: 0.9375rem;
    text-transform: uppercase;
    color: var(--white);
    padding: 12px 1.7em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.topBtn:hover {
    background: var(--primary);
    color: var(--white);
}

.topBtn i {
    font-size: 1.375rem;
}

.copyRight {
    border-top: 1px solid #888888;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer .socialLinks {
    position: unset;
    flex-direction: row;
    gap: 6px;
    margin-top: 1.5rem;
}

footer .socialLinks:before {
    display: none;
}

footer .socialLinks li a {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
}

footer .socialLinks li:nth-child(1) a {
    display: none;
}

/* Footer Css End */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}

/* / sraachbar end / */

.revealImg {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.revealImg .wrap {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.revealImg img {
    transform: scale(1.25);
    transform-origin: center;
    transform-style: preserve-3d;
}

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.innerBan .overlay figure img {
    display: block;
    margin: 0 auto;
}

.innerBan h2 {
    font-size: 60px;
    color: var(--white);
    text-transform: uppercase;
    line-height: normal;
}

.innerBan {
    position: relative;
    margin-bottom: 6rem;
}

/* Faq Sec Css Start */

.faqSec {
    margin-top: -5rem;
    padding: 8rem 0 8rem 0;
}

.faqSec #accordion .card {
    border: none;
    padding: 0rem 1rem;
    background: transparent;
    margin-bottom: 2.5rem;
    border-radius: unset;
}

.faqSec #accordion .card .btn-link {
    --height: 3.5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    padding: 0;
    border: 0;
    font-size: 25px;
    border-radius: unset;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    text-align: left;
    /* border-bottom: 3px solid #231F20; */
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    border-radius: 50%;
    background: 000;
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
}

.faqSec #accordion .card .btn-link i::before {
    content: "\f068";
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #225743;
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
}

.faqSec #accordion .card .btn-link {
    border-bottom: 4px solid #2f8cce;
}

.faqSec #accordion .card .btn-link i {
    color: #2f8cce;
}

.faqSec #accordion .card .btn-link.collapsed {
    border-bottom: 4px solid #004b81;
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #004b81;
}

.faqSec #accordion .card+.card {
    margin-top: 0;
}

.faqSec #accordion .card .card-body {
    padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
    color: #3b4468;
    font-size: 20px;
    margin: 0;
    line-height: 33px;
}

/* Faq Sec Css Start */

.newswrap h2 {
    font-size: 30px;
    font-weight: 400;
}

.newswrap h3 {
    font-size: 25px;
    font-weight: 400;
    color: #2f8cce;
    margin-top: 1rem;
}

.newswrap {
    margin-bottom: 3rem;
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 2rem;
}

section.newsSection::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 90%;
    background: #c2c2c299;
    top: 5rem;
    left: 50%;
    /* right: 0; */
}

section.newsSection {
    padding: 7rem 0;
}

.blgcntnt h2 {
    font-size: 36px;
    font-weight: 400;
}

.blgcntnt p {
    font-size: 20px;
    font-weight: 400;
    color: #3b4468;
}

.blgcntnt h3 {
    font-size: 25px;
    font-weight: 400;
    color: #2f8cce;
    margin-bottom: 8rem;
}

figure.bdrline1 {
    border-bottom: 1px solid #c2c2c2;
}

.blgcntnt {
    border-bottom: 1px solid #c2c2c2;
}

figure.bdrline1 img {
    margin-bottom: 2rem;
}

.bloginnSection::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 89%;
    background: #c2c2c299;
    top: 3rem;
    left: 50%;
    /* right: 0; */
}

section.bloginnSection {
    padding: 5rem 0 14rem 0;
}

.blgcntnt.blg2 {
    border-bottom: unset;
}

.blgcntnt.blg2 h3 {
    margin-bottom: 0;
}

figure.bdrline1.line2 {
    border-bottom: unset;
}

.aboutinnSection p {
    font-size: 20px;
    color: #3b4468;
    line-height: 1.7;
}

.aboutinnSection figure img {
    width: 100%;
}

.aboutinnSection {
    padding: 5rem 0 8rem 0;
}

.contactBox {
    text-align: center;
}

.contactBox figure {
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f5f5f5;
    margin: auto;
    transition: 0.5s ease-in-out;
    border: 1px solid #d6d6d6;
}

.contactText h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--black);
}

.contactText a,
.contactText p {
    font-size: 18px;
    color: var(--black);
    line-height: 1.4;
}

.contactText {
    padding-top: 1.5625rem;
}

.contactInner {
    padding: 1rem 0 10rem 0;
}

section.vertarnsSec figure {
    position: relative;
}

section.vertarnsSec .vertcntnt {
    position: absolute;
    top: 5.5rem;
    left: 3rem;
}

.vertcntnt h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.vertcntnt p {
    font-size: 23px;
    color: #fff;
}

.vertcntnt h3 {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.vertcntnt .btn1 {
    font-size: 40px;
}

.vertarnsSec {
    padding: 3rem 0 5rem 0;
}

.sleepcntnt p {
    font-size: 20px;
    color: #3b4468;
}

.faqSec.abtfaq {
    padding: 6rem 0 0 0;
}

section.sleepSec .btn1 {
    padding: 1rem 3rem;
}

.circlegry h2 {
    font-size: 100px;
    color: #2f8cce;
}

.circlegry h3 {
    font-size: 20px;
    color: #1d1d1d;
}

.circlegry p {
    color: #3b4468;
    font-size: 18px;
    text-align: center;
    width: 65%;
}

.circlegry {
    border: 1px solid #fff;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    position: relative;
}

.bluewrap {
    background: #e8f9ff;
    border-radius: 19px 20px 80px 80px;
    padding: 5rem 2rem;
}

section.sleepdevice {
    padding-bottom: 6rem;
}

.topdevice {
    margin-bottom: 2rem;
}

.topdevice h4 {
    font-size: 20px;
}

.bluewrap .btn1 {
    position: absolute;
    bottom: 0rem;
    right: 6rem;
    padding: 1rem 3rem;
}

section.resourceVertane {
    padding-bottom: 6rem;
}

.resourcevrt h3 {
    font-size: 31px;
    font-weight: 400;
    margin-top: 1rem;
    font-family: "Jost";
    width: 74%;
}

.resourcever figure img {
    width: 100%;
}

.resourcever {
    box-shadow: 0 7px 9px rgb(0 0 0 / 16%);
    padding: 1rem 2rem 3rem 2rem;
    border-radius: 20px;
}

.blueboxver {
    background: #004b81;
    padding: 6rem 3rem;
    border-radius: 12px;
}

.blueboxver .secHeading {
    color: #fff;
    margin-bottom: 3rem;
}

section.bluevertane {
    padding-bottom: 10rem;
}

.howitcntnt p {
    font-size: 23px;
    color: #3b4468;
}

.howitcntnt h3 {
    font-size: 30px;
    text-transform: uppercase;
}

section.how-itSec figure img {
    position: relative;
}

img.img-fluid.howit1 {
    position: absolute;
    bottom: -4rem;
    right: 6rem;
}

section.how-itSec {
    padding-bottom: 5rem;
}

img.img-fluid.howit2 {
    position: absolute;
    bottom: -2rem;
    left: -4rem;
}

.roundsecience h3 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.roundsecience p {
    font-size: 20px;
    color: #3b4468;
    width: 66%;
    text-align: center;
}

.roundsecience {
    border: 1px solid #d4b7d9;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #d4b7d9;
    position: relative;
    z-index: 2;
}

section.secienceSection {
    padding: 6rem 0 8rem 0;
}

.scienceblue {
    background: #e8f9ff;
    border-radius: 20px 20px 80px 80px;
    padding: 3rem 3rem;
}

.roundsecience.rounebluee {
    border-color: #8bccef;
    background: #8bccef;
}

.usingcntnt h3 {
    font-size: 25px;
    margin-top: 2rem;
    font-weight: 600;
}

.usingcntnt p {
    font-size: 18px;
    color: #3b4468;
    text-align: center;
}

.usingwrap figure {
    border: 1px solid #e6e6e6;
    min-height: 381px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #f1f1f1;
    border-radius: 20px;
    padding: 1rem 1rem;
}

.usingwrap {
    text-align: center;
}

section.usingSection {
    padding-bottom: 4rem;
}

section.backedSec {
    background: #f3fcff;
    padding: 5rem 0;
}

.backwrap {
    border: 1px solid #a0e5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 467px;
    height: 467px;
    background: #ecfaff;
}

.backwrap h2 {
    font-size: 70px;
    font-weight: 600;
}

.backwrap p {
    font-size: 18px;
    color: #3b4468;
    width: 80%;
    text-align: center;
}

section.resourceVertane.caddiisec {
    padding: 5rem 0 10rem 0;
}

section.resourceVertane.caddiisec h4 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

section.resourceVertane.caddiisec .resourcevrt {
    text-align: center;
}

section.resourceVertane.caddiisec .resourcevrt h2 {
    font-size: 40px;
    font-weight: 500;
}

.secienceSection .main-center {
    margin-left: -5rem;
    position: relative;
    z-index: 0;
}

/* my css start */

.sleepSec.forApnepage .row {
    position: relative;
}

.sleepSec.forApnepage .row:before {
    content: "";
    position: absolute;
    right: 0;
    background: #f4f4f4;
    z-index: -1;
    top: 4%;
    width: 85%;
    height: 90%;
    margin: auto;
    border-radius: 50px;
}

.sleepcntnt.forContent {
    padding-right: 10rem;
}

.provenHeading {
    color: #1d1d1d;
    font-weight: 500;
    text-transform: uppercase;
    margin: 1.7rem 0 2.5rem;
}

.sleepcntnt.forContent .secHeading {
    margin: 0 0 1.2rem;
}

.tileHeading {
    text-align: center;
    padding: 0 2rem 2rem;
}

.subHeading {
    font-size: 1.25rem;
    color: #1d1d1d;
    font-weight: 600;
    margin: 0 0 1rem;
}

.treatmentPage {
    padding: 2rem 0;
}

.treatmentPage .row {
    background: #e8f9ff;
    border-radius: 20px 20px 80px 80px;
    padding: 3rem 3rem;
    margin: 0 -3rem;
}

.mildBox .tolerateBox {
    background: var(--white);
    text-align: center;
    margin: 0 1.7rem;
    padding: 2rem 0 1.3rem;
    border-radius: 20px 20px 0 0;
}

.mildBox .tolerateBox h5 {
    color: #1d1d1d;
    font-weight: 600;
    margin: 0 0 16px;
}

.mildBox .tolerateBox h6 {
    font-size: 1.125rem;
    color: #1d1d1d;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.mildBox figure {
    position: relative;
}

.mildBox figure span {
    background: #2a83a3;
    position: absolute;
    left: 0;
    right: 0;
    top: 1.5rem;
    margin: auto;
    text-align: center;
    width: 121px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mildBox p {
    text-align: center;
    margin: 1.5rem 1.5rem 0;
    color: #3b4468;
    font-size: 1rem;
    line-height: 1.7;
}

.mildBox figure span.nmClr {
    background: #d4b7d9;
}

.mildBox figure span.srgryClr {
    background: #8bccef;
}

.videoElectrcl {
    padding: 2rem 0 3rem;
}

.videoImg {
    position: relative;
}

.videoImg a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoImg a div {
    width: 142px;
    height: 142px;
    border: 7px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.nmedfrntSec {
    background: #f3f3f3;
    padding: 4rem 0;
}

.dayCard {
    text-align: center;
    background: var(--white);
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    box-shadow: 0 7px 9px rgb(0 0 0 / 16%);
    padding: 2rem 2rem;
    height: 370px;
}

.dayCard figure {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dayCard h2 {
    font-size: 25px;
    color: #1d1d1d;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    margin: 0 0 15px;
}

.dayCard p {
    margin: 0;
}

.videoImg img {
    border-radius: 1.25rem;
    height: 650px;
    object-fit: cover;
    width: 100%;
}

.swiper-slide-next {
    transform: scale(1.21) !important;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.appSlider {
    padding: 5rem 0 10rem;
}

.controlApp {
    padding: 4rem 0 0;
}

.controlApp .tileHeading {
    padding: 0 2rem 1rem;
}

.betterBack {
    background: #004b81;
    border-radius: 12px;
    text-align: center;
    padding: 4rem 0;
}

.betterBack .serviceContent {
    display: table;
    margin: auto;
}

.betterBack .secHeading {
    color: var(--white);
    margin: 0 0 1rem;
}

.betterBack p {
    color: var(--white);
    margin: 0 0 2rem;
}

.hearMain {
    padding: 4rem 0;
}

.sleepContent {
    background: #f8f8f8;
    border-radius: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0 3.5rem;
}

.sleepContent .secHeading {
    margin: 0 0 1rem;
}

.sleepContent p {
    margin: 0;
    line-height: 1.6;
}

.radiusImg :is(img, iframe) {
    border-radius: 1.25rem;
}

.videoImg iframe {
    border-radius: 20px;
}

.radiusImg iframe {
    height: 500px;
}

.diseaseMain {
    padding: 0 0 5rem;
}

.forFaqsec {
    padding: 4rem 0 7rem;
}

.treatmentPage.partPage .usingwrap figure {
    background: var(--white);
    width: 392px;
    height: 395px;
    border-radius: 50%;
    margin: auto;
}

.treatmentPage.partPage {
    padding-top: 0;
    padding-bottom: 3rem;
}

.usingSection.wayMain {
    background: #fef8ff;
    padding-top: 4rem;
}

.comiteBox {
    text-align: center;
    position: relative;
}

.comiteBox figure {
    background: #8bccef;
    width: 284px;
    height: 284px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    flex-shrink: 0;
}

.comiteBox figure h2 {
    font-size: 65px;
    color: #1d1d1d;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    margin: 0;
}

.comiteBox figure p {
    margin: 0 40px;
    line-height: 1.4;
}

.comiteBox .d-flex {
    margin-top: -3rem;
    gap: 3rem;
}

.comiteBox .exiseImg {
    margin-top: -19rem;
    width: 42%;
}

.comitedMain {
    padding-bottom: 3rem;
}

.sleepcntnt.scienceContent {
    padding-left: 5rem;
}

.sleepcntnt.scienceContent .secHeading span {
    display: block;
    font-weight: 400;
}

.sleepcntnt.scienceContent p {
    font-size: 23px;
    line-height: 1.5;
    margin: 1.7rem 0 1.8rem;
}

.sleepcntnt.scienceContent .provenHeading {
    font-size: 25px;
    color: #1a1a1a;
    text-transform: capitalize;
    font-family: "Jost", sans-serif;
    padding-right: 9rem;
}

.sleepcntnt.scienceContent .serviceContent .themeBtn {
    padding: 0.8rem 2.5rem;
}

.backedBox figure {
    background: var(--white);
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    margin: auto;
}

.backedBox figure h2 {
    font-size: 99px;
    color: #1d1d1d;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.backedBox figure p {
    width: 50%;
    text-align: center;
    margin: 0;
}

.backedContent .secHeading {
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    font-size: 40px;
}

.backedContent p {
    font-size: 1.25rem;
    font-family: "Poppins", sans-serif;
    width: 92%;
    margin: 0 0 1.7rem;
}

.backedContent .serviceContent .themeBtn {
    padding: 0.7rem 2.5rem;
}

.treatmentPage.backedMain .row {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.treatmentPage.backedMain {
    background: #e8f9ff;
    margin: 0 10rem;
    border-radius: 20px 20px 80px 80px;
    padding: 4rem 0;
}

.treatmentPage.backedMain .row+.row {
    margin-top: 4rem;
}

/* my css end */

.banImg spline-viewer {
    width: 100%;
    height: 800px;
}

.caleneder-date {
    background-color: #f3f3f3;
    padding: 7.5rem 0;
    margin-bottom: 3.5rem;
}

.calenderWrapp {
    background-color: var(--white);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
    padding: 3.75rem;
    margin: 0 -15px;
    border-radius: 10px;
}

/* Calender CSS */

.evo-calendar {
    padding-bottom: 0;
    min-height: 680px;
    box-shadow: 10px 0 25px 0 rgba(0, 0, 0, 0.09);
}

.evo-calendar,
.calendar-inner,
.calendar-events {
    background-color: var(--white);
    border: 0;
}

.calendar-sidebar {
    background-color: #004b81;
    box-shadow: 15px 0 20px 0 rgba(0, 0, 0, 0.12);
}

.calendar-sidebar>span#sidebarToggler {
    background-color: var(--primary);
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.12);
}

.sidebar-hide .calendar-inner {
    width: calc(100% - 0px);
}

.calendar-sidebar>.calendar-months {
    margin-top: -1rem;
}

.calendar-sidebar>.calendar-months>li.active-month {
    background: var(--primary) !important;
}

.day.calendar-active.calendar-today,
tr.calendar-body .calendar-day .day.calendar-active,
tr.calendar-body .calendar-day .day.calendar-active:hover {
    background: var(--primary) !important;
    border: unset !important;
    color: var(--white) !important;
}

tr.calendar-body .calendar-day .day {
    color: #828282;
    font-size: 22px;
}

tr.calendar-header .calendar-header-day {
    font-size: 1.375rem;
    color: var(--black);
}

.calendar-sidebar>.calendar-months>li {
    font-size: 1.375rem;
}

.pos-r {
    position: relative;
    border-radius: 10px;
    box-shadow: 10px 0 15px 0 rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.date-list {
    height: 100%;
    /* border-radius: 0 10px 10px 0; */
    padding: 3.75rem 1rem 0 2rem;
}

.date-list h5 {
    font-size: 1.25rem;
    text-transform: uppercase;
}

.date-list h4 {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.date-content {
    max-height: 580px;
    overflow-y: scroll;
}

.date-content p {
    max-width: 365px;
}

.date-content p+p {
    margin-top: 3rem;
}

.morebtn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    width: 46px;
    height: 48px;
    display: grid;
    place-items: center;
}

.comparison-section {
    padding: 3.625rem 0;
}

.card-list p {
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--black);
}

.card-list {
    background-color: #f8f8f8;
    border-radius: 20px;
    width: 100%;
    max-width: 332px;
    margin: 0 auto;
}

.card-list,
.card-list li {
    text-align: center;
}

.card-list img {
    margin: -3rem auto 1rem;
    border-radius: 20px;
    box-shadow: 0 7px 9px 0 rgba(0, 0, 0, 0.16);
}

.comparison-list {
    padding: 0rem 0 1.5rem;
}

.comparison-list li+li {
    margin-top: 1.75rem;
}

.comparison-list.list1 li {
    font-size: 1.5rem;
}

.comparison-list.list1 li+li {
    margin-top: 2.25rem;
}

.comparison-list li i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.comparison-list li i.fa-times {
    background-color: #004b81;
}

.videoSlider .swiper-slide-next {
    transform: scale(1) !important;
}

.contactSec {
    padding: 2rem 0;
}

.login-layout {
    height: 100vh;
    background: var(--white);
    padding: 1rem 0;
}

.login-hero {
    position: sticky;
    top: 1rem;
}

.loginslider {
    border-radius: 1.5rem;
}

.loginslider .swiper-slide-next {
    transform: scale(1) !important;
}

.login-slide-card {
    position: relative;
    overflow: hidden;
}

.login-slide-card .bglogin {
    width: 100%;
    height: calc(100vh - 2rem);
    display: block;
    object-fit: cover;
}

.login-slide-card .login-slide-card-content {
    position: absolute;
    inset: 0;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 1.75rem 2rem;
}

.login-slide-card .login-slide-card-content h2 {
    font-size: 3.875rem;
    font-weight: 600;
    color: var(--white);
}

.login-slide-card .login-slide-card-content p {
    max-width: 586px;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.loginslider .swiper-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.loginslider .swiper-controls .swiper-button-prev,
.loginslider .swiper-controls .swiper-button-next {
    position: static;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    transition: 0.5s ease;
}

.loginslider .swiper-controls .swiper-button-prev::after,
.loginslider .swiper-controls .swiper-button-next::after {
    font-size: 1.125rem;
    font-weight: bold;
}

.loginslider .swiper-controls .swiper-button-prev:hover,
.loginslider .swiper-controls .swiper-button-next:hover {
    background: var(--white);
    color: var(--primary);
}

.login-card-link {
    color: var(--white) !important;
    font-size: 1.375rem;
    font-weight: 300;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.login-card-link i {
    animation: arrowmove 1s infinite alternate;
}

@keyframes arrowmove {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(8px)
    }
}

.login-logo img {
    max-width: 100px;
}

.login-layout-content {
    max-width: 415px;
    margin: 1.875rem auto 1.75rem;
    text-align: center;
    height: calc(100% - 3.625rem);
}

.login-content-data {
    margin-bottom: 2rem;
}

.login-content-data h4 {
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 5.5rem;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.login-content-data h4 span {
    font-weight: 900 !important;
    color: var(--black) !important;
}

.login-content-data p {
    font-size: 1rem;
    color: #272634;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}

.form-control:focus {
    box-shadow: none;
}

.login-layout-content .form-group {
    margin-bottom: 1.875rem;
}

.login-layout-content label {
    font-size: 1rem;
    font-weight: 500;
}

.login-layout-content input.form-control {
    height: 56px;
    border-radius: 0.875rem;
    border: 1px solid #e7e7e9;
    padding: 1rem 1.375rem;
    transition: 0.5s ease;
}

.login-layout-content input.form-control:focus {
    border-color: var(--primary);
}

.login-layout-content .forgot_pass {
    font-size: 0.875rem;
    color: #0d0c22;
    font-weight: 400;
    text-decoration: underline !important;
}

.login-layout-content form {
    text-align: left;
}

.login-layout-content .signin_btn,
.register_button{
    background: #2ea9da;
    border-radius: 1.75rem;
    width: 100%;
    font-weight: 600;
    padding: 0.75rem 1rem;
    color: var(--white);
}

.login-layout-content .signin_btn:hover ,
.register_button:hover{
    background: var(--black);
    color: var(--white);
}

p.login-foot-text {
    font-size: 0.875rem;
    color: #3d3d4e;
    font-family: 'Poppins', sans-serif;
    margin-top: 1.5rem;
    margin-bottom: 5.5rem;
}

.captaha-foot-text{
    font-size: 0.75rem;
    color: #a1a4ad;
    display: block;
    margin: 1.25rem auto 2rem;
    max-width: 320px;
}
.captaha-foot-text a {
    color: var(--black);
    font-weight: 500;
}

a.login-foot {
    color: #45464a;
}

p.login-foot-text a {
    color: inherit;
    text-decoration: underline !important;
}
p.login-foot-text a:hover,
a.login-foot:hover,
.login-layout-content .forgot_pass:hover{
    color: var(--primary);
}

.btnlogin-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f2f2f3;
    margin: 1.5rem auto 0;
    max-width: 335px;
}

.btnlogin-link {
    color: black;
    font-weight: 500;
    padding: 0.75em 0.125em;
    font-size: 0.875rem;
    position: relative;
}

.btnlogin-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease-in-out;
}

.btnlogin-link.active::before,
.btnlogin-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.googlebtn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2em;
    gap: 0.75rem;
    border-radius: 1.75rem;
    border: 1px solid #e7e7e9;
    font-size: 0.875rem;
    font-weight: 500;
}
.googlebtn.black{
    background: var(--black);
    color: var(--white);
}
.googlebtn:hover{
    background: #e7e7e9;
}
.googlebtn.black:hover{
    background: #333333;
}

.googlebtn img {
    max-width: 1rem;
}

.btn-divider {
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.btn-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    background: #e7e7e9;
    z-index: -1;
}

.btn-divider p {
    width: fit-content;
    text-align: center;
    font-size: 0.875rem;
    color: #757480;
    font-family: "Poppins", sans-serif;
    margin: 0 auto;
    padding: 0 1em;
    background: var(--white);
}

.terms-condition-text label,
.terms-condition-text label a{
    font-size: 0.875rem;
    color: #3d3d4e;
    font-weight: 400;
}
.terms-condition-text label a{
    text-decoration: underline !important;
 }

.email-verify-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.terms-text-foot-login{
    margin: 0 -2rem;
    margin-top: 3.75rem;
}
.terms-text-foot-login p{
    font-family:"Poppins", sans-serif;
    font-size: 0.875rem;
    color: #5e5e6c;
}
.terms-text-foot-login p a{
    color: #5e5e6c;
    text-decoration: underline !important;
}