html {
    scroll-behavior: smooth;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
}

* {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body {
    font-size: 16px;
    color: #fff;
    background-color: #212132;
    font-family: sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.container-grid {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(37, 37, 54, 0.9);
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-wrapper .logo {
    font-size: 36px;
    line-height: 1;
    margin: 5px 0 15px;
    letter-spacing: -4px;
    font-family: revert;
    font-weight: bold;
    color: #cd1835;
}

.header-wrapper .action-buttons a {
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
}

.header-wrapper .action-buttons a.light-btn {
    font-weight: bold;
    box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
    background-color: #cd1835;
    border-radius: 25px;
    padding: 10px 32px;
    margin-left: 20px;
}

.header-wrapper .action-buttons a:hover {
    opacity: 0.9;
}

.topbar {
    box-shadow: inset 0 5px 25px 0 rgb(0 0 0 / 80%);
    background-color: #212132;
    margin-top: 70px;
}

.topbar-wrapper {
    height: 100%;
}

.topbar-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.topbar-wrapper ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}

.topbar-wrapper ul li a {
    width: 100%;
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
}
.topbar-wrapper ul li a span {
    font-size: 16px;
}

.topbar-wrapper img {
    height: 40px;
    margin-right: 10px;
}

.topbar-wrapper li:first-child img {
    height: 30px;
}

@media (max-width: 900px) {
    .topbar-wrapper img {
        height: 30px;
    }

    .topbar-wrapper li:first-child img {
        height: 22px;
    }

    .topbar-wrapper ul {
        flex-wrap: wrap;
    }

    .topbar-wrapper ul li {
        width: auto;
        flex: 0 0 50%;
    }

    .topbar-wrapper ul li a span {
        font-size: 13px;
    }
}

.main {
    overflow-x: hidden;
    position: relative;
    background-size: 100%;
    padding-top: 40px;
    padding-bottom: 25px;
}

.main h1, .main h2, .main h3, .main h4, .main h5, .main h6 {
    margin-bottom: 20px;
    line-height: 1.3;
}

.main h1 {
    font-size: 32px;
}

.main h2 {
    font-size: 28px;
}

.main h3 {
    font-size: 24px;
}

.main h4 {
    font-size: 20px;
}

.main h5 {
    font-size: 18px;
}

.main h6 {
    font-size: 16px;
}

.main p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.main p a {
    color: #fff;
    text-decoration: underline;
}

.main p a:hover {
    text-decoration: none;
}

.main ol, .main ul {
    padding-left: 25px;
    list-style-type: disc;
    font-size: 1.6rem;
    margin-bottom: 25px;
    margin-left: 10px;
}

.main ol {
    list-style-type: decimal;
}

.main ol li, .main ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.main table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 25px;
    border-spacing: 0;
}

.main table tr {
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}

.main table tr td, .main table tr th {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 10px;
    line-height: 1.4;
}

.main table tr th {
    font-weight: bold;
    font-size: 16px;
}

.benefits {
    background: #161626;
    border-top: 1px dashed #303036;
    border-bottom: 1px dashed #303036;
}

.benefits-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 20px;
    padding: 40px 0;
}

.benefit-item img {
    height: 35px;
    margin-right: 15px;
}

.benefit-item h4 {
    font-size: 18px;
}

.benefit-item p {
    padding-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #7d8196;
    display: inline-block;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .benefits-wrapper {
        flex-direction: column;
        padding: 40px 0 15px;
    }

    .benefit-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0 0 25px;
    }

    .benefit-item__info {
        text-align: center;
    }

    .benefit-item h4 {
        margin: 15px 0 10px;
    }
}

footer {
    background: #181821;
    padding-top: 40px;
}

footer h5 {
    color: #646a87;
    margin: 0 0 15px;
    border-bottom: 1px solid #222330;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    font-size: 17px;
    padding-bottom: 5px;
}

.partners-items, .payments-items {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
}

