* {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #fafafa;
    font-size: 14px;
}

/* grid */

.grid {
    width: 1280px;
    margin: 0 auto;
}

.img_wrap {
    text-align: center;
}

@media (min-width: 576px) {
    .grid {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .grid {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .grid {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .grid {
        width: 1140px;
    }
}

@media (max-width: 575px) {
    .grid {
        width: 94%;
    }
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: #05060a;
}

/* header */

.benefits {
    margin: 20px 0 30px;
}

.benefits ul {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style: none;
}

.benefits li {
    width: 25%;   
}

.benefits a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

.benefits li img {
    height: 50px;
    margin-bottom: 10px;
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.header_wrap span {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 900;
    color: #fe1e47;
    text-transform: uppercase;
}

.header_authentication a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fe1e47;
    box-shadow: 0 6px 22px 0 rgba(5, 109, 218, .3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    padding: 0 30px;
    height: 40px;
    font-size: 13px;
    margin-left: 10px;
}

.header_authentication a:first-child {
    background: transparent;
    box-shadow: none;
    text-decoration: underline;
}

@media (max-width: 425px) {
    .header_authentication a:first-child {
        display: none;
    }
}

/* main table */

.main-table {
    margin: 0 0 40px;
    border-radius: 16px 16px 0 0;
    background: #202533;
    background-image: linear-gradient(to right, #202533, #1c202b, #181b23, #14161c, #0f1014);
    padding-bottom: 15px;
}

/* anchors */

.anchors li {
    margin-bottom: 12px;
}

.anchors li a {
    color: #ffb129;
}

/* content */

.content section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 16px;
    background: #202533;
    background-image: linear-gradient(to right, #202533, #1c202b, #181b23, #14161c, #0f1014);
}

.content h2,
.content h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #fafafa;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 20px;
}

.content h3 {
    font-size: 17px;
}

.content p {
    line-height: 1.4;
    margin-bottom: 15px;
}

.content ol,
.content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content ol li,
.content ul li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.content ul li::marker,
.content ol li::marker {
    color: #ffb129;
}

.content .table-responsive {
    overflow-x: scroll;
    margin-bottom: 25px;
}

.content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.table-wrap {
    width: auto;
    overflow-y: scroll;
    margin-bottom: 25px;
}

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

table caption {
    padding-bottom: 10px;
} 

.content table td {
    border: 1px solid #ccc;
    padding: 10px;
    line-height: 1.5;
}

.main-table_wrap h1 {
    margin: 30px 0;
    text-align: center;
    color: #fe1e47;
    font-size: 20px;
}

.main-table_wrap {
    overflow-x: auto;
    margin: 0 10px;
}

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

.main-table table tr td {
    border: 1px solid #ccc;
    padding: 8px;
    line-height: 1.4;
}

.main-table table tr td:first-child {
    min-width: 160px;
}

/* footer */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

footer small {
    display: inline-flex;
    margin-bottom: 20px;
}

.toolbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    height: 50px;
}

.hamburger-menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #05060a;
}

.hamburger-menu>li {
    margin: 0 1rem;
    overflow: hidden;
}

.hamburger-menu>li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.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: #fff;
    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;
    }

    .hamburger-menu {
        z-index: 9999;
        position: absolute;
        top: 0;
        margin-top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.hamburger-menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.hamburger-menu li {
        display: flex;
        align-items: center;
        border: 1px solid #222;
        height: 2em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.hamburger-menu li:last-child {
        border: 0;
    }

    .hamburger-menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
    }

    .hamburger-menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

@media (max-width: 500px) {
    .header_authentication a {
        padding: 0 20px;
        height: 36px;
    }
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

figure img {
    border-radius: 14px;
    margin: 30px auto;
}

h1, h2, h3 {
    text-align: center;
}

h1 {
    font-size: 36px;
}

.content, p, table, ul, ol {
    font-size: 16px;
}

p {
    padding-top: 25px;
}