@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&display=swap');


:root {
    --headings: #0C3877;
    --cta: #1555B1;
    --text: #191B22;
    --grad-1: linear-gradient(to bottom, #D9E9FF, #F2F8FF);
    --grad-2: linear-gradient(to bottom, #00275E, #0151C4);
    --linear: linear-gradient(to bottom, #0C326B, #171717)
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow', sans-serif;
    max-width: 2000px;
    margin: 0 auto!important;
}
a {
    transition: 1s ease;
    text-decoration: none;
}

a:hover{
    opacity: .7;
}

/* CONTAINER */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    max-width: 2000px;
    margin: 0 auto;

    /*background: rgba(255,255,255,0.9);*/
    /*backdrop-filter: blur(8px);*/
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
}

.logo img {
    width: 190px;
    height: auto;
}

/* DESKTOP NAV */
.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* BUTTONS */
.btn-outline {
    padding: 14px 18px;
    border-radius: 37px;
    background: linear-gradient(to right, #1555B1, #1B6DE4);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 25px 25px;
    background-image: linear-gradient(to right top, #1555b1, #1557b4, #1658b8, #165abb, #165cbf, #175ec3, #1760c8, #1862cc, #1965d2, #1967d8, #1a6ade, #1b6de4);
    color: #fff;
    border-radius: 37px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    width: 390px;
    text-align: center;
    text-transform: uppercase;
}

/* BURGER */
.burger {
    display: none;
    width: 26px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

section {
    padding: 100px 0;

}

/* HERO */
.hero {
    position: relative;
    padding: 120px 0 100px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left; /* 👈 ось тут */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255, 0), rgba(255,255,255,1));
}

.hero-wrapper {
    display: flex;
}
.hero-left-img {
    width: 47%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.hero-left-img img{
    width: 92px;
    height: 92px;
    z-index: 10;
}

.hero-content {
    position: relative;
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    color: var(--headings);
}

.hero-content .description {
    display: flex;
    align-items: center;
}
.hero-content .description img {
    width: 72px;
    height: 72px;
    display: none;
    margin-left: 20px;
}
.hero-content h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--headings);
    line-height: 110%;
}

.price {
    display: flex;
    gap: 16px;
    align-items: center;
}

.price .old {
    text-decoration: line-through;
    color: var(--headings);
    font-size: 34px;
    line-height: 110%;
    font-weight: 400;
}

.price .new {
    color: var(--headings);
    font-size: 34px;
    line-height: 110%;
    font-weight: 600;
}

.cash {
    border: .3px solid #175EC4;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 16px;
    line-height: 90%;
    font-weight: 600;
    background: linear-gradient(to right, #D9E9FF, #F2F8FF);
}



.info {
    background: #F1F7FF;
}

.info-wr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.info-wr .info-left {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-wr .info-right {
    width: 47%;
}
.info h4 {
    color: var(--headings);
    font-size: 22px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
}

.info h4 strong {
    font-weight: 600;
}

.info p {
    color: #181A20;
    font-size: 22px;
    line-height: 110%;
    font-weight: 300;
    margin-bottom: 0;
}

.info h3 {
    color: #181A20;
    font-size: 22px;
    line-height: 110%;
    font-weight: 600;
}

.info ul {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px
}

.info ul li {
    list-style: none;
    color: #181A20;
    font-size: 22px;
    line-height: 110%;
    font-weight: 300;
    border-radius: 14px;
    padding: 10px;
    background: #D9E9FF;
}

.info-wr .info-right .info-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.info-item {
    border-radius: 16px;
    padding: 15px;
    border: 1px solid var(--headings);
    position: relative;
    z-index: 9;
    width: 30%;
    background: linear-gradient(to bottom, #F2F8FF, #D9E9FF);
}

.info-item:before {
    width: 81px;
    height: 14px;
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 10;
    background-color: var(--headings);
}

.info-item .num {
    text-align: right;
    font-size: 24px;
    font-weight: 300;
    line-height: 110%;
    color: #191B22;
}
.info-item .info-item-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 130%;
    color: var(--headings);
}

.info-item .info-item-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    color: #191B22;
}


.info-item .info-item-img {
    display: flex;
    justify-content: flex-end;
}

hr {
    color: #191B22;
    margin: 10px 0 30px;
}

.better {
    background: linear-gradient(to right, #D9E9FF, #F2F8FF);
}

.better h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    color: var(--headings);
    text-transform: uppercase;
    max-width: 1040px;
}

.slider {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    margin-top: 40px;
}

.slider:active {
    cursor: grabbing;
}

.slides-wrapper {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.slides-wrapper img {
    flex: 0 0 auto;
    width: 280px; /* можеш змінити */
    pointer-events: none;
    border-radius: 20px;
}

.personalized {
    color: #F1F7FF;
}

.personalized-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.personalized-top-left {
    width: 57%;
}
.personalized-top-right {
    width: 40%;
}

.personalized-top-left h3 {
    font-size: 50px;
    font-weight: 600;
    line-height: 105%;
    text-transform: uppercase;
    margin: 0;
}

.personalized-top-right h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
    text-align: right;
    margin-top: 6px;
}


.personalized-bottom {
    margin-top: 60px;
}

.personalized-bottom-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.personalized-bottom-items .item {
    width: 23%;
}

.personalized-bottom-items .item .item-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 20px;
    max-width: 300px;
}

.personalized-bottom-items .item .item-text {
    font-size: 22px;
    font-weight: 300;
    line-height: 110%;
}

.comfortable {
    background: #F1F7FF;
    color: var(--headings);
}

.comfortable h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    color: var(--headings);
    text-transform: uppercase;
}

.comfortable-top {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.comfortable h5 {
    font-size: 22px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: right;
}

.comfortable h5 strong{
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
}

.comfortable .items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comfortable .item {
    color: #191B22;
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
    border-bottom: 2px solid #1555B1;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.comfortable .item span {
    max-width: 340px;
    display: block;
}

.comfortable-bottom {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    justify-content: space-between;
}

.comfortable-bottom .abs-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
}

.comfortable-bottom .abs-text {
    position: absolute;
    right: 0;
    bottom: 20px;
    font-size: 22px;
    color: #191B22;
    text-align: right;
    max-width: 300px;
}

.comfortable-bottom-left {
    width: 47%;
}

.comfortable-bottom-right {
    width: 47%;
}

.comfortable-bottom-right .item {
    display: flex;
    justify-content: flex-end;
}


.comfortable-bottom-left .item span {
    display: flex;
    gap: 5px;
    align-items: center;
}
.comfortable .comfortable-bottom-left .item span:before {
    content: url('img/ok.svg');
    width: 40px;
    height: 40px;
    display: inline-block;
}

.comfortable-bottom-right .item span {
    text-align: right;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
}
.comfortable .comfortable-bottom-right .item span:after {
    content: url('img/ok.svg');
    width: 40px;
    height: 40px;
    display: inline-block;
}


.list {
    background: linear-gradient(to bottom, #D9E9FF, #F2F8FF);
}

.list .list-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.list h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    color: var(--headings);
    text-transform: uppercase;
}

.list .list-bottom {
    margin-top: 60px;
}

.list .breakdown {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    color: var(--headings);
    text-transform: uppercase;
    cursor: pointer;
}

.list-accordion {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: space-between;
}

.list-accordion-item {
    width: 47%;
    padding: 20px 0;
    border-top: 2px solid var(--cta);
}

.list-accordion-item:nth-last-child(2), .list-accordion-item:nth-last-child(1) {
    border-bottom: 2px solid var(--cta);
}

.list-accordion-item__head {
    cursor: pointer;
    user-select: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.list-accordion-item__head .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
    color: #191B22;
    text-transform: uppercase;
}

.list-accordion-item__body {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 0px;
}
.list-accordion-item .list-accordion-item__body {
    transition: .5s ease;
}

.list-accordion-item.is-open .list-accordion-item__body {
    padding-top: 20px;
    padding-bottom: 5px;
}

.list-accordion-item__body .text {
    font-size: 22px;
    font-weight: 300;
    line-height: 110%;
    color: #191B22;
    max-width: 300px;
}


.boosters {
    background: #D9E9FF;
    padding: 80px 0;
}


.boosters-title {
    font-size: 80px;
    font-weight: 600;
    color: var(--headings);
    margin-bottom: 48px;
}

.boosters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /*    align-items: start;*/
    /*    grid-auto-flow: row dense;*/
    /*}*/
}

