*,
*::before,
*::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    height: 10px;
    width: 15px;
    background: var(--clr-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-blue);
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.174);
}

::-webkit-scrollbar-corner {
    background: var(--clr-grey);
}

footer,
header,
aside {
    display: block;
}


a {
    text-decoration: none;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    font-family: "Manrope", sans-serif;
    -ms-text-size-adjust: 100%;
    background: white;
    scroll-behavior: smooth;
}

input,
button,
.tabs__content {
    position: relative;
}

ol,
ul {
    padding: 0;
}

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

img {
    vertical-align: middle;
    max-width: 100%;
}

p {
    font-size: var(--fs-normal);
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--clr-desc);
}

h1,
h2,
h3,
h4,
h5,
h3 {
    margin: 0;
}

:root {
    /* Colors */
    --clr-black: #202020;
    --clr-white: #FFFFFF;
    --clr-blue-add: #0071E9;
    --clr-blue: #0071E9;
    --clr-grey: #898989;
    --clr-desc: rgba(14, 14, 14, 0.758);
    --clr-desc-white: rgb(255, 255, 255);

    /* Font */
    --ff: "Manrope", sans-serif;
    /* Font size */
    --fs-big: 90px;
    --fs-medium: 40px;
    --fs-normal: 30px;
    --fs-small: 16px;
    --fs-smallest: 14px;
    /* Font weight */
    --fw-black: 900;
    --fw-medium: 600;
    --fw-regular: 400;

    /* Scrollbar */
    --scrollbar-width: 0.4375rem;

}

/* main styles start */

.container {
    margin: 0 50px;
}

/* .nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
} */

.header {
    background-color: var(--clr-blue);
}

.nav__wrap {
    background: #E3E3E5;
    border-radius: 80px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.nav__item {
    font-size: 18px;
    color: var(--clr-black);
    position: relative;
    margin: 0 16px;
    font-weight: 600;
    transition: all ease .4s;
    text-transform: uppercase;
}

.nav__item:hover {
    color: #FC5309;
}

/* Переключатель языка RU | EN */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 16px;
    padding: 3px;
    border-radius: 80px;
    background: rgba(32, 32, 32, 0.08);
}

.lang-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 10px;
    border-radius: 80px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--clr-black);
    text-transform: uppercase;
    transition: all ease .3s;
}

a.lang-switch__item:hover {
    color: var(--clr-blue);
    background: rgba(255, 255, 255, 0.7);
}

.lang-switch__item--active {
    background: var(--clr-blue);
    color: var(--clr-white);
    cursor: default;
}

.nav__items {
    display: flex;
    align-items: center;
}

.nav__logo {
    width: 200px;
}

/* hero styles */


.hero__wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 2em;
    width: 100%;
    gap: 20px;
}




.hero__item1 {
    background: url(../img/main-bgg.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 150px 100px;
    border-radius: 80px;
    position: relative;
    width: 70%;
}

.hero-right {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero__item2,
.hero__item3 {
    background: #202020;
    padding: 50px;
    text-align: left;
    border-radius: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex: 1;
}

.hero__item2:after {
    position: absolute;
    content: url(../img/hero-bg2.webp);
    right: -60px;
    bottom: 0;

    opacity: 0.2;
}

.hero__item3:after {
    position: absolute;
    content: url(../img/hero-bg3.webp);
    right: 0;
    z-index: 1;
    bottom: 0;
    margin: 0 auto;
}

.hero__item3:before {
    position: absolute;
    content: url(../img/iPhone-13-Pro-Front.webp);
    left: 0;
    right: 0;
    z-index: 2;
    bottom: -5px;
    margin-inline: auto;
    width: fit-content;
}

.hero__item3 {
    background: #0071E9;
    align-items: center;
}

.hero__item3 .hero__subtitle {
    color: white;
    font-size: 20px;
    z-index: 5;
}

.welcome {
    border: 1px solid white;
    text-align: center;
    color: white;
    border-radius: 80px;
    padding: 20px;
    width: fit-content;
}

.cirle img {
    position: absolute;
    right: 50px;
    top: 50px;
    margin: auto;
    z-index: 1;
    animation: rotate 20s linear infinite;
    backface-visibility: hidden;
}

.hero__btn-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}

.hero__btn-wrap .hero__btn {
    padding: 45px 105px;
    border-radius: 80px;
    font-size: 30px;
    background: var(--clr-black);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);

    }

    100% {
        transform: rotate(360deg);
    }
}

.hero__title {
    font-size: var(--fs-big);
    color: var(--clr-white);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;

    z-index: 3;
    position: relative;
}



.hero__subtitle {
    color: white;
    font-size: var(--fs-small);
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    text-align: left;
}

.hero__btn {
    background: white;
    padding: 25px 60px;
    border-radius: 50px;
    color: var(--clr-blue-add);
    font-size: var(--fs-small);
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1.4px;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}


