@font-face {
    font-family: 'TTHovesProRegular';
    src: url('../assets/fonts/TT-Hoves-Pro-Regular.woff2') format('woff2'),
    url('../assets/fonts/TT-Hoves-Pro-Regular.woff') format('woff');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'TTHovesProRegular';
    src: url('../assets/fonts/TT-Hoves-Pro-Medium.woff2') format('woff2'),
    url('../assets/fonts/TT-Hoves-Pro-Medium.woff') format('woff');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

:root {
    --unit-100vh: 100vh;
}

@supports (height: 100dvh) {
    :root {
        --unit-100vh: 100dvh;
    }
}


* {
    box-sizing: border-box;
}

::after, ::before {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    height: 100%;
    min-width: 320px;
    color: #030303;
    background: #fafbfb;
    font-family: 'TTHovesProRegular', Verdana, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'TTHovesProRegular', Verdana, sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    width: calc(100% - 60px);
}

.container_wide {
    width: 100%;
    max-width: 1900px;
    padding: 0 30px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main {
    flex-grow: 1;
    padding-top: 90px;
}

.logo {
    display: block;
    width: 260px;
    height: 56px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.link {
    color: #030303;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-decoration: none;
    transition: ease-in .3s;
}

.link:hover {
    color: #9da2b6;
}

.title {
    font-family: 'TTHovesProRegular', Verdana, sans-serif;
    font-weight: 400;
    margin: 0;
}

.title_h1 {
    font-size: 50px;
    line-height: 54px;
    letter-spacing: -1px;
}

.title_h2 {
    font-size: 34px;
    line-height: 40px;
}

.title_h3 {
    font-size: 28px;
    line-height: 36px;
}

.subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: normal;
}

.text {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #030303;
}

.nav {
    display: flex;
    gap: 20px 30px;
    margin-top: 6px;
}

.nav__link {
    color: #030303;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: normal;
    text-decoration: none;
    transition: ease-in .3s;
}

.nav__link:hover {
    color: #9da2b6;
}

.btn-arrow {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e7ea;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: .2s all;
}

.btn-arrow__mobile {
    display: none;
}

.btn-arrow svg {
    fill: #ffffff;
}

.btn-arrow:hover {
    background-color: #272828;
    border-color: #272828;
}

.menu-trigger {
    display: none;
    width: 20px;
    height: 20px;
}

.menu-trigger svg {
    width: 100%;
    height: 100%;
}

.header__menu-top {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header__menu-close svg {
    width: 17px;
    height: 17px;
    transform: rotate(45deg);
    z-index: -1;
}

.header {
    flex-grow: 0;
    flex-shrink: 1;
    background: #fafbfb;
    height: 90px;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
}

.header.fixed {
    box-shadow: -2px -8px 20px 1px rgba(0, 0, 0, 0.4);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 10px;
}

.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--unit-100vh);
    z-index: 9998;
    background-color: #030303;
    opacity: .6;
}

.header__menu-additional {
    display: none;
    flex-direction: column;
    list-style-type: none;
    gap: 24px;
    padding: 0;
    margin: 36px 0 0 0;
}

.header__menu-link {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

.header__left {
    display: flex;
    gap: 50px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header__menu .header__action {
    display: none;
}

.header__btn {
    background-color: #030303;
    border: 1px solid #030303;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: .2s all;
}

.header__btn:hover {
    background-color: #272828;
    border-color: #272828;
}

.banner {
    padding: 30px 0 35px;
}


.banner-image::before {
	content: "";
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
		background-repeat: no-repeat;
  background-size: cover;
  background-position:
center center;
  background-attachment: fixed;
  background-color: #1b1f25;
background-image: url('/assets/slanted-gradient.svg');  
z-index: -1;
}

.banner-image {
	position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* background-color: #272828; */
    padding: 0;
    border-radius: 20px;
    min-height: 400px;
	
	background-image: linear-gradient(0.02turn, rgba(14, 17, 29, 0.6) 2%, rgb(14 17 28 / 84%) 100%);
}

.banner-image__info {
    padding-left: 50px;
    padding-right: 20px;
    max-width: 50%;
}

.banner-image__title {
    color: #fff;
}

.banner-image__subtitle {
    color: #fff;
    margin-top: 20px;
}

.banner-image__picture {
    background-image: url('../assets/images/contents/301.png');
    width: 600px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: 50%;
	background-size: contain;
}

.banner__text {
    padding: 35px 0 0;
}

.options {
    padding: 35px 0;
}

.options__title {
    margin-bottom: 35px;
}

.tabs-container {
    margin-bottom: 30px;
    padding: 60px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e6eef0;
}

.tabs-container__title {
    margin-bottom: 35px;
}

.tabs-parent {
    position: relative;
}

.tabs-parent__list {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    list-style: none;
}

.tab-item {
    padding: 0 0 9px 0;
    position: relative;
    color: #272828;
    overflow-wrap: normal;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: normal;
}

.tab-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    border-bottom: 2px solid transparent;
    transition: .3s all;
}

.tab-item.current::after {
    bottom: 0;
    border-color: #030303;
}

.tabs-arrow {
    display: none;
    position: absolute;
    width: 40px;
    height: 20px;
    padding-bottom: 31px;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.tabs-arrow.active {
    opacity: 1;
}

.tabs-arrow_right {
    background: linear-gradient(270deg, #FFFFFF 48.75%, rgba(255, 255, 255, 0) 100%);
    right: -2px;
}

.tabs-arrow_left {
    background: linear-gradient(90deg, #FFFFFF 48.75%, rgba(255, 255, 255, 0) 100%);
}

.tabs-arrow_right .tabs-arrow__btn {
    position: absolute;
    left: 25px;
}

.tabs-arrow svg {
    fill: #030303;
    stroke: #030303;
    width: 14px;
    height: 8px;
}

.tabs-arrow_right svg {
    transform: rotate(-90deg);
}

.tabs-arrow_left svg {
    transform: rotate(90deg);
}

.tabs-content {
    margin-top: 20px;
}

.tab-content {
    display: none;
    color: #030303;
    overflow-wrap: normal;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: normal;
}

.tab-content.current {
    display: block;
}

.advantages {
    padding-bottom: 35px;
}

.advantages__title {
    margin-bottom: 35px;
}

.advantages__row {
    display: flex;
    gap: 35px;
    padding-bottom: 35px;
}

.advantages-item {
    flex: 1;
}

.advantages-item__top {
    max-height: 160px;
    margin-bottom: 40px;
}

.advantages-item__title {
    font-size: 24px;
    line-height: 28px;
}

.advantages-item__title strong {
    font-weight: 500;
}

.advantages-item__text {
    margin: 15px 0 0;
}

.faq {
    padding-bottom: 70px;
}

.faq__title {
    text-align: center;
    font-size: 50px;
    line-height: 54px;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

.faq-item {
    border-top: 1px solid #e0e7ea;
    padding: 25px 20px;
}

.faq-item__question {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.faq-item__text {
    margin: 0 10px 0 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: normal;
}

.faq-item__trigger {
    width: 21px;
    height: 21px;
    min-width: 21px;
    position: relative;
}

.faq-item__trigger::before,
.faq-item__trigger::after {
    content: "";
    position: absolute;
    background-color: #030303;
    transition: transform 0.2s ease;
}

.faq-item__trigger::before {
    top: 50%;
    left: 10px;
    right: 10px;
    width: 2px;
    height: 21px;
    transform: translateY(-50%);
}

.faq-item__trigger::after {
    left: 50%;
    top: 10px;
    bottom: 10px;
    height: 2px;
    width: 21px;
    transform: translateX(-50%);
}

.faq-item.opened .faq-item__trigger::before {
    transform: scaleY(0);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(0, 1, 0, 1);
}

.faq-item__answer p {
    margin: 0;
    padding: 16px 0 5px;
    font-size: 16px;
    line-height: 22px;
}

.faq-item__answer a {
    border-bottom: 1px solid #d2dde2;
}

.faq-item.opened .faq-item__answer {
    max-height: 5000px;
    transition: max-height .5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.opened .faq-item__minus {
    opacity: 1;
}

.faq-item.opened .faq-item__plus {
    opacity: 0;
}

.footer {
    flex-shrink: 1;
    flex-grow: 0;
    background-color: #030303;
    color: #fff;
    border-top: 1px solid #272828;
}

.footer__part {
    padding: 30px 0;
    border-bottom: 1px solid #272828;
}

.footer__part:last-child {
    padding: 16px 0;
    border-bottom: none;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer__content_center {
    justify-content: center;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__phones {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: normal;
}

.footer__lang-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 9px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: normal;
    transition: .2s ease-in;
}

.footer__lang-link:hover {
    color: #afbcc2;
}

.footer__menu-item {
    width: 200px;
}

.footer__menu {
    display: flex;
    gap: 40px;
    color: #ffffff;
}

.footer__menu-title {
    margin: 0;
    color: #798e96;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: normal;
}

.footer__menu-list {
    margin: 14px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link {
    color: inherit;
}

.partners {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 5px 20px;
    flex-wrap: wrap;
}

.footer__links .link {
    color: #e0e7ea;
    font-size: 12px;
    line-height: 16px;
}

.footer__links .link:hover {
    color: #9da2b6;
}

.footer__rights {
    font-size: 12px;
    line-height: 16px;
    color: #798e96;
    text-align: center;
    margin-top: 16px;
}

.footer__lang {
    display: none;
}

@media only screen and (max-width: calc(1279px)) {
    .logo {
        width: 180px;
        height: 38px;
    }
}

@media only screen and (max-width: 1023px) {
    .logo {
        width: 130px;
        height: 28px;
    }

    .menu-trigger {
        display: block;
    }

    .header {
        height: 62px;
    }

    .main {
        padding-top: 62px;
    }

    .header__actions {
        display: none;
    }

    .header__menu-top {
        display: flex;
    }

    .header__menu {
        position: absolute;
        z-index: 9998;
        background: #fff;
        height: var(--unit-100vh);
        width: 700px;
        right: 0;
        top: 0;
        padding: 10px 30px 40px 30px;
        overflow: auto;
    }

    .header__overlay {
        display: block;
    }

    .header__menu-wrapper {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 20;
    }

    .header__menu-additional {
        display: flex;
    }

    .header__menu-wrapper.opened {
        display: block;
    }

    .header__menu .header__actions {
        display: flex;
        flex-direction: row-reverse;
    }

    .link {
        font-size: 15px;
        line-height: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 28px;
        border-bottom: 1px solid #e0e7ea;
        padding-bottom: 30px;
    }

    .nav__link {
        font-size: 20px;
        line-height: 28px;
    }

    .title_h1 {
        font-size: 37px;
        line-height: 40px;
        letter-spacing: -0.75px;
    }

    .title_h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .subtitle{
        font-size: 15px;
        line-height: 20px;
    }

    .text {
        font-size: 15px;
        line-height: 20px;
    }

    .tab-item, .tab-content {
        font-size: 15px;
        line-height: 20px;
    }

    .advantages-item__title {
        font-size: 20px;
        line-height: 24px;
    }

    .faq__title {
        font-size: 37px;
        line-height: 40px;
        letter-spacing: -0.75px;
    }

    .faq-item__text {
        font-size: 18px;
        line-height: 24px;
    }

    .faq-item__answer p {
        font-size: 15px;
        line-height: 20px;
    }

    .phone-link {
        font-size: 16px;
        line-height: 22px;
    }

    .footer__menu-title, .footer__link {
        font-size: 15px;
        line-height: 20px;
    }

    .footer__menu {
        gap: 20px;
    }

    .footer__menu-item {
        width: auto;
        min-width: 140px;
        max-width: 165px;
    }

    .partners {
        gap: 16px;
    }

    .banner-image__picture {
        background-size: contain;
    }
}

@media only screen and (max-width: 767px) {
    .container{
        width: calc(100% - 24px);
    }

    .footer .container {
        width: 100%;
    }

    .header .container_wide {
        padding: 0;
    }

    .header__content {
        padding: 12px 0;
    }

    .header {
        height: 52px;
    }

    .main {
        padding-top: 52px;
    }

    .btn-arrow {
        font-size: 13px;
        line-height: 16px;
        text-align: center;
    }

    .title_h1 {
        font-size: 32px;
        line-height: 34px;
        letter-spacing: -0.55px;
    }

    .footer__top .footer__content {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }

    .footer__top .footer__lang-link {
        display: none;
    }

    .footer__lang {
        display: flex;
    }

    .footer__middle .footer__content {
        display: block;
    }

    .footer__menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer__menu-item {
        min-width: unset;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header__menu {
        width: 316px;
    }

    .banner-image {
        flex-direction: column;
    }

    .banner-image__info {
        align-self: flex-start;
        padding: 20px;
        max-width: 100%;
    }

    .banner-image__picture {
        height: 350px;
    }

    .tabs-container {
        padding: 30px;
    }

    .advantages__row {
        flex-direction: column;
        gap: 20px;
    }

    .advantages-item__top {
        margin-bottom: 20px;
    }

    .faq__title {
        font-size: 32px;
        line-height: 34px;
        letter-spacing: -0.55px;
    }

    .footer__phones {
        gap: 10px;
    }
}