a {
    color: var(--text-2);
    text-decoration: none;
}

a:active, a:focus {
    text-decoration: none;
}

a:hover {
    color: var(--text-1);
}

body {
    overflow: auto;
    background: url('/website/images/background.png') no-repeat #040202;
    background-size: 100%;
}

.block-main {
    background: var(--bg-1);
    padding: 5px;
    border: 1px solid var(--bg-border-1);
    box-shadow: inset 0 0 5px 0px #000;
    border-radius: 5px;
}

.block-inner {
    position: relative;
    margin-bottom: 5px;
    padding: 10px;
    border: 1px solid var(--bg-border-1);
    box-shadow: 0 0 3px 0px #000;
    border-radius: 5px;
    background: linear-gradient(var(--bg-3), var(--bg-2));
}

.block-inner:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.description {
    position: relative;
    padding: 40px;
    margin: 40px 0;
}

.description .short {
    text-align: center;
    font-size: 22px;
}

.description .features {
    text-align: center;
    margin-top: 40px;
}

.description .features .text {
    color: var(--text-3);
    margin-bottom: 20px;
    text-align: left;
}

.description .features .list {
    text-align: left;
}

.description .features .list > div {
    position: relative;
    margin-bottom: 15px;
}

.description .features .list > div.d {
    padding-left: 20px;
}

.description .features .list > div.d:before {
    content: '';
    position: absolute;
    top: 8px;
    left: -1px;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    background: #d0cda2;
}

.description .features .list > div:last-child {
    margin-bottom: 0;
}

.description .features .list > .more {
    color: var(--text-4);
}

.class-list {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.class-list .text {
    text-align: center;
    font-size: 25px;
    margin-bottom: 40px;
    color: var(--text-3);
}

.class-list .list {
    display: flex;
    justify-content: center;
}

.class-list .list > div {
    margin-left: -80px;
}

.class-list .list > div .name {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.class-list .list > div .icon {
    width: 150px;
    height: 150px;
}

.class-list .list > div .icon img {
    width: 100%;
}

.site-logo {
    height: 200px;
    margin: 40px 0;
    text-align: center;
}

.site-logo img {
    height: 100%;
}

.media {
    margin: 40px 0;
    padding: 40px;
}

.media .text {
    text-align: center;
    font-size: 24px;
}

.media .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.media .list > div {
    width: 340px;
    height: auto;
    flex-shrink: 0;
}

.media .list > div img {
    width: 100%;
    height: 100%;
}

.links {
    padding: 40px;
    margin: 40px 0;
}

.links .text {
    text-align: center;
    font-size: 32px;
}

.links .options {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.links .options > div {
    text-align: center;
    padding: 30px;
    width: 400px;
}

.links .options > div a {
    display: block;
    margin: auto;
    margin-top: 20px;
}

.links .options > div a .button-2 {
    display: flex;
    width: 180px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.links .options > div .t {

}

.footer {
    background: #121212;
    border-top: 1px solid #272727;
    padding: 60px 0;
    width: 100%;
    margin-top: 80px;
    text-align: center;
}

.footer .cr {
    margin-top: 10px;
}

@media (max-width: 1200px) {
    body {
        background: #040202;
    }

    .site-logo {
        height: 120px;
        margin: 20px;
    }

    .container {
        padding: 0 10px;
    }

    .media .list > div {
        width: 100%;
    }

    .class-list {
        position: static;
        margin-top: 20px;
    }

    .class-list .list > div {
        margin-left: 0;
        width: 20%;
    }

    .class-list .list > div .icon {
        width: 100%;
        height: 100%;
    }

    .links .options {
        display: block;
        margin-top: 20px;
    }

    .media .list {
        margin-top: 20px;
    }

    .links .options > div {
        width: 100%;
    }

    .description {
        padding: 20px;
        margin: 20px 0;
    }

    .links {
        padding: 20px;
        margin: 20px 0;
    }

    .links .text {
        font-size: 20px;
    }

    .links .options > div .t {
        font-size: 14px;
    }

    .media {
        padding: 20px;
        margin: 20px 0;
    }

    .description .short {
        font-size: 16px;
    }

    .description .features .list > div.d {
        font-size: 14px;
    }

    .footer {
        margin-top: 40px;
    }

    .description .features {
        margin-top: 20px;
    }

    .description .features .text {
        font-size: 14px;
    }

    .description .features .list > .more {
        font-size: 14px;
    }
}

.title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
}

.privacy {
    padding: 0 20px;
}

.privacy .subtitle {
    font-size: 16px;
    margin: 20px 0;
    color: var(--text-2);
}

.privacy .text {
    font-size: 16px;
    margin: 10px 0;
    color: var(--text-3);
}

.auth {
    margin: 20px auto;
    width: 90%;
    background: #262626;
    padding: 10px;
}

.auth .name {
    color: var(--text-2);
}

.auth input {
    margin: 10px 0;
}

.auth .submit {
    margin:  0 auto;
}