.hero__btn::before {
    content: "";
    display: block;
    width: 20px;
    height: 300px;
    margin-left: 50px;
    background: #fff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.7) 100%);
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    position: absolute;
    -webkit-animation: move-light 3s ease-in-out 0.05s infinite;
    -moz-animation: move-light 3s ease-in-out 0.05s infinite;
    -o-animation: move-light 3s ease-in-out 0.05s infinite;
    animation: move-light 3s ease-in-out 0.05s infinite;
}

@keyframes move-light {
    0% {
        left: -30px;
        margin-left: 0px;
    }

    30% {
        left: 110%;
        margin-left: 80px;
    }

    100% {
        left: 110%;
        margin-left: 80px;
    }
}


/* about styles */
.about {
    margin-top: 150px;
}

.about__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about__img,
.about__img-2,
.about__item {
    width: 50%;
}

.hero__btn.faq__btn {
    color: white;
    background: var(--clr-blue-add);
}

.hero__btn.faq__btn.hero-btn-2 {
    background: var(--clr-black);
}

.about__title {
    font-size: 70px;
    color: var(--clr-black);
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
}

.about__title-2 {
    font-size: 40px;
    color: var(--clr-black);
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
}

.advantages-2 {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.advantages-item-2 {
    position: relative;
    border-radius: 80px;
    padding: 40px 60px;
    width: 32%;
    text-align: center;
    background: #E3E3E5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.advantages-item-3,
.advantages-item-4 {
    position: relative;
    border-radius: 80px;
    padding: 50px 60px;
    width: 49%;
    text-align: center;
    background: var(--clr-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 400px;
}

.advantages-item-5,
.advantages-item-6 {
    position: relative;
    border-radius: 80px;
    padding: 50px 60px;
    width: 49%;
    text-align: center;
    background: #E3E3E5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 600px;
}

.advantages-item-6 {
    background: var(--clr-black);
}

.advantages-item-5 p,
.advantages-item-6 p {
    text-align: left;
    color: var(--clr-black);
    font-size: 25px;
    font-weight: 600;
    line-height: 2;
}

.advantages-item-3 p,
.advantages-item-4 p {
    text-align: left;
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
}

.advantages-item-5 .advantages__title-2,
.advantages-item-6 .advantages__title-2 {
    font-size: 45px;
    color: var(--clr-black);
    text-align: left;
}

.advantages-item-6 p,
.advantages-item-6 .advantages__title-2 {
    color: var(--clr-white);
}

.advantages-item-3 .advantages__title-2,
.advantages-item-4 .advantages__title-2 {
    font-size: 45px;
    color: var(--clr-white);
    text-align: left;
    margin: 0px 0 30px;
    font-weight: 900;
    line-height: 1;
}

.advantages-item-4 {
    background: var(--clr-blue);
}

.advantages-item-2 p {
    text-align: left;
    color: var(--clr-black);
    font-size: 20px;
    font-weight: 600;
}

.advantages__title-2 {
    font-size: 45px;
    color: var(--clr-blue);
    text-align: left;
    margin: 0px 0 30px;
    font-weight: 900;
    line-height: 1;
}

.about__subdesc {
    color: var(--clr-grey);
    padding: 20px 0 40px;
    display: inline-block;
    font-size: 25px;
    width: 85%;
}

.program-icon {
    height: 37px;
    width: 37px;
    margin-right: 25px;
    margin-top: 10px;
}

.advantages {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.advantages-item {
    position: relative;
    border-radius: 80px;
    padding: 60px 50px;
    width: 32%;
    text-align: center;
    background: var(--clr-blue);
}

.advantages-item2 {
    background: #E3E3E5;
    color: var(--clr-black);
    position: relative;
    overflow: hidden;
}

.advantages-item2:before {
    position: absolute;
    content: url(../img/expirience.webp);
    /* left: 0; */
    right: 0;
    z-index: 2;
    top: -5px;
    margin-inline: auto;
    width: fit-content;
}

.advantages-item p {
    text-align: left;
    color: white;
    font-size: 40px;
    font-weight: 600;
}

.advantages-item2 .advantages__title,
.advantages-item2 p {
    color: var(--clr-black);
}

.advantages-item3 {
    background: var(--clr-black);
}


.advantages__title {
    font-size: 80px;
    color: white;
    text-align: left;
    margin: 0px 0 30px;
    font-weight: 900;
}


.about__btns {
    margin-top: 80px;
    text-align: center;
}

.about__btns p {
    color: var(--clr-black);
    font-size: 25px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}

.about__subtitle {
    color: var(--clr-blue);
    font-weight: 800;
    margin-bottom: 5px;
}

.about-img {
    z-index: 1;
    position: relative;
    height: 800px;
    transform: scale(1);
    transition: 300ms ease-in-out;
}

.about-img2 {
    position: absolute;
    transform: scale(1);
    transition: 300ms ease-in-out;
    height: 800px;
    z-index: 1;
    right: 100px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.about-img:hover,
.about-img2:hover {
    transform: scale(1.013);
    transition: 300ms ease-in-out;
}

/* previews styles */

.preview__title {
    color: var(--clr-blue-add);
    font-size: var(--fs-normal);
}

.preview__item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.preview__item p {
    color: var(--clr-grey);
    margin-left: 20px;
    font-size: 25px;

}



/*  WE STYLES START */

.we {
    background: #202020;
    border-radius: 80px;
    padding: 25px;
    margin-top: 30px;
}

.we-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.we-item {
    padding: 30px 60px;
    background: #e3e3e5;
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    overflow: hidden;
    width: 48%;
}

.we-item-2 {
    background: transparent;
}

.we-item-3 {
    background: var(--clr-blue);
    width: 100%;
    margin-top: 30px;
    gap: 120px;
    position: relative;
}


.we-item:before {
    position: absolute;
    content: url(../img/we-bg.webp);
    opacity: 50%;
    right: 0;
    z-index: 2;
    top: -5px;
    margin-inline: auto;
    width: fit-content;
}

.we-item-3:before {
    position: absolute;
    content: url(../img/we-bg2.webp);

    right: 0;
    z-index: 2;
    top: -5px;
    margin-inline: auto;
    width: fit-content;
}


.we-title {
    font-size: 65px;
    color: #747474;
    text-transform: uppercase;
    font-weight: 900;
    /* text-align: center; */

}

.we-item-3 .we-title {
    color: white;
    opacity: 0.5;
}

.we-subtitle {
    font-size: 40px;

    /* color: var(--clr-blue); */
    text-align: left;
    margin: 0px 0 30px;
    font-weight: 900;
    line-height: 1;
}

.we p {
    font-size: 20px;
}

.we-item-2 .we-subtitle,
.we-item-2 p {
    color: white;
}

.we-item-3 .we-subtitle,
.we-item-3 p {
    color: white;
}

/* WE STYLES END */






/* instruction styles */

.instruction {
    margin: 100px 0;
}

.instruction__wrap {
    text-align: center;
}

.instruction__items {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.instruction__item {
    width: 33%;
    text-align: center;
    transform: scale(1);
    transition: 300ms ease-in-out;
}

.instruction__item:hover {
    -webkit-transform: translateY(-3px) translateZ(0);
    transform: translateY(-3px) translateZ(0);
    transition: 300ms ease-in-out;
}

.instruction__subtitle {
    color: #3E9B4B;
    font-weight: 600;
    font-size: 25px;
}

.instruction__desc {
    color: var(--clr-blue-add);
    font-size: 25px;
    margin: 20px auto;
    width: 90%;
    font-weight: 700;
}

.instruction__img img {
    width: 600px;
    height: auto;
}



/* consult styles */


.consult {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult-item {
    width: 40%;
}

.consult-item .about__title {
    font-size: 50px;
    color: var(--clr-black);
    font-weight: 800;
    text-transform: uppercase;
}

.consult-item-img {
    margin-left: -90px;
}

.consult-item .about__btns {
    text-align: left;
}

.consult-item-bg {
    display: flex;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
}

/* footer styles */

.footer {
    padding: 80px 0 0px;
    background: #2D2D2D;
    border-radius: 80px 80px 0px 0;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer__nav {
    display: flex;
}

.footer a {
    color: var(--clr-desc-white);
    font-size: 20px;
    margin-right: 40px;
    font-weight: 600;
}

.footer__down {
    color: var(--clr-desc-white);
    padding: 10px 0;
    margin-top: 20px;
}

.footer__down-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__down-item {
    text-transform: uppercase;
    font-size: var(--fs-small);
    color: var(--clr-desc-white);
}


#arrowTop {
    background: var(--clr-blue);
    cursor: pointer;
    position: relative;
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    outline: 0;
    cursor: pointer;
    z-index: 10;
    padding: 20px 20px 20px 20px;
    transition: all ease .4s;
}

/* TEAM SLIDER STYLES */

.team-section {
    padding: 100px 0;
}

.team-section .about__title {
    margin-bottom: 80px;
    font-size: 60px;
    font-weight: 900;
}

.slider-wrapper {
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 80px;
}

.slider-item {
    position: absolute;
    width: 20%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.75);
    opacity: 0.2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slider-item.active {
    opacity: 1;
    scale: 1;
    z-index: 20;
    background: #E3E3E5;
    border-radius: 80px;
    left: 50%;
    /* При 50% на текст оставалось ~180px, описание вытягивалось на 560px
       и выезжало за карточку вместе с именем и ролью. */
    width: 62%;
    transform: translateX(-50%);
}

.slider-item.prev {
    opacity: 0.2;
    scale: 0.8;
    left: 0%;
    transform: translateX(0);
    z-index: 10;
}

.slider-item.next {
    opacity: 0.2;
    scale: 0.8;
    right: 0dvh;
    left: auto;
    transform: translateX(0);
    z-index: 10;
}

.slider-content-main {
    padding: 40px 48px;
}

.slider-title-main {
    color: var(--clr-blue);
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.slider-item.active .slider-title-main {
    color: var(--clr-blue);
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
}

.slider-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;

    gap: 20px;
}

.slider-item.active .slider-img {
    width: 320px;
    height: 320px;
    border-radius: 60px;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-img {
    width: 250px;
    height: 250px;
    border-radius: 60px;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.slider-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    /* Без flex:1 колонка сжималась по остатку и текст уходил в «колодец»
       шириной в пару слов. min-width:0 разрешает flex-элементу быть уже
       своего содержимого. */
    flex: 1;
    min-width: 0;
    padding: 10px;
}

.slider-role {
    color: var(--clr-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.slider-item.active .slider-role {
    color: var(--clr-blue);
}

.slider-name {
    color: var(--clr-black);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.slider-item.active .slider-name {
    color: var(--clr-black);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.slider-btn-main {
    /* Чуть шире активной карточки (62%), чтобы стрелки стояли снаружи, а не
       поверх фото и текста. При изменении ширины карточки правится и это. */
    width: 72%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
}

.slider-desc {
    color: var(--clr-grey);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-item.active .slider-desc {
    color: var(--clr-grey);
    font-size: 15px;
    line-height: 1.6;
    /* Ограничение по строкам — страховка: карточка фиксированной высоты
       (600px), и без него длинная биография снова вылезет за её пределы. */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    line-clamp: 9;
    overflow: hidden;
}

/* Slider Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--clr-blue);
    width: 50px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 113, 233, 0.3);
}

.dot:hover {
    background: rgba(0, 113, 233, 0.7);
    transform: scale(1.2);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--clr-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 30;
    box-shadow: 0 4px 15px rgba(0, 113, 233, 0.3);
}

.slider-btn:hover {
    background: rgba(0, 113, 233, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 113, 233, 0.5);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.slider-btn-prev {
    left: 0px;
}

.slider-btn-next {
    right: 0px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-item {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 450px;
    }

    .slider-item {
        width: 300px;
    }

    .slider-item.prev {
        left: 10px;
    }

    .slider-item.next {
        right: 10px;
    }

    .slider-img {
        width: 100px;
        height: 100px;
    }

    .slider-name {
        font-size: 20px;
    }

    .slider-role {
        font-size: 12px;
    }
}

/* CONTACT FORM SECTION */

.contact-section {
    margin: 100px 0;

}

.contact-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: #E3E3E5;
    padding: 80px;
    border-radius: 80px;
    position: relative;
    overflow: hidden;
}

.contact-wrapper:before {
    position: absolute;
    content: url(../img/form.webp);
    LEFT: -1px;
    z-index: 0;
    top: 11%;
    opacity: .6;
}

.contact-left {
    flex: 1;
    position: relative;
}

.contact-title {
    font-size: 80px;
    color: var(--clr-black);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;

}

.contact-subtitle {
    font-size: 20px;

    line-height: 1.6;
    margin-bottom: 50px;

}

.contact-decoration {
    height: 300px;
    margin-bottom: 60px;
    opacity: 0.15;
}

.contact-decoration svg {
    width: 100%;
    height: 100%;
}



.contact-social {
    margin-top: 80px;
}

.contact-social p {
    color: var(--clr-black);
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--clr-blue);
}

.social-icon:hover {

    transform: translateY(-5px);
}

.social-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.contact-right {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-header h3 {
    font-size: 50px;
    color: var(--clr-black);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-form-header p {
    font-size: 20px;
    color: var(--clr-grey);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-input {
    width: 100%;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 80px;
    font-size: 22px;
    color: var(--clr-black);
    font-family: "Manrope", sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.contact-input:focus {
    outline: none;
    border-color: var(--clr-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 113, 233, 0.1);
}

.contact-input::placeholder {
    color: var(--clr-black);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: "Manrope", sans-serif;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 10px 30px 20px;
}

.contact-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--clr-blue);
}

.contact-checkbox span {
    font-size: 20px;
    color: var(--clr-grey);
    line-height: 1.5;
}

.contact-btn {
    width: 100%;
    padding: 40px 30px;
    background: var(--clr-blue);
    color: white;
    border: none;
    border-radius: 80px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 70px;
}

.contact-btn:hover {
    background: rgba(0, 113, 233, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 113, 233, 0.3);
}

.contact-btn:active {
    transform: translateY(0);
}

.contact-btn:disabled {
    opacity: 0.6;
    cursor: progress;
    transform: none;
    box-shadow: none;
}

/* Honeypot: убираем из потока и от скринридеров, но оставляем в DOM для ботов.
   display:none не подходит — часть ботов такие поля пропускает. */
.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-status {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.4;
    min-height: 1.4em;
    color: var(--clr-desc);
}

.contact-status--success {
    color: #3E9B4B;
    font-weight: 600;
}

.contact-status--error {
    color: #D93025;
    font-weight: 600;
}

/* Contact Form Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 0px;
    }

    .contact-title {
        font-size: 60px;
    }

    .contact-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 45px;
    }

    .contact-right {
        padding: 30px;
    }

    .contact-form-header h3 {
        font-size: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
    }
}

.slider-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
}

.team-section .about__title {

    margin-bottom: 50px;
}


#arrowTop:hover {
    opacity: 1;
    -webkit-transform: translateY(-3px) translateZ(0);
    transform: translateY(-3px) translateZ(0);
}

#arrowTop.active {
    display: inline-block;
}


/* burger styles start */

.burger {
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 30px;
}

.small-logo {
    display: none;
}

.burger span {
    display: inline-block;
    height: 4px;
    border-radius: 30px;
    z-index: 5;
    width: 90%;
    background: var(--clr-blue-add);
    position: relative;
}

/* tabs panel styles */
.tabs {
    margin: 40px 0 60px;
    text-align: center;
}

.tabs__nav {
    display: inline-flex;
    background: #E9ECEF;
    padding: 15px;
    border-radius: 80px;
}

.tabs__btn {
    background: transparent;
    border: none;
    padding: 30px 60px;
    border-radius: 60px;
    font-size: 20px;
    cursor: pointer;
    color: var(--clr-grey);
    text-transform: uppercase;

    transition: all ease .3s;
}

.tabs__btn--active {
    background: var(--clr-blue);
    color: white;
}

.tabs__content {
    margin-top: 30px;
}

.tab-panel {
    /* keep panels in flow but collapsed by default to allow animation */
    display: none;


    opacity: 0;
    transition: all ease .3s;
}

.tab-panel-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.tab-panel--active {
    opacity: 1;
    display: block;
    /* large enough to fit panel content; using big value to support variable height */

}

.tab-left {
    width: 55%;
    background: var(--clr-blue);
    border-radius: 80px;
    padding: 80px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tab-right {
    width: 45%;
    border-radius: 80px;
    text-align: center;
}

.tab-right img {
    width: 100%;
    object-fit: cover;
    height: 900px;
    border-radius: 80px;
}

.tab-title {
    font-size: 40px;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tab-desc {
    color: whitesmoke;
    font-size: 25px;
    margin-bottom: 40px;
}

.tab-buttons .hero__btn {
    margin-right: 12px;
}

.burger span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    background-color: var(--clr-blue-add);
}

.burger span:after {
    content: "";
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    height: 100%;
    background-color: var(--clr-blue-add);
}

.show-menu span:after {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    transition: all ease .3s;
}

.show-menu span:before {
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    transition: all ease .3s;
}

.show-menu span:after,
.show-menu span:before {
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all ease .3s;
}

.show-menu span {
    background-color: transparent;
}

/* media queries for mobile  ----------------------------------------------------------------------------------------- */
/* Тот же рубеж, что и в mobile.css. Раньше блок кончался на 600px:
   диапазон 601-759px не покрывался ничем, а бургер не показывался
   на планшетах, и меню вылезало за пределы экрана. */
@media (max-width: 1024px) {

    :root {
        --fs-big: 30px;
        --fs-medium: 20px;
        --fs-normal: 16px;
        --fs-smallest: 10px;
    }

    .hero__title span {
        font-size: 20px;
        position: absolute;
        margin-left: 32px;
        color: #8c2f68;
        font-weight: 800;
        top: 3px;
    }


    .nav__top-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .nav__logo {
        width: 60px;
        z-index: 3;
    }

    .nav__top-left {
        display: none;
    }

    .burger {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
    }

    .nav__items {
        display: none;
    }

    .nav__items.show {
        display: flex;
        padding: 30px 10px 15px 10px;
        position: absolute;
        top: 59px;
        right: 0;
        left: 0;
        background: #1a1a1ac9;
        z-index: 5;
        text-align: left;
        flex-direction: column;
        background: #E3E3E5;
        width: 90%;
        margin: auto;
        border-radius: 0px 0px 30px 30px;

    }

    .nav__item {
        font-size: 20px;
        position: relative;
        margin: 0;
        padding-right: 0;
        padding: 10px 0;
    }

    .nav__item:last-child {
        border-bottom: none;
    }

    .hero__item-bg-img,
    .hero__item-bg-img2 {
        display: none;
    }

    .hero {
        height: auto;
    }

    .hero__info {
        margin-left: 0px;
    }

    .hero__title br {
        display: none;
    }

    .hero__wrap {
        flex-direction: column;
        padding-top: 50px;
    }

    .hero__item {
        width: 100%;
        margin: 20px auto 0px;
        text-align: center;
    }



    .about__title {
        font-size: 22px;
    }

    .hero__btn {
        padding: 12px 20px;
    }

    .hero__btn img {
        width: 100px;
        height: 22px;
    }

    .hero__title::after {
        display: none;
    }

    .hero__subtitle {
        padding: 10px 0 20px;
    }

    .about {
        margin-top: 15px;
        padding: 10px 0px;
    }

    .about__wrap {
        flex-direction: column;
        gap: 20px;
    }

    .about__item,
    .about__img {
        width: 95%;
        margin-bottom: 30px;
    }

    .about__title br {
        display: none;
    }

    .about__subdesc {
        color: var(--clr-grey);
        padding: 15px 0px;
        display: inline-block;
        font-size: 16px;
        width: 100%;
    }

    .advantages {
        margin-top: 20px;

        gap: 20px;
        justify-content: center;
    }

    .advantages-item {
        width: 90%;
        padding: 30px 25px 30px;
    }

    .advantages__title {
        font-size: 20px;
    }

    .about-img2 {
        display: none;
    }

    .advantages-item p {
        text-align: left;

        font-size: 12px;
    }

    .advantages__title br {
        display: none;
    }

    .advantages__icon {
        top: -20px;
        width: 50px;
        height: 50px;
    }

    .advantages__icon img {
        width: 25px;
        height: 25px;
    }

    .about__subdesc-icon,
    .program-icon {
        height: auto;
        margin-right: 40px;
        width: 30px;
    }

    .about__btns p {
        color: var(--clr-blue-add);
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .about__btns {
        margin-top: 30px;
    }

    .about__btns p br {
        display: none;
    }

    .about__img img {
        width: -webkit-fill-available;
        height: auto;
    }


    .about__subdesc p {
        font-size: 18px;
    }

    #preview {
        margin-top: 20px;
    }

    #preview .about__wrap {
        flex-direction: column;
        gap: 15px;
    }

    ul.preview__list {
        display: inline-block;
        text-align: center;
    }

    .about__img,
    .about__img-2,
    .about__item {
        width: -webkit-fill-available;
        text-align: center;
    }

    .about__img-2 img {
        width: -webkit-fill-available;
        height: auto;
    }

    .preview-wrap {
        margin-top: 20px;
    }

    .preview__item p {
        color: var(--clr-grey);
        margin-left: 15px;
        font-size: 16px;
    }

    .preview__img img {
        height: 20px;
        width: 20px;
    }

    .preview__item {
        margin: 12px 0;
    }

    #preview .about__item {
        margin-bottom: 0;
    }

    .instruction__items {
        flex-direction: column;
        margin-top: 0;
    }

    .instruction__item {
        width: 100%;
        margin-top: 30px;
    }

    .instruction__desc {
        color: var(--clr-blue-add);
        font-size: 18px;
        margin: 12px auto;
        width: 100%;
        font-weight: 700;
    }

    .instruction__desc br {
        display: none;
    }

    .instruction__subtitle {
        font-size: var(--fs-normal);
    }

    .instruction__img img {
        width: 400px;
        height: auto;
    }

    .instruction {
        margin: 20px 0;
    }

    .footer-bg img {
        display: none;
    }

    .footer__wrap {
        margin-bottom: 0px;
        flex-direction: column;
    }

    .footer__item {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer__down {
        color: var(--clr-desc-white);
        padding: 0px 0 15px;
        margin-top: 0;
    }

    .footer__down-wrap {
        flex-direction: column;
    }

    .footer__down-item {
        font-size: 10px;
    }

    .nav__top-item img {
        height: 13px;
        width: 13px;
    }

    .nav__top span {
        font-size: 10px;
    }



    .consult {
        flex-direction: column;
        margin-top: 20px;
    }

    .footer {
        padding: 40px 0 0px;
    }

    .footer__nav a img {
        height: 25px;
        width: 25px;
    }

    .footer__nav {
        display: flex;
        justify-content: center;
    }

    .footer a {
        color: var(--clr-desc-white);
        font-size: 13px;
        margin: 0 10px;
        font-weight: 400;
    }

    .consult .hero__btn {
        width: 100%;
    }

    .consult-item {
        width: 100%;
        text-align: center;
    }

    .consult-item .about__btns {
        text-align: center;
        display: flex;
        align-items: center;
        margin: 20px auto;
        width: 80%;
        justify-content: center;
    }

    .consult-item .about__title {
        font-size: 20px;
    }

    .consult-item-bg {
        padding-top: 10px;
    }

    .consult-item-bg img {
        width: 300px;
        height: 300px;
        object-fit: contain;
    }

    main {
        overflow-x: hidden;
    }

}


/* media queries for planshet  ----------------------------------------------------------------------------------------- */
/* Нижняя граница поднята с 760 до 1025: диапазон 760-1024 теперь целиком
   покрыт mobile.css, а этот блок протекал в него отдельными свойствами
   (например .container { width: 98% }) и ломал раскладку. */
@media (min-width: 1025px) and (max-width: 1204px) {
    :root {
        --fs-big: 30px;
        --fs-medium: 25px;
        --fs-normal: 16px;
        --fs-smallest: 12px;
    }

    .hero__item1 {
        background-position: right;
        padding: 150px 70px;
    }

    .hero__title span {
        font-size: 30px;
        top: 10px;
    }

    .hero__title br {
        display: none;
    }

    main {
        overflow-x: hidden;
    }

    .container {
        width: 98%;
        margin: 0 auto;
    }

    .about__title {
        font-size: 35px;
    }

    .hero {
        height: auto;
    }

    .mission::before {
        display: none;
    }

    .mission__title {
        font-size: 18px;
    }

    .consult-item {
        width: 48%;
    }

    .mission__desc {
        margin-top: 16px;
        position: relative;
        font-size: 12px;
    }

    .hero__title::after {
        display: none;
    }



    .nav__item {
        font-size: 14px;
        margin: 0 10px;
    }

    .cirle img {
        position: absolute;
        right: 10px;
        top: 0;
        margin: auto;
        z-index: 1;
        animation: rotate 20s linear infinite;
        backface-visibility: hidden;
        width: 170px;
        height: 170px;
    }

    .hero__title {
        margin: 0;
        font-size: 60px;
    }

    .hero__btn-wrap .hero__btn {
        padding: 26px 44px;
        border-radius: 80px;
        font-size: 30px;
        background: var(--clr-black);
    }

    .hero__item3:before {
        display: none;
    }

    .welcome {
        border: 1px solid white;
        text-align: center;
        color: white;
        border-radius: 80px;
        padding: 10px 20px;
        width: fit-content;
        font-size: 12px;
    }

    .hero__item2,
    .hero__item3 {
        padding: 30px;
    }

    .location__item {
        padding: 20px 10px 20px 10px;
    }

    .hero__subtitle {
        padding: 10px 0 10px;
        font-size: 14px;
    }

    .hero-right {

        gap: 15px;
    }

    .nav__logo {
        width: 150px;
    }

    .hero__btn-2 img {
        width: 70px;
        height: auto;
    }

    .hero__btn-nav-2 {
        margin-left: 5px;
    }

    .hero__info {
        margin-left: 2em;
    }

    .hero__btn {
        padding: 15px 25px;
    }

    .hero__item-bg-img {
        width: auto;
        max-width: 100%;
    }

    .about {
        margin: 50px 0 0px;

    }

    .tab-panel-wrapper {
        gap: 15px;
    }

    .tab-left {

        padding: 45px;

    }

    .tab-right img {
        width: 100%;
        object-fit: cover;
        height: 650px;
        border-radius: 80px;
    }

    .about__logo {
        width: 180px;
        height: 180px;
    }

    .tab-desc {
        color: whitesmoke;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .tabs__btn {

        padding: 20px 40px;
        border-radius: 60px;
        font-size: 18px;

    }

    .advantages-item-2 {

        padding: 30px 30px;

    }

    .advantages__title-2,
    .advantages-item-3 .advantages__title-2,
    .advantages-item-4 .advantages__title-2,
    .advantages-item-5 .advantages__title-2,
    .advantages-item-6 .advantages__title-2,
    .we-subtitle {
        font-size: 30px;

        margin: 0px 0 20px;

    }

    .advantages-item-2 p,
    .advantages-item-3 p,
    .advantages-item-4 p,
    .advantages-item-6 p,

    .advantages-item-5 p,
    .advantages-item-6 p,
    .we p {

        font-size: 14px;
        font-weight: 600;
    }

    .advantages-item-5,
    .advantages-item-6,
    .advantages-item-3,
    .advantages-item-4 {
        height: auto;
    }

    .we-title {
        font-size: 40px;
    }

    .tab-title {
        font-size: 28px;
        color: white;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .hero__btn img {
        width: 80px;
        height: 18px;
    }

    .hero__btn2 {
        margin-left: 5px;
    }

    .nav__top-wrap {
        max-width: 98%;
    }

    .slider {
        position: relative;
        width: 100%;
        height: 470px;
        overflow: hidden;
        border-radius: 80px;
    }

    .slider-item.active {
        width: 70%;
    }

    .slider-content-main {
        padding: 25px;
    }

    .slider-item.active .slider-name {
        color: var(--clr-black);
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 8px;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .slider-item.active .slider-desc {
        color: var(--clr-grey);
        font-size: 12px;
        line-height: 1.6;
        display: block;
        /* -webkit-line-clamp: 3; */
        -webkit-box-orient: horizontal;
        overflow: visible;
    }

    .slider-item.active .slider-title-main {
        color: var(--clr-blue);
        font-size: 25px;
        margin-bottom: 20px;
        text-align: center;
    }

    .slider-item.active .slider-img {
        width: 300px;
        height: 300px;
        border-radius: 60px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .about__wrap {
        justify-content: space-between;
        gap: 15px;
    }

    .about__img img {
        width: -webkit-fill-available;
        height: auto;
    }

    .about__subdesc {
        color: var(--clr-grey);
        padding: 10px 0;
        font-size: 14px;
    }

    .advantages {
        margin-top: 20px;

        gap: 10px;
    }

    .advantages-item p {
        text-align: left;
        font-size: 20px;
    }

    .advantages-item {

        padding: 50px 50px;
    }

    .advantages__title {
        font-size: 60px;
        color: white;
        text-align: left;
        margin: 0px 0 20px;
        font-weight: 900;
    }

    .advantages__icon img {
        width: 25px;
        height: 25px;
    }

    .advantages__icon {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .advantages__title br {
        display: none;
    }

    .about__btns {
        margin-top: 30px;
        text-align: center;
    }

    .about__btns p {
        color: var(--clr-blue-add);
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .about__img-2 img {
        width: -webkit-fill-available;
        height: auto;
    }

    .about__title br,
    .about-img2 {
        display: none;
    }

    .preview__item p {
        color: var(--clr-grey);
        margin-left: 10px;
        font-size: 15px;
    }

    .preview__img img {
        height: 18px;
        width: 18px;
    }

    .preview__item {
        margin: 8px 0;
    }

    .about__subtitle {
        color: #3E9B4B;
        font-weight: 800;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .instruction {
        margin: 60px 0;
    }

    .instruction__items {
        margin-top: 20px;
    }

    .instruction__desc {
        font-size: 12px;
        margin: 10px auto;
        width: 100%;
    }

    .instruction__subtitle {
        font-size: 16px;
    }

    .instruction__img img {
        width: 240px;
        height: auto;
    }


    .consult-item .about__title {
        font-size: 20px;
    }

    .consult-item-bg {
        padding-top: 30px;
    }

    .consult-item-bg img {
        width: 300px;
        height: 320px;
        object-fit: contain;
    }

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

    .footer a {
        font-size: 14px;
        margin: 0 14px;
    }

    .footer__nav a img {
        height: 25px;
        width: 25px;
    }

    .footer__down {
        margin-top: 0;
    }







}

/* media queries for planshet  ----------------------------------------------------------------------------------------- */
/* Было 1210 — между блоками зиял непокрытый промежуток 1205-1209px. */
@media (min-width: 1205px) and (max-width: 1400px) {
    :root {
        --fs-big: 50px;
        --fs-medium: 30px;
        --fs-normal: 20px;
        --fs-smallest: 12px;
    }

    .hero__item {
        width: fit-content;
    }

    .hero__title span {
        font-size: 30px;
        top: 10px;
    }

    main {
        overflow-x: hidden;
    }

    .container {
        width: 98%;
        margin: 0 auto;
    }

    .hero {
        height: 100vh;
    }

    .hero__wrap {
        padding-top: 0;
    }

    .consult {
        margin-bottom: 30px;
    }

    .mission::before {
        display: none;
    }

    .mission__title {
        font-size: 18px;
    }

    .hero__title::after {
        display: none;
    }

    .nav__wrap {
        padding: 12px 20px;
        margin-top: 10px;
    }

    .nav__item {
        font-size: 20px;
        margin: 0 20px;
    }

    .about__title {
        font-size: 50px;
        color: var(--clr-black);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero__title {
        margin: 0;
    }

    .location__item {
        padding: 20px 10px 20px 10px;
    }

    .hero__subtitle {
        color: var(--clr-grey);
        padding: 20px 0 20px;
        width: 90%;
    }

    .nav__logo {
        width: 80px;
    }

    .hero__btn-2 img {
        width: 70px;
        height: auto;
    }

    .hero__btn-nav-2 {
        margin-left: 5px;
    }

    .hero__info {
        margin-left: 2em;
    }

    .hero__btn {
        padding: 15px 40px;
    }

    .hero__item-bg-img {
        width: auto;
        max-width: 100%;
    }

    .about {
        margin: 0px 0 0px;
        padding: 50px 30px;
    }

    .hero__btn img {
        width: 100px;
        height: auto;
    }

    .advantages-item p {
        text-align: left;
        color: white;
        font-size: 17px;
    }

    .hero__btn2 {
        margin-left: 5px;
    }

    .nav__top-wrap {
        max-width: 98%;
    }

    .about__wrap {
        justify-content: space-between;
        gap: 25px;
    }

    .about__img img {
        width: -webkit-fill-available;
        height: auto;
    }

    .about__subdesc {
        color: var(--clr-grey);
        padding: 20px 0;
    }

    .advantages {
        margin-top: 70px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .advantages-item {
        width: 33%;
        padding: 30px 15px 30px 15px;
    }

    .advantages__icon img {
        width: 25px;
        height: 25px;
    }

    .advantages__icon {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .advantages__title br {
        display: none;
    }

    .about__btns {
        margin-top: 40px;
        text-align: center;
    }

    .about__btns p {
        color: var(--clr-blue-add);
        font-size: 20px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    #preview {
        margin-top: 70px;
    }

    .about-img {
        z-index: 1;
        position: relative;
        height: 800px;
        transform: scale(1);
        transition: 300ms ease-in-out;
        object-fit: contain;
    }

    .preview__item p {
        color: var(--clr-grey);
        margin-left: 10px;
        font-size: 18px;
    }

    .preview__img img {
        height: 25px;
        width: 25px;
    }

    .preview__item {
        margin: 12px 0;
    }

    .about__subtitle {
        color: #3E9B4B;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .instruction__items {
        margin-top: 40px;
    }

    .instruction__desc {
        font-size: 20px;
        margin: 10px auto;
        width: 100%;
    }

    .instruction__subtitle {
        font-size: 16px;
    }

    .instruction__img img {
        width: auto;
        height: auto;
    }



    .consult-item .about__title {
        font-size: 22px;
    }

    .consult-item-bg {
        padding-top: 30px;
    }

    .consult-item-bg img {
        width: 400px;
        height: 400px;
        object-fit: contain;
    }

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

    .footer a {
        font-size: 14px;
        margin: 0 14px;
    }

    .footer__nav a img {
        height: 25px;
        width: 25px;
    }

    .footer__down {
        margin-top: 0;
    }






}