@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* top header ==== */
.topHeader {
    width: 100%;
    background: #507701;
    backdrop-filter: blur(150px);
    height: 40px;
    display: flex;
    align-items: center;
}

.topHeader .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topHeader .inner .right {
    display: flex;
    align-items: center;
}

.topHeader .inner .right img {
    margin-right: 5px;
}

.topHeader .inner .left p,
.topHeader .inner .right p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.topHeader .inner .left p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin: 0px 4px;
    vertical-align: middle;
    color: #ffffff;
}

/* header === */
.header {
    width: 100%;
}

.header .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .inner .menu ul {
    display: flex;
    align-items: center;
}

#closeMobileMenuIcon {
    display: none;
    cursor: pointer;
    width: 28px;
    transition: 0.3s;
}

/* .header .inner .menu ul span{
    display: none;
  } */
.header .inner .menu ul .logo {
    display: none;
}

.header .inner .menu ul li {
    list-style-type: none;
}

.header .inner .menu ul li a {
    font-family: "Montserrat", sans-serif;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 17.07px;
    color: #071a54;
    padding: 37px 12.5px 46px 12.5px;
    text-decoration: none;
}

.header .inner .menu ul li a:hover {
    color: #76a713;
}

.header .inner .menu ul li a.activeLink {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 17.07px;
    color: #76a713;
    border-bottom: 1px solid #76a713;
}

.header .inner .profile {
    display: flex;
    align-items: center;
}

.header .inner .profile .appointment {
    text-transform: uppercase;
    width: 200px;
    height: 50px;
    background: #1c2052;
    border-radius: 29px;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.header .inner .profile .appointment:hover {
    background: #76a713;
    margin-top: -10px;
    transition: 0.3s;
}

.header .inner .profile .appointment img {
    margin-right: 7px;
}

.header .inner .profile .mobileMenuIcon {
    width: 28px;
    display: none;
}

/* hero === */
.hero {
    width: 100%;

    background: linear-gradient(180deg, #1c2052 0%, #1d236f 100%);
}

.hero .bg {
    background-image: url("./../img/bgHero.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.hero .bg .row {
    max-width: 1120px;
    width: 90%;
    margin: auto;

    background-image: url("./../img/bgHero.png");
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .bg .row .left {
    width: 50%;
}

.hero .bg .row .left h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 100%;
    letter-spacing: -3%;
    font-variant: small-caps;
    color: #ffffff;
    margin-bottom: 43px;
}

.hero .bg .row .left h2 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 100%;
    letter-spacing: -3%;
    font-variant: small-caps;
    color: #76a713;
}

.hero .bg .row .left p {
    max-width: 380px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin-bottom: 45px;
}

.hero .bg .row .right {
    width: 50%;
    padding-top: 37px;
    overflow: hidden;
}

.hero .bg .row .right img {
    margin-bottom: -5px;
}

.hero .bg .row .left .learnMore {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.hero .bg .row .left .learnMore p {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 0.25em;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
}

.hero .bg .row .left .learnMore span {
    width: 26.3px;
    height: 36px;
    display: block;
    border: 1px solid #76a713;
    border-radius: 20px;
    text-align: center;
    margin-right: 22px;
}

.hero .bg .row .left .learnMore span img {
    width: 12px;
}

.hero .bg .row .left .learnMore span img {
    animation: moveUpDown 1.4s infinite ease-in-out;
}

@keyframes moveUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

/* peersonal bioHacking ====== */
.bioHacking {
    width: 100%;
    padding: 75px 0px;
    background: #76a713;
}

.bioHacking .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bioHacking .inner .left {
    width: 449px;
}

.bioHacking .inner .left h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #ffffff;
    margin-bottom: 20px;
}

.bioHacking .inner .left p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #ffffff;
    margin-bottom: 20px;
}

.bioHacking .inner .right {
    width: calc(100% - 477px);
}

.bioHacking .inner .right .thumbnail {
    width: 100%;
    height: 363px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.bioHacking .inner .right .thumbnail .thumbImg {
    width: 100%;
    height: 100%;
}

.bioHacking .inner .right .thumbnail .play {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    border: 1px solid #fff;
    margin-right: auto;
    z-index: 1;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    cursor: pointer;
}

/* whats wrong with you === */
.whatsWrong {
    width: 100%;
    background: #f3f5f6;
    padding-top: 39px;
    position: relative;
    padding-bottom: 30px;
}

.whatsWrong .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.whatsWrong .inner h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1c2052;
    margin-bottom: 11px;
}

.whatsWrong .inner p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1c2052;
    margin-bottom: 20px;
}

.sliderContainer {
    position: relative;
    max-width: 1120px;
    width: 90%;
    margin: auto;
    padding: 0px;
}

.sliderContainer .sliderr {
    width: 100%;

    overflow: hidden;
}

.sliderContainer .sliderr .swiper {
    width: 100%;
    margin: auto;
    padding-top: 20px;
}

.sliderContainer .sliderr .swiper .swiper-wrapper {
    position: relative;
}

.sliderContainer .custom-nav-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.sliderContainer .swiper-button-prev-custom {
    left: -70px;
    position: absolute;
    z-index: 22 !important;
}

.sliderContainer .swiper-button-next-custom {
    right: -70px;
    position: absolute;
    z-index: 22 !important;
}

.sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp {
    max-width: 265px;
    width: 49%;
    height: 50px;
    border-radius: 250px;
    background: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
    padding: 6px 20px;
}

.sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp:hover {
    background: #76a713;
    margin-top: -10px;
    transition: 0.4s;
    z-index: 200;
    cursor: pointer;
}

.sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp:hover p {
    color: #ffffff;
}

.sliderContainer
.sliderr
.swiper
.swiper-wrapper
.swiper-slide
.comp:hover
img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp img {
    width: 38px;
}

.sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1c2052;
}

/* do you eexperience lack of energy ==== */
.lackOfEnergy {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #1c2052 0%, #1d236f 100%);
}

.lackOfEnergy .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.lackOfEnergy .inner .left {
    width: 267px;
    padding-top: 27px;
}

.lackOfEnergy .inner .left img {
    margin-bottom: 13px;
    width: 78px;
}

.lackOfEnergy .inner .left h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #76a713;
    margin-bottom: 18px;
}

.lackOfEnergy .inner .left h4 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #fff;
}

.lackOfEnergy .inner .left p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
}

.lackOfEnergy .inner .right {
    width: calc(100% - 286px);
}

.lackOfEnergy .inner .right .card {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lackOfEnergy .inner .right .card:nth-last-child(1) {
    margin-bottom: 0px;
}

.lackOfEnergy .inner .right .card .productImg {
    width: 280px;
    height: fit-content;
    border-radius: 15px;
}

.lackOfEnergy .inner .right .card .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: calc(100% - 309px);
}

.lackOfEnergy .inner .right .card .content h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #76a713;
    margin-bottom: 10px;
}

.lackOfEnergy .inner .right .card .content p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #1c2052;
    padding-top: 11px;
}

.lackOfEnergy .inner .right .card .content .btn {
    position: static;
    margin-top: 32px;
    align-self: flex-end;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
}

.lackOfEnergy .inner .right .card .content .btn:hover {
    margin-right: -10px;
    transition: 0.3s;
}

.lackOfEnergy .inner .right .card .content .btn:hover a {
    background: #76a713;
    border: 1px solid #76a713;
}

.lackOfEnergy .inner .right .card .content .btn a {
    width: 40px;
    height: 40px;
    border-radius: 250px;
    border: 1px solid #1c2052;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

.lackOfEnergy .inner .right .card .content .btn:hover a .arrowBlue {
    display: none;
}

.lackOfEnergy .inner .right .card .content .btn a .arrowWhite {
    display: none;
}

.lackOfEnergy .inner .right .card .content .btn:hover a .arrowWhite {
    display: block;
}

/* change your life=== */
.changeLife {
    width: 100%;
    padding-top: 55px;
    padding-bottom: 76px;
    background: #76a713;
    position: relative;
}

.changeLife .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    z-index: 1;
}

.changeLife .inner .topPara {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 147%;
    letter-spacing: -1%;
    text-align: center;
    color: #ffffff;
}

.changeLife .inner .h4Top {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    color: #1c2052;
    margin-bottom: 60px;
}

