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


body {
    font-family: "Inter", sans-serif;
    color: rgb(27, 27, 28);
  
}


.blue {
    color: rgb(5, 0, 255);
}

strong {
    font-weight: bold;
}

header {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1), 25px 24px 20px 0px rgba(0, 0, 0, 0.05);
    margin: 0 auto 51px;
    z-index: 999;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


.nav__des {
    width: 100%;
    max-width: 554px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 21px;
}

.nav__des a {
    color: rgb(17, 17, 17);
    font-size: 14px;
    font-weight: 600;
    line-height: 22.5px;
    font-family: "Wix Madefor Display", sans-serif;
    cursor: pointer;
}

.nav__des a:hover {
    color: rgb(5, 0, 255);
}

/* DROPDOWM_NAV */
.drop {
    position: relative;
    padding-right: 16px;
}

.drop::after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    background: url('../assets/svg/dropDown.svg') no-repeat center / cover;
    width: 14px;
    height: 10px;
    transform: translate(0, -50%);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1), 25px 24px 20px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255);
    min-width: 200px;
    padding: 22px 19px;
    z-index: 1;
}

.dropdown-content a {
    color: rgb(26, 26, 26);
    font-size: 16px;
    font-weight: 600;
    line-height: 114%;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:hover {
    color: rgb(5, 0, 255);
}


.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

/* ==================================== */

/* ========Mobile_NAVIGATION_BUTTON========= */

.menu-icon {
    z-index: 19;
    position: relative;
    width: 34px;
    height: 23px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon-line {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgb(5, 0, 255);
    border-radius: 10px;
}

.menu-icon-line::before {
    position: absolute;
    left: 0;
    top: -7px;
    content: '';
    width: 100%;
    height: 4px;
    background: rgb(5, 0, 255);
    border-radius: 10px;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}

.menu-icon-line::after {
    position: absolute;
    left: 0;
    top: 7px;
    content: '';
    width: 100%;
    height: 4px;
    background: rgb(5, 0, 255);
    border-radius: 10px;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}

.menu-icon.menu-icon-active .menu-icon-line {
    background-color: transparent;
}

.menu-icon.menu-icon-active .menu-icon-line::before {
    transform: rotate(45deg);
    top: 0;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}

.menu-icon.menu-icon-active .menu-icon-line::after {
    transform: rotate(-45deg);
    top: 0;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}

.list-mobile {
    z-index: 2;
    height: 100vh;
    position: fixed;
    padding: 30px 15px;
    left: 0;
    top: 50px;
    width: 100%;
    background-color: #fff;
    transform: translate(-100%, 0px);
    opacity: 0;
    transition: all 1.5s ease 0s;
}

.item-mobile {
    margin-bottom: 20px;
}

.item-mobile a {
    display: inline-block;
    color: rgb(17, 17, 17);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.item-mobile a:hover {
    color: rgb(5, 0, 255);
}

.item-mobile .dropdown {
    width: 100%;
}

.item-mobile .drop::after {
    transform: rotate(270deg) translate(0, 0);
    top: 4px;
}

.item-mobile .dropdown-content {
    /* left: 150px;
    min-height: 228px;
    width: 100%;
    max-width: 100px;
    top: -104px; */
    position: unset;
}

.item-mobile:last-child {
    margin-bottom: 0px;
}

.item-mobile .dropdown:hover .drop {
    margin-bottom: 10px;
    /* }

.item-mobile-margin {
    margin-bottom: 116px; */
}

.link-mobile {
    color: rgb(17, 17, 17);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 269px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 10px;
}

.header__link-mobile {
    margin: 0 auto;
}

.img__cnt {
    padding: 10px 0px 0px;
    margin: 0px 5px 0px 5px;
}

.mobile__img {
    width: 20px;
    height: 20px;
}

.list-mobile--active {
    transform: translate(0px, 0px);
    opacity: 1;
}


/* ======================================= */

main {
    padding: 100px 20px 0;
    overflow-x: hidden;
    position: relative;
}

.arrowTop {
    display: none;
    position: fixed;
    right: 9px;
    bottom: 50px;
    width: 100%;
    max-width: 81px;
    height: 81px;
    border-radius: 50%;
    background: linear-gradient(155.28deg, rgb(46, 204, 255) -2.232%,rgb(5, 0, 255) 83.888%);
}

.arrowTop img {
    max-width: 49px;
}

.logo {
    max-width: 110px;
}

.title__wrapper {
    width: 100%;
    max-width: 1307px;
    margin: 0 auto 41px;
}

.title__cnt {
    margin: 0 0 16px;
}

h1 {
    font-size: 49px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 0 42px;
}

.title__cnt p {
    font-size: 14px;
    font-weight: 300;
    line-height: 114%;
}

.title-m {
    margin: 0 0 23px;
}

.title__img {
    max-width: 325px;
    margin: 0 auto;
}

.title__list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    margin: 0 auto 88px;
}

.title__list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin: 0 auto;
}

/* ================ABOUT__US================== */
.about {
    margin: 0 auto 105px;
}

.about__textWrapper {
    margin: 0 auto 48px;
    width: 100%;
    max-width: 1074px;
}

h3 {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 30px;
}

.about__text {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto 10px;
}

.about__text:last-child {
    margin: 0 auto;
}

.about__list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}


