.header .container {
    padding: 14px 30px!important;
}

.header .container .header__nav .nav__link {
    padding: 0 8px!important;
}

@media only screen and (max-width: 1260px) {
    .header .container .header__nav .nav__link {
        font-size: 14px!important;
    }
}

@media only screen and (max-width: 1120px) {
    .header .container {
        padding: 14px 15px!important;
    }

    .header .container .header__nav .nav__link {
        font-size: 13px!important;
        padding: 0 5px!important;
    }
}

/* Ads page */
.text-uppercase {
    text-transform: uppercase;
}

.mt-5 {
    margin-top: 50px !important;
}

.mt-3 {
    margin-top: 30px !important;
}

.page-title {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin: 20px auto;
    color: #465FAC;
    font-family: Akrobat, sans-serif;
    border-bottom: 1px solid #C5C5C5;
    display: table;
    padding-bottom: 5px;
}

h4.page-title {
    font-size: 24px;
}

.features_list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    font-size: 16px;
    font-weight: 400;
    padding: 25px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.feature_block {
    padding: 16px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.feature_block svg {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

.ads_button {
    padding: 16px 40px;
    background: #2B2B2B;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -.3px;
    text-transform: uppercase;
    color: #fff;
    font-family: Akrobat, sans-serif;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

a:hover {
    text-decoration: none !important;
}

table.ads-table {
    max-width: 672px;
    width: 100%;
    margin: 15px auto;
    font-size: 16px;
    border-radius: 10px;
    overflow: hidden;
    border-collapse: collapse;
    border-spacing: 0;
}

.ads-table-wrapper {
    display: block;
    max-width: 672px;
    width: 100%;
    margin: 0px auto;
    padding: 0px 20px;
    background-color: #F8F8EE;
    border-radius: 10px;
}

table.ads-table thead tr {
    background: #EEF1F8;
}

table.ads-table.revert-bg-color thead tr {
    background: #F8F8EE;
}

table.ads-table th {
    padding: 25px 15px 10px;
    border-bottom: 1px solid #C5C5C5;
}

table.ads-table tr:first-child td {
    padding: 25px 15px 10px;
}

table.ads-table tr:last-child td {
    border-bottom: 0;
}

table.ads-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #C5C5C5;
}

table.ads-table tr:last-child td {
    padding-bottom: 25px;
}

table.ads-table th:last-child, table.ads-table td:last-child {
    text-align: right;
}

table.ads-table tbody tr:nth-child(odd) {
    background-color: #EEF1F8;
}

table.ads-table.revert-bg-color tbody tr:nth-child(odd) {
    background-color: #F8F8EE;
}

table.ads-table tbody tr:nth-child(even) {
    background-color: #EEF1F8;
}

table.ads-table.revert-bg-color tbody tr:nth-child(even) {
    background-color: #F8F8EE;
}

.contact_list {
    display: flex;
    justify-content: center;
    max-width: 900px;
    gap: 15px;
    margin: 20px auto;
}

.contact_list .contact_block {
    position: relative;
    flex: 0 0 calc(33.33% - 10px);
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    padding: 15px 10px 20px 10px;
}

.contact_list .contact_block .block-content {
    position: relative;
    z-index: 2;
}

.contact_list .contact_block p {
    margin: 5px 0 10px;
}

.contact_list .contact_block svg {
    width: 64px;
    height: 64px;
}

.offer_list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 10px;
    margin: 30px auto;
    justify-content: center;
    max-width: 900px;
}

.offer_list .offer_block {
    flex: 0 0 calc(33.33% - 10px);
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
    font-size: 20px;
}

.offer_list .offer_block span {
    font-family: Akrobat, sans-serif;
    padding-top: 15px;
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

.offer_list .offer_block img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .offer_list {
        row-gap: 0;
        position: relative;
    }

    .offer_list .offer_block {
        flex: 0 0 100%;
        margin-bottom: 10px;
        text-align: left;
        display: flex;
        align-items: center;
    }

    .offer_list .offer_block span {
        display: inline;
        padding-left: 15px;
        max-width: calc(100% - 100px);
        padding-top: 0;
        margin: 0;
    }

    .offer_list .offer_block img {
        width: 80px;
        height: 80px;
    }

    .page-title {
        font-size: 24px;
    }

    h4.page-title {
        font-size: 16px;
    }

    .features_list {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 0 30px;
    }

    .feature_block {
        padding: 5px;
        text-align: left;
        display: flex;
        justify-content: center;
    }

    .feature_block svg {
        width: 50px;
        height: 50px;
    }

    .feature_block span {
        max-width: calc(100% - 50px);
        padding-left: 15px;
    }

    .contact_list {
        display: block;
    }

    .contact_list .contact_block {
        flex: 0 0 100%;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .contact_list .contact_block svg {
        width: 50px;
        height: 50px;
    }

    .contact_list .contact_block .block-content .text-content {
        padding-top: 10px;
    }
}