.changeLife .inner .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.changeLife .inner .row .card {
    border-radius: 15px;
    background: linear-gradient(89.74deg, #ffffff -3.2%, #eaeaea 99.8%);
    padding: 20px;
    max-width: 360px;
    width: 32%;
    padding-top: 51px;
    position: relative;
}

.changeLife .inner .row .card .badgeTop {
    position: absolute;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    top: -28px;
    width: 280px;
    height: 50px;
    border-radius: 8px;
    background: #1c2052;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.changeLife .inner .row .card h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #1c2052;
    margin-bottom: 35px;
}

.changeLife .inner .row .card .bgn {
    position: absolute;
    right: -10px;
    top: 51px;
    width: 80px;
    /* height: 56px; */
    padding: 10px 0px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    border-top-left-radius: 8px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 8px;
    background: #76a713;
    /* display: flex
; */
    align-items: center;

}

.changeLife .inner .row .card .bgn img {
    position: absolute;
    right: 0px;
    top: 100%;
}

.changeLife .inner .row .card .list {
    width: 100%;
    display: flex;
    align-items: center;
}

.changeLife .inner .row .card .list .dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #76a713;
    margin-right: 12px;
}

.changeLife .inner .row .card .list p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #1c2052;
    margin-bottom: 3px;
}

.changeLife .inner .row .card .makeAppointment {
    margin-top: 46px;
    margin-bottom: 20px;
    height: 180px;
    border-radius: 15px;
    position: relative;
}

.changeLife .inner .row .card .makeAppointment .ImgAppoint {
    width: 100%;
    height: 180px;
}

.changeLife .inner .row .card .makeAppointment .btnRedirect {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -23px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 50px;
    border-radius: 29px;
}

.changeLife .inner .row .card .makeAppointment .btnRedirect a {
    font-family: "Montserrat", sans-serif;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1c2052;
    border-radius: 29px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3%;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 5px 26px;
    transition: 0.3s;
}

.changeLife .inner .row .card .makeAppointment .btnRedirect a:hover {
    background: #76a713;
    margin-top: -5px;
}

/* pro service === */
.proService {
    width: 100%;
    padding: 50px 0px;
}

.proService .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.proService .inner .topPara {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 147%;
    letter-spacing: -1%;
    text-align: center;
    color: #86bc3a;
}

.proService .inner .topH4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    color: #071a54;
    margin-bottom: 59px;
}

.proService .inner .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.proService .inner .card,
.sliderContainer11 .sliderr11 .swiper11 .swiper-wrapper .swiper-slide .card {
    background: linear-gradient(89.74deg, #ffffff -3.2%, #eaeaea 99.8%);
    max-width: 550px;
    padding: 25px 28px;
    width: 50%;
    margin-bottom: 48px;
    border-radius: 12px;
    position: relative;
    min-height: 330px;
    display: flex;
    justify-content: space-between;
}

.sliderContainer11 {
    width: 100%;
    display: none;
}

.sliderContainer11 .sliderr11 .swiper11 {
    overflow: hidden;
    padding-bottom: 0px;
}

.sliderContainer11 .sliderr11 .swiper11 .swiper-wrapper .swiper-slide .card {
    max-width: 100%;
    width: 100% !important;
}

.sliderContainer11 .sliderr11 .swiper11 .swiper-wrapper .swiper-slide .card {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
}

.sliderContainer11
.sliderr11
.swiper11
.swiper-wrapper
.swiper-slide
.card
.left {
    width: 60%;
}

.sliderContainer11
.sliderr11
.swiper11
.swiper-wrapper
.swiper-slide
.card
.left
h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sliderContainer11
.sliderr11
.swiper11
.swiper-wrapper
.swiper-slide
.card
.left
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
}

.sliderContainer11
.sliderr11
.swiper11
.swiper-wrapper
.swiper-slide
.card
.right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.sliderContainer11
.sliderr11
.swiper11
.swiper-wrapper
.swiper-slide
.card
.right
img {
    width: 100%;
}

.sliderContainer11 .sliderr11 .swiper11 .swiper-wrapper .swiper-slide .card a {
    background: #76a713;
}

.proService .inner .card .serviceBadge {
    position: absolute;
    right: -10px;
    top: 28px;
    width: 80px;
    /* height: 40px; */
    padding: 11px 0px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    z-index: 111;
    border-top-left-radius: 8px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 8px;
    background: #76a713;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.proService .inner .card .serviceBadge span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -2%;
    text-align: center;
    color: #ffffff;
}

.proService .inner .card .serviceBadge img {
    position: absolute;
    right: 0px;
    top: 100%;
}

.proService .inner .card .cardImage {
    position: absolute;
}

.proService .inner .card .left h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #1c2052;
    margin-bottom: 20px;
}

.proService .inner .card .left p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
    color: #1c2052;
    margin-bottom: 30px;
}

.proService .inner .card .left p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
    color: #1c2052;
}

.proService .inner .card .left a {
    width: 200px;
    height: 50px;
    border-radius: 29px;
    background: #1c2052;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 21px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3%;
    position: absolute;
    bottom: 15px;
    left: 27px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
    transition: 0.3s;
}

.proService .inner .card .left a:hover {
    background: #76a713;
    bottom: 20px;
}

.proService .inner .card1 .cardImage {
    right: 4px;
    top: -10px;
    height: 108%;
    bottom: -10px;
}

.proService .inner .card2 .cardImage {
    right: -70px;
    bottom: 0px;
}

.proService .inner .card3 .cardImage {
    right: -15px;
    bottom: 21px;
}

.proService .inner .card4 .cardImage {
    bottom: 0px;
    right: 15px;
    top: -20px;
}

.proService .inner .card5 .cardImage {
    bottom: 0px;
    right: 0px;
    top: -10px;
}

.proService .inner .card6 .cardImage {
    bottom: -35px;
    right: -20px;
}

.proService .inner .card7 .cardImage {
    right: -10px;
    bottom: 0px;
}

.proService .inner .card8 .cardImage {
    right: 0px;
    bottom: 0px;
}

.proService .inner .card9 .cardImage {
    right: -30px;
    bottom: 9px;
    width: 248px;
}

.proService .inner .card10 .cardImage {
    right: -50px;
    bottom: 24px;
}

