:root {
    --montserrat-family: 'Montserrat', sans-serif;
    --raleway-family: 'Raleway', sans-serif;
}
* {
    box-sizing: border-box;
}
body {
    font-family: var(--montserrat-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}
body.hidden {
    overflow: hidden;
}
/*body::-webkit-scrollbar {*/
/*    width: 8px;*/
/*}*/
/*body::-webkit-scrollbar-track {*/
/*    background: #f1f1f1;*/
/*}*/
/*body::-webkit-scrollbar-thumb {*/
/*    background: #00594D;*/
/*    transition: all 500ms ease;*/
/*}*/
/*body::-webkit-scrollbar-thumb:hover {*/
/*    background: #0E0E0E;*/
/*}*/
::selection {
    background: #00594D;
    color: #ffffff;
}
a {
    text-decoration: none;
    transition: all 300ms ease;
}
.container {
    width: 100%;
    max-width: 1198px;
    padding: 0 14px;
    margin: 0 auto;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px;
}
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8 , .col9, .col10, .col11, .col12 {
    margin: 0 14px;
}
.col1 {
    width: calc(100% / 12 * 1 - 28px);
}
.col2 {
    width: calc(100% / 12 * 2 - 28px);
}
.col3 {
    width: calc(100% / 12 * 3 - 28px);
}
.col4 {
    width: calc(100% / 12 * 4 - 28px);
}
.col5 {
    width: calc(100% / 12 * 5 - 28px);
}
.col6 {
    width: calc(100% / 12 * 6 - 28px);
}
.col7 {
    width: calc(100% / 12 * 7 - 28px);
}
.col8 {
    width: calc(100% / 12 * 8 - 28px);
}
.col9 {
    width: calc(100% / 12 * 9 - 28px);
}
.col10 {
    width: calc(100% / 12 * 10 - 28px);
}
.col11 {
    width: calc(100% / 12 * 11 - 28px);
}
.col12 {
    width: calc(100% - 28px);
}
.wrapper.content_center {
    justify-content: center;
}
.wrapper.content_between {
    justify-content: space-between;
}
.wrapper.content_around {
    justify-content: space-around;
}
.wrapper.content_right {
    justify-content: flex-end;
}
.wrapper.vertical_bottom {
    align-items: flex-end;
}
.wrapper.vertical_top {
    align-items: flex-start;
}
.wrapper.vertical_center {
    align-items: center;
}
.wrapper.vertical_normal {
    align-items: normal;
}
button, .btn {
    font-family: var(--montserrat-family);
    font-size: 18px;
    line-height: 21px;
    background-color: #E7A320;
    color: #fff;
    padding: 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.25rem;
    border: none;
}
@media screen and (max-width: 960px) {
    button, .btn {
        font-size: 16px;
        line-height: 1.1666666667;
    }
}
@media screen and (max-width: 576px) {
    button, .btn {
        font-size: 14px;
    }
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}
h1, .h1 {
    font-family: var(--raleway-family);
    font-weight: 900;
    font-size: 36px;
    line-height: 42px;
    color: #00594D;
    display: flex;
    text-transform: uppercase;
    margin: 0;
}
h1:before, .h1:before {
    content: "";
    display: inline-block;
    width: 0px;
    height: 0.75em;
    border-left: 2px solid #222222;
    margin-top: 0.25em;
    margin-right: 16px;
}
.h1-descr {
    padding-left: 17px;
    width: 470px;
    max-width: 100%;
    font-family: var(--raleway-family);
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #959595;
    margin-top: 23px;
}
@media (max-width: 992px) {
    h1, .h1 {
        font-size: 30px;
        line-height: 1.17;
    }
}
