* {
    box-sizing: border-box;
    user-select: none
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%
}

.main {
    position: relative;
}

header {
    position: relative;
    background: linear-gradient(90deg, rgba(25, 53, 199, 0.5) 0%, rgba(13, 25, 87, 0.5) 100%);
}


.header_wrap {
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100px;
}

.header_wrap .logo {
}

.header_wrap .logo img {
}

.header_wrap .menu {
}

.header_wrap .menu ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.header_wrap .menu ul li {
    margin: 0 20px;
    list-style: none;
}

.header_wrap .menu ul li a {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #fff;
}


.main__container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 20;
}

.main__background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000 url(../img/background.png) 50%/cover no-repeat;
}

.come-to-club {
    padding: 140px 0;
}

.come-to-club .come-to-club-title {
    color: #fff;
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    margin: 0 0 10px;
}

.come-to-club .come-to-club-btn a img {
    max-width: 450px;
}

.info-block {
}

.info-block .info-block-wrap {
    display: flex;
    justify-content: space-between;
}

.info-block .info-block-wrap .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(25% - 10px);
    padding: 10px;
    position: relative;
    background: rgb(0 0 0 / 70%);
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 24px;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -2px; /* !importanté */
        border-radius: inherit; /* !importanté */
        background: linear-gradient(180deg, #002CC6 0%, #001560 100%);
    }


}

.info-block .info-block-wrap .item .icon {
}

.info-block .info-block-wrap .item .title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.1px;
    text-align: left;

}

.divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #002CC6 25.5%, #002CC6 75%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    margin: 35px 0;
}

.social-title {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
}

.social ul {
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
    padding: 0;
}

.social ul li {
    list-style: none;
}

.social ul li a {
    display: flex;
}

.social ul li a img {
    max-width: 128px;
}

footer {
    position: relative;
    background: linear-gradient(90deg, rgba(28, 28, 28, 0.6) 0%, rgba(8, 8, 8, 0.6) 100%);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer_wrap {
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer_wrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

footer .footer_wrap ul li {
    margin: 0 20px;
    list-style: none;
}

footer .footer_wrap ul li a {
    color: #878787;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;

}

.privacy-policy {
    padding: 100px 0;
}

.privacy-policy .subscribe__title {
    color: #fff;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    line-height: 60px;
    margin: 0 0 50px;
}

.privacy-policy .editor {
    color: #fff;
}

.privacy-policy .editor a {
    color: rgba(123, 142, 232, 0.5);
    line-height: 25px;
}


.terms {
    padding: 100px 0;
}

.terms .subscribe__title {
    color: #fff;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    line-height: 60px;
    margin: 0 0 50px;
}

.terms .editor {
    color: #fff;
}

.terms .editor a {
    color: rgba(123, 142, 232, 0.5);
    line-height: 25px;
}

@media (max-width: 767px) {

    .header_wrap {
        padding: 0 10px;
        height: 60px;
    }

    .header_wrap .logo img {
        max-height: 30px;
    }

    .header_wrap .menu ul li {
        margin: 0 10px;
    }

    .header_wrap .menu ul li a {
        font-size: 10px;
    }

    .come-to-club {
        padding: 70px 0;
    }

    .come-to-club .come-to-club-title {
        text-align: center;
        font-size: 24px;
    }

    .come-to-club .come-to-club-btn a img {
        width: 100%;
    }

    .info-block .info-block-wrap {
        flex-direction: column;
        align-items: center;
    }

    .info-block .info-block-wrap .item {
        width: calc(70% - 10px);
        margin: 0 0 30px;
    }

    .social-title {
        font-size: 20px;
    }

    .social ul {
        justify-content: space-between;
    }

    .social ul li a img {
        max-width: 62px;
    }

}