.conatinerSlider-top {
    width: 100%;
    background: linear-gradient(to right, #507701, #76A713);
    backdrop-filter: blur(150px);
}

.conatinerSlider-top .inner .sliderrr {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    position: relative;
}

.conatinerSlider-top .inner .sliderrr .swiper {
    overflow: hidden;
    padding-top: 75px;
    padding-bottom: 81px;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card {
    max-width: 360px;
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(89.74deg, #ffffff -3.2%, #eaeaea 99.8%);
    padding-top: 61px;
    padding-bottom: 35px;
    padding-left: 20px;
    padding-right: 19px;
    position: relative;
    min-height: 389px;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.topBadge {
    position: absolute;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    top: -25px;
    width: 280px;
    height: 50px;
    background: #1c2052;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 11;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.contentRow {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.contentRow
img {
    width: 106px;
    /*height: 70px;*/
    border-radius: 8px;
    margin-right: 9px;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.contentRow
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1c2052;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.footerCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.footerCard
.prices
span {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -2%;
    vertical-align: middle;
    text-decoration: line-through;
    color: #76a71380;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.footerCard
.prices
h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 16px;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #76a713;
}

.footerCard .prices {
    margin-right: 10px;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.footerCard
a {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 26px;
    background: #1c2052;
    border-radius: 29px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.conatinerSlider-top
.inner
.sliderrr
.swiper
.swiper-wrapper
.swiper-slide
.card
.footerCard
a:hover {
    background: #76a713;
    margin-top: -5px;
}

.conatinerSlider-top .inner .sliderrr .swiper .swiper-wrapper {
    position: relative;
}

.conatinerSlider-top .custom-nav-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.conatinerSlider-top .swiper-button-prev-custom {
    left: -70px;
    position: absolute;
    z-index: 1;
}

.conatinerSlider-top .swiper-button-next-custom {
    right: -70px;
    position: absolute;
    z-index: 1;
}

.conatinerSlider-top .inner {
    padding-top: 75px;
}

.conatinerSlider-top .inner .topPara {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 147%;
    letter-spacing: -1%;
    text-align: center;
    color: #ffffff;
}

.conatinerSlider-top .inner .topH4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    color: #1c2052;
}

/* fill in your data ========== */
.fillDataTop {
    width: 100%;
    /* background: linear-gradient(180deg, #1c2052 0%, #1d236f 100%); */
    padding: 120px 0px;
    background: linear-gradient(215deg, rgba(11, 12, 41, 1) 0%, rgba(29, 35, 105, 1) 50%, rgba(11, 12, 41, 1) 100%);
}

.fillDataTop .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 5px 4px 25px 0px #00000026;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    flex-wrap: wrap;
}

.fillDataTop .inner .left {
    width: 360px;
    background: #76a713;
    padding: 18px 40px;
}

.fillDataTop .inner .left h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #1c2052;
    margin-bottom: 25px;
}

.fillDataTop .inner .left h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #1c2052;
    margin-bottom: 15px;
}

.fillDataTop .inner .left h2 span {
    color: #fff;
}

.fillDataTop .inner .left p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #1c2052;
    margin-bottom: 40px;
}

.fillDataTop .inner .left .row {
    width: 100%;
    flex-wrap: wrap;
}

.fillDataTop .inner .left .row a,
.fillDataTop .inner .left .row .locationText p {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 15px;
}

.fillDataTop .inner .left .row .locationText {
    align-items: flex-start !important;
}

.fillDataTop .inner .left .row a img,
.fillDataTop .inner .left .row .locationText img {
    margin-right: 10px;
}

.fillDataTop .inner .left .row .locationText {
    display: flex;
    align-items: center;
}

.fillDataTop .inner .right {
    width: calc(100% - 360px);
    padding: 35px 40px;
}

.fillDataTop .inner .right .multiStepFormClass {
    width: 100%;
}

.fillDataTop .inner .right .multiStepFormClass .form-step {
    display: none;
}

.fillDataTop .inner .right .multiStepFormClass .form-step.active-step {
    display: block;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .headerStep {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .headerStep img {
    margin-right: 10px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .headerStep h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #76a713;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .line {
    border: 1px solid #d9d9d9;
    margin-bottom: 11px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .row .leftList,
.fillDataTop .inner .right .multiStepFormClass .form-step .row .rightList {
    width: 48%;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .row .leftList label,
.fillDataTop .inner .right .multiStepFormClass .form-step .row .rightList label,
.fillDataTop .inner .right .multiStepFormClass .form-step .rowSelect label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #a3a4a5;
    margin-bottom: 5px;
    padding-left: 22px;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.row
.leftList
label
span,
.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.row
.rightList
label
span {
    color: #76a713;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .row .leftList input,
.fillDataTop .inner .right .multiStepFormClass .form-step .row .rightList input,
.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.rowSelect
.custom-select-container
.custom-select,
.custom-date-picker {
    width: 100%;
    height: 50px;
    border-radius: 250px;
    border: 1px solid #a3a4a5;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #1c2052;
    outline: none;
    box-shadow: none;
    padding-left: 22px;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.rowSelect
.custom-select-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .rowSelect {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.rowSelect
.custom-select-container::after {
    content: "";
    background-image: url("./../img/selectIcon.svg"); /* Path to your custom icon */
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 22px;
    top: 60%;
    transform: translateY(-50%);
    pointer-events: none;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.rowSelect
.custom-select-container
select::-ms-expand {
    display: none; /* Hide the default dropdown arrow in IE */
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.rowSelect
.custom-select-container
select {
    -webkit-appearance: none; /* Hide the default dropdown arrow in Safari */
    -moz-appearance: none; /* Hide the default dropdown arrow in Firefox */
    appearance: none; /* Hide the default dropdown arrow in other browsers */
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.rowSelect
.required-info
p {
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    padding-left: 22px;
    color: #a3a4a5;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .btnNext {
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .btnCount .btns {
    display: flex;
    align-items: center;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .btnNext .next-step,
.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.btnCount
.btns
.next-step {
    width: 160px;
    height: 50px;
    border-radius: 250px;
    background: #1c2052;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 27.2px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: none;
    margin-left: 7px;
    transition: 0.3s;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.btnNext
.next-step:hover,
.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.btnCount
.btns
.next-step:hover {
    background: #76a713;
    margin-top: -5px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .prev-step {
    width: 50px;
    height: 50px;
    background: #f3f5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.btnNext
.next-step
img {
    margin-left: 10px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .rowRadio {
    display: flex;
    align-items: center;
}

.radio-card {
    display: flex;
    align-items: center;
    border-radius: 10px;
    /*margin-bottom: 45px;*/
    height: auto;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card input[type="radio"] + label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.radio-card input[type="radio"] + label p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 13.6px;
    text-align: left;
    color: #1c2052;
}

.radio-card input[type="radio"] + label .radio-button {
    width: 24px;
    height: 24px;
    border: 2px solid #bbb;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-card input[type="radio"]:checked + label .radio-button {
    border-color: #4caf50;
}

.radio-card input[type="radio"]:checked + label .radio-button::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #4caf50;
    border-radius: 50%;
}

.radio-card input[type="radio"] + label .info-card {
    display: flex;
    align-items: center;
    width: 262px;
    padding: 10px;
    border-radius: 10px;
}

.radio-card .info-card img {
    /*width: 70px;*/
    height: 120px;
    border-radius: 10%;
    margin-right: 24px;
}

.radio-card .info-card .info .name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 0px;
    color: #1c2052;
}

.radio-card .info-card .info .role {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #a3a4a5;
}

.radio-card .availability {
    background: #f3f5f6;
    max-width: 213px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.radio-card .availability p {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    line-height: 12px;
    text-align: left;
    color: #a3a4a5;
    margin-left: 5px;
}

.radio-card .availability p span {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    line-height: 12px;
    text-align: left;
    color: #1c2052;
}

.radio-card .info-card .availability span {
    color: #007bff;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .radioList h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #1c2052;
    margin-bottom: 20px;
}

.justRadio {
    margin-bottom: 10px;
    height: auto;
}

.fillDataTop .inner .right .multiStepFormClass {
    position: relative;
    height: 100%;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .btnCount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .btnCount p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 11.9px;
    text-align: left;
    color: #1c2052;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .btnCount p span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 11.9px;
    text-align: left;
    color: #1c2052;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .checkBoxList {
    padding-bottom: 80px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .checkBoxList .inn {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    height: 100%;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.inn
h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #1c2052;
    margin-right: 20px;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.inn
.infoText {
    display: flex;
    align-items: center;
    max-width: 250px;
    width: 60%;
    height: 39px;
    background: #f3f5f6;
    padding: 0px 12px;
    border-radius: 4px;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.inn
.infoText
img {
    margin-right: 5px;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.inn
.infoText
p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 11.9px;
    text-align: left;
    color: #1c2052;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.custom-checkbox {
    width: 28px;
    height: 28px;
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    border: 2px solid #2b3856;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.custom-checkbox:checked::before {
    content: "✔";
    color: #2b3856;
    font-size: 20px;
    position: absolute;
    top: 2px;
    left: 4px;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .checkBoxList label {
    height: auto;
    display: flex;

    align-items: center;
}

.fillDataTop
.inner
.right
.multiStepFormClass
.form-step
.checkBoxList
.checkbox-label {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 13.6px;
    /* text-align: left; */
    color: #1c2052;
    margin-left: 12px;
    width: calc(100% - 40px);
    margin-top: 0px;
}

/* google reviews ======== */
.googleReviews {
    width: 100%;
    padding-top: 55px;
    padding-bottom: 62px;
    border-bottom: 1px solid #f3f5f6;
}

.googleReviews .innerRow {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.googleReviews .innerRow .topHeaderRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.googleReviews .innerRow .topHeaderRow .left p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 147%;
    letter-spacing: -1%;
    color: #86bc3a;
}

.googleReviews .innerRow .topHeaderRow .left h4,
.googleReviews .innerRow .topHeaderRow .right h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #071a54;
    text-align: right;
}

.googleReviews .innerRow .topHeaderRow .right .totalRating {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.googleReviews .innerRow .topHeaderRow .right .totalRating h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #ffa800;
    margin-right: 5px;
}

.googleReviews .innerRow .googleVerified {
    display: flex;
    margin-top: 36px;
    margin-bottom: 22px;
}

.googleReviews .innerRow .googleVerified p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1c2052;
    margin-right: 10px;
}

.googleReviews .innerRow .sliderContainer3 {
    width: 100%;
}

.googleReviews .innerRow .sliderContainer3 .swiper .swiper-wrapper {
    position: relative;
}

.googleReviews .innerRow .sliderContainer3 .custom-nav-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.googleReviews .innerRow .sliderContainer3 {
    width: 100%;
    position: relative;
}

.googleReviews .innerRow .sliderContainer3 .sliderr3 {
    overflow: hidden;
}

.googleReviews .innerRow .sliderContainer3 .swiper-button-prev-custom {
    left: -70px;
    position: absolute;
}

.googleReviews .innerRow .sliderContainer3 .swiper-button-next-custom {
    right: -70px;
    position: absolute;
}

.googleReviews .innerRow .sliderContainer3 .swiper-wrapper .swiper-slide .card {
    padding: 30px 40px;
    background: #f3f5f6;
    border: 1px solid #f3f5f6;
    border-radius: 12px;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
.stars {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
.stars
.starRow {
    display: flex;
    align-items: center;
    margin-right: 14px;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
.stars
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22.4px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1c2052;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1c2052;
    margin-bottom: 15px;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
.footerRow {
    display: flex;
    align-items: center;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
.footerRow
img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-right: 23px;
}

.googleReviews
.innerRow
.sliderContainer3
.swiper-wrapper
.swiper-slide
.card
.footerRow
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1c2052;
}

/* our partners ======= */
.ourPartners {
    width: 100%;
    padding-top: 65px;
    padding-bottom: 96px;
}

.ourPartners .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.ourPartners .inner .topH4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #071a54;
    text-align: center;
    margin-bottom: 10px;
}

.ourPartners .inner .topPara {
    max-width: 848px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #1c2052;
    margin: auto;
    margin-bottom: 48px;
}

.ourPartners .inner .container4 {
    width: 100%;
    position: relative;
}

.ourPartners .inner .container4 .sliderrr4 .swiper4 {
    width: 100%;
    overflow: hidden;
}

.ourPartners .inner .container4 .sliderrr4 .swiper4 .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ourPartners
.inner
.container4
.sliderrr4
.swiper4
.swiper-wrapper
.swiper-slide
a {
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourPartners
.inner
.container4
.sliderrr4
.swiper4
.swiper-wrapper
.swiper-slide
a
img {
    width: 70%;
}

.ourPartners .inner .container4 .custom-nav-button4 {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.ourPartners .inner .container4 .swiper-button-prev-custom4 {
    left: -70px;
    position: absolute;
}

.ourPartners .inner .container4 .swiper-button-next-custom4 {
    right: -70px;
    position: absolute;
}

/* footer here ===========  */
.footer {
    width: 100%;
    padding-top: 31px;
    padding-bottom: 42px;
    background: #1c2052;
}

.footer .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .inner .left,
.footer .inner .right {
    width: 50%;
}

.footer .inner .left p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #fff;
    max-width: 338px;
    width: 100%;
}

.footer .inner .left p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.footer .inner .right h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.01em;
    text-align: right;
    color: #fff;
    margin-bottom: 47px;
}

.footer .inner .right span,
.footer .inner .right a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer .inner .right a {
    width: auto;
}

.footer .inner .right span img,
.footer .inner .right a img {
    margin-left: 13px;
}

/* copy right -========== ====s */
.copyRight {
    width: 100%;
    background: hsla(80, 80%, 36%, 1);
    height: 50px;
    display: flex;
    align-items: center;
}

.copyRight .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyRight .inner .copy p {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
    text-align: left;
    color: hsla(236, 49%, 22%, 1);
}

.copyRight .inner .copy p span {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    text-align: left;
    color: hsla(236, 49%, 22%, 1);
}

.copyRight .inner .terms {
    display: flex;
    align-items: center;
}

.copyRight .inner .terms a {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    text-align: left;
    color: hsla(236, 49%, 22%, 1);
    text-decoration: none;
}

/* hero services service pages css here  */
.heroSrvices {
    width: 100%;
    padding: 77px 0px;
    background: hsla(200, 14%, 96%, 1);
}

.heroSrvices .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.heroSrvices .inner .left {
    width: calc(100% - 586px);
}

.heroSrvices .inner .right {
    width: 550px;
}

.heroSrvices .inner .left .topPara {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 147%;
    letter-spacing: -1%;
    color: hsla(85, 53%, 48%, 1);
}

.heroSrvices .inner .left h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    color: hsla(225, 85%, 18%, 1);
    margin-bottom: 11px;
}

.heroSrvices .inner .left .bottomPara {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -1%;
    vertical-align: middle;
    color: hsla(236, 49%, 22%, 1);
}

.heroSrvices .inner .right .sliderContainer5 {
    width: 100%;
    position: relative;
}

.heroSrvices .inner .right .sliderContainer5 .sliderr5 {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.heroSrvices
.inner
.right
.sliderContainer5
.sliderr5
.swiper5
.swiper-wrapper
.swiper-slide {
    height: 397px;
}

.heroSrvices
.inner
.right
.sliderContainer5
.sliderr5
.swiper5
.swiper-wrapper
.swiper-slide
img {
    height: 100%;
    width: 100%;
}

.heroSrvices .inner .right .sliderContainer5 .custom-nav-button5 {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.heroSrvices .inner .right .sliderContainer5 .swiper-button-prev-custom5 {
    left: 10px;
    position: absolute;
    z-index: 88;
}

.heroSrvices .inner .right .sliderContainer5 .swiper-button-next-custom5 {
    right: 10px;
    position: absolute;
    z-index: 99;
}

/* process here ======== */
.process {
    width: 100%;
    background: hsla(236, 59%, 10%, 1);
    backdrop-filter: blur(250px);
    padding: 57px 0px;
}

.process .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

/* health priority here ==== */
.healthPriority {
    width: 100%;
    background: linear-gradient(215deg, rgba(11, 12, 41, 1) 0%, rgba(29, 35, 105, 1) 50%, rgba(11, 12, 41, 1) 100%);
    backdrop-filter: blur(250px);
}

.healthPriority .row {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    padding: 81px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.healthPriority .row .videoPlayer {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.healthPriority .row .textHealth {
    width: 40%;
    padding-left: 40px;
    position: relative;
}

.plyr__video-embed {
    width: 100% !important;
    position: relative;
}

.plyr__controls {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
}

.plyr__control {
    width: auto;
}

.healthPriority .row .textHealth h4 {
    text-align: right;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26.46px;
    letter-spacing: -0.01em;
    text-align: right;
    color: #86bc3a;
    margin-bottom: 5px;
}

.healthPriority .row .textHealth h2 {
    text-align: right;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 35px;
}

.healthPriority .row .textHealth p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    letter-spacing: -0.01em;
    text-align: right;
    color: #fff;
    margin-bottom: 42px;
}

.healthPriority .row .textHealth p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: right;
    color: #fff;
}

/* team ========= */
.team {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 98px;
}

.team .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.team .inner .headerTeam {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 90px;
}

.team .inner .headerTeam .left .topPara1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 147%;
    letter-spacing: -1%;
    color: #86bc3a;
}

.team .inner .headerTeam .left .topH4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
}

.team .inner .headerTeam .right {
    max-width: 622px;
    margin-left: auto;
    text-align: right;
}

.team .inner .headerTeam .right p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    text-align: right;
    color: #1c2052;
}

.team .inner .headerTeam .right p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    text-align: right;
}

.team .inner .card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 24px;
}

.team .inner .card .profil {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.team .inner .card .content {
    width: calc(100% - 209px);
}

.team .inner .card .content h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #1c2052;
}

.team .inner .card .content .topSpan {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    color: #1c2052;
    display: block;
    margin-bottom: 16px;
}

.team .inner .card .content p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    vertical-align: bottom;
    color: #1c2052;
}

/* taem mobile ==== */
.team .sliderContainer8 {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: none;
}

.team .sliderContainer8 .paraTop {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 147%;
    letter-spacing: -1%;
    text-align: center;
    color: #86bc3a;
    margin-bottom: 4px;
}

.team .sliderContainer8 .topH4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    color: #071a54;
    margin-bottom: 19px;
}

.team .sliderContainer8 .paraSmall {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    text-align: center;
    color: #1c2052;
    margin-bottom: 39px;
}

.team .sliderContainer8 .paraSmall span {
    font-weight: 700;
}

.team .sliderContainer8 .buttonsSlide,
.proService .inner .sliderContainer11 .buttonsSlide {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.team .sliderContainer8 .buttonsSlide button,
.proService .inner .sliderContainer11 .buttonsSlide button {
    margin: 0px 10px;
}

.proService .inner .sliderContainer11 .buttonsSlide button {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.team .sliderContainer8 .sliderr8 .swiper8 .swiper-wrapper .swiper-slide img,
.proService
.inner
.sliderContainer11
.buttonsSlide
.swiper11
.swiper-wrapper
.swiper-slide
img {
    display: block;
    margin: auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team .sliderContainer8 .sliderr8 .swiper8 {
    overflow: hidden;
}

.team .sliderContainer8 .sliderr8 .swiper8 .swiper-wrapper .swiper-slide h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 147%;
    letter-spacing: -1%;
    text-align: center;
    margin-bottom: 4px;
    color: #1c2052;
}

.team
.sliderContainer8
.sliderr8
.swiper8
.swiper-wrapper
.swiper-slide
.small {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    text-align: center;
    color: #1c2052;
    margin-bottom: 30px;
}

.team .sliderContainer8 .buttonsSlide button {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.team
.sliderContainer8
.sliderr8
.swiper8
.swiper-wrapper
.swiper-slide
.deescription {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    text-align: center;
    color: #1c2052;
}

.team
.sliderContainer8
.sliderr8
.swiper8
.swiper-wrapper
.swiper-slide
.deescription
span {
    font-weight: 700;
}

/* hero prices here =========  */
.heroPrices {
    width: 100%;
    padding: 34px 0px;
    background: #f3f5f6;
}

.heroPrices .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.heroPrices .inner h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #071a54;
    margin-bottom: 28px;
}

.heroPrices .inner .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

.heroPrices .inner .row .list {
    width: calc(100% - 190px);
    height: 40px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 250px;
    padding: 0px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #1c2052;
}

.heroPrices .inner .row .list span {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.03em;
    text-align: left;
}

.heroPrices .inner .row .price {
    width: 170px;
    min-height: 40px;
    background: #76a713;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 26px;
    padding: 5px 10px;
    text-align: center;
    color: #ffffff;
}

.heroPrices .inner .row .price span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 250%;
    text-decoration: line-through;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: line-through;
    color: #1c2052;
}

.heroPrices .inner .info {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.heroPrices .inner .info img {
    margin-right: 19px;
}

.heroPrices .inner .info .infoDetails p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    color: #1c2052;
}

.heroPrices .inner .info .infoDetails p span {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

/* hero Discovr ===== */
.heroDiscover {
    width: 100%;
    padding: 50px 0px;
    position: relative;
    min-height: 400px;
}

.heroDiscover .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
}

.heroDiscover .inner .content {
    max-width: 625px;
    width: 60%;
}

.heroDiscover .inner .content h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #071a54;
    margin-bottom: 65px;
}

.heroDiscover .inner .content p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -1%;
    vertical-align: bottom;
    color: #1c2052;
}

.heroDiscover .inner .content p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -1%;
    vertical-align: bottom;
}

.heroDiscover .discoverHeroImg {
    position: absolute;
    right: 0px;
    top: 0px;
    /*bottom: 50px;*/
    height: 360px;
}

/* typeOfTest========= */
.typeOfTest {
    padding: 50px 0px;
    background: linear-gradient(180deg, #1c2052 0%, #1d236f 100%);
}

.typeOfTest .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.typeOfTest .inner .left {
    max-width: calc(100% - 607px);
}

.typeOfTest .inner .left h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #ffffff;
    margin-bottom: 30px;
}

.typeOfTest .inner .left h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #76a713;
    margin-bottom: 30px;
}

.typeOfTest .inner .left .row {
    display: flex;
    align-items: flex-start;
    padding-left: 20px;
}

.typeOfTest .inner .left .row .dot {
    color: #fff;
    margin-bottom: 5px;
}

.typeOfTest .inner .left .row p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #ffffff;
    display: flex;
    margin-left: 15px;
}

.typeOfTest .inner .left .row p .bold {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
}

.typeOfTest .inner .left .paraInner {
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #ffffff;
}

.typeOfTest .inner .left .paraInner span {
    font-weight: 700;
}

.typeOfTest .inner .right img {
    width: 100%;
}

/* image slider ------- */
.imgSlider {
    width: 100%;
    padding: 47px 0px;
}

.imgSlider .image-container {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.imgSlider .image-container .sliderrr7 {
    position: relative;
}

.imgSlider .image-container .sliderrr7 .swiper7 {
    overflow: hidden;
    border-radius: 15px;
}

.imgSlider .image-container .sliderrr7 .custom-nav-button7 {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.imgSlider .image-container .sliderrr7 .swiper-button-prev-custom7 {
    left: -70px;
    position: absolute;
}

.imgSlider .image-container .sliderrr7 .swiper-button-next-custom7 {
    right: -70px;
    position: absolute;
}

.imgSlider .image-container .sliderrr7 .swiper7 .swiper-wrapper .swiper-slide {
    height: 206px;
}

.imgSlider
.image-container
.sliderrr7
.swiper7
.swiper-wrapper
.swiper-slide
img {
    width: 100%;
    height: 100%;
}

/* - hero ======== - */
.heroEquipment {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f3f5f6;
}

.heroEquipment .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.heroEquipment .inner h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    color: #1c2052;
    margin-bottom: 20px;
}

.heroEquipment .inner p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    color: #1c2052;
    max-width: 1015px;
    width: 100%;
    margin: auto;
}

.heroEquipment .inner p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
}

/* equipmentList====== */
.equipmentList {
    width: 100%;
    padding: 70px 0px;
    background: linear-gradient(180deg, #1c2052 0%, #1d236f 100%);

    backdrop-filter: blur(250px);
}

.equipmentList .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.equipmentList .inner .left {
    width: calc(100% - 570px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.equipmentList .inner .left .leftInner h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #76a713;
    margin-bottom: 30px;
}

.equipmentList .inner .left .leftInner h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #fff;
    margin-bottom: 30px;
}

.equipmentList .inner .left .leftInner p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #fff;
}

.equipmentList .inner .left .leftInner p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
}

.equipmentList .inner .left .redirectBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    width: 200px;
    padding: 5px 20px;
    height: 50px;
    border-radius: 250px;
    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1c2052;
    transition: 0.3s;
}

.white-equipmentBg .inner .right .redirectBtn:hover {
    background: #76a713;
    margin-bottom: 5px;

}

.equipmentList .inner .left .redirectBtn:hover {
    background: #76a713;
    margin-bottom: 5px;
    color: #fff;
}

.equipmentList .inner .right {
    width: 549px;
    height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.equipmentList .inner .right .bgImg {
    width: 100%;
    height: 100%;
}

.equipmentList .inner .right .equip-abs {
    position: absolute;
    right: -140px;
    bottom: -47px;
    width: 37%;
}

/* white quipment 1 ===== */
.white-equipmentBg {
    width: 100%;
    background: #ffffff;
    padding: 70px 0px;
}

.white-equipmentBg .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.white-equipmentBg .inner .left {
    width: 549px;

    min-height: 360px;
    height: auto;
    position: relative;
}

.white-equipmentBg .inner .right {
    width: calc(100% - 570px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.white-equipmentBg .inner .right h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: right;
    margin-bottom: 30px;
    color: #76a713;
}

.white-equipmentBg .inner .right p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: right;
    color: #1c2052;
}

.white-equipmentBg .inner .right p span {
    font-weight: 700;
}

.white-equipmentBg .inner .right .redirectBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    width: 200px;
    padding: 5px 20px;
    height: 50px;
    border-radius: 250px;
    text-decoration: none;
    margin-left: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    background: #1c2052;
    transition: 0.3s;
}

.white-equipmentBg .inner .left .bgImg {
    width: 100%;
    height: 100%;
}

.white-equipmentBg .inner .left .equip-abs {
    position: absolute;
    left: -100px;

    bottom: -40px;
    width: 37%;
}

/* gray .equipmentList */

.gray-equipmentBg {
    width: 100%;
    padding: 70px 0px;
    background: #f3f5f6;
    backdrop-filter: blur(250px);
}

.gray-equipmentBg .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.gray-equipmentBg .inner .left {
    width: calc(100% - 570px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gray-equipmentBg .inner .left .leftInner h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #76a713;
    margin-bottom: 30px;
}

.gray-equipmentBg .inner .left .leftInner h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #1c2052;
    margin-bottom: 30px;
}

.gray-equipmentBg .inner .left .leftInner p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #1c2052;
    margin-bottom: 30px;
}

.gray-equipmentBg .inner .left .leftInner p span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -1%;
}

.gray-equipmentBg .inner .left .redirectBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1c2052;
    width: 200px;
    padding: 5px 20px;
    height: 50px;
    border-radius: 250px;
    text-decoration: none;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
}

.gray-equipmentBg .inner .left .redirectBtn:hover {
    background: #76A713;
    margin-bottom: 5px;
}

.gray-equipmentBg .inner .right {
    width: 549px;
    height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gray-equipmentBg .inner .right .bgImg {
    width: 100%;
    height: 100%;
}

.gray-equipmentBg .inner .right .equip-abs {
    position: absolute;
    right: -100px;
    bottom: -47px;
    width: 30%;
}

/* media query -====== */
@media (max-width: 1400px) {
    .equipmentList .inner .right .equip-abs {
        right: -60px;
        bottom: -20px;
        width: 30%;
    }

    .white-equipmentBg .inner .left .equip-abs {
        left: -50px !important;
        bottom: -20px;
        width: 30%;
    }

    .gray-equipmentBg .inner .right .equip-abs {
        right: -60px !important;
        bottom: -20px;
        width: 30%;
    }
}

@media (max-width: 1300px) {
    .lackOfEnergy .inner .right .card .productImg {
        width: 200px;
        /* height: auto; */
    }

    .lackOfEnergy .inner .right .card .content {
        width: 100%;
    }

    .sliderContainer .swiper-button-next-custom {
        right: -40px;
    }

    .sliderContainer .swiper-button-prev-custom {
        left: -40px;
    }

    .heroDiscover .discoverHeroImg {
        width: 563px;
        height: 360px;
        z-index: -1;
    }

    .imgSlider .image-container .sliderrr7 .swiper-button-prev-custom7 {
        left: -20px;
        z-index: 22;
        position: absolute;
    }

    .imgSlider .image-container .sliderrr7 .swiper-button-next-custom7 {
        right: -20px;
        position: absolute;
    }
}

@media (max-width: 1250px) {
    .conatinerSlider-top .swiper-button-next-custom {
        right: -50px;
    }

    .conatinerSlider-top .swiper-button-prev-custom {
        left: -50px;
    }

    .gray-equipmentBg .inner .right {
        width: 449px;
    }

    .gray-equipmentBg .inner .left {
        width: calc(100% - 470px);
    }

    .white-equipmentBg .inner .left {
        width: 449px;
    }

    .white-equipmentBg .inner .right {
        width: calc(100% - 470px);
    }

    .heroDiscover .inner .content {
        max-width: 525px;
        width: 60%;
    }

    .equipmentList .inner .right .equip-abs {
        right: -40px;
        bottom: -20px;
        width: 30%;
    }

    .gray-equipmentBg .inner .right {
        height: auto !important;
    }

    .gray-equipmentBg .inner .right .equip-abs {
        right: -30px !important;
        bottom: 0px;
        width: 30%;
    }

    .equipmentList .inner .right {
        width: 449px;
    }

    .equipmentList .inner .left {
        width: calc(100% - 470px);
    }
}

@media (max-width: 1200px) {
    .proService .inner .card {
        position: relative;
    }

    .proService .inner .card .left a {
        width: 200px;
        height: 40px;
    }

    .proService .inner .card1 .cardImage {
        width: 120px;

        position: absolute;
        height: auto;
        bottom: 0px;
        top: 70px;
    }

    .proService .inner .card2 .cardImage {
        position: absolute;
        height: auto;
        top: 180px;
        right: 0px;
        width: 150px;
    }

    .proService .inner .card .left h3 {
        font-size: 14px;
    }

    .proService .inner .card3 .cardImage {
        position: absolute;
        height: auto;
        top: 140px;
        right: 0px;
        width: 130px;
    }

    .proService .inner .card4 .cardImage,
    .proService .inner .card5 .cardImage {
        position: absolute;
        width: 100px;
        top: 100px;
    }

    .proService .inner .card5 .cardImage {
        width: 60px;
        top: 170px;
    }

    .proService .inner .card7 .cardImage,
    .proService .inner .card8 .cardImage,
    .proService .inner .card9 .cardImage,
    .proService .inner .card10 .cardImage {
        width: 130px;
        right: 0px;
    }

    .proService .inner .card6 .cardImage {
        width: 140px;
    }

    .changeLife .inner .row .card .badgeTop {
        font-weight: 400;
    }

    .changeLife {
        padding: 50px 0px;
    }

    .changeLife .inner .row {
        flex-wrap: wrap;
    }

    .changeLife .inner .row .card {
        max-width: 48%;
        width: 48%;
        margin-bottom: 50px;
    }

    .changeLife .inner .row .card:nth-last-child(1) {
        margin-bottom: 0px;
    }

    .changeLife .inner .row .card .bgn {
        top: 25px;
    }

    .lackOfEnergy {
        padding: 50px 0px;
    }

    .lackOfEnergy .inner {
        flex-wrap: wrap;
    }

    .lackOfEnergy .inner .left {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0px;
    }

    .lackOfEnergy .inner .right {
        width: 100%;
    }
}

@media (max-width: 1250px) {
    .ourPartners {
        padding: 50px 0px;
    }

    .ourPartners .inner .container4 .sliderrr4 .swiper4 {
        z-index: -1;
    }

    .ourPartners .inner .container4 .swiper-button-next-custom4 {
        right: -20px;
        z-index: 1;
    }

    .ourPartners .inner .container4 .swiper-button-prev-custom4 {
        left: -20px;
        z-index: 11;
    }

    .googleReviews .innerRow .sliderContainer3 .swiper-button-next-custom {
        right: -50px;
    }

    .googleReviews .innerRow .sliderContainer3 .swiper-button-prev-custom {
        left: -50px;
    }
}

@media (max-width: 1100px) {
    .googleReviews
    .innerRow
    .sliderContainer3
    .swiper-wrapper
    .swiper-slide
    .card {
        padding: 20px;
    }

    .conatinerSlider-top
    .inner
    .sliderrr
    .swiper
    .swiper-wrapper
    .swiper-slide
    .card {
        max-width: 100%;
    }

    .conatinerSlider-top .inner .sliderrr .swiper2 {
        max-width: 100%;
    }

    .typeOfTest .inner .right img {
        width: 400px;
    }

    .typeOfTest .inner .left {
        max-width: calc(100% - 400px);
    }

    .header .inner .profile .mobileMenuIcon {
        display: block;
        cursor: pointer;
    }

    .heroDiscover {
        display: flex;
        flex-direction: column-reverse;
    }

    .heroDiscover .inner {
        width: 100%;
        padding-left: 5%;
    }

    .heroDiscover .discoverHeroImg {
        height: 300px;
        position: static !important;
        margin-left: auto;
        display: block;
        margin-bottom: 28px;
    }

    .heroDiscover .inner .content h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -1%;
        margin-bottom: 35px;
    }

    .heroDiscover .inner .content {
        max-width: 100%;
        width: 100%;
        padding-right: 5%;
    }

    .header .inner {
        padding: 10px 0px;
    }

    .header {
        position: relative;
    }

    .header .inner .menu {
        display: none;
        z-index: 99999;
        top: 100%;
        transition: 0.4s;
        background: #fff;
        z-index: 1111;
        position: absolute;
        left: 0px;
        right: 0px;
    }

    .header .inner .menu ul {
        display: block;
        width: 100%;
        flex-direction: column;
        margin-bottom: 36px;
        margin-top: 36px;
    }

    .header .inner .menu ul li {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .inner .menu ul li a {
        text-align: center;
        padding-bottom: 0px !important;
        margin-bottom: 20px;
        padding-top: 0px;
        display: inline;
    }

    .header .inner .menu ul li a.activeLink {
        border-bottom: none;
    }

    .header .inner .profile .appointment {
        width: 150px;
        height: 40px;
        font-size: 12px;
        font-weight: 600;
        margin-right: 19px;
    }

    .header .inner .profile .appointment img {
        width: 22px;
    }
}

@media (max-width: 1060px) {
    .hero .bg .row .right img {
        width: 100%;
    }

    .heroPrices .inner .row .list {
        width: 100%;
        flex-wrap: wrap;
        height: auto;
        padding: 10px 20px;
    }

    .heroPrices .inner .row {
        background: #ffffff;
        border-radius: 250px;
    }

    .heroPrices .inner .row .list span {
        line-height: 20px;
    }

    .heroPrices .inner .row .list {
        width: calc(100% - 70px);
        line-height: 10px;
    }

    .heroPrices .inner .row .price {
        width: 150px;
        text-align: right;
        margin-left: 10px;
    }
}

@media (max-width: 1030px) {
    .gray-equipmentBg .inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .gray-equipmentBg .inner .right {
        width: 100%;
        margin-bottom: 41px;
    }

    .gray-equipmentBg .inner .left {
        width: 100%;
    }

    .white-equipmentBg .inner .right h3,
    .white-equipmentBg .inner .right p {
        text-align: left;
    }

    .white-equipmentBg .inner .right .redirectBtn {
        /* margin-right: auto; */
        margin-top: 30px;
        position: relative;

        margin-right: auto !important;
        margin-left: 0px;
    }

    .white-equipmentBg .inner {
        flex-wrap: wrap;
    }

    .white-equipmentBg {
        padding: 30px 0px;
    }

    .white-equipmentBg .inner .left {
        width: 100%;
        margin-bottom: 41px;
        min-height: auto;
    }

    .white-equipmentBg .inner .right {
        width: 100%;
    }

    .topHeader {
        height: auto;
    }

    .topHeader .inner .right {
        display: none;
    }

    .white-equipmentBg .inner .left .equip-abs {
        left: -10px !important;
        bottom: -30px;
        width: 30%;
    }

    .topHeader .inner .left {
        width: 100%;
        justify-content: center;
        padding: 10px 0px;
        flex-wrap: wrap;
    }

    .topHeader .inner .left p {
        justify-content: center;

        flex-wrap: wrap;
        text-align: center;
        align-items: center;
    }

    .heroEquipment .inner h3 {
        font-size: 24px;
    }

    .equipmentList .inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .equipmentList .inner .left {
        width: 100%;
    }

    .equipmentList .inner .right .bgImg {
        width: 100% !important;
        height: auto;
    }

    .equipmentList .inner .right {
        max-width: 570px;
        margin: auto;
        width: 100%;
        margin-bottom: 41px;
    }

    .equipmentList .inner .right .equip-abs {
        right: -20px;
        bottom: -20px;
        width: 123px;
    }

    .equipmentList .inner .left .leftInner h3 {
        font-size: 18px;
    }

    .equipmentList .inner .left .leftInner p {
        margin-bottom: 30px;
    }

    .equipmentList {
        padding: 50px 0px;
    }
}

@media (max-width: 992px) {
    .fillDataTop .inner .left,
    .fillDataTop .inner .right {
        width: 100%;
    }

    .fillDataTop .inner .left,
    .fillDataTop .inner .right {
        padding: 28px 21px;
    }

    .fillDataTop .inner .right .multiStepFormClass .form-step .btnCount {
        position: static;
    }

    .conatinerSlider-top .inner {
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .conatinerSlider-top .swiper-button-next-custom,
    .conatinerSlider-top .swiper-button-prev-custom {
        /* position: static; */
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto;
        top: 10px;
    }

    .conatinerSlider-top .inner .sliderrr .swiper2 {
        z-index: -1;
        margin-bottom: 0px;
    }

    .conatinerSlider-top .swiper-button-next-custom {
        left: 50px;
        z-index: 10;
    }

    .conatinerSlider-top .swiper-button-prev-custom {
        right: 50px;
    }

    .conatinerSlider-top .inner .sliderrr .swiper2 {
        height: auto;
        margin-top: 40px;
    }

    .sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp {
        max-width: 49%;
        width: 49%;
    }

    .bioHacking {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .bioHacking .inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .bioHacking .inner .left,
    .bioHacking .inner .right {
        width: 100%;
        height: auto;
    }

    .bioHacking .inner .right {
        margin-top: -30px;
    }

    .bioHacking .inner .right img {
        object-fit: cover;
        height: auto;
    }

    .bioHacking .inner .right {
        margin-bottom: 20px;
    }

    .gray-equipmentBg .inner .right .equip-abs {
        right: -20px !important;
        bottom: -30px !important;
        width: 20%;
    }

    .typeOfTest .inner {
        flex-direction: column-reverse;
    }

    .typeOfTest .inner .right img {
        width: 100%;
    }

    .typeOfTest .inner .left {
        max-width: 100%;
    }

    .heroPrices .inner .row .list,
    .heroPrices .inner .row .price {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
    }

    .heroSrvices .inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .heroSrvices {
        padding: 50px 0px;
    }

    .heroSrvices .inner .left {
        width: 100%;
        flex-direction: column-reverse;
    }

    .heroSrvices .inner .right {
        width: 100%;
        margin-bottom: 18px;
        height: auto;
    }
}

@media (max-width: 900px) {
    .googleReviews .innerRow .sliderContainer3 .swiper-button-next-custom {
        top: -40px;
        left: 60px;
        right: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    .googleReviews .innerRow .sliderContainer3 .swiper-button-prev-custom {
        top: -40px;
        left: 0px;
        right: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    .googleReviews .innerRow .sliderContainer3 .sliderr3 {
        margin-top: 90px;
    }

    .sliderContainer11 {
        display: block;
    }

    .proService .inner .row {
        display: none;
    }

    .team {
        padding: 50px 0px;
    }

    .team .inner {
        display: none;
    }

    .team .sliderContainer8 {
        display: block;
    }
}

@media (max-width: 800px) {
    .healthPriority .row {
        flex-wrap: wrap;
    }

    .healthPriority .row .videoPlayer {
        width: 100%;
        margin-bottom: 19px;
    }

    .healthPriority .row .textHealth {
        width: 100%;
    }

    .healthPriority .row {
        padding: 50px 0px;
    }

    .healthPriority .row .textHealth h4,
    .healthPriority .row .textHealth h2,
    .healthPriority .row .textHealth p {
        text-align: left;
    }

    .healthPriority .row .textHealth {
        padding-left: 0px;
    }
}

@media (max-width: 800px) {
    .lackOfEnergy .inner .right .card {
        flex-wrap: wrap;
    }

    .lackOfEnergy .inner .right .card .productImg {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .lackOfEnergy .inner .right .card .content {
        width: 100%;
    }

    .lackOfEnergy .inner .right .card .content .btn {
        position: static;
        margin-top: 32px;
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width: 779px) {
    .fillDataTop .inner .right .multiStepFormClass .form-step .rowSelect {
        /* flex-wrap: wrap; */
    }

    .fillDataTop
    .inner
    .right
    .multiStepFormClass
    .form-step
    .rowSelect
    .innerTable {
        width: 100%;
        margin-bottom: 20px;
    }

    .fillDataTop
    .inner
    .right
    .multiStepFormClass
    .form-step
    .rowSelect
    .custom-select-container {
        max-width: 100%;
        width: 100%;
    }

    .fillDataTop .inner .left h2 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 26px;
    }

    .fillDataTop .inner .left h2 {
        margin-bottom: 16px;
    }

    .fillDataTop .inner .right .multiStepFormClass .form-step .row .leftList,
    .fillDataTop .inner .right .multiStepFormClass .form-step .row .rightList {
        width: 100%;
    }

    .fillDataTop
    .inner
    .right
    .multiStepFormClass
    .form-step
    .row
    .rightList:nth-child(1) {
        margin-bottom: 20px;
    }

    .fillDataTop .inner .right .multiStepFormClass .form-step .checkBoxList .inn {
        flex-wrap: wrap;
    }

    .sliderContainer .swiper-button-next-custom {
        right: -30px;
    }

    .sliderContainer .swiper-button-prev-custom {
        left: -30px;
    }

    .hero .bg .row {
        flex-wrap: wrap;
    }

    .hero .bg .row .left {
        padding-top: 50px;
    }

    .hero .bg .row .left,
    .hero .bg .row .right {
        width: 100%;
    }

    .hero .bg .row .left h2,
    .hero .bg .row .left p {
        text-align: center;
    }

    .hero .bg .row .left p:nth-last-child(2) {
        margin: auto;
        margin-bottom: 20px;
    }

    .hero .bg .row .left p:nth-last-child(1) {
        width: auto;
    }

    .hero .bg .row .left .learnMore {
        justify-content: center;
        align-items: center;
    }

    .hero .bg .row .right img {
        width: 70%;
        display: block;
        margin: auto;
    }

    .hero .inner .left,
    .hero .inner .right {
        width: 100%;
    }

    .hero .inner {
        height: auto;
    }

    /* all h1 sizes for mobile ==== */
    .hero .inner .left h1 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 14px;
    }

    .hero .inner .left p {
        margin-bottom: 14px;
    }

    .hero .inner .right {
        height: 300px;
    }

    .hero .inner .left {
        padding: 34px 0px;
    }

    .hero .inner .right img {
        width: 65%;
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin: auto;
        left: 0px;
    }

    .heroSrvices
    .inner
    .right
    .sliderContainer5
    .sliderr5
    .swiper5
    .swiper-wrapper
    .swiper-slide {
        height: 289px;
    }

    .heroPrices .inner h2 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 26px;
    }

    .header .inner .logo a {
        display: block;
        width: 150px;
    }

    .header .inner .logo a img {
        width: 100%;
    }

    .heroDiscover .discoverHeroImg {
        width: 90%;
        height: auto;
    }

    .imgSlider .image-container .sliderrr7 .custom-nav-button7 {
        top: -10%;
    }

    .imgSlider .image-container .sliderrr7 .swiper-button-prev-custom7 {
        left: 0px;
        right: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .imgSlider .image-container .sliderrr7 .swiper-button-next-custom7 {
        left: 50px;
        right: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    .imgSlider .image-container .sliderrr7 .swiper7 {
        padding-top: 30px;
        margin-top: 30px;
    }

    .footer .inner .left,
    .footer .inner .right {
        width: 100%;
    }

    .footer .inner .right {
        direction: rtl;
    }

    .footer .inner .right h2 {
        text-align: left;
        margin-top: 42px;
    }

    .footer .inner .right span,
    .footer .inner .right a {
        text-align: left;
    }

    .footer .inner .right span img,
    .footer .inner .right a img {
        margin-left: 0px;
        margin-right: 13px;
    }

    .copyRight .inner {
        justify-content: center;
    }

    .copyRight .inner .copy p {
        text-align: center;
    }

    .copyRight .inner .copy {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .googleReviews .innerRow .topHeaderRow {
        flex-wrap: wrap;
        margin-bottom: 0px;
    }

    .googleReviews .innerRow .topHeaderRow .left h4 {
        text-align: center;
        margin-bottom: 10px;
    }

    .googleReviews .innerRow .googleVerified {
        justify-content: center;
        margin-top: 0px;
    }

    .googleReviews .innerRow .topHeaderRow .left,
    .googleReviews .innerRow .topHeaderRow .right {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .googleReviews .innerRow .topHeaderRow .right .totalRating {
        justify-content: center;
    }

    .googleReviews .innerRow .topHeaderRow .right h4 {
        text-align: center;
    }

    .changeLife .inner .row .card {
        max-width: 100%;
        width: 100%;
        margin-bottom: 50px;
    }

    .heroPrices .inner .row {
        flex-wrap: wrap;
        overflow: hidden;
        padding: 10px 5px;
        border-radius: 15px;
    }

    .heroPrices .inner .row .list {
        width: 100%;
    }

    .heroPrices .inner .row .price {
        margin-left: auto;
        margin-right: 10px;
    }
}

@media (max-width: 620px) {
    .equipmentList .inner .right {
        height: auto;
    }

    .sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide {
        padding: 0px 30px;
        z-index: -1 !important;
    }

    .sliderContainer .sliderr .swiper .swiper-wrapper .swiper-slide .comp {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .sliderContainer .swiper-button-next-custom {
        right: -20px;
    }

    .sliderContainer .swiper-button-prev-custom {
        left: -20px;
    }

    .header .inner .logo a {
        display: block;
        width: 100px;
    }

    .hero .inner .right img {
        width: 90%;
    }

    .sliderContainer9 .sliderr9 .swiper9 .swiper-wrapper .swiper-slide .card {
        height: auto;
    }

    .sliderContainer9 .sliderr9 .swiper9 .swiper-wrapper .swiper-slide .card a {
        position: static;
        margin-top: 30px;
    }
}

/* Contact page styles ported from old CSS */
.heroContact {
    width: 100%;
    padding: 44px 0px 62px 0px;
    background: #f3f5f6;
}

.heroContact .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.heroContact .inner .left {
    width: calc(100% - 645px);
}

.heroContact .inner .left h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #1c2052;
    margin-bottom: 20px;
}

.heroContact .inner .left h2 span {
    color: #76a713;
}

.heroContact .inner .right {
    width: 645px;
}

.heroContact .inner .left a {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
    color: #1c2052;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.heroContact .inner .left a.bottomMargin {
    margin-bottom: 29px;
}

.heroContact .inner .left a img {
    margin-right: 8px;
}

.heroContact .inner .left p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #071a54;
    margin-bottom: 31px;
}

.heroContact .inner .left p span {
    font-weight: 700;
}

.heroContact .inner .left .social {
    display: flex;
    align-items: center;
}

.heroContact .inner .left .social a {
    margin-right: 10px;
    text-decoration: none;
}

.heroContact .inner .left .social a:nth-child(2) {
    margin-bottom: 0px;
}

/* video Map here ======= */
.videoMap {
    width: 100%;
    padding: 50px 0px;
    background: linear-gradient(215deg, rgba(11, 12, 41, 1) 0%, rgba(29, 35, 105, 1) 50%, rgba(11, 12, 41, 1) 100%);
}

.videoMap .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.videoMap .inner .video {
    width: 60%;
}

.videoMap .inner .video .container {
    margin-bottom: 53px;
}

.videoMap .inner .video h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26.46px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #86bc3a;
    margin-bottom: 77px;
}

.videoMap .inner .video .turn {
    width: 140px;
    height: 40px;
    border-radius: 29px;
    background: #76a713;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.63px;
    color: #ffffff;
}

.videoMap .inner .video .turn img {
    margin-right: 6px;
}

.videoMap .inner .map {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.videoMap .inner .map .mapCard {
    height: 100%;
    width: 80%;
}

.videoMap .inner .map .mapCard iframe {
    width: 100%;
}

.hidden {
    display: none;
}

.error-msg {
    background: #d8403a;
    border: 1px solid #da2121;
    color: #fff;
    text-align: center;
    padding: 11px 5px;
    font-size: 0.90em;
    /*margin-bottom: 20px;*/
    font-family: Arial;
}


.datepicker table tr td.active.active {
    color: #fff !important;
}

.datepicker table tr td.day {
    color: #000 !important;
}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    color: #faaeae !important;
    text-decoration: line-through !important;
}

.datepicker-days, #success-reservation, #payment, #success-booking {
    font-family: "Montserrat", sans-serif;
}

#success-reservation {
    text-align: center;
}

#success-reservation i {
    color: #a0c710;
    font-size: 8em;
}

#success-reservation h3 {
    font-size: 19px;
    margin-top: 12px;
}

#success-booking {
    text-align: center;
}

#success-booking i {
    color: #10c710;
    font-size: 8em;
}

#success-booking h3 {
    font-size: 19px;
    margin-top: 12px;
}

#questions .question {
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px dashed #ccc;
}

#next-options {
    margin-top: 25px;
}

#success-poll {
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

#success-poll i {
    color: #10c710;
    font-size: 8em;
}

#success-poll h3 {
    font-size: 19px;
    margin-top: 12px;
}