.partners-items img, .payments-items img {
    padding: 10px 15px;
    height: 50px;
}

.copyright {
    border-top: 1px dashed #303036;
    background: #171720;
    padding: 40px 0;
}

.copyright-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-wrapper div {
    width: 46%;
    margin: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright img {
    width: 40px;
    margin-left: 40px;
}

.copyright span {
    color: #646a87;
    font-size: 14px;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .copyright-wrapper {
        flex-direction: column;
    }

    .copyright img {
        margin-bottom: 15px;
        margin-left: 0;
    }

    .copyright-wrapper div {
        width: 100%;
        margin: 0;
        flex-direction: column-reverse;
        text-align: center;
    }

    .copyright-wrapper .copyright__right-side {
        margin-top: 25px;
    }
}

.content-action-button {
    text-align: center;
    margin: 50px 0;
}

.content-action-button a {
    text-decoration: none;
    border: 1px solid rgb(146, 148, 248);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 16px;
    color: #f4f4f4;
    text-transform: uppercase;
    box-shadow: 1px 1px 10px 5px rgba(146, 148, 248, 0.4);
}

.content-action-button a {
}

.main .slots-wrapper {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
}

.main .slots-wrapper div {
    padding: 8px 16px;
    height: 40px;
    border: 1px solid #fe284a;
    margin: 10px;
    font-size: 15px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.main h1 {
    font-size: 28px;
    text-align: center;
    color: #fe284a;
}

.main h2 {
    font-size: 24px;
    text-align: center;
    color: #fe284a;
}

.topbar-wrapper ul li:nth-child(1), .topbar-wrapper ul li:nth-child(2) {
    border-bottom: 1px solid #282c48;
}

.zerkalo-section_wrapper {
    margin: 40px 0 0;
    border: 1px solid #525e83;
    background: #282c48;
    border-radius: 12px;
    padding: 40px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.zerkalo-section h4, .zerkalo-section h4 span {
    color: #fe284a;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.zerkalo-section h4 span {
    font-size: 14px;
}

.zerkalo-section i {
    color: #646a87;
    font-style: normal;
    font-size: 12px;
}

.btn-zerkalo {
    text-decoration: none;
    border: 1px solid rgb(146, 148, 248);
    position: relative;
    overflow: hidden;
    font-size: 17px;
    font-weight: bold;
    padding: 16px 20px;
    color: #f4f4f4;
    text-transform: uppercase;
    margin: 30px 0;
}

.btn-zerkalo {
    box-shadow: 1px 1px 10px 5px rgba(146, 148, 248, 0.4);
}

.btn-zerkalo:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(146, 148, 248, 0.4), transparent);
    transition: all 1500ms;
}

.btn-zerkalo:hover:before {
    left: 100%;
}

.main table {
    margin-bottom: 0;
}

.main table thead th, .main table tbody td.divider-td {
    color: #fe284a;
    font-weight: bold;
}

.main .responsive-table {
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 25px;
}

@media (max-width: 900px) {
    .benefit-item img {
        margin-right: 0;
    }

    .header-wrapper .action-buttons a:first-child {
        display: none;
    }

    .header-wrapper .logo {
        margin: 0;
    }

    .header-wrapper .action-buttons a.light-btn {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .header-wrapper .logo {
        font-size: 32px;
        line-height: 1;
    }

    .header-wrapper .action-buttons a.light-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.apk-download {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background-color: #488aec;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    width: 180px;
    text-decoration: none;
    margin: 25px auto 10px;
}

.apk-download img {
    margin-right: 5px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}

nav li {
    margin: 10px;
    list-style: none;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 12px;
}

header ul {
    list-style: none;
}

main ul, ol {
    list-style: none;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}
main {
    margin-top: 60px;
}
@media (max-width: 850px) {
    .header-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    main {
        margin-top: 100px;
    }
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 8px;
    margin: 30px auto;
}