.booster-card {
    background: linear-gradient(to bottom, #D9E9FF, #F2F8FF);
    border: 1px solid var(--headings);
    border-radius: 16px;
    padding: 24px;
    color: #1f3b82;
}

.booster-card h3 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 110%;
}

.booster-card p {
    font-size: 22px;
    line-height: 110%;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--text);
}

.booster-card p strong {
    font-weight: 600;
    color: var(--headings);
    line-height: 160%;
}

.booster-card span {
    border: 1px solid var(--headings);
    padding: 2px 4px 4px 4px;
    border-radius: 15px;
    font-size: 22px;
    color: var(--headings);

}

.booster-card small {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 300;
}

.booster-info {
    color: var(--headings);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*padding: 24px;*/
    text-align: right;
}

.advantages {
    background: var(--grad-2);
}

.advantages-top {
    color: #F1F7FF;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.advantages h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
}

.advantages h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
}

.advantages-bottom-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.advantages-bottom-items .item {
    background: linear-gradient(to right, #D9E9FF, #F2F8FF);
    width: 24%;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.advantages-bottom-items .item .left {
    width: 57%;
}

.advantages-bottom-items .item .left .adv-title {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--headings);
    transition: .5s ease;
    z-index: 100000;
}
.advantages-bottom-items .item .right {
    width: 37%;
    display: flex;
    justify-content: flex-end;
}
.advantages-bottom-items .item .right img {
    width: 40px;
    height: 40px;
    display: inline-block;
    transition: .5s ease;
}
.advantages-bottom-items .item .bottom-text {
    width: 100%;
    font-size: 22px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--text);
    /*margin-top: 110px;*/
    transition: .5s ease;
}

