* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    outline: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #03060a;
    color: #fff;
    height: 50px;
    padding: 10px;
}

.logo-toggle-menu-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.logo-toggle-menu-wrap .logo {
    margin-left: 8px;
    color: #dc1f01;
    font-weight: 900;
    font-size: 24px;
}

.button-section a {
    text-decoration: none;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #ff2400;
}

.button-section a:last-child {
    background: #ff2400;
    margin-left: 10px;
}

.menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    z-index: 9999;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}
.menu > li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #80858f;
}
.menu-button-container {
    display: flex;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#menu-toggle {
    display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #a9a9a9;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}
.menu-button::before {
    content: "";
    margin-top: -8px;
}
.menu-button::after {
    content: "";
    margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}
@media (min-width: 100px) {
    .menu-button-container {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
        border: 1px solid #333;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li {
        display: flex;
        justify-content: flex-start;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #03060a;
    }
    .menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

.banner-wrap {
    text-align: center;
}

.intro p {
    align-self: center;
    text-align: center
}

.anchors-section ul {
    list-style: none
}

.anchors-section ul li a,
body a {
    text-decoration: none
}

.intro p,
footer {
    text-align: center
}

.content table,
table {
    width: 100%;
    border-collapse: collapse
}

html {
    scroll-behavior: smooth
}

body {
    background: #0e0f15;
    padding: 0;
    margin: 0;
}

/* benefits */

.benefits_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 15px;
    margin-bottom: 30px;
}

.benefit_item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 200px;
    margin-bottom: 25px;
    text-align: center;
}

.benefit_item span {
    color: #24ba9d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .benefit_item {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .benefit_item img {
        height: 40px;
    }
    .benefits_wrap {
        align-items: flex-start;
        padding: 0;
    }
    .benefit_item span {
        font-size: 14px;
    }
    /* .benefit_item {
        width: 100%;
    } */
}

.intro {
    flex-direction: column;
    padding: 15px 10px;
    max-width: 1280px;
}

.intro h1 {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}

.intro p {
    margin: 0 0 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #fff
}

.anchors-section {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
}

.anchors-section ul {
    background: #13171f;
    padding: 30px 15px 15px;
}

.anchors-section ul li {
    margin-left: 10px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.anchors-section ul li::marker {
    content: '#';
    color: #00BCD4;
}

.anchors-section ul li a {
    font-size: 15px;
    color: #00BCD4;
}

.anchors-section ul li a:hover {
    text-decoration: underline
}

.zerkalo-wrap {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    padding: 0 15px 15px;
    border-radius: 5px;
    margin-bottom: 40px;
    background-color: #13171f;
}

.zerkalo-wrap span {
    background: #24ba9d;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0 0 5px 5px;
    margin-bottom: 15px;
}

.zerkalo-wrap p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #969696;
}

.intro .zerkalo-wrap a {
    padding: 12px 32px;
    font-style: normal;
    font-weight: 500;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: .5s;
    background: #ff2400;
    color: #fff;
    text-transform: uppercase;
}

.content td,
td,
th {
    padding: 10px;
    line-height: 1.4;
    font-size: 14px;
}

table caption {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

table a {
    text-decoration: underline;
}

.content {
    margin: 0 auto;
    padding: 40px 10px;
}

.content a {
    color: #dc1f01;
}

.content h2 {
    margin: 0 0 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    color: #00BCD4;
}

.content ol li,
.content p,
.content ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    color: #fff;
    margin-bottom: 10px;
    font-size: 15px;
    margin-left: 15px;
}

.content ol,
.content p,
.content ul {
    margin: 0 0 25px;
    list-style-position: inside
}

footer {
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 12px
}

.content td,
.content tr {
    border: 1px solid #4b30bc
}

footer small {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1
}

thead {
    background: #0c0d22;
    color: #fff
}

thead th {
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 13px
}

tr:nth-child(2n) {
    background-color: #211a3e;
    background-color: var(--tr-even-bck)
}

.content table {
    border-spacing: 0;
    color: #fff
}

.content td {
    text-align: left;
    font-weight: 400
}

@media screen and (max-width: 425px) {
    .banner-wrap img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .logo-toggle-menu-wrap .logo {
        font-size: 22px;
        margin-left: 6px;
    }
    .button-section a {
        font-size: 14px;
        padding: 8px 16px
    }
    .button-section a:last-child {
        margin-left: 6px;
    }
    footer {
        padding: 18px 0
    }
    footer {
        border-radius: 0
    }
}

@media (max-width:768px) {
    .anchors-section {
        padding: 0 15px
    }
}

tbody {
    background: #13171f;
    color: #fff
}

th {
    border-right: 1px solid #000
}

td {
    border: 1px solid #000
}

#faq summary {
    font-size: 17px;
    color: #24ba9d;
    margin-bottom: 10px;
}

#faq details {
    margin-bottom: 20px;
}

.responsive-table {
    overflow-x: auto;
    width: auto;
    margin-bottom: 25px;
}

.list-style-none {
    list-style: none;
}