ul.number {
    list-style-type: decimal;
}

.error {
    display: none;
    width: 100%;
    background: #c80909;
    padding: 27px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    border-radius: 10px;
}

.error ul {
    margin-top: 15px;
}

.error ul li {
    margin-left: 30px;
}

#payment-countdown {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1c2052;
    margin-bottom: 31px;
    margin-top: -11px;
}

.policy {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    width: 57%;
    margin: 0 auto;
    margin-top: 44px;
}

#doctors {
    margin-top: 6%;
}

.heroContact .inner .right textarea, .custom-input {
    width: 100%;
    height: 140px;
    border-radius: 15px;
    border: 1px solid #e2e2e2;
    padding: 13px 19px;
    background: transparent;
    margin-bottom: 36px;
    resize: none;
}

.fillDataTop .inner .right .multiStepFormClass .form-step .radioList h4 {

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #1c2052;
    margin-bottom: 13px;
}


/* faq hero here ========= */
.faqHero {
    width: 100%;
    padding: 49px 0px;
    background: #f3f5f6;
}

.faqHero .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.faqHero .inner h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #071a54;
    margin-bottom: 43px;
}

.faqHero .inner .accordion {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1120px;
    width: 100%;
}

.faqHero .inner .accordion li {
    margin-bottom: 25px;
}

