:root {
    --base-font-family: Arial, Helvetica, sans-serif;
    --base-font-size: 17px;    
    --primary-color: #f47436;
    --secondary-color: #c0cecd;
    --secondary-dark-color: #6b7272;
    --secondary-light-color: #e9f0ea;
}

/* reset
------------------------------------------------ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
    border: 0;

    vertical-align: baseline;
}
body {
    line-height: 1;

    word-wrap: break-word;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
q:before,
blockquote:after,
q:after {
    content: none;
    content: "";
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font: var(--base-font-size);
    line-height: 1.5;
    font-family: var(--base-font-family);
    color: #333;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
}

.content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1;
}

/* cols
------------------------------------ */
.flexible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col {
    margin-left: 2.12766%;
}
.col:first-child:not(.col-offset) {
    margin-left: 0;
}
.col-1 {
    width: 6.38298%;
}
.col-2 {
    width: 14.89362%;
}
.col-2:nth-child(6n + 1) {
    margin-left: 0;
}
.col-3 {
    width: 23.40426%;
}
.col-3:nth-child(4n + 1):not(.col-offset) {
    margin-left: 0;
}
.col-4 {
    width: 31.91489%;
}
.col-4:nth-child(3n + 1) {
    margin-left: 0;
}
.col-5 {
    width: 40.42553%;
}
.col-6 {
    width: 48.93617%;
}
.col-6:nth-child(2n + 1) {
    margin-left: 0;
}
.col-7 {
    width: 57.44681%;
}
.col-8 {
    width: 65.95745%;
}
.col-9 {
    width: 74.46809%;
}
.col-10 {
    width: 82.97872%;
}
.col-11 {
    width: 91.48936%;
}
.col-12 {
    width: 100%;
}

/* typography
------------------------------------ */
.title {
    margin: 36px 0 24px;
    font-weight: normal;
    line-height: 1.1;
    font-weight: 400;
}
.title:first-child {
    margin-top: 0;
}
.title:last-child {
    margin-bottom: 0;
}
.title.is-1 {
    font-size: 48px;
    font-size: 3rem;
}
.title.is-2 {
    font-size: 28px;
    font-size: 1.75rem;
}
.title.is-3 {
    font-size: 24px;
    font-size: 1.5rem;
}
.title.is-4 {
    font-weight: bold;
    font-size: 16px;
    font-size: 1rem;
}
.title.is-5 {
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
}
.title.is-6 {
    font-weight: bold;
    font-size: 12px;
    font-size: 0.75rem;
}

p {
    margin-bottom: 16px;
}
p:last-child {
    margin-bottom: 0;
}

.content-single {
    margin: 48px 0;
}
.content-single ul {
    margin: 24px 0;
}
.content-single ul ul {
    margin: 0 0 0 24px;
}
.content-single ul li {
    position: relative;
    margin: 4px 0;
    padding: 0 0 0 32px;
}
.content-single ul li:before {
    position: absolute;
    top: 9px;
    left: 18px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 100px;

    background: #000;
    content: "";
}
.content-single a {
    color: var(--primary-color);
}

strong {
    font-weight: bold;
}

table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}
table tr {
    border-bottom: 1px solid var(--secondary-color);
}
table thead tr {
    background: var(--secondary-color);

}

table tbody th {
    background: var(--secondary-light-color);
}
table td,
table th {
    padding: 8px 16px;
}
table th {
    font-weight: bold;
    text-align: left;
}

.taxonomy-columns-item {
    margin-bottom: 56px;
    text-align: center;
}
.taxonomy-columns-thumnail {
    max-height: 136px;
}
.taxonomy-columns-title {
    margin-top: 8px;
}

.description {
    font-size: 22px;
    margin-bottom: 48px;
}
.description p:first-child {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
}


/* forms
------------------------------------ */
.field {
    width: 100%;
    padding: 0 16px;
    line-height: 48px;
    font-family: inherit;
    border-radius: 10px;
    box-sizing: border-box;
    min-height: 48px;
    border: 0;
    font-weight: bold;
    font-size: 12px;
}
.field:focus {
    outline: 1px solid var(--primary-color);
}
.addCompany .field {
    border: 1px solid lightgray;
}
.text-field {
    padding: 8px;
    line-height: 1.2;
}
.label {
    display: block;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;

    margin-bottom: 5px;
}
.btn {
    display: inline-block;
    padding: 8px 16px 9px;
    height: 48px;
    line-height: 48px;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    font-family: inherit;
    text-decoration: none;
    border: 0;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    vertical-align: middle;
    width: 100%;
    text-align: center;
}
.form-item {
    margin: 0 0 16px;
}
.form-fieldset {
    padding: 24px;
    border: 1px solid lightgray;
    border-radius: 3px;
    margin-bottom: 24px;
}

