@charset "UTF-8";
/*
Theme Name: Autohub
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:wght@100..900&family=Rubik:wght@300..900&display=swap');

@font-face {
    font-family: HelveticaNeueCyr;
    src: url(assets/font/HelveticaNeueCyr.ttf);
}

/* BODY
-----------------------------------------------------------------*/
body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Manrope', sans-serif;
    font-family: "Rubik", sans-serif;
    padding: 0px;
    margin: 0px;
    font-size: 24px;
    color: #000;
    position: relative;
    font-weight: 300;
    color: #ffffff;
    line-height: 130%;
    background: #03010A;
    -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
    padding: 0;
    margin: 0;
}

h1 {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
}

h2 {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
}

.block {
    overflow: hidden;
}

.block-non-hidden {
    overflow: visible;
    pointer-events: none;
    /* opacity: 0; */
    /* visibility: hidden; */
}

.block {
    position: relative;
}

@media (max-width: 767px) {
    h2 {
        font-size: 24px;
        line-height: 130%;
    }
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

pre {
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: "Rubik", sans-serif;

}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1239px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.br {
    border: 1px solid #fff;
    border-radius: 30px;
}

.btn {
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    transition: all 0.2s ease;
    ;
}


@media (max-width: 767px) {
    .btn {
        height: 43px;
    }
}


/* scroll
-----------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #1c1a1a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #111010;
}



/* header
-----------------------------------------------------------------*/
.header {
    position: fixed;
    width: 100%;
    z-index: 11;
    top: 0;
    background-color: #03010A;

}

.header-bg {
    transform-origin: bottom center
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    border-bottom: 1px solid #ffffff;
    padding-top: 8px;
}

.menu-header__list {
    display: flex;
    align-items: center;
}

.menu-header__link {
    font-size: 22px;
    padding: 0 16px;
    font-weight: 300;
    color: #fff;
    transition: all 0.2s ease;
}

.menu-header__link:hover {
    color: #FF8315;
}

.menu-header__btn {
    display: inline-flex;
    font-size: 22px;
    font-weight: 300;
    height: 50px;
    padding: 0px 23px;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.burger {
    display: none;
    padding: 0;
}

.burger img {
    width: 44px;
}

.burger .burger__open {
    display: block;
}

.burger .burger__close {
    display: none;
}

.burger.burger-active .burger__open {
    display: none;
}

.burger.burger-active .burger__close {
    display: block;
}

@media (max-width: 1239px) {

    .header {
        position: fixed;
        width: 100%;
        z-index: 11;
        top: 0;
        background-color: #110E1C;
    }

    .menu-header__nav,
    .menu-header__flex {
        display: none;
    }

    .burger {
        display: block;
    }

    .burger img {
        width: 28px;
    }

    .logo img {
        width: 70px;
    }

    .menu-header {
        height: 52px;
        border-bottom: none;
        padding: 0 0px;
    }

    .logo {
        margin: 6px 0px 0px 0px;
    }
}

@media (max-width: 767px) {

    .menu-header {
        height: 52px;
        padding: 0;
    }

}



/* menu-mob
-----------------------------------------------------------------*/
.menu-mob {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0px;
    height: 100vh;
    background-color: rgba(3, 1, 10, 0.6);
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 10;
}

.menu-mob-active {
    opacity: 1;
    visibility: visible;
}

.menu-mob__inner {
    width: 100%;
    background-color: #03010A;
    padding: 112px 16px 60px;
}

.menu-mob__list {
    text-align: center;
    margin-bottom: 8px;
}

.menu-mob__list li {
    margin-bottom: 24px;
}

.menu-mob__list li:last-child {
    margin-bottom: 32px;
}

.menu-mob__link {
    color: #fff;
    font-size: 22px;
}

.menu-mob__btn {
    height: 50px;
    color: #fff;
    font-size: 22px;
    margin-bottom: 32px;
    border: 1px solid #FFF;
}

.menu-mob__language-link {
    color: #fff;
    padding: 0 3px;
    font-size: 22px;
}

.menu-mob__language-link.menu-mob__language-link-active {
    color: #FF8315;
}

@media (max-width: 767px) {

    .menu-mob__link {
        font-size: 18px;
    }

    .menu-mob__language-link {
        font-size: 18px;
        text-transform: uppercase;
    }

    .menu-mob__inner {
        width: 100%;
        background-color: #03010A;
        padding: 90px 16px 36px;
    }

    .menu-mob__list li {
        margin-bottom: 16px;
    }

    .menu-mob__list li:last-child {
        margin-bottom: 24px;
    }

    .menu-mob__btn {
        margin-bottom: 24px;
    }
}



/* drop-down - выпадающий список при наведении
-----------------------------------------------------------------*/
.drop-down {
    position: relative;
    padding: 12px 10px 12px 16px;
    cursor: pointer;
}

.drop-down__main {
    display: flex;
    align-items: center;
}

.drop-down__icons img {
    margin: 0 4px;
}

.drop-down__choice {
    position: absolute;
    background: #202020;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px 16px;
    top: 54px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 2;
    font-size: 16px;
    min-width: 420px;
}

.drop-down__link {
    display: block;
    /* align-items: center; */
    /* justify-content: center; */
    /* width: 75px; */
    border-radius: 50px;
    /* border: 1px solid transparent; */
    transition: .2s;
    color: #fff;
    margin-bottom: 8px;
    line-height: 140%;
}

.drop-down__title {
    font-size: 22px;
}

.drop-down__link:last-child {
    margin-bottom: 0px;
}

.drop-down__link_active {
    /* border: 1px solid #E6E6E6; */
}

.drop-down__link:hover {
    /* border: 1px solid #E6E6E6; */
    color: #FF8315;
}

.drop-down__link:hover .drop-down__link_active {
    border: 1px solid #000;
    color: #000;
}

.drop-down__arrow {
    margin-left: 2px;
    margin-top: 2px;
}

.drop-down:hover .drop-down__choice {
    opacity: 1;
    visibility: visible;
}

.drop-down__arrow {
    transition: all 0.4s ease;
}

.drop-down:hover .drop-down__arrow {
    transform: rotateX(180deg);
}


/* drop-down-mob
-----------------------------------------------------------------*/
.drop-down-mob {
    font-size: 22px;
    cursor: pointer;
}

.drop-down-mob-header {
    display: flex;
    justify-content: center;
}

.drop-down-mob-title {
    color: #fff;
    position: relative;
}

.drop-down-mob-title::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 24px;
    top: 5px;
    background-image: url('assets/img/arrow-down.svg');
    transition: all 0.2s ease;
}

.drop-down-mob-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    transition: all 0.3s ease;
}

