body {
    background: #1F212F;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CED2DE;
}

.wrapper {
    min-height: 100%;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 10px;
}

header {
    height: 60px;
    background: #30323E;    
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header__row .logo img {
    width: 222px;
    height: auto;
}

.header__btn {
    width: 130px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #414353;
    border-radius: 14px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.header__btn svg {
    display: none;
}

.header__btn:hover {
    color: #EFEFF9;
}

h1 {
    color: #EFEFF9;
    font-size: 34px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
}

.headliner__btn {
    width: 431px;
    height: 60px;
    background: #FFB2FF;
    margin: 0 auto 40px;
    border-radius: 78px;
    font-weight: 700;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F212F;
    transition: all 0.2s ease-in-out;
}



.headliner__btn:hover {
    background: #EFEFF9;
}

.headliner__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 624px;
    margin: 0 auto 40px;
}

.headliner__item {
    width: 300px;
    background: #30323E;
    border: 1px solid #FFB2FF;
    border-radius: 16px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    color: #FFB2FF;
    transition: all 0.2s ease-in-out;
}

.headliner__item:hover {
    background: #FFB2FF;
    color: #1F212F;
}

.headliner__title-tg {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.headliner__btn-tg {
    margin-bottom: 40px;
}

.headliner__btn-tg a {
    width: 300px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #27A7E7;
    background: #27A7E7;
    color: #EFEFF9;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    margin: 0 auto;
    border-radius: 78px;
    transition: all 0.2s ease-in-out;
}

.headliner__btn-tg a svg {
    fill: #EFEFF9;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out;
}

.headliner__btn-tg a:hover {
    color: #27A7E7;
    background: #EFEFF9;
}
.headliner__btn-tg a:hover svg {
    fill: #27A7E7;
}

.info__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    margin-bottom: 19px;
}

.info__textblock img {
    width: 521px;
    height: auto;
    float: left;
    margin-right: 18px;
    border-radius: 12px;
}

.info__textblock > p:not(:last-child) {    
    margin-bottom: 12px;
}

.info__textblock p {
    font-size: 16px;
    line-height: 22px;
}

.info__textblock {
    padding-bottom: 70px;
}

@media (max-width: 650px) {
    .header__row {
        padding: 0 10px;
    }
    .header__btn {
        width: 40px ;
    }
    .header__btn .text {
        display: none;
    }

    .header__btn svg {
        display: block;
    }
    .header__row .logo img {
        width: 196px;
    }

    h1 {
        font-size: 22px;
        line-height: normal;
        max-width: 300px;
        margin: 20px auto;
    }

    .headliner__btn {
        margin-bottom: 30px;
    }

    .headliner__list {
        grid-template-columns: 1fr;
        max-width: 260px;
        margin-bottom: 30px;
        gap: 16px;
    }

    .headliner__item {
        width: 100%;
    }

    .headliner__title-tg {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .headliner__btn-tg {
        margin-bottom: 30px;
    }
    .info__title {
        margin: 0 auto 12px;
        font-size: 18px;
        max-width: 340px;
        line-height: 117%;
    }

    .info__textblock img {
        width: 100%;
        margin-right: 0;
    }
}
@media (max-width: 470px) {
    .headliner__btn {
        width: 100%;
        height: 50px;
        font-size: 22px;
    }
    .headliner__btn-tg a {
        width: 100%;
    }
}