body {
    background: #322A32;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #E0E0E0;
}

.wrapper {
    min-height: 100%;
}

.container {
    max-width: 970px;
    margin: 0 auto;
    padding: 0 14px;
}

footer, header {
    background: #2A1C2A;
    height: 70px;
}
footer {
    height: 76px;
}

.header__wrapper {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    padding-top: 13px;
}

.header__logo {
    max-width: 276px;
    
}

.header__logo img {
    width: 100%;
    height: auto;
}

.footer__wrapper {
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__wrapper a {
    color: #E0E0E0;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.footer__wrapper a:hover {
    color: #FF4A76;
}

h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
}

.headliner__btn-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
}

.btn-main {
    width: 379px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    color: #FFF;
    background: linear-gradient(90deg, #FE4B77 0%, #A98AEA 100%);
    border: 3px solid #BD4E9B;
    border-radius: 3px;
    position: relative;
    transition: all .2s ease-in-out;
}
.btn-main span {
    position: relative;
    z-index: 2;
    text-align: center;
}
.btn-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FE4B77;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.btn-main:hover::after {
    opacity: 1;
}
.btn-main:hover {
    border-color: #FE4B77;
}

.headliner__subtitle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    color: #FF4A76;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    transition: all 0.2s ease-in-out;
}

.headliner__subtitle:hover {
    color: #FFF;
}

.see__title {
    text-align: center;
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 26px;
}

.see__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 29px;
}

.see__link {
    width: 250px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4A76;
    border: 2px solid #FF4A76;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 100%;
    transition: all 0.2s ease-in-out;
}

.see__link:hover {
    background: #322A32;
}

.see__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #4F4F4F;
}

.see__tag {
    height: 28px;
    padding: 0 15px;
    border: 1px solid #FF4A76;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    padding-bottom: 2px;
    transition: all 0.2s ease-in-out;
}

.see__tag:hover {
    background: #FF4A76;
    color: #000000;
}

.info__title {
    font-size: 26px;
    line-height: 100%;
    margin-bottom: 13px;
    margin-top: 26px;
}

.info__textblock img {
    width: 420px;
    height: auto;
    float: left;
    padding-right: 16px;
    margin-top: 6px;
}

.info__textblock p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.info__textblock {
    margin-bottom: 55px;
}

@media (max-width: 650px) {

    .header__logo {
        max-width: 198px;
    }
    header {
        height: 55px;
    }
    footer {
        height: 69px;
    }
    h1 {
        font-size: 22px;
        line-height: 30px;
        max-width: 200px;
        margin: 20px auto 16px;
    }
    .headliner__btn-block {
        gap: 17px;
        margin-bottom: 18px;
    }
    .btn-main {
        width: 100%;
        font-size: 22px;
        height: 54px;
        padding: 0;
    }
    .headliner__subtitle {
        font-size: 20px;

    }
    .see__title {
        font-size: 23px;
        margin: 0 auto 21px;
        line-height: 30px;
    }
    .see__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 17px;
        margin-bottom: 20px;
    }
    .see__link {
        width: 100%;
        text-align: center;
    }
    .see__link:last-child {
        grid-column: span 2;
    }
    .see__tags {
        gap: 10px;
        padding-bottom: 30px;
    }
    .see__tag {
        padding: 0 12px;
    }
    .info__title {
        margin-top: 20px;
        margin-bottom: 16px;
        text-align: start;
        max-width: 320px;
        font-size: 24px;
        line-height: 32px;
    }
    .info__textblock img {
        width: 100%;
        margin-bottom: 16px;
        padding-right: 0;
    }
}
@media (max-width: 330px) {
    .see__title {
        font-size: 22px;
    }
}
@media (max-width: 320px) {
    .see__title {
        font-size: 20px;
    }
}