.advantages-bottom-items .item .bottom-text strong {
    font-weight: 600;
}



.journey {
    position: relative;
}

.journey-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}

.journey-wr {
    display: flex;
}
.journey-wr .left {
    width: 27%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.journey-wr .left img{
    width: 92px;
    height: 92px;
    z-index: 10;
}

.journey-wr .right {
    position: relative;
    width: 67%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

.journey-wr .right h2{
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    color: var(--headings);
    text-transform: uppercase;
    text-align: right;
}

.journey-wr .right img {
    width: 72px;
    height: 72px;
    display: none;
    margin-left: 20px;
}

.staff {
    background: var(--grad-1);
    padding: 100px 0 0 0;
}
.staff .staff-top {
    display: flex;
    justify-content: space-between;
    color: var(--headings);
    margin-bottom: 60px;
    gap: 30px
}

.staff .staff-bottom {
    margin-bottom: 40px;
}

.staff .staff-top h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    max-width: 590px;
}
.staff .staff-top h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
    max-width: 470px;
    margin-top: 10px;
    text-align: right;
}

.staff-bottom .staff-bottom-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.staff-bottom .staff-bottom-items .item {
    font-size: 34px;
    line-height: 110%;
    font-weight: 600;
    color: var(--text);
    width: 25%;
    text-transform: uppercase;
}

.staff-bottom .staff-bottom-items .item:first-child {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.staff-bottom .staff-bottom-items .item:first-child .text {
    max-width: 790px;
}


.staff .staff-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.staff .staff-img .staff-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    opacity: .27;
}

.staff .staff-img img {
    width: 100%;
}

.process {
    background: var(--grad-2);
    color: #F1F7FF;
}

.process h2 {
    font-size: 80px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 60px;
    text-transform: uppercase;
    max-width: 900px;
}

.process-items {
    display: flex;
    justify-content: space-between;
}

.process-items .item {
    width: 19%;
}