.faqHero .inner .accordion .accordion-header {
    cursor: pointer;
    padding: 10px;
    position: relative;
    transition: background-color 0.3s ease;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    padding-left: 47px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #1c2052;
}

.faqHero .inner .accordion .active {
    border-radius: 25px 25px 0px 0px;
    color: #86bc3a;
    transition: 0.1s;
}

.faqHero .inner .accordion .accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    border-radius: 0px 0px 25px 25px;
    background: #fff;
}

.faqHero .inner .accordion .accordion-content p {
    padding: 16px 88px 16px 40px;
    margin: 0;
    border-radius: 0px 25px 25px 0px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1c2052;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}

.faqHero .inner .accordion .accordion-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faqHero
.inner
.accordion
.accordion-content.open
~ .faqHero
.inner
.accordion
.accordion-header
.accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* hero rules and condition here ===== */
.heroRules {
    width: 100%;
    padding: 71px 0px;
    background: #f3f5f6;
    min-height: 80vh;
}

.heroRules .inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
}

.heroRules .inner h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #071a54;
    margin-bottom: 44px;
}

.heroRules .inner p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: left;
    color: #1c2052;
}

.discoverHeroImg.custom {
    width: 630px;
    height: 360px;
    /*border-top-left-radius: 35%;*/
    /*border-bottom-left-radius: 35%;*/
}