.about__list li {
    padding: 26px 34px;
    border-radius: 12px;
    background: linear-gradient(155.28deg, rgb(46, 204, 255) 11.163%, rgb(5, 0, 255) 75.197%);
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 534px;
    margin: 0 auto;
}
.about__list li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about__listTtile {
    margin: 0 auto 5px;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.about__listText {
    font-size: 14px;
    font-weight: 400;
}


/* ================SERVICES================== */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin: 0 auto 101px;
}

.services__cnt {
    width: 100%;
}

.services__cnt-grad {
    padding: 39px 21px 42px;
    border-radius: 10px;
    background: linear-gradient(180.00deg, rgb(255, 249, 168) 5.98%, rgb(255, 174, 254) 77.73%);
}

.services__title {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
}

.services__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
}

.services__text-m {
    margin: 0 auto 25px;
}

.services__title-ms {
    margin: 0 0 18px;
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0 0 35px;
    max-width: 482px;
}

.services__item {
    position: relative;
}


.services__itemTitle {
    font-size: 16px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    position: relative;
    cursor: pointer;
}


.services__itemTitle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    background: url('../assets/svg/servIco.svg') no-repeat center / cover;
    width: 100%;
    max-width: 10.4px;
    height: 8.2px;
    transform: translate(0, -50%);
    transition: all 0.2s ease-out;
}

.services__itemTitle.active.services__itemTitle::after {
    top: 0;
    transform: rotate(180deg) translate(0, -50%);

}

.panel {
    padding: 10px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    line-height: 1.2;
}

/* ================HISTORY================== */
.history {
    margin: 0 auto 108px;
}

.history__wrapper {
    margin: 0 auto;
    padding: 24px 16px 28px;
    border-radius: 10px;
    background: linear-gradient(180.00deg, rgb(255, 244, 101) 5.98%, rgb(72, 255, 145) 77.73%);
}

.history__cnt {
    margin: 0 auto 43px;
}

.history__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    font-family: "Wix Madefor Display", sans-serif;
}

.history__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
}

.history__title {
    margin: 0 0 10px;
}

.history__text-m {
    margin: 0 0 38px;
}

.history__title-m {
    margin: 0 0 37px;
}

.history__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 auto 30px;
}

.history__list div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}

.history__list li {
    padding: 16px 15px 25px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
}

.history__itemTitle {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px;
}

.history__itemText {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
}

/* ================REVIEWS================== */

.reviews__list {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 12px;
    margin: 0 auto 87px;
}


.reviews__list li {
    border-radius: 10px;
    width: 100%;
    max-width: 154px;
    display: flex;
    justify-content: flex-end;
    padding: 210px 10px 15px;
    text-align: center;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: url('../assets/img/r1.png') no-repeat center / cover;
}

.reviews__list li:nth-child(2) {
    background: url('../assets/img/r2.png') no-repeat center / cover;
}

.reviews__list li:nth-child(3) {
    background: url('../assets/img/r3.png') no-repeat center / cover;
}