/* search
------------------------------------ */
.search-form {
    position: relative;
    background: #fff;
    color: #000;
}
.section-main-color .search-form {
    color: #fff;
    border-radius: 3px;
}
.search-form-field {
    height: 24px;
    line-height: 24px;
    border: 0;
    border-radius: 1px;

    background: transparent;
    min-width: 280px;
}
.search-form-btn {
    position: absolute;
    top: 6px;
    right: 4px;
    padding: 0;
    color: inherit;
    border: 0;

    background: transparent;
    cursor: pointer;
}
.search-toggle-btn {
    position: relative;
    z-index: 9999;
    display: none;
    width: 22px;
    height: 18px;

    vertical-align: middle;
}
.search-toggle-btn.active {
    color: #fff;
}
.search-toggle-btn.active:before,
.search-toggle-btn.active:after {
    top: auto;
    right: 0;
    bottom: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    border: 0;
    border-radius: 0;

    background: #fff;
}
.search-toggle-btn.active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search-toggle-btn.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.search-toggle-btn.active:hover {
    color: #fff;
}
.search-toggle-btn:before {
    position: absolute;
    top: -1px;
    left: 0;
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid currentcolor;
    border-radius: 100px;

    content: "";
}
.search-toggle-btn:after {
    position: absolute;
    right: 2px;
    bottom: 1px;
    display: block;
    width: 8px;
    height: 2px;

    background: currentColor;
    content: "";
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

/* media
------------------------------------ */
img {
    height: auto;
    border-radius: 3px;

    max-width: 100%;
}
.alignleft {
    float: left;

    margin-right: 24px;
    margin-bottom: 24px;
}
.aligncenter {
    display: block;
    margin: 0 auto 16px;
    text-align: center;
}
.wp-caption {
    padding: 0 0 5px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;

    background: #f3f3f3;
    max-width: 100%;
}
.wp-caption .wp-caption-text {
    margin: 0;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 17px;
}
.wp-caption img,
.wp-caption.alignright img,
.wp-caption.alignleft img,
.wp-caption.aligncenter img {
    height: auto;
    margin: 0 auto;
    padding: 4px 0 0;

    max-width: 99%;
}
.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.aligncenter {
    height: auto;
}
.wp-caption p {
    margin-bottom: 0;
}
.youtube {
    position: relative;
    height: 0;

    margin-bottom: 24px;
    padding-bottom: 56.25%;
}
.youtube iframe,
.youtube object,
.youtube embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* layout
------------------------------------ */
.header {
    background: #7f99a5;    
    color: #fff;
}
.footer {
    background: #7f99a5;
    font-size: 14px;
    font-weight: bold;
    padding: 24px 0;
    color: #fff;
}

.header a {
    color: inherit;
}
.footer a {
    text-decoration: underline;
    color: inherit;
}
.logo {
    color: inherit;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding-left: 42px;
    background: url('img/logo.png') left center no-repeat;
    display: inline-block;
}

.section-description .title {
    color: #424242;
}
.section-white {
    background: #fff;
}
.section-banner {
    background: url('img/banner.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
}
.top-banner {
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.35);
}

.container {
    width: 100%;
    margin: auto;

    max-width: 1280px;
}
.section {
    padding: 48px 0;
}
.section-wide {
    padding: 8px 0;
}
.section-description {
    font-size: 22px;
    margin-bottom: 32px;
}

.children {
    margin-left: 32px;
}
.categories {
    margin-bottom: 32px;
}
.categories-list li {
    display: inline-block;
    margin: 0 8px 8px 0;
    padding: 8px 24px;
    background: var(--secondary-color);
    border-radius: 5px;
    font-size: 14px;
}
.categories-list a {
    text-decoration: none;
    color: inherit;
}


.info-line {
    font-size: 14px;
    margin-bottom: 16px;
}

.content-item {
    padding: 24px 0;
}

.letters-item {
    font-weight: bold;
    margin-bottom: 32px;
}

/* to-top
------------------------------------ */
#to-top {
    background: #3b5822;
    position: fixed;
    bottom: 24px;
    left: 16px;
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 3px;
    opacity: 0.7;

    cursor: pointer;
}
#to-top:hover {
    opacity: 1;
}
#to-top:before {
    position: absolute;
    top: 50%;
    left: 50%;

    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    margin-left: -10px;
    margin-top: -6px;
}