.drop-down-mob-link {
    color: #fff;
    font-size: 16px;
    display: block;
    font-weight: 300;
    padding-top: 8px;
    line-height: 140%;
}

.drop-down-mob.drop-down-mob-active .drop-down-mob-title::after {
    transform: rotateX(180deg);
}

.drop-down-mob.drop-down-mob-active .drop-down-mob-links {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .drop-down-mob-title {
        font-size: 18px;
    }

    .drop-down-mob-link {
        font-size: 14px;
    }
}



/* head
-----------------------------------------------------------------*/
.head {
    padding-top: 180px;
    text-align: center;
}

.head__inner {
    display: flex;
    flex-direction: column;
}

.head__title {
    font-family: 'HelveticaNeueCyr', sans-serif;
    letter-spacing: 0.02em;
    font-size: 50px;
    width: 900px;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 130%;
    margin: 0 auto 24px;
}

.head__title br {
    display: none;
}

.htm {
    display: none;
}

.head__title span {
    color: #FF8315;
}

.head__subtitle {
    width: 760px;
    display: block;
    margin: 0 auto;
    font-weight: 300;
    line-height: 130%;
    margin-bottom: 32px;
}

.head__btn {
    background-color: #FF8315;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    padding: 0 30px;
    align-self: center;
    color: #03010A;
    cursor: pointer;
    display: inline-flex;
}

.head__btn:hover {
    background-color: #E95A09;
    color: #03010A;
}

.btn img {
    margin-left: 10px;
}

.head__img {
    margin: 0 auto;
    position: relative;
    z-index: -1;
    margin-top: -108px;
    /* border: 1px solid #fff; */
}

.head__img-tab,
.head__img-mob {
    display: none;
}

@media (max-width: 1239px) {
    .head {
        padding-top: 122px;
    }

    .head__title br {
        display: block;
    }

    .head__title span {
        margin-left: 0px;
    }

    .head__img {
        margin-top: -100px;
    }

    .head__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .head__img-pc {
        display: none;
    }

    .head__img-tab {
        display: block;
    }

    .head__title {
        font-size: 48px;
        margin: 0 auto 34px;
    }


    .head__title,
    .head__subtitle {
        width: 720px;
    }
}

@media (max-width: 767px) {

    .head {
        padding-top: 92px;
    }

    .head .container {
        padding: 0;
    }

    .head__title {
        display: none;
        font-size: 28px;
        width: 100%;
        margin: 0 auto 28px;
    }

    .head__title.htm {
        display: block;
        padding: 0 16px;
    }

    .head__title.htm br {
        display: block;
    }

    .head__subtitle {
        width: 100%;
        max-width: 420px;
        font-size: 14px;
        padding: 0 16px;
    }

    .head__btn {
        font-size: 16px;
    }

    .head__img {
        margin-top: -10px;
    }

    .head__img-tab {
        display: none;
    }

    .head__img-mob {
        display: block;
    }
}

@media (max-width: 374px) {
    .head__title {
        font-size: 26px;
        margin: 0 auto 12px;
    }
}



/* cards
-----------------------------------------------------------------*/
.cards {
    padding-top: 116px;
}

.cards-pc {
    display: block;
}

.cards-mob {
    display: none;
}

.cards__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.cards__title {}

.cards__btn,
.cards__btn-mob {
    color: #fff;
    padding: 9px 24px;
    transition: all 0.2s ease;
}

.cards__btn-mob {
    height: 51px;
    display: none;
}