.reviews__list li:nth-child(4) {
    background: url('../assets/img/r4.png') no-repeat center / cover;
}

.reviews__itemOverlay {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-1.15deg, rgb(5, 0, 255) 0.403%, rgba(5, 0, 255, 0) 99.708%);
}

.reviews__itemCnt {
    position: relative;
    z-index: 2;
    width: 100%;
}

.reviews__itemTitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 auto 1px;
    text-align: center;
}

.reviews__itemText {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    text-align: center;
}


/* ================HELP================== */

.help {
    padding: 53px 10px 55px;
    border-radius: 10px;
    background: linear-gradient(155.28deg, rgb(46, 204, 255) -12.261%, rgb(5, 0, 255) 90.395%);
    margin: 0 auto 130px;
}

.help__title {
    color: #fff;
    margin: 0 auto 13px;
}

.help__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    color: #fff;
    text-align: center;
    margin: 0 auto 26px;
    width: 100%;
    max-width: 1030px;
}

.help__list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.help__list li {
    border-radius: 10px;
    background: rgb(255, 255, 255);
    padding: 18px 14px 22px;
    text-align: center;
}

.help__listTitle {
    font-size: 16px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 auto 6px;
}

.help__listText {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
}

/* ================Testimonials================== */
.testimonials {
    width: 100%;
    padding: 39px 21px 42px;
    border-radius: 0px 0px 20px 20px;
    background: linear-gradient(180.00deg, rgb(255, 249, 168) 5.98%, rgb(255, 174, 254) 77.73%);
    margin: 0 auto 101px;
}

.testimonials__title {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
}

.testimonials__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    text-align: center;
    margin: 0 auto;
}

.testimonials__list {
    width: 100%;
    display: flex;
    gap: 20px;

}

.testSwiper {
    width: 100%;
    padding: 20px 0 30px !important;
}

.testSlide__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.testSlide {
    background: transparent !important;
}

.testimonialsCnt {
    padding: 25px;
    text-align: start;
    border-radius: 12px;
    background: rgb(255, 255, 255);
    width: 100%;
    max-width: 371px;
    margin: 0 auto;
}

.testimonials__listTitle {
    font-weight: 700;
    line-height: 100%;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 0 2px;
    font-size: 16px;
}

.testimonials__listTitleAfter {
    color: rgb(148, 148, 148);
    margin: 0 0 10px;
    font-size: 14px;
}

.testimonials__listText {
    font-size: 14px;
}

.testSwiper .swiper-pagination-bullet-active {
    background: #fff !important;
}
/* ================FAQ================== */

.faq {
    margin: 0 auto 107px;
}

.faq__title {
    text-align: start;
    margin: 0 0 36px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq__itemTitle {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    padding: 0 0 0 20px;
    cursor: pointer;
}


.faq__itemTitle::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url('../assets/svg/faq.svg') no-repeat center / cover;
    width: 100%;
    max-width: 14px;
    height: 13px;
}

.faq__itemTitle.active.faq__itemTitle::before {
    top: 2px;
    transform: rotate(180deg) translate(0, 0);
}

.faq__img {
    max-width: 325px;
    margin: 0 auto;
}

/* ================TERMS================== */

.terms {
    margin: 0 auto 99px;
    padding: 43px 18px;
    border-radius: 10px;
    background: linear-gradient(180.00deg, rgb(255, 244, 101) 5.98%, rgb(72, 255, 145) 77.73%);
}

.terms__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    text-align: center;
    margin: 0 auto 27px;
}

.terms__cnt {
    border-radius: 5px;
    background: rgb(255, 255, 255);
    padding: 35px 18px;
}

.terms__titleCnt {
    margin: 0 auto 32px;
}

.terms__cntTitle {
    font-size: 16px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 auto 4px;
    text-align: center;
}

.terms__link {
    padding: 13px;
    border-radius: 70.85px;
    background: rgb(5, 0, 255);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    max-width: 329px;
    margin: 0 auto;
}

.terms__cntText {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    margin: 0 auto 16px;
}

.terms__cntText:last-child {
    margin: 0;
}