.post {
    margin-bottom: 32px;
}


@media only screen and (max-width: 1280px) {
    .container {
        width: 94%;
    }

    table td,
    table th {
        min-width: 149px;
        box-sizing: border-box;
    }
}
@media only screen and (max-width: 870px) {
    .flexible {
        display: block;
    }

    .col-md-6 {
        width: 48.93617%;
    }
    .col-md-6:nth-child(2n + 1) {
        margin-left: 0;
    }
    .col-md-12 {
        width: 100%;

        margin-bottom: 24px;
        margin-left: 0;
    }    
    thead { display: none; }    
    table td,
    table th {
        display: block;
        padding: 24px 16px;
        min-width: 100%;
    }
    table th {
        background: #dcd8cd;
    }

    tbody td:before { 
        content: attr(data-th); 
        font-weight: bold;
        display: inline-block;
        width: 40%;  
    }
    tbody td.not-title:before {
        content: "";
        display: none;
    }
    table tbody tr:hover {
        background: none;
    }

    .search-toggle-btn {
        display: inline-block;
    }
    .search-form-field {
        min-width: 100%;
        height: 48px;
        line-height: 48px;
    }
    .toggle-menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        display: none;
        width: 100%;
        height: 100%;
        padding: 80px;
        text-align: center;

        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: #363635;
        opacity: 0.95;
    }
}
@media only screen and (max-width: 580px) {
    .col-sm-12 {
        width: 100%;

        margin-bottom: 24px;
        margin-left: 0;        
    }
}
@media only screen and (max-width: 400px) {
    tbody td:before {
        display: block;
        width: 100%;
    }
    table td,
    table th {
        padding: 8px;
        border-bottom: 1px solid #d7d7d7;
    }
    .toggle-menu {
        padding: 80px 16px;
    }
}

.advice {
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    max-width: 240px;
    position: fixed;
    bottom: 42px;
    right: 42px;
    background: #fff;
    padding: 24px;
    border-radius: 3px;
    border: 1px solid #e1ecd7;
    font-size: 14px;
    transition: visibility 0s, opacity 1s linear;
    box-sizing: border-box;
    box-shadow: 0 0 16px 0 rgba(0,0,0,0.2);
    
}
.advice-title {
    font-weight: bold;
    text-decoration: underline;
    font-size: 16px;
}
.advice a {
    color: inherit;
    text-decoration: none;
}
.advice-thumb {
    margin-bottom: 8px;
}
.advice-active {
    visibility: visible;
    opacity: 1;
}
@media only screen and (max-width: 600px){
    .advice {
        max-width: 92%;
        margin: 0 auto;
        left: 0;
        right: 0;
        bottom: 16px;
        padding: 16px;
    }
    .advice-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .advice-thumb {
        width: 40%; 
        margin-bottom: 0;
    }
    .advice-item {
        width: 56%;
        margin-left: 2.12766%;
    }
    .advice-title {
        font-size: 18px;
        line-height: 1.2;
    }
}
.advice-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
}
.advice-close:after,
.advice-close:before {
    top: 5px;
    background: #d8d8d8;
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
}
.advice-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.advice-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.double-ads {
    text-align: center;
    margin: 48px 0 0;
}
.double-ads-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}

.banner {
    display: block;
    padding: 0.7em 1em 0.7em 0.7em;
    text-decoration: none;
    color: inherit;
    margin-bottom: 24px;
    border: 1px solid #d7d7d7;
    overflow: hidden;
}
.banner-title {
    font-weight: bold;
    font-size: 20px;
    font-size: 1.25rem;
}
.banner-subtitle span {
    padding: 4px 13px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;

    background: #996600;
}
.banner-subtitle {
    margin: 8px 0 16px;
}
.banner-content {
    overflow: hidden;
}
.banner-img {
    float: left;
    margin: 8px 16px 0 0;
}

.company-title {
    font-size: 17px;
    padding: 16px;
}