* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'Times New Roman';
}

.section__row {
    margin-bottom: 30px;
}

.section__row:last-child {
    margin-bottom: 0px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.5s;
}

.section {
    padding: 90px 0;
}

@media (max-width: 1200px) {
    .section {
        padding: 60px 0;
    }
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

.eg-boxes .eg-boxes__boxes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -15px;
}

.eg-boxes .eg-boxes__box {
    padding: 15px;
    width: 25%;
}

@media (max-width: 1200px) {
    .eg-boxes .eg-boxes__box {
        width: 33.3333%;
    }
}

@media (max-width: 768px) {
    .eg-boxes .eg-boxes__box {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .eg-boxes .eg-boxes__box {
        width: 100%;
    }
}

.eg-boxes .eg-boxes__row {
    margin-bottom: 30px;
}

.eg-boxes .eg-boxes__row:last-child {
    margin-bottom: 0px;
}

.eg-boxes .eg-boxes__img {
    position: relative;
    padding: 15px;
}

.eg-boxes .eg-boxes__img > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    filter: brightness(100%) invert(0%);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.eg-boxes .eg-boxes__img::before {
    position: absolute;
    content: '';
    border-right: 3px solid #d0222d;
    border-bottom: 3px solid #d0222d;
    width: 90px;
    height: 90px;
    bottom: 0px;
    right: 0px;
}

.eg-boxes .eg-boxes__img::after {
    position: absolute;
    content: '';
    border-left: 3px solid #283476;
    border-top: 3px solid #283476;
    width: 90px;
    height: 90px;
    top: 0px;
    left: 0px;
}

.eg-boxes .eg-boxes__title{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}

.button {
    text-align: center;
}

.button .section__btn {
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
}

.table-section .table-section__title {
    color: #fff;
}

.table-section .table-section__content {
    padding: 64px;
    background-color: #283476;
}

@media (max-width: 1200px) {
    .table-section .table-section__content {
        padding: 16px!important;
    }
}

.responsive-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 1200px) {
    table th,
    table td {
        padding: 7.5px!important;
    }

    table .play-sound {
        font-size: 0!important;
    }

    table .play-sound svg {
        font-size: 16px!important;
    }
}

table th {
    background-color: #283476;
    border: 1px solid #283476;
    color: #fff;
}

table#light th {
    background-color: #fff;
    border: 1px solid #fff;
    color: #283476;
}

table td {
    border: 1px solid #E7E8E7;
}

table#light td {
    border: 1px solid #fff;
    color: #fff;
}

table td:first-child,
table td:last-child {
    border-left: 0!important;
    border-right: 0!important;
}

.section__btn {
    padding: 15px 30px;
    text-transform: uppercase;
    display: inline-block;
}

.section__btn--light {
    background-color: #fff;
    color: #283476;
}

.section__btn--dark {
    background-color: #000;
    color: #fff;
}

table td input {
    width: 100%;
    display: block;
}