/* ================CONTACT__US================== */
.contact {
    margin: 0 auto 32px;
}

.contact__title {
    margin: 0 auto 19px;
}

.contact__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.contact__list li {
    border-radius: 5px;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1), 25px 24px 20px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255);
    padding: 10px 6px 17px;
    width: 100%;
}

.contact__itemTitle {
    font-size: 16px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 auto 12px;
    text-align: center;
}

.contact__itemText {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    text-align: center;
}

.contact__item-w {
    max-width: 155px;
    width: 100%;
}

/* ================RECOVERY================== */
.recovery {
    background: rgb(231, 231, 231);
    width: 100%;
    padding: 42px 16px;

}

.recovery__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
}

.recovery__title {
    margin: 0 auto 16px;
}

.recovery__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
}

.recover__cntWrap {
    display: flex;
    gap: 38px;
    justify-content: space-between;
    width: 100%;
}

.recover__cntWrapTitle {
    font-size: 16px;
    font-weight: 700;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 0 12px;
}

.recovery__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recovery__list a {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    text-align: start;
    justify-content: start;
    color: rgb(47, 47, 47);
}

.recovery__list a:hover {
    color: rgb(5, 0, 255);
}

/* ================FOOTER================== */

footer {
    background: rgb(188, 188, 188);
    width: 100%;
    padding: 21px 20px;
}

.footer__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    margin: 0 auto 20px;
}

footer .title__list {
    margin: 0 auto 31px;
}

.footer__textCopy {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* SLIDER */
.swiper__wrapper {
    position: relative;
    padding: 4px 0;
    width: 100%;
    max-width: 610px;
}

.swiper {
    width: 100%;
    height: 100%;
    max-height: 559px;
}

.swiper-vertical>.swiper-wrapper {
    height: 258px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.sliderWrapper {
    width: 100%;
    display: flex;
    gap: 23px;
    justify-content: space-between;
    text-align: start;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slideMain {
    width: 100%;
    max-width: 610px;
    padding: 29px 33px;
    border-radius: 20px;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1), 25px 24px 20px 0px rgba(0, 0, 0, 0.05);
    background: rgb(244, 244, 247);
    /* max-height: 258px; */
}

.sliderTitle {
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0 0 13px;
}

.sliderAfterTitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    margin: 0 0 13px;
    font-family: "Wix Madefor Display", sans-serif;
}

.sliderText {
    font-size: 21px;
    font-weight: 400;
    line-height: 114%;
}

.swiper-3d .swiper-slide-shadow {
    background: rgb(244, 244, 247) !important;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    left: 56px !important;
    top: unset !important;
    bottom: 0 !important;
    right: unset !important;
    transform: translate3d(0px, 0, 0) rotate(270deg) !important;
}


.swiper_text {
    width: 100%;
    max-width: 610px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.swiper_text .swiper-slide {
    display: flex;
    justify-content: center;
}

.swiperMainCnt {
    display: flex;
    width: 100%;
    padding: 67px 0;
    gap: 23px;
    max-width: 1240px;
    align-items: flex-start;
}

.swiperMainCnt_des {
    display: none;
}

/* 
.swiper-button-next, 
.swiper-button-prev {
    width: 53px !important;
    height: 53px !important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
} */


.swiperMain__mob {
    margin: 87px auto 126px;
}

.slideWrapper__cnt {
    display: flex;
    flex-direction: column;
}

.slideCnt__mob {
    min-height: 200px;
    padding: 20px 19px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1), 25px 24px 20px 0px rgba(0, 0, 0, 0.05);
    background: rgb(244, 244, 247);
    text-align: start;
    position: relative;
    z-index: 10;
    margin-bottom: -10px;
}

.slider__mobTitle {
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    font-family: "Wix Madefor Display", sans-serif;
    margin-bottom: 13px;
}

.slider__mobTitleAfter {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 12px;
}

.slider__mobText {
    font-size: 14px;
    font-weight: 400;
    line-height: 114%;
}

.slide__mobImg {
    object-fit: cover;
}

.pagMob {
    top: 172px !important;
    left: 19px !important;
    width: unset !important;
    z-index: 20 !important;
}