.discoverHeroImg.custom.inBody {
    background: url('../img/services2/agaia-inbody-analyze.png') center center no-repeat;
    background-size: cover;
}
.discoverHeroImg.custom.nutri {
    background: url('../img/services2/agaia-hranitelen-rejim.png') center center no-repeat;
    background-size: cover;
}
.discoverHeroImg.custom.chervenaTerapiya {
    background: url('../img/services2/agaia-chervena-terapiya.png') center center no-repeat;
    background-size: cover;
}
.discoverHeroImg.custom.metabolen {
    background: url('../img/services2/agaia-metabolen-test-v-pokoi.png') center center no-repeat;
    background-size: cover;
}
.discoverHeroImg.custom.metabolenNatovarvane {
    background: url('../img/services2/agaia-metabolen-test-pod-natovarvane.png') center center no-repeat;
    background-size: cover;
}
.discoverHeroImg.custom.kislorodna {
    background: url('../img/services2/agaia-kislorodna-terapiya.png') center center no-repeat;
    background-size: cover;
}
.discoverHeroImg.custom.magnitna {
    background: url('../img/services2/agaia-magnitna-terpiya.png') center center no-repeat;
    background-size: cover;
}

.typeOfTest {
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

* {
    font-family: "Montserrat", sans-serif;
}


.header-wrapper {
    position: relative;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-wrapper.hidden {
    transform: translateY(-100%);
}
.header-placeholder {
    display: none;
    height: 120px; /* Adjust this value to match your header height */
}
.header-placeholder.visible {
    display: block;
}