.process-items .item .item-d {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.process-items .item .item-m {
    display: none;
}

.process-items .item .item-d img,  .process-items .item .item-m img{
    width: 100%;
    border-radius: 15px;
}

.process-items .item h4 {
    min-height: 50px;
    font-size: 22px;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.process-items .item .text {
    font-size: 22px;
    line-height: 110%;
    font-weight: 300;
}

.process-items .item .num {
    font-size: 22px;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #F1F7FF;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    position: relative;
}

.process-items .item .num span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.func-medicine {
    background: var(--linear);
    color: #F1F7FF;
}

.func-medicine h2 {
    font-size: 60px;
    line-height: 100%;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.func-medicine h2 strong {
    font-weight: 600;
}

.func-medicine-block {
    display: flex;
}

.func-medicine-block .items {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    width: 80%;
}

.func-medicine-block .img-block {
    width: 20%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.func-medicine-block .img-block img {
    width: 420px;
    height: 420px;
}

.func-medicine-block .items .item {
    font-size: 34px;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 480px;
}


.book {
    position: relative;
    color: var(--headings);
}

.book-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.book-wr {
    max-width: 495px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 20;
}

.book h2 {
    font-size: 80px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase;
}

.book p {
    padding: 0;
    font-size: 34px;
    line-height: 110%;
    font-weight: 300;
    color: var(--text);
}

.faq {
    background: var(--grad-1);
}

.faq-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-items .list-accordion-item {
    width: 48%;
}

.faq h2 {
    font-size: 80px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--headings);
    margin-bottom: 60px;
}





    /* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #0f2a5f, #1e40af);
    color: #fff;
    z-index: 20;
    padding: 24px;
    transform: translateX(100%);
    transition: .4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo.light span {
    color: #fff;
}

.btn-outline.light {
    background: #3b82f6;
}

.close {
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav {
    margin-top: 30px;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-top: 2px solid var(--cta);
}

.mobile-nav a:last-child {
    border-bottom: 2px solid var(--cta);

}

.newsletter {
    margin-top: auto;
    font-size: 14px;
}

.mobile-menu .newsletter p {
    font-weight: 300;
    font-size: 16px;
    line-height: 110%;
}

.newsletter-form {
    margin-top: 16px;
    display: flex;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 0 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    font-weight: 600;
}

.mobile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.mobile-footer .text {

    font-weight: 600;
}

.mobile-footer img {
    width: 86px;
    height: 86px;
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #0f2a5f, #1e40af);
    color: #ffffff;
    padding: 80px 0 32px;
}

.footer-top {
    display: flex;
    /*align-items: flex-start;*/
    justify-content: space-between;
    padding-bottom: 80px;
}

.footer-top .footer-col {
    display: flex;
    align-items: center;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px;

}

/* LEFT */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
}

.footer-logo img {
    width: 290px;
    height: auto;

}

.footer-info p {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #F7FAFF;
    font-weight: 300;
}

/* CENTER */
.footer-center {
    /*text-align: center;*/
}
.footer-center a:first-child {
    text-decoration: underline;
}
.footer-center a {
    display: block;
    margin-bottom: 12px;
    color: #F7FAFF;
    font-weight: 600;
    text-decoration: none;
    font-size: 22px;
    line-height: 154%;
}



.footer-badge img {
    width: 92px;
    height: 92px;
}

    /* RIGHT */
.footer-right h4 {
    font-size: 44px;
    font-weight: 600;
    line-height: 100%;
    text-align: right;
    max-width: 370px;
}

.newsletter-text {
    font-size: 16px;
    line-height: 1.1;
    max-width: 393px;
    color: #F7FAFF;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    background: #D9D9D9;
    border-radius: 999px;
    overflow: hidden;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 110%;
    color: #000;
    background-color: #D9D9D9;
}
.newsletter-form input::placeholder {
    color: #191B22;
    font-weight: 300;
}

.newsletter-form button {
    cursor: pointer;
    font-weight: 600;
    font-family: Barlow, sans-serif!important;
}

/* BOTTOM */
.footer-copy {
    text-align: center;
    margin-top: 48px;
    font-size: 16px;
    line-height: 110%;
    color: #F7FAFF;
}

@media (max-width: 1200px) {
    .comfortable .item span, .comfortable-bottom .abs-text {
        max-width: 250px;
    }
    .boosters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-bottom .staff-bottom-items {
        gap: 20px
    }
    .staff-bottom .staff-bottom-items .item {
        width: 30%;
        font-size: 30px;
    }
}


@media (max-width: 968px) {
    .nav,
    .desktop-btn {
        display: none;
    }

    .burger {
        display: flex;
    }
    .hero-left-img {
        display: none;
    }
    .hero-left-img img{
        width: 92px;
        height: 92px;
        z-index: 10;
    }

    .hero-content {
        position: relative;
        width: 100%;
        margin-top: 180px;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    }
    .hero-bg {
        object-position: 10%;
    }
    .hero-content .description img {
        display: block;
    }

    .info-wr .info-right .info-item {
        width: 47%;
    }

    .personalized-bottom-items .item {
        width: 47%;
    }
    .comfortable-bottom {
        flex-direction: column;
    }

    .comfortable-bottom .abs-img {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        width: 100%;
        height: auto;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .comfortable-bottom-left {
        width: 100%;
    }

    .comfortable-bottom-right {
        width: 100%;
        margin-top: 25px;
    }

    .comfortable .item span {
        max-width: 100%;
    }
    .comfortable-bottom .abs-text {
        display: none;
    }

    .comfortable-bottom {
        padding: 0;
    }

    .comfortable-bottom-right .item {
        justify-content: flex-start;
    }
    .comfortable-bottom-right .item span {
        text-align: left;
    }

    .comfortable .comfortable-bottom-right .item span:after {
        content: none;
    }

    .comfortable .comfortable-bottom-right .item span:before {
        content: url(img/ok.svg);
        width: 40px;
        height: 40px;
        display: inline-block;
    }



    .list-accordion-item__body .text {
        width: 47%;
    }

    .list .info-item {
        width: 47%;
    }

    .advantages-bottom-items .item {
        width: 47%;
    }

    .journey {
        padding: 350px 0 100px 0;
    }
    .journey-bg {
        object-position: 10%;
    }
    .journey-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    }

    .journey-wr .left {
        display: none;
    }
    .journey-wr .right {
        width: 100%;
    }
    .journey-wr .right .text {
        display: flex;
        align-items: center;
    }
    .journey-wr .right img {
        display: block;
    }

    .staff .staff-top {
        flex-wrap: wrap;
    }
    .staff .staff-top h2, .staff .staff-top h5 {
        max-width: 100%;
    }

    .staff-bottom .staff-bottom-items {
        gap: 40px;
    }

    .staff-bottom .staff-bottom-items .item {
        width: 100%;
    }
    .staff-bottom .staff-bottom-items .item:first-child {
        justify-content: flex-start;
        width: 100%;
    }
    .staff-bottom .staff-bottom-items .item:first-child .text {
        max-width: 100%;
    }
    .book {
        padding: 350px 0 100px 0;
    }
    .book-bg {
        object-position: 75%;
    }
    .book-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    }
    .book p {
        font-size: 30px;
    }

    .process-items {
        flex-wrap: wrap;
        gap: 40px
    }
    .process-items .item {
        width: 47%;
    }
    .process-items .item h4 {
        min-height: 0px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .footer-col {
        width: 100%;
    }
    .newsletter-text {
        max-width: 100%;
    }
    .btn-primary {
        width: 100%;
    }

}

/* RESPONSIVE */
@media (max-width: 768px) {


    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content h2 {
        font-size: 30px;
    }

    .info-wr .info-left {
        width: 100%;
    }

    .info-wr .info-right {
        width: 100%;
    }

    .personalized-top-left {
        width: 100%;
    }
    .personalized-top-right {
        width: 100%;
    }

    .better h2, .comfortable h2, .list h2, .boosters-title, .advantages h2, .staff .staff-top h2, .process h2, .func-medicine h2, .faq h2,
    .book h2{
        font-size: 48px;
    }

    .journey-wr .right h2 {
        font-size: 48px;
        text-align: left;
    }

    .booster-info {
        text-align: left;
        padding: 24px 0 ;
    }


    .personalized-bottom-items .item .item-title {
        max-width: 100%;
    }

    .faq .list-accordion-item {
        width: 100%;
    }

    .list-accordion-item {
        width: 100%;
    }

    .list-accordion-item:nth-last-child(2) {
        border-bottom: none;
    }

    .boosters-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .process-items .item {
        width: 44%;
    }

    .func-medicine-block {
        flex-wrap: wrap;
    }

    .func-medicine-block .items {
        width: 100%;
        gap: 20px
    }

    .func-medicine-block .items .item {
        font-size: 30px;
    }

    .func-medicine-block .img-block {
        width: 100%;
    }
    .func-medicine-block .img-block img {
        width: 220px;
        height: 220px;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-center {
        text-align: left;
    }
    .footer-logo img {
        width: 190px;
    }

    .footer-right h4 {
        font-size: 16px;
        text-align: left;
    }
    .footer-top {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-top .footer-col {
        width: 47%;
    }
    .footer-top .footer-col:last-child {
        width: 100%;
        margin-top: -40px;
    }

    .footer-info {
        display: flex;
        gap: 15px;
    }

    .footer-info p {
        font-size: 22px;
    }

    .footer-bottom .footer-center {
        display: flex;
        gap: 15px;
    }

    .footer-bottom .footer-center a:first-child {
        order: 2;
    }

    .footer-bottom .footer-center a:last-child {
        order: 1;
    }

    .footer-bottom .footer-center a {
        font-size: 22px;
    }

    .footer-copy {
        text-align: left;
    }

    .footer-badge {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .newsletter-form {
        max-width: 100%;
    }

    #mobileMenu .logo img {
        width: 150px;
    }
}

@media (max-width: 560px) {
    .advantages-bottom-items .item {
        width: 100%;
    }

    .advantages-bottom-items .item .left {
        width: 100%;
        order: 2;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 20px;
        justify-content: space-between;
    }
    .advantages-bottom-items .item .left .ad-img {
        order: 2
    }
    .advantages-bottom-items .item .left .adv-title {
        order: 1
    }

    .advantages-bottom-items .item .right {
        width: 100%;
        order: 1;
        justify-content: flex-start;
    }
    .advantages-bottom-items .item .bottom-text {
        order: 3;
    }

    .process-items .item {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .process-items .item .item-d {
        width: 49%;
    }

    .process-items .item .item-d img {
        display: none;
    }
    .process-items .item .item-m {
        display: block;
        width: 49%;
    }

}