.cards__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.card {
    background-color: #202020;
    border-radius: 16px;
    min-height: 322px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card__icon {
    width: 48px;
    margin-bottom: 12px;
}

.card__title {
    font-size: 20px;
    line-height: 138%;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 8px;
}

.card__text {
    font-size: 16px;
    line-height: 140%;
}

.card__price {
    font-size: 18px;
}

.card__btn {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    border: 1px solid #fff;
    border-radius: 30px;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 24px;
}

.card__btn img {
    margin-left: 10px;
}


@media (max-width: 1239px) {
    .cards {
        padding-top: 50px;
    }

    .cards__wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .card {
        padding: 32px 32px;
        min-height: 352px;
    }



}

@media (max-width: 767px) {

    .cards {
        padding-top: 60px;
    }

    .cards.cards-pc {
        display: none;
    }

    .cards.cards-mob {
        display: block;
    }

    .cards-mob-header {
        transform: translateY(-110%);
    }

    .cards__wrapper {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .cards__header {
        margin-bottom: 24px;
    }

    .card:nth-child(4),
    .card:nth-child(5),
    .card:nth-child(6) {
        display: none;
    }

    .card__btn {
        font-size: 14px;
        height: 36px;
    }

    .card__title {
        font-size: 16px;
    }

    .card {
        justify-content: flex-start;
        min-height: 100%;
        min-height: 260px;
        padding: 24px;
    }

    .card__main {
        margin-bottom: 24px;
    }

    .card__text {
        font-size: 14px;
    }

}

@media (max-width: 374px) {
    .card {
        justify-content: flex-start;
        min-height: 100%;
        min-height: 260px;
        padding: 16px;
    }
}


/* about
-----------------------------------------------------------------*/
.about {
    padding-top: 125px;
    margin-bottom: 125px;
}

.about__inner,
.about__line {
    display: flex;
}

.about__inner {
    margin-bottom: 32px;
}

.about__title,
.about__main {
    width: 50%;
}

.about__title {
    height: 80px;
}

.about__main {}

.about__line {
    padding-bottom: 24px;
}

.about__line-item {
    padding: 4px 14px;
    background-color: #202020;
    border-radius: 30px;
    margin-right: 4px;
    font-size: 18px;
    line-height: 25px;
}

.ai-1,
.ai-2,
.ai-3 {
    border-bottom: 1px solid #EDEFFC;
}

.about__item {
    padding: 24px 0px;
}

.about__item-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 12px;
}

.about__item-text {
    font-size: 16px;
    line-height: 22px;
}

.about__data {
    display: flex;
    justify-content: space-between;
}

.about__data-item {
    width: 265px;
}

.about__data-num {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 80px;
    color: #FF8315;
    line-height: 112px;
    margin-bottom: 8px;
}

.about__data-text br {
    display: none;
}

@media (max-width: 1239px) {
    .about {
        padding-top: 47px;
        margin-bottom: 62px;
    }

    .about__inner {
        display: block;
    }

    .about__title {
        width: 100%;
        margin-bottom: 18px;
    }

    .about__main {
        width: 100%;
        margin-bottom: 24px;
    }

    .about__inner {
        margin-bottom: 0px;
    }

    .about__data {
        display: grid;
        grid-template-columns: 265px 265px;
        row-gap: 46px;
        column-gap: 206px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about__data {
        grid-template-columns: 146px 146px;
        gap: 44px;
    }

    .about__item-title {
        font-size: 16px;
    }

    .about__item-text {
        font-size: 14px;
        line-height: 140%;
    }

    .about__data-item {
        width: 100%;
        min-height: 94px;
    }

    .about__data-num {
        font-size: 40px;
        line-height: 140%;
        margin-bottom: 0;
    }

    .about__data-text {
        font-size: 20px;
        line-height: 130%;
    }

    .about__data-text br {
        display: block;
    }

    .about__line-item {
        font-size: 14px;
        line-height: 140%;
    }

    .about__title {
        height: auto;
        margin-bottom: 26px;
    }

    .about__main {
        margin-bottom: 15px;
    }
}

@media (max-width: 384px) {

    .about__line-item {
        font-size: 13px;
    }
}

@media (max-width: 374px) {

    .about__line-item {
        padding: 4px 8px;
        font-size: 12px;
    }

    .about__data {
        grid-template-columns: 140px 140px;
        gap: 16px;
    }

    .about__data-text {
        font-size: 16px;
        line-height: 130%;
    }
}


/* workshop
-----------------------------------------------------------------*/
.workshop {
    margin-bottom: 120px;
}

.workshop__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop__title {
    text-align: center;
    margin-bottom: 34px;
}

.workshop__images {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.workshop__block {
    width: 50%;
}

.workshop__block:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.workshop__max {
    width: 100%;
    height: 592px;
}

.workshop__mid {
    height: 288px;
}

.workshop__min {
    height: 288px;
    display: flex;
    gap: 16px;
}

.workshop__min-img {}

.workshop__btn {
    padding: 9px 24px;
    height: 49px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.workshop__btn img {
    margin-left: 10px;
}

.wordshop__mid-mob {
    display: none;
}

.workshop__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 1239px) {
    .workshop {
        margin-bottom: 66px;
    }

    .workshop__images {
        flex-direction: column-reverse;
    }

    .workshop__block {
        width: 100%;
    }

    .workshop__mid {
        margin-bottom: 16px;
    }

    .workshop__btn img {
        width: 32px;
    }

    .workshop__btn {
        height: 52px;
    }

    .wb {
        width: 50%;
    }
}

@media (max-width: 767px) {

    .workshop {
        margin-bottom: 70px;
    }

    .wb {
        width: 100%;
    }

    .workshop__images {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .workshop__max {
        height: 380px;
    }

    .wordshop__mid-pc {
        display: none;
    }

    .wordshop__mid-mob {
        display: block;
    }

    .workshop__min {
        display: block;
        height: 100%;
    }

    .workshop__min-img {
        height: 288px;
        width: 100%;
    }

    .workshop__min-img:nth-child(1) {
        margin-bottom: 4px;
    }

    .workshop__mid {
        margin-bottom: 12px;
    }

    .workshop__btn {
        width: 100%;
        justify-content: center;
        padding: 0;
        font-size: 20px;
    }

    .workshop__title {
        margin-bottom: 24px;
    }
}

@media (max-width: 374px) {
    .workshop__btn {
        font-size: 15px;
    }
}


/* ticker
-----------------------------------------------------------------*/
.ticker {
    margin-bottom: 12px;
}

.tacker {
    margin-bottom: 128px;
}

.ticker,
.tacker {
    position: relative;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
}

.ticker__wrapper,
.tacker__wrapper {
    display: flex;
}

.ticker__item,
.tacker__item {
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 0px 0 0;
}

.ticker__item {
    animation: ticker 15s linear infinite;
    animation-delay: 1.0s;
}

.tacker__item {
    animation: ticker 30s linear infinite;
    animation-delay: 1.5s;
}

.ticker__item img,
.tacker__item img {
    margin: 0 25px;
}

@keyframes ticker {
    0% {
        transform: translateZ(0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@media (max-width: 1239px) {
    .tacker {
        margin-bottom: 72px;
    }
}

@media (max-width: 767px) {

    .ticker,
    .tacker {
        display: none;
    }
}


/* why
-----------------------------------------------------------------*/

.why__bg {
    border-radius: 32px;
    border: 2px solid transparent;
    background: linear-gradient(#262626, #262626) padding-box, linear-gradient(107deg, rgba(255, 116, 72, 1) 0%, rgba(255, 72, 72, 1) 48%, rgba(98, 72, 255, 1) 100%) border-box;
}

.why__inner {
    padding: 64px 80px;
}

.why__main {
    min-height: 400px;
    width: 394px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why__main-title {
    margin-bottom: 26px;
}

.why__main-text {
    line-height: 130%;
}

.why__main-btn {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.why__info {
    width: 530px;
    display: grid;
    grid-template-columns: 240px 240px;
    column-gap: 50px;
    row-gap: 28px;
}

.why__info-item {
    display: block;
}

.why__info-item img {
    margin-bottom: 18px;
}

.why__info-title {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 400;
    text-transform: uppercase;
}

.why__info-text {
    font-size: 16px;
    line-height: 140%;
}

@media (max-width: 1239px) {

    .why__inner {
        padding: 36px 40px;
        flex-direction: column;
    }

    .why__main {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
        min-height: 100%;
    }

    .why__main-title {
        margin-bottom: 20px;
    }

    .why__info-item img {
        margin-bottom: 20px;
    }

    .why__main-header {
        margin-bottom: 32px;
    }

    .why__main-btn {
        width: 310px;
        margin: 0 auto;
    }

    .why__info {
        text-align: center;
        column-gap: 48px;
        row-gap: 62px;
    }
}

@media (max-width: 767px) {

    .why__inner {
        padding: 20px 18px 26px;
    }

    .why__main-btn {
        width: 300px;
    }

    .why__info {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }

    .why__info-title {
        font-size: 16px;
    }

    .why__info-text {
        font-size: 14px;
    }

    .why__main {
        margin-bottom: 36px;
    }

    .why__main-text {
        font-size: 20px;
    }

    .why__info-item img {
        margin-bottom: 12px;
    }
}

@media (max-width: 374px) {
    .why__main-btn {
        width: 100%;
        font-size: 14px;
    }
}


/* Swiper
-----------------------------------------------------------------*/
.slider {
    padding-top: 125px;
    margin-bottom: 125px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.slider__arrow {
    width: 100%;
    position: absolute;
    display: flex;
    height: 60px;
    /* margin-top: -220px; */
    top: 140px;
    justify-content: space-between;
}

.swiper-scrollbar {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    top: 22px;
    background-color: #4A4A4B;
}

.swiper-button-prev {
    left: 0%;
    /* transform: translateX(-75px); */
}

.swiper-button-next {
    right: 0%;
    /* transform: translateX(75px); */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.slider__arrow svg {
    width: 24px;
}

.slider__title {
    font-size: 48px;
    font-family: 'HelveticaNeueCyr', sans-serif;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    line-height: 130%;
}

.slider__title br {
    display: none;
}

.he-1 {
    border: 1px solid #4A4A4B;
}

.he-1 svg path {
    transition: fill 0.2s ease;
}

.he-1:hover svg path {
    fill: #FF8315;
}


/* Swiper-item
-----------------------------------------------------------------*/
.slider__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.slider__item-comment {
    line-height: 150%;
    margin-bottom: 22px;
    font-weight: 300;
    font-size: 22px;
}

.slider__item-comment span {
    font-weight: 700;
    font-size: 30px;
}

.slider__item-block {
    width: 400px;
    border-top: 1px solid #fff;
    padding-top: 24px;
    margin-bottom: 2px;

}

.slider__item-avatar {
    margin-bottom: 12px;
}

.slider__item-name {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 12px;
}

.slider__item-rating {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__item-span {
    background-color: #FF8315;
    border-radius: 30px;
    width: 89px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    color: #03010A;
}

.slider__item-span span {
    margin-top: 0px;
}

.slider__item-span img {
    margin-left: 4px;
}

.slider__item-name span,
.slider__item-span {
    margin-left: 8px;
}

@media (max-width: 1239px) {
    .slider {
        padding-top: 70px;
        margin-bottom: 60px;
    }

    .slider__title {
        margin-bottom: 42px;
    }

    .slider__arrow {
        top: 170px;
    }

    .slider__item-avatar {
        margin-bottom: 4px;
    }

    .slider__item-comment {
        max-width: 600px;
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .slider__title {
        font-size: 24px;
        margin-bottom: 36px;
        text-align: center;
        line-height: 130%;
    }

    .slider__title br {
        display: block;
    }

    .slider__item-block {
        width: 100%;
    }

    .slider__item-comment {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .slider__arrow {
        width: 100%;
        position: relative;
        height: 44px;
        bottom: 0px;
        top: auto;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 44px;
        height: 44px;
    }

    .slider__arrow svg {
        width: 16px;
    }

    .swiper-button-prev {
        left: 50%;
        transform: translateX(-60px);
    }

    .swiper-button-next {
        right: 50%;
        transform: translateX(60px);
    }

    .slider__item-name,
    .slider__item-rating {
        font-size: 16px;
    }

    .slider__item-name span {
        font-size: 20px;
    }

    .swiper-autoheight,
    .swiper-autoheight .swiper-slide {
        height: auto;
        padding-bottom: 30px;
    }

    .slider {
        margin-bottom: 40px;
    }
}


/* question
-----------------------------------------------------------------*/
.questions {
    margin-bottom: 128px;
}

.questions__title {
    text-align: center;
    margin-bottom: 34px;
}

.question__inner {
    background-color: #202020;
    padding: 42px 48px 32px;
    border-radius: 32px;
}


/* accordion
-----------------------------------------------------------------*/
.accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    color: #fff;
    position: relative;
    padding: 12px 16px 27px 16px;
    padding: 12px 16px 18px 16px;

}

.accordion-header-title {
    transition: all 0.2s ease;
    font-size: 24px;
    font-weight: 400;
}

.accordion-header-title br {
    display: none;
}

.accordion-item {
    margin-bottom: 16px;
    overflow: hidden;
    border-bottom: 1px solid #fff;
}

.accordion-content {
    overflow: hidden;
    padding: 0px;
    transition: max-height 0.2s ease;
    background-color: #202020;
    max-height: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.accordion-body {
    font-size: 16px;
    color: #03010A;
    padding: 0px 16px 28px;
    line-height: 140%;
    transition: all 0.2s ease;
    max-width: 900px;
}

.accordion-item.accordion-active .accordion-header {
    background-color: #FF8315;
    color: #03010A;
    padding: 12px 16px 10px 16px;
}

.accordion-item.accordion-active .accordion-header-title {
    /* padding: 9px 0px 18px; */
}

.accordion-item.accordion-active .accordion-content {
    background-color: #FF8315;
    margin-bottom: 24px;
}

.accordion-item .aha-start {
    display: block;
}

.accordion-item .aha-end {
    display: none;
}

.accordion-item.accordion-active .aha-start {
    display: none;
}

.accordion-item.accordion-active .aha-end {
    display: block;
}

.accordion-item.accordion-active .accordion-header-arrow img {
    /* transform: rotate(45deg); */
}

.accordion-header:hover .accordion-header-title {
    color: #FF8315;
}

.accordion-item.accordion-active:hover .accordion-header-title {
    color: #03010A;
}

@media (max-width: 1239px) {

    .questions {
        margin-bottom: 70px;
    }

    .accordion-header {
        align-items: center;
    }

    .accordion-header-arrow {
        margin-bottom: 16px;
    }

    .accordion-header-title br {
        display: block;
    }

    .accordion-header-title,
    .accordion-body {
        width: 90%;
    }

}

@media (max-width: 767px) {

    .questions {
        margin-bottom: 70px;
    }

    .question__inner {
        padding: 20px 16px 10px;
        /* border-radius: 16px; */
    }

    .accordion-header-title {
        font-size: 18px;
        line-height: 140%;
    }

    .accordion-header-title,
    .accordion-body {
        width: 82%;

    }


}

@media (max-width: 374px) {

    .accordion-header-title br {
        display: none;
    }

    .question__inner {
        padding: 12px 12px 10px;
    }

    .accordion-header {
        padding: 12px 9px 18px 8px;
    }

    .accordion-item.accordion-active .accordion-header {
        padding: 12px 9px 10px 9px;
    }

}


/* form-page
-----------------------------------------------------------------*/
.form-page {
    margin-bottom: 125px;
}

.form-page__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2px;
}

.form-page__main {
    width: 540px;
    /* height: 560px; */
}

.form-page__title {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 130%;
}

.form-page__title br {
    display: none;
}

.form-page__img {
    width: 556px;
    top: 0;
    right: 0;
    height: 376px;
    overflow: hidden;
    border-radius: 32px;
    background-color: #FF8315;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.form-page__img-car {}

.form-page__form {
    width: 100%;
    color: #fff;
}

.label {
    display: block;
    position: relative;
}

.label-name::before,
.label-tel::before,
.label-email::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0;
    top: 30px;
}

.label-name::before {
    background-image: url('assets/img/form-user.svg');
}

.label-tel::before {
    background-image: url('assets/img/form-phone.svg');
}

.label-email::before {
    background-image: url('assets/img/form-mail.svg');
}

.form-inp {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 24px;
    padding: 12px 12px 12px 40px;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.form__btn {
    font-family: "Rubik", sans-serif;
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid #fff;
    transition: all 0.2s ease;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    width: 100%;
    cursor: pointer;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 400;
}

.form__btn:hover {
    background-color: #4A4A4B;
    border: 1px solid #4A4A4B;
}

input {
    margin-top: 20px;
}

input::placeholder {
    color: #fff;
    font-size: 24px;
    opacity: 1;
    font-weight: 300;
    font-family: "Rubik", sans-serif;
}

input:required:valid {
    background-color: transparent;
    /* Цвет фона для заполненного поля */
    border: 1px solid transparent;
    /* Рамка для заполненного поля */
}

input:required:invalid {
    background-color: transparent;
    /* Цвет фона для незаполненного поля */
    border: 1px solid transparent;
    /* Рамка для незаполненного поля */
}


@media (max-width: 1239px) {

    .form-page {
        margin-bottom: 70px;
    }

    .form-page__title {
        max-width: 578px;
        margin-bottom: 7px;
    }

    .form-page__title br {
        display: none;
    }

    .form-page__main {
        margin-bottom: 32px;
        height: 100%;
    }

    .form-page__main,
    .form-page__form {
        width: 100%;
    }

    .form-page__img {
        position: relative;
        width: 100%;
    }

    .form-page__bg {
        width: 100%;
    }

    .form-page__inner {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .form-page__img {
        height: 232px;
    }

    .form-page__img-car {
        max-width: 320px;
    }

    .form-page .container {
        padding: 0 16px;
    }

    .form-page__title {
        font-size: 24px;
    }

    .form-page__title br {
        display: block;
    }

    .form-page {
        margin-bottom: 40px;
    }

}





/* 
form-popup 
form-end
-----------------------------------------------------------------*/
.form-popup,
.form-end {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    background: rgba(3, 1, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.form-popup__inner,
.form-end__inner {
    width: 700px;
    background-color: #202020;
    padding: 40px;
    border-radius: 32px;
    position: relative;
}

.form-popup__title {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 130%;
}

.form-end .form-popup__title {
    text-align: center;
}

.form-popup__ps {
    font-size: 12px;
    margin-top: 12px;
    line-height: 140%;
}

.form-popup .form__btn,
.form-end .form__btn {
    background-color: #FF8315;
    border: 1px solid #FF8315;
    color: #03010A;
    transition: all 0.2s ease;
}

.form-popup__close {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.form-popup-active,
.form-end-active {
    opacity: 1;
    visibility: visible;
}

.form-page__inner.form-vacancie {
    display: flex;
    justify-content: space-between;
}

.form-page__inner.form-vacancie .form-page__main {
    width: 650px;
    height: 100%;
}

.form-vacancie__img {
    width: 450px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.form-vacancie__bg {
    position: absolute;
    width: 100%;
    height: 315px;
    background-color: #FF8315;
    bottom: 0;
    left: 0;
    border-radius: 32px;
    z-index: -1;
}

.form-vacancie__img img {
    display: block;
    margin: 0 auto;
    position: relative;
    bottom: -36px;
}

.form-page__inner.form-vacancie .form-page__form {
    width: 100%;
}

.form-job__image-bg {}

@media (max-width: 1239px) {

    .form-page__inner.form-vacancie .form-page__main {
        width: 100%;
        height: 100%;
        margin-bottom: 16px;
    }

    .form-page__inner.form-vacancie .form-page__title {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: 48px;
    }

    .form-page__inner.form-vacancie {
        flex-direction: column;
    }

    .form-vacancie__img {
        width: 100%;
    }

}

@media (max-width: 767px) {

    .form-popup,
    .form-end {
        padding: 16px;
    }

    .form-popup__title {
        font-size: 24px;
    }

    .form-popup__inner,
    .form-end__inner {
        max-width: 100%;
        background-color: #202020;
        padding: 28px 20px;
        border-radius: 16px;
        position: relative;
    }

    .form-popup .form__btn,
    .form-end .form__btn {
        height: 43px;
        font-size: 16px;
        margin-top: 24px;
    }

    .form-popup__close {
        right: 12px;
        top: 12px;
        width: 24px;
        height: 24px;
    }

    .form-popup__close img {
        width: 24px;
    }

    .form-popup .form-inp,
    .form-end .form-inp {
        width: 100%;
        background-color: transparent;
        border: none;
        font-size: 20px;
        padding: 12px 12px 12px 40px;
        color: #fff;
    }

    .form-popup input::placeholder {
        font-size: 20px;
    }

    .form-popup .label-name::before,
    .form-popup .label-tel::before,
    .form-popup .label-email::before {
        top: 27px;
    }

    .form-page__inner.form-vacancie .form-page__title {
        font-size: 28px;
    }

    .form-page__inner.form-vacancie .form-inp {
        font-size: 20px;
        padding: 14px 12px 12px 40px;
    }

    .form-vacancie__bg {
        height: 240px;
    }

    .form-vacancie__img {
        height: 305px;
    }

    .form-vacancie__img img {
        bottom: 0px;
        width: 250px;
    }

    .form-page__inner.form-vacancie input::placeholder {
        font-size: 20px;

    }
}



/* head-vacan
-----------------------------------------------------------------*/
.head-vacan {}

.head-vacan__inner {
    padding-top: 200px;
    padding-bottom: 100px;
    text-align: center;
}

.head-vacan__title {
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.head-vacan__subtitle {
    max-width: 600px;
    display: inline-block;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 40px;
}

.head-vacan__items {
    max-width: 778px;
    margin: 0 auto;

}

.head-vacan__item p {
    font-size: 22px;
    line-height: 150%;
}

@media (max-width: 1239px) {
    .head-vacan__inner {
        padding-top: 148px;
        padding-bottom: 40px;
    }

    .head-vacan__title {
        margin-bottom: 16px;
    }

    .head-vacan__subtitle {
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .head-vacan__inner {
        padding-top: 105px;
        padding-bottom: 40px;
    }

    .head-vacan__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .head-vacan__subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .head-vacan__items {
        flex-direction: column;
    }

    .head-vacan__item p {
        font-size: 18px;
    }

    .head-vacan__item+.head-vacan__item {
        margin-top: 12px;
        ;
    }
}


/* vacancies
-----------------------------------------------------------------*/
.vacancies {}

.vacancies__inner {
    padding-bottom: 100px;
}

.vacancies__item {
    color: #fff;
    padding: 40px 24px 60px;
    background-color: #202020;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transition: all 0.2s ease;
    border: 1px solid #202020;
}

.vacancies__item+.vacancies__item {
    margin-top: 30px;
}

.vacancies__title {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 130%;
    transition: color 0.2s ease;
    margin-bottom: 40px;
}

.vacancies__info {
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 150%;
}

.vacancies__info img {
    margin-right: 8px;
    margin-top: -6px;
}

.vacancies__info+.vacancies__info {
    margin-top: 16px;
}

.vacancies__btn {
    border: 1px solid #fff;
    font-size: 22px;
    height: 51px;
    padding: 0 24px;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.vacancies__item:hover {
    border: 1px solid #FF8315;
}

.vacancies__item:hover .vacancies__title {
    color: #FF8315;
}

.vacancies__item:hover .vacancies__btn {
    color: #FF8315;
    border: 1px solid #FF8315;
}

@media (max-width: 1239px) {
    .vacancies__item {
        flex-wrap: wrap;
        padding: 40px 40px 60px;
    }

    .vacancies__button,
    .vacancies__btn {
        width: 100%;
    }

    .vacancies__item+.vacancies__item {
        margin-top: 16px;
    }

    .vacancies__button {
        margin-top: 32px;
    }

    .vacancies__inner {
        padding-bottom: 70px;
    }

    .vacancies__title {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {

    .vacancies__inner {
        padding-bottom: 40px;
    }

    .vacancies__item {
        flex-wrap: wrap;
        padding: 20px 20px 28px;
    }

    .vacancies__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .vacancies__info {
        font-size: 18px;
    }

    .vacancies__btn {
        font-size: 18px;
        height: 45px;
    }
}


/* vacancie
-----------------------------------------------------------------*/
.vacancie {
    padding: 140px 0px 100px
}

.vacancie__inner {}

.vacancie__back {
    margin-bottom: 30px;
    display: block;
}

.vacancie__title {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 8px;
}

.vacancie__main {
    display: flex;
    justify-content: space-between;
}

.vacancie__info {
    width: 715px;
}

.vacancie__info-title {
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 14px;
    margin-top: 24px;
}


.vacancie__info p {
    line-height: 140%;
    font-size: 16px;
}

.vacancie__info-text+.vacancie__info-text {
    margin-top: 4px;
}

.vacancie__info-item {
    font-size: 16px;
    line-height: 140%;
    padding-left: 22px;
    position: relative;
}

.vacancie__info-item::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
}


.vacancie__info-ps {
    margin-top: 24px;
}

.vacancie__dop {
    width: 187px;
}

.vacancie__dop-item {
    font-size: 24px;
    line-height: 140%;
    margin-top: 28px;
}

.vacancie__dop-item img {
    display: block;
    margin-bottom: 16px;
    width: 32px;
}

.vacancie__dop-item span {
    display: block;
}

@media (max-width: 1239px) {

    .vacancie {
        padding: 140px 0px 70px;
    }

    .vacancie__back {
        display: none;
    }

    .vacancie__main {
        flex-direction: column;
    }

    .vacancie__dop {
        width: 100%;
        margin-top: 40px;
        display: flex;
    }

    .vacancie__dop-item {
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .vacancie__dop-item span {
        margin-left: 8px;
    }

    .vacancie__dop-item+.vacancie__dop-item {
        margin-left: 150px;
    }

    .vacancie__dop-item img {
        margin-bottom: 2px;
        margin-right: 16px;
    }

    .vacancie__info-text+.vacancie__info-text {
        margin-top: 8px;
    }
}

@media (max-width: 767px) {
    .vacancie__dop {
        display: block;
    }

    .vacancie__title {
        font-size: 24px;
    }

    .vacancie__info-title.vacancie__info-title-first {
        margin-top: 0px;
    }

    .vacancie {
        padding: 80px 0px 40px;
    }

    .vacancie__info {
        width: 100%;
    }

    .vacancie__info p,
    .vacancie__info-item {
        font-size: 14px;
    }

    .vacancie__info-title {
        font-size: 16px;
    }

    .vacancie__dop-item {
        font-size: 18px;
    }

    .vacancie__dop-item+.vacancie__dop-item {
        margin-left: 0;
        margin-top: 16px;
    }

    .vacancie__info-item {
        padding-left: 20px;
    }

    .vacancie__info-item::before {
        left: 8px;
    }

}

/* head-contacts
-----------------------------------------------------------------*/
.head-contacts {
    padding: 197px 0px 86px;
}

.head-contacts__inner {
    display: flex;
    justify-content: space-between;
}

.head-contacts__main {
    width: 590px;
}

.head-contacts__main h1 {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 28px;
}

.head-contacts__main p {
    font-size: 22px;
    line-height: 150%;
}

.head-contacts__main-text {
    margin-top: 16px;
}

.head-contacts__schedule {
    background-color: #202020;
    border-radius: 24px;
    padding: 24px 24px;
    width: 385px;
    height: 330px;
}

.head-contacts__schedule h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
}

.head-contacts__schedule-list li {
    display: flex;
    font-size: 16px;
    margin-bottom: 8px;
    height: 27px;
}

.head-contacts__schedule-list li span {
    margin-left: auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 1239px) {

    .head-contacts {
        padding: 148px 0px 40px;
    }

    .head-contacts__schedule {
        margin-left: 32px;
        margin-top: 100px;
    }

    .head-contacts__main {
        width: 360px;
    }


}

@media (max-width: 767px) {
    .head-contacts__inner {
        display: block;
    }

    .head-contacts {
        padding: 116px 0px 28px;
    }

    .head-contacts__main {
        width: 100%;
    }

    .head-contacts__schedule {
        margin-left: 0px;
        margin-top: 32px;
        width: 100%;
    }

    .head-contacts__main h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .head-contacts__main p {
        font-size: 18px;
    }
}

/* location
-----------------------------------------------------------------*/
.location {
    padding: 0px 0px 72px;
}

.location__item {
    width: 366px;
}

.location__flex {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    font-size: 28px;
    margin-bottom: 24px;
}

.location__flex img {
    margin-right: 8px;
}

@media (max-width: 1239px) {
    .location .flex-sb {
        display: block;
    }

    .location__item {
        width: 100%;
    }

    .location__item+.location__item {
        margin-top: 28px;
    }

    .location {
        padding: 0px 0px 40px;
    }
}

@media (max-width: 767px) {
    .location__flex {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .location__flex img {
        display: none;
    }

    .loction__info {
        font-size: 18px;
        width: 260px;
    }

    .location__item {
        position: relative;
    }

    .location__item::before {
        content: '';
        position: absolute;
        width: 92px;
        height: 60px;
        top: 0;
        right: 0;
        background-color: #03010A;
    }

    .location__item::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 60px;
        top: 0;
        right: 0;
    }

    .location__item:nth-child(1)::after {
        background-image: url('assets/img/loc-email.svg');
    }

    .location__item:nth-child(2)::after {
        background-image: url('assets/img/loc-phone.svg');
    }

    .location__item:nth-child(3)::after {
        background-image: url('assets/img/loc-location.svg');
    }

    .location__item+.location__item {
        margin-top: 22px;
    }

    .location {
        padding: 0px 0px 30px;
    }
}

/* map
-----------------------------------------------------------------*/
.map {
    padding-bottom: 150px;
}

.contact__map {
    height: 410px;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 1239px) {
    .contact__map {
        height: 250px;
    }

    .map {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .map {
        padding-bottom: 40px;
    }

    .contact__map {
        height: 290px;
    }
}



/* head-serv
-----------------------------------------------------------------*/
.head-serv {
    padding: 192px 0px 50px;
}

.head-serv__inner {
    text-align: center;
}

.head-serv__title {
    font-size: 50px;
    margin-bottom: 16px;
    line-height: 130%;
    text-transform: uppercase;
}

.head-serv__subtitle {
    font-size: 16px;
}

@media (max-width: 1239px) {}

@media (max-width: 767px) {}


/* services
-----------------------------------------------------------------*/
.services {
    padding-bottom: 150px;
}

.services__inner {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 36px;
}

.category {}

.category__title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    margin-bottom: 10px;
}

.category__options {}

.category__name {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border-radius: 8px;
    background-color: #151517;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category__name:hover,
.category__name.category__name-active {
    background-color: #313133;
}

.category__name+.category__name {
    margin-top: 4px;
}

.services .cards__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.services .card {
    width: 49%;
}

.hide {
    display: none;
}

.wrapper {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper svg {
    image-rendering: optimizeQuality;
    shape-rendering: geometricPrecision;
}

.wrapper img {
    width: 500px;
}


@media (max-width: 1239px) {}

@media (max-width: 767px) {}


/* info
-----------------------------------------------------------------*/
.info {
    padding-top: 192px;
    padding-bottom: 42px;
}

.info__description {
    margin-bottom: 40px;
}

.info__title {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 130%;
    font-weight: 300;
}

.info__text {
    font-size: 16px;
    line-height: 140%;
    font-weight: 300;
    max-width: 950px;
}

.info__text+.info__text {
    margin-top: 8px;
}

.info__subtitle {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 16px;
}

.info__flex {
    display: flex;
    flex-wrap: wrap;
}

.info__flex-item {
    background-color: #FF8315;
    color: #03010A;
    font-size: 18px;
    border-radius: 30px;
    padding: 1px 12px;
    margin-bottom: 8px;
}

@media (max-width: 1239px) {
    .info {
        padding-top: 84px;
        padding-bottom: 32px;
    }

    .info__description {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .info {
        padding-top: 92px;
        padding-bottom: 8px;
    }

    .info__title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .info__flex-item {
        font-size: 14px;
        line-height: 26px;
    }

    .info__flex-item {
        font-size: 14px;
    }

    .info__subtitle {
        font-size: 16px;
    }

    .info__description {
        margin-bottom: 16px;
    }

    .info__text {
        font-size: 14px;
    }
}


/* img-ser
-----------------------------------------------------------------*/
.img-ser {
    margin-bottom: 42px;
}

.img-ser__img {
    height: 500px;
}

.img-ser__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.img-u3-mob,
.img-u5-tab {
    display: none;
}

@media (max-width: 1239px) {
    .img-ser__img {
        overflow: hidden;
        border-radius: 16px;
    }

    .img-u5-pc {
        display: none;
    }

    .img-u5-tab {
        display: block;
    }


}

@media (max-width: 767px) {
    .img-ser__img {
        height: 304px;

    }
}

@media (max-width: 424px) {
    .img-u6 img {
        width: 400px;
    }

    .img-u2 img {
        width: 440px;
    }

    .img-u3-pc {
        display: none;
    }

    .img-u3-mob {
        display: block;
    }

    .img-u5 img {
        width: 444px;
    }



}


/* info-ser
-----------------------------------------------------------------*/
.info-ser {
    margin-bottom: 100px;
}

.info-ser__inner {}

.info-ser__title {
    margin-bottom: 4px;
    font-size: 48px;
}

.info-ser__item {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #fff;
}

.info-ser__item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-ser__item-main {
    max-width: 75%;
}

.info-ser__item-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
}

.info-ser__item-text {
    font-size: 16px;
    line-height: 140%;
}

.info-ser__item-number {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
}

.info-ser__item-number span {
    line-height: 24px;
}

@media (max-width: 1239px) {
    .info-ser {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .info-ser__title {
        font-size: 24px;
    }

    .info-ser__item-title {
        font-size: 18px;
    }

    .info-ser {
        margin-bottom: 40px;
    }
}

/* section
-----------------------------------------------------------------*/
@media (max-width: 1239px) {}

@media (max-width: 767px) {}

@media (max-width: 374px) {}

/* section
-----------------------------------------------------------------*/
@media (max-width: 1239px) {}

@media (max-width: 767px) {}

@media (max-width: 374px) {}


/* section
-----------------------------------------------------------------*/
@media (max-width: 1239px) {}

@media (max-width: 767px) {}

@media (max-width: 374px) {}






/* footer
-----------------------------------------------------------------*/
.footer {}

.footer__inner {
    padding: 80px 0px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
}

.footer__item {}

.footer__logo img {
    width: 290px;
}

.footer__subtitle {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 24px;
}

.footer__subtitle br {
    display: none;
}

.footer__link {
    display: block;
    line-height: 150%;
    color: #fff;
    transition: all 0.2s ease;
    font-size: 22px;
    margin-bottom: 8px;
}

.footer__link.btn {
    cursor: pointer;
    height: auto;
}

.body-vacancie .footer__link.btn {
    display: none;
}

.footer__link:hover {
    color: #FF8315;
}

@media (max-width: 1239px) {
    .footer__logo img {
        width: 150px;
    }

    .footer__subtitle br {
        display: block;
    }

    .footer__link {
        font-size: 16px;
    }

    .footer__inner {
        padding: 56px 0px;
    }
}

@media (max-width: 767px) {

    .footer__inner {
        padding: 36px 0px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__subtitle {
        margin-bottom: 10px;
    }

    .footer__link {
        margin-bottom: 4px;
    }

    .footer__link br {
        display: none;
    }

    .footer__item:nth-child(1) {
        margin-bottom: 18px;
        order: 1;
    }

    .footer__item:nth-child(2) {
        margin-bottom: 24px;
        order: 3;
    }

    .footer__item:nth-child(3) {
        margin-bottom: 0px;
        order: 4;
    }

    .footer__item:nth-child(4) {
        margin-bottom: 24px;
        order: 2;
    }
}



/* Wordpress Form
-----------------------------------------------------------------*/

form br {
    display: none;
}

.form-page__form p {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    display: block;
    width: 100%;
}

.loc p {
    display: flex;
    justify-content: space-between;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 14px;
    text-align: left;
}

.wpcf7 form .wpcf7-response-output {
    color: #dc3232;
    margin: 1em 0em 1em;
    padding: 0.6em 1em;
    border: 1px solid #101010 !important;
    border-radius: 20px;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #AA8AF6;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-response-output {
    display: none;
}

.form-inp.wpcf7-not-valid {
    border-bottom: 1px solid #F11313;
}





/* hover
-----------------------------------------------------------------*/
.form-popup .form__btn:hover,
.form-end .form__btn:hover {
    background-color: #E95A09;
}

.card__btn:hover,
.menu-header__btn:hover,
.cards__btn-mob:hover,
.cards__btn:hover,
.workshop__btn:hover,
.why__main-btn:hover {
    border: 1px solid #4A4A4B;
    background-color: #4A4A4B;
}

.ce-2.ce-2-active {
    border: 1px solid #fff;
}

.he-1.he-1-active {
    border: 1px solid #FF8315;
}