/* Header */

.header {
    background: #ffffff;
    /* border-bottom: 1px solid #ECECEC; */
}

.header .container {
    max-width: 1410px;
}

.header__row {
    min-height: 68px;
}

/* logo */

.header__logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.header__logo img {
    display: block;

    max-width: 320px;
    max-width: 100%;
    height: auto;
}

/* menu */

.header__menu {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 30px);

    min-width: 0;
    margin-left: clamp(24px, 3vw, 60px);
}

.header__menu-link {
    font-family: 'RoadRadio', sans-serif;

    font-size: clamp(11px, 0.8vw, 14px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #1D3F77;
    text-decoration: none;
    white-space: nowrap;

    transition: color .2s ease;
}

.header__menu-link:hover {
    color: #F7941D;
}

/* products button */

.header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 166px;
    height: 38px;
    padding: 0 22px;

    flex-shrink: 0;

    border-radius: 999px;

    background: #F7941D;
    color: #ffffff;
    text-decoration: none;

    transition: background-color .2s ease;
}

.header__menu-button:hover {
    background: #e88315;
}

.header__menu-button-icon {
    display: block;

    width: 18px;
    height: 18px;

    flex-shrink: 0;
}

.header__menu-button-text {
    display: block;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #ffffff;
    white-space: nowrap;
}

/* contacts */

.header__contacts {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-left: auto;

    white-space: nowrap;
}

.header__contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 700;
    line-height: 1;

    color: #1D3F77;
    text-decoration: none;

    transition: color .2s ease;
}

.header__contact:hover {
    color: #F7941D;
}

.header__contact img {
    display: block;

    width: 14px;
    height: 14px;

    flex-shrink: 0;
}

.header__contact + .header__contact {
    padding-left: 15px;
    border-left: 1px solid #C8C8C8;
}





/* burger */

.header__burger {
    display: none;

    width: 44px;
    height: 44px;
    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    border: none;
    border-radius: 10px;

    /* background: #F7941D; */
}

.header__burger span {
    display: block;

    width: 20px;
    height: 2px;

    border-radius: 999px;
    background: #325ba7;

    transition: .25s ease;
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* mobile menu */

.header__mobile {
    display: none;

    padding: 24px 0 40px;

    background: #ffffff;
}

.header__mobile.active {
    display: block;
}

.header__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.header__mobile-menu a {
    font-family: 'RoadRadio', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #1D3F77;
}

.header__mobile-products {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    height: 38px;
    padding: 0 22px;

    border-radius: 999px;

    background: #F7941D;
    color: #ffffff !important;
}

.header__mobile-products img {
    width: 18px;
    height: 18px;
}

.header__mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 40px;
    padding-top: 30px;

    border-top: 1px solid #D7DEE8;
}

.header__mobile-contacts a {
    font-family: 'RoadRadio', sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: #1D3F77;
}

/* responsive */

/* @media (max-width: 1200px) {
    .header__menu,
    .header__contacts {
        display: none;
    }

    .header__burger {
        display: flex;
    }
} */

/* =========================
   Header adaptive
========================= */

@media (max-width: 1199px) {

    .header {
        border-bottom: 1px solid #EAEAEA;
    }

    .header .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header__row {
        min-height: 82px;

        margin-left: 0;
        margin-right: 0;
    }

    .header__row > * {
        padding-left: 0;
        padding-right: 0;
    }

    .header__menu,
    .header__contacts {
        display: none;
    }

    .header__logo {
        min-width: 0;
    }

    .header__logo img {
        max-width: 190px;
        width: 100%;
        height: auto;
    }

    .header__burger {
        display: flex;
        margin-left: auto;

        width: 44px;
        height: 44px;

        border: 1px solid #D7DEE8;
        border-radius: 8px;

        background: #ffffff;
    }

    .header__burger span {
        width: 18px;
        background: #1D3F77;
    }

    .header__mobile {
        padding: 24px 0 32px;
    }
}


/* mobile */

@media (max-width: 767px) {

    .header .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header__row {
        min-height: 80px;
    }

    .header__logo img {
        max-width: 205px;
    }

    .header__burger {
        width: 42px;
        height: 42px;
    }

    .header__burger span {
        width: 18px;
        height: 2px;
    }

    .header__mobile-menu {
        gap: 22px;
    }

    .header__mobile-menu a {
        font-size: 13px;
    }

    .header__mobile-products {
        height: 44px;
        padding: 0 20px;
    }

    .header__mobile-contacts {
        gap: 14px;
        margin-top: 30px;
        padding-top: 24px;
    }

    .header__mobile-contacts a {
        font-size: 13px;
    }
}

.service-tab-content.active{
	display: block;
}

.service-tab-content:not(.active){
	display: none;
}