* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
    line-height: 1.2;
}

p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    color: #333;
    font-weight: normal;
    background: #F1F6FA;
    font-size: 16px;
    line-height: 1.4;
}
.bold {
    font-weight: 700;
}

.nobr {
    white-space: nowrap;
}

.main_title {
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    margin: 10px auto 20px auto;
}

.title_lvl2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.title_lvl3 {
    font-size: 24px;
    margin-left: 30px;
    font-weight: 700;
}

.arrow_title {
    position: relative;
    margin-left: 30px;
}

.arrow_title {
    font-size: 24px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    color: #434343;
}

.arrow1 {
    width: 40px;
    display: inline-block;
    margin-right: 20px;
}

.bulleted_list,
.ordered_list {
    margin-left: 50px;
}

#scrollTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 5px;
    right: 5px;
    box-shadow: 0 19px 38px 0 rgba(34,6,43,.3);
    border: none;
    border-radius: 50%;
    background: rgba(89,85,110,1);
    color: #fff;
    font-size: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: .5s ease;
    z-index: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    visibility: visible;
    opacity: 1;
}

#scrollTop svg {
    width: 25px;
    display: block;
    text-align: center;
}

#scrollTop.fade {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: .5s ease;
    z-index: -1;
}

.table_box {
    margin-bottom: 30px;
}
.table_box:last-child {
    margin-bottom: 0;
}

.table {
    table-layout: fixed;
    width: 100%;
    border: 2px solid #59556E;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}


.table caption {
    margin: 0 0 10px 0;
}

.table td,
.table th {
    padding: 5px;
    border: 2px solid #59556E;
}

.table .first_block {
    font-weight: 600;
    padding: 10px;
}

.article {
    padding: 0 70px 20px 70px;
    background: #fff;
}

.article p {
    margin: 15px 0;
}

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

.anchor_links__item {
    color: #279FDA;
}


.accordion_item {
    margin: 20px auto;
    box-shadow: 0 2px 15px rgba(194,216,234,1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.accTitle {
    color: #ccc;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    transition: 0.4s;
    background: #59556E;
}

.accTitle.active {
    color: #fff;
}

.accBody {
    padding: 0 15px;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion_item.active .accBody {
    max-height: 1000px;
    transition: all 0.3s ease;
}

.accBody .ordered_list {
    margin: 0 0 15px 50px;
}

@media all and (max-width: 992px) {

    .article {
        padding: 0 10px 15px;
    }

    .main_title {
        font-size: 24px;
    }

    .title_lvl2 {
        font-size: 24px;
    }

    .arrow_title {
        font-size: 22px;
        margin-left: 15px;
    }

    .arrow1 {
        max-width: 25px;
        min-width: 25px;
        margin-right: 10px;
    }

    .title_lvl3 {
        font-size: 18px;
        margin-left: 10px;
    }

    .bulleted_list, .ordered_list {
        margin-left: 25px;
    }

    #scrollTop {
        position: fixed;
        width: 40px;
        height: 40px;
    }

    #scrollTop svg {
        width: 15px;
    }

}

@media screen and (max-width: 767px) {
    .table {
        border: 0;
    }

    .table tr {
        border-bottom: 2px solid #59556E;
        display: block;
        margin-bottom: .625em;
    }

    .table td {
        border-bottom: 1px solid #59556E;
        display: block;
    }

    .table td:last-child {
        border-bottom: 0;
    }

    .table .first_block {
        text-align: center;
    }
}