body {
    background: #150E15;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #FCE6D0CC;
    font-size: 17px;
    line-height: 24px;
}

.wrapper {
    min-height: 100%;
}

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

h1, h2 {
    font-size: 36px;
    line-height: 100%;
    font-weight: 700;
    text-align: center;
    color: #FCE6D0;
    margin-bottom: 30px;
}

h3 {
    text-align: center;
    font-size: 35px;
    line-height: 100%;
    color: #FCE6D0;
    margin-bottom: 14px;
}

header {
    height: 60px;
    background: #2F182A;    
}

footer {
    height: 80px;
    background: #261A26;    
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 25px;
}

.footer__row .footer__logo {
    width: 164px;
    height: 29px;
    background: url('logo.png') center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.footer__row .footer__logo:hover{
    background: url('logo_hover.png') center center;
    background-repeat: no-repeat;
    background-size: 100%;

}

.footer__row .footer__link {
    font-size: 15px;
    line-height: 100%;
    color: #D5778C;
    transition: all .1s ease;
}

.footer__row .footer__link:hover {
    color: #FCE6D0;
}

header .header__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 15px;
}

header .logo {
    width: 164px;
    height: 29px;
    background: url('logo.png') center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

header .logo:hover{
    background: url('logo_hover.png') center center;
    background-repeat: no-repeat;
    background-size: 100%;

}

.headliner {
    padding-top: 40px;
    margin-bottom: 58px;
}

.headliner__btn {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(270deg, #AF2255 0%, #F7A856 100%);
    border-radius: 40px;
    
}

.headliner__btn .text {
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    color: #F7A856;
    position: relative;
    z-index: 10;
}

.headliner__btn .text span {
    color: #FCE6D0;
}

.headliner__btn::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 40px;
    background: #2F182A;
    transition: all .1s ease;  
}

.headliner__btn:hover::before {
    opacity: 0;
}

.headliner__btn:hover .text {
    color: #150E15;
}
.headliner__btn:hover .text span {
    color: #150E15;
}

.social__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.social__img {
    max-width: 250px;
    max-height: 250px;
}

.social__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.social__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.social__item .hover {
    display: none;
}

.social__item {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.social__item .desctop {
    z-index: 5;
}

.social__item.vk {
    background: #0077FF;
}
.social__item.tg {
    background: #27A7E7;
}
.social__item.ok {
    background: #FF8800;
}
.social__item.hipo {
    background: linear-gradient(152.99deg, #FAE3AE 23.18%, #F2A4B1 83.12%);
}
.social__item.nh {
    background: #E63378;
}
.social__item.me {
    background: #FFFFFF;
    padding-left: 5px;
    padding-top: 5px;
}

.social__item:hover .desctop {
    display: none;
}

.social__item:hover .hover {
    display: block;
    z-index: 5;
}

.social__item:hover {
    background: linear-gradient(270deg, #AF2255 0%, #F7A856 100%);
}

.social__item:hover::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 14px;
    background: #2F182A;
}

.info .info__textblock > *:not(:last-child) {
    margin-bottom: 14px;
}

.info .info__textblock ul {
    padding-left: 24px;
}

.info {
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    h1, h2 {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 36px;
    }

    h2 {
        line-height: 30px;
    }

    h3 {
        font-size: 28px;
        line-height: 30px;
    }

    footer .footer__row {
        padding-bottom: 25px;
        
    }

    .footer__row {
        flex-direction: column;
        gap: 24px;
    }

    .headliner {
        padding-top: 20px;
        margin-bottom: 30px;
    }

    .headliner__btn {
        height: 76px;
        border-radius: 21px;
    }

    .headliner__btn::before {
        border-radius: 21px;
    }

    .headliner__btn .text {
        font-size: 36px;
    }

    .social__row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .social__list {
        gap: 30px;
    }

    .social__item {
        width: 80px;
        height: 80px;
        border-radius: 14px;
    }

    .social__item.vk img {
        width: 37px;
        height: 23px;
    }
    .social__item.tg img {
        width: 34px;
        height: 28px;
    }
    .social__item.ok img {
        width: 24px;
        height: 41px;
    }
    .social__item.hipo img {
        width: 44px;
        height: 10px;
    }
    .social__item.nh img {
        width: 47px;
        height: 38px;
    }
    .social__item.me img {
        width: 59px;
        height: 48px;
    }
    .info {
        margin-bottom: 60px;
    }
    header .header__wrapper {
        justify-content: flex-start;
    }
}