@font-face {
    font-display: swap;
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Regular.woff2') format('woff2'),
         url('../fonts/TT_Norms_Pro_Regular.woff') format('woff'),
         url('../fonts/TT_Norms_Pro_Regular.otf') format('otf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Normal.woff2') format('woff2'),
         url('../fonts/TT_Norms_Pro_Normal.woff') format('woff'),
         url('../fonts/TT_Norms_Pro_Normal.otf') format('otf');
    font-weight: 450;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Medium.woff2') format('woff2'),
         url('../fonts/TT_Norms_Pro_Medium.woff') format('woff'),
         url('../fonts/TT_Norms_Pro_Medium.otf') format('otf');
    font-weight: 500;
    font-style: normal;
}
@font-face {font-display: swap;
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_DemiBold.woff2') format('woff2'),
         url('../fonts/TT_Norms_Pro_DemiBold.woff') format('woff'),
         url('../fonts/TT_Norms_Pro_DemiBold.otf') format('otf');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    border: none;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: #4D4D54;
    text-size-adjust: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: 100%;

    @media (min-width: 768px) {
        overflow: unset;
    }
}
h1, .h1,
h2, .h2 {
    font-weight: 600;
    color: #3A3A40;
}
h1, .h1 {
    font-size: 70px;
    line-height: 66px;
}
h2, .h2 {
    font-size: 38px;
    line-height: 54px;
    text-align: center;
    margin-bottom: 40px;
}

.wrap {
    max-width: 1200px;
    padding: 0 55px;
    margin: 0 auto;
    box-sizing: content-box;
}

.wrap--header {
    @media (max-width: 767px) {
        padding: 0 16px;
    }
}

.main {
    overflow: hidden;
}

.welcome {
    padding-top: 24px;
}

header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    padding: 24px 0;
}

header .wrap {
    @media (max-width: 767px) {
        padding: 0 16px;
    }
}

.header__logo {
    @media (max-width: 767px) {
        height: 40px;
    }
}

.header__logo svg {
    @media (max-width: 767px) {
        height: 30px;
        width: 150px;
    }
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

    @media (max-width: 1023px) {
        flex-direction: column;
        align-items: flex-start;
    }

    @media (max-width: 1023px) {
        flex-direction: row;
    }
}

.header__text {
    font-weight: 450;
    font-size: 20px;
    line-height: 24px;
    color: #3A3A40;
    margin-right: 70px;

    @media (max-width: 1439px) {
        margin-right: 10px;
    }

    @media (max-width: 1023px) {
        margin-right: 70px;
    }

    @media (max-width: 1023px) {
        margin-right: 70px;
    }
}

.header__button {
    white-space: nowrap;
}

.header__info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #F6F6F8;
    border-radius: 20px;
    max-width: 816px;
    padding: 20px;
    margin-left: 27px;

    @media (max-width: 1023px) {
        max-width: 100%;
        margin-left: 0;
    }

    @media (max-width: 767px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
}