@import '../fonts/font.css';
:root {
    --text-color: rgb(0, 0, 0);
    --default-color: rgb(255, 255, 255);
    --main-color: rgb(4, 74, 180);
    --secondary-color: rgb(4, 129, 226);
    --default-size: 14px;
    --default-indent: 15px;
    --default-font: 'ProximaNova-Regular', sans-serif;
    --default-weight: 400;
    --default-radius: 4px;
}
* {
    margin: 0;
    padding: 0;
}
p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
}
button:focus, input:focus, textarea:focus {
    outline: none;
}
img {
    max-width: 100%;
}
ul, ol {
    list-style-position: inside;
}
body {
    font-family: var(--default-font);
    font-size: var(--default-size);
    font-weight: var(--default-weight);
    color: var(--text-color);
}
.transition {
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.3);
}
.section_title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 35px;
    color: #2C2C2C;
}
.section_title img {
    margin-right: 15px;
}
.uppercase {
    text-transform: uppercase;
}
.yellow-check-list {
    list-style-image: url("/templates/custom/icon/check-list.png");
    list-style-position: outside;
    padding-left: 25px;
}
.all-btn {
    display: inline-block;
    text-align: center;
    color: var(--default-color);
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid transparent;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
    width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    min-width: 155px;
    border-radius: var(--default-radius);
    font-size: 11px;
    text-transform: uppercase;
}
.main-btn {
    color: var(--default-color);
    position: relative;
    background-size: 100% 200%;
    background-image: linear-gradient(180deg, #2b553c 0%, #143f35  50%, #2b553c 100%);
}
.main-btn:hover {
    color: var(--default-color);
    background-position: center 100%;
}
.yellow-btn {
    color: var(--default-color);
    position: relative;
    background-size: 100% 200%;
    background-image: linear-gradient(180deg, #FFC72F 0%, #BE9323 50%, #FFC72F 100%);
}
.yellow-btn:hover {
    color: var(--default-color);
    background-position: center 100%;
}
.secondary-btn {
    font-family: 'ProximaNova-Semibold', sans-serif;
    border-color: var(--main-color);
    color: var(--text-color);
}
.secondary-btn:hover {
    background-color: rgba(4, 47, 180, 0.1);
    box-shadow: 3px 3px 15px 0 rgba(4, 47, 180, 0.2);
}
.burger-menu {
    display: none;
    width: 50px;
    height: 50px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    padding: 5px;
    position: relative;
}
.burger-menu span {
    display: block;
    width: 38px;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    left: 5px;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
    cursor: pointer;
}
.burger-menu.open {
    border-radius: 25px;
    border-color: #ffffff;
    background-color: #ffffff;
}
.burger-menu.open span {
    background-color: #000000;
}
.burger-menu span:nth-child(1) {
    top: 11px;
}
.burger-menu span:nth-child(2) {
    top: 22px;
}
.burger-menu span:nth-child(3) {
    top: 22px;
}
.burger-menu span:nth-child(4) {
    top: 33px;
}
.burger-menu.open span:nth-child(1) {
    top: 0;
    opacity: 0;
}
.burger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}
.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}
.burger-menu.open span:nth-child(4) {
    top: 50px;
    opacity: 0;
}
.container-wide {
    max-width: 1720px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.text {
    margin-bottom: 35px;
}
.desktop-hide {
    display: none;
}
.menu-block {
    display: flex;
}

/*--------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1500px){
    .container-wide {
        max-width: 1170px;
    }
    .section_title {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 1200px){
    .container-wide {
        max-width: 970px;
    }
    .all-btn {
        min-width: 135px;
    }
}
@media screen and (max-width: 992px){
    .container-wide {
        max-width: 720px;
    }
}
@media screen and (max-width: 768px){
    .container-wide {
        max-width: 90%;
    }
    .burger-menu {
        display: block;
        z-index: 5;
    }
    .menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 35px 15px 15px 15px;
        background: var(--main-color);
        z-index: 3;
        width: 100vw;
        height: 100vh;
    }
}
@media screen and (max-width: 550px){
    .container-wide {
        max-width: 100%;
    }
}
@media screen and (max-width: 425px){

}