*,
*::after,
*::before {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "montserrat", "Verdana", "Geneva", "Tahoma", sans-serif;
}
h1 {
    margin: 0;
}
p {
    margin: 0;
}

.social-link {
    border-radius: 50%;
    transition: background-color 0.3s;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-link:hover,
.social-link:active {
    background-color: #CE102E;
    box-shadow: 0px 0px 40px 0px #2A2A2A80;
}
.social-link svg {
    transform: translateY(2px);
}
.social-link svg path {
    fill: #000;
    transition: fill 0.3s;
}
.social-link:hover svg path,
.social-link:active svg path {
    fill: #fff;
}


.site-closed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 26px;
    line-height: 1.4;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: color;
    background-image: url('/img/site-closed/bg-desktop.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 20px;
    width: 100vw;
    min-height: 100vh;
}
.site-closed__apps {
    margin: 15px 0;
}
@media (max-width: 767px) {
    .site-closed {
        display: flex;
        flex-direction: column;
        background-image: url('/img/site-closed/bg-mobile.jpg');
    }
}


.site-closed-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site-closed-header__maintain {
    width: 72px;
    height: 94px;
    background-image: url('/img/site-closed/maintain.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.site-closed-header__title {
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    margin-top: 22px;
}
.site-closed-header__subtitle {
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    margin-top: 12px;
}
@media (max-width: 767px) {
    .site-closed-header__title {
        font-weight: 500;
        font-size: 52px;
        line-height: 42px;
        margin-top: 10px;
    }
    .site-closed-header__subtitle {
        font-size: 35px;
        margin-top: 10px;
    }
    .site-closed-header__maintain {
        width: 56px;
        height: 74px;
    }
}


.site-closed-apps {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site-closed-apps__title {
    font-weight: 300;
    font-size: 26px;
    line-height: 23px;
    max-width: 590px;
    width: 100%;
}
.site-closed-apps__qr {
    width: 129px;
    height: auto;
    margin-top: 15px;
}
.site-closed-apps__links {
    display: flex;
    margin-top: 15px;
}
.site-closed-apps__link {
    height: 30px;
}
.site-closed-apps__link svg {
    width: auto;
    height: 100%;
}
.site-closed-apps__link + .site-closed-apps__link {
    margin-left: 10px;
}
@media (max-width: 767px) {
    .site-closed-apps__title {
        font-size: 18px;
        line-height: 16px;
        max-width: 230px;
    }
    .site-closed-apps__qr {
        display: none;
    }
    .site-closed-apps__links {
        margin-top: 10px;
    }
}


.site-closed-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site-closed-footer__social-links {
    display: flex;
}
.site-closed-footer__social-link {
    width: 38px;
    height: 38px;
}
.site-closed-footer__social-link + .site-closed-footer__social-link {
    margin-left: 20px;
}
.site-closed-footer__logo {
    display: block;
    width: 202px;
    height: auto;
    margin-top: 12px;
}
