/***************************************
*General
****************************************/

body {
    font-family: "Jost", sans-serif;
    color: #3d3d3d;
    font-size: 17px;
    font-weight: 400;
    line-height: 2em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #f3c108;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.42em;
    letter-spacing: 0.25em;
    margin-bottom: 19px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.sub-title:before {
    content: '';
    background-color: #fffae8;
    height: 11px;
    width: calc(100% + 8px);
    position: absolute;
    left: -5px;
    bottom: 0;
    border-radius: 5px;
    z-index: -1;
}

.sect-title h2,
.sect-title .h2,
.bloc-title {
    font-weight: 900;
    font-size: 30px;
    color: #3d3d3d;
    line-height: 1.5em;
    margin-bottom: 49px;
    text-transform: uppercase;
    position: relative;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    font-weight: 900;
    font-size: 32px;
    color: #3d3d3d;
    line-height: 1.65em;
    margin-bottom: 22px;
    text-transform: uppercase;
    position: relative;
}


/** Back to top **/

#totop {
    display: none;
    position: fixed;
    right: 35px;
    bottom: 98px;
    z-index: 999;
    height: 0;
    width: 0;
    text-align: center;
    padding-top: 3px;
    background-color: #f3c108;
    border-radius: 50%;
    height: 46px;
    visibility: hidden;
    width: 46px;
    padding: 5px 0;
}

#totop.top-visible {
    display: inline-flex !important;
    align-items: center;
    visibility: visible;
    justify-content: center;
}


/* Preloader */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 140px;
}


/** Slider **/

.slide-controls button {
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: relative;
    align-items: center;
    justify-content: center;
    background: none;
    min-height: auto;
    height: auto;
    width: auto;
    color: inherit;
    display: inline-flex;
    font: inherit;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: none !important;
}

.slide-controls {
    display: flex;
    position: relative;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.slide-controls .swiper-button-next:after,
.slide-controls .swiper-button-prev:after {
    display: none;
}

.slide-controls .owl-prev,
.slide-controls .owl-next {
    width: 40px;
    height: 40px;
    background: #c49a56;
    display: flex;
    border: 0;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
}

.slide-controls .owl-prev:hover,
.slide-controls .owl-next:hover {
    background-color: #fff;
    border-color: #fff;
}

.slide-controls .owl-prev:hover svg path,
.slide-controls .owl-next:hover svg path {
    fill: #c49a56 !important
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
    gap: 10px;
}

.slide-controls .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    display: inline-block;
    opacity: 1;
}

.slide-controls .owl-dot.active {
    border-color: #c49a56;
    background: #c49a56;
}


/** Colors **/

.color--1 {
    color: #fff !important;
}

.color--2 {
    color: #f3c108 !important;
}

.color--3 {
    color: #2e9c37 !important;
}

.color--4 {
    color: #ccd510 !important;
}

.color--5 {
    color: #f39938 !important;
}

.color--6 {
    color: #e4231e !important;
}

.color--7 {
    color: #f1f1f1 !important;
}

.color--8 {
    color: #3d3d3d !important;
}

.color--9 {
    color: #52522b !important;
}

.color--10 {
    color: #696947 !important;
}


/** Background **/

.background--1 {
    background-color: #fff !important;
}

.background--2 {
    background-color: #f3c108 !important;
}

.background--3 {
    background-color: #2e9c37 !important;
}

.background--4 {
    background-color: #ccd510 !important;
}

.background--5 {
    background-color: #f39938 !important;
}

.background--6 {
    background-color: #e4231e !important;
}

.background--7 {
    background-color: #f1f1f1 !important;
}

.background--8 {
    background-color: #3d3d3d !important;
}

.background--9 {
    background-color: #52522b !important;
}

.background--10 {
    background-color: #696947 !important;
}


/** Socials **/

.social-links .social-link {
    color: #3d3d3d;
    height: 32px;
    width: 32px;
    font-size: 20px;
    border: 1px solid #3d3d3d;
    background-color: transparent;
    float: left;
    font-weight: normal;
    line-height: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    text-decoration: none !important;
    border-radius: 5px;
}

.social-links .social-link i.fa-facebook {
    padding-top: 2px;
    font-weight: 700;
}

.social-links .social-link.facebook {
    font-size: 18px;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links .social-link:not(:last-child) {
    margin-right: 18px;
}

.social-links .social-link:hover,
.social-links .social-link:focus {
    background-color: #f3c108;
    color: #3d3d3d;
}


/** Variables **/

p {
    margin-bottom: 2em;
}

section {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

figure {
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

.form-group {
    margin-bottom: 25px;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

.img-resp,
img {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

.form-control,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #191919;
    line-height: 1.2em;
    font-style: normal;
    vertical-align: middle;
    width: 100%;
    text-transform: inherit;
    outline: none;
    height: 60px;
    padding: 16px 27px;
    border: 1px solid #191919;
    background-color: #fff;
    margin: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #191919;
    border: 1px solid #191919;
    background-color: #fff;
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #191919 !important;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 110.1+ */
    color: #191919 !important;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #191919 !important;
}

textarea::placeholder {
    color: #191919 !important;
}

.btn-1,
.btn-2,
input[type="submit"],
input[type="button"] {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #191919;
    line-height: 1.2em;
    text-transform: none;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 15px 17px;
    height: 59px;
    border: 1px solid #191919;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: none;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(35, 31, 32, 0.08);
    box-shadow: 0 5px 10px 0 rgba(35, 31, 32, 0.08);
    text-decoration: none;
    overflow: hidden;
}

.btn-2 {
    height: 65px;
    min-width: 208px;
    font-size: 20px;
    background-color: transparent;
    padding: 15px 25px;
}

.btn-1 {
    min-width: 241px;
}

.btn-1:focus,
.btn-1:hover,
.btn-2:focus,
.btn-2:hover,
button:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
    color: #191919;
    background-color: #f3c108;
}

.text-align-last {
    -moz-text-align-last: center;
    text-align-last: center;
}

.text-hyphens {
    -ms-hyphens: auto;
    hyphens: auto;
}

.overlay {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.opacity-6 {
    opacity: 0.6;
}

.overflow-unset {
    overflow: unset !important;
}

.bg-gradient {
    background: rgb(46, 156, 55);
    background: -moz-linear-gradient(90deg, rgba(46, 156, 55, 1) 0%, rgba(204, 213, 16, 1) 25%, rgba(255, 203, 8, 1) 50%, rgba(243, 153, 56, 1) 75%, rgba(228, 35, 30, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(46, 156, 55, 1) 0%, rgba(204, 213, 16, 1) 25%, rgba(255, 203, 8, 1) 50%, rgba(243, 153, 56, 1) 75%, rgba(228, 35, 30, 1) 100%);
    background: linear-gradient(90deg, rgba(46, 156, 55, 1) 0%, rgba(204, 213, 16, 1) 25%, rgba(255, 203, 8, 1) 50%, rgba(243, 153, 56, 1) 75%, rgba(228, 35, 30, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#2e9c37", endColorstr="#e4231e", GradientType=1);
}

.width-50 {
    width: 50%;
}

.flex--1 {
    -ms-flex: 1;
    flex: 1;
}

.z-index--1 {
    z-index: 1 !important;
}

.z-index--2 {
    z-index: 2 !important;
}

.z-index--auto {
    z-index: auto !important;
}

.text-shadow {
    -webkit-text-shadow: 5px 0 24px rgba(35, 31, 32, 0.17);
    text-shadow: 5px 0 24px rgba(35, 31, 32, 0.17);
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.text-normal {
    text-transform: none !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-transform-none {
    text-transform: none !important;
}

.margin-b-30px {
    margin-bottom: 30px;
}

.margin-b-40px {
    margin-bottom: 40px;
}

.margin-l-neg15px {
    margin-left: -15px;
}

.margin-r-neg15px {
    margin-right: -15px;
}

.border-radius-10px {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.border-radius-20px {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.v-middle {
    transform: translateY(-50%);
    top: 50%;
}

.h-middle {
    transform: translateX(-50%);
    left: 50%;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-pos-bottom {
    background-position: bottom;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-repeat {
    background-repeat: repeat;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.top-0 {
    top: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.right-0 {
    right: 0 !important;
}

.width-50 {
    width: 50%;
}

.column-gap-30px {
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.column-gap-50px {
    -moz-column-gap: 50px;
    -webkit-column-gap: 50px;
    column-gap: 50px;
}

.column-count-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.position-sm-absolute {
    position: absolute !important;
}


/** Transition **/

img,
svg,
svg path,
svg circle {
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}


/** Extra Outer **/

body .page {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

body .site-main {
    background-color: #fff;
}


/***************************************
* Header
****************************************/

.site-navigation__menu,
.site-navigation__inner,
.main-header .site-navigation .menu ul li,
.site-header-menu__inner,
.main-header__wrap {
    position: relative;
}

.main-menu-toggle input[type=checkbox],
.main-menu-toggle {
    display: none;
}

.site-header-menu {
    position: relative;
    z-index: 1;
}

.main-header {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: none;
    position: absolute;
    z-index: 20;
}

.main-header:before {
    content: '';
    height: 10px;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgb(46, 156, 55);
    background: -moz-linear-gradient(90deg, rgba(46, 156, 55, 1) 0%, rgba(204, 213, 16, 1) 25%, rgba(255, 203, 8, 1) 50%, rgba(243, 153, 56, 1) 75%, rgba(228, 35, 30, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(46, 156, 55, 1) 0%, rgba(204, 213, 16, 1) 25%, rgba(255, 203, 8, 1) 50%, rgba(243, 153, 56, 1) 75%, rgba(228, 35, 30, 1) 100%);
    background: linear-gradient(90deg, rgba(46, 156, 55, 1) 0%, rgba(204, 213, 16, 1) 25%, rgba(255, 203, 8, 1) 50%, rgba(243, 153, 56, 1) 75%, rgba(228, 35, 30, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#2e9c37", endColorstr="#e4231e", GradientType=1);
    z-index: 2;
}

.main-header .site-navigation .menu>ul>li>a {
    font-size: 18px;
    font-weight: 400;
    color: #191919;
    line-height: 1.2em;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-header .site-navigation .menu ul ul>li a {
    font-size: 16px;
    font-weight: 700;
    color: #0c0c0c;
    line-height: 1.2em;
    display: block;
    text-decoration: none;
    position: relative;
    padding: 15px 13px;
}

.main-header .site-navigation .menu>ul>li.active>a,
.main-header .site-navigation .menu>ul>li:hover>a,
.main-header .site-navigation .menu>ul>li.hover>a {
    color: #f3c108;
}

.main-header .site-navigation .menu ul ul>li.active>a,
.main-header .site-navigation .menu ul ul>li:hover>a,
.main-header .site-navigation .menu ul ul>li.hover>a {
    color: #f3c108;
}

.menu__pre-estimation-link {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    color: #fff;
    padding: 10px 20px;
    background-color: #f3c108;
    display: flex;
    align-items: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.main-header .menu__pre-estimation-link:focus,
.main-header .menu__pre-estimation-link:hover {
    color: #fff;
    background-color: #191919;
}

.menu__pre-estimation-link img {
    margin-right: 17px;
}


/** Header top **/

.main-header__top {
    display: flex;
    height: 154px;
    padding: 39px 0 62px;
    background: #fff;
    color: #191919;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2em;
    -webkit-box-shadow: 0 5px 35px 0 rgb(35 31 32 / 13%);
    box-shadow: 0 5px 35px 0 rgb(35 31 32 / 13%);
}

.main-header__top ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.main-header__top ul li>a {
    display: flex;
    align-items: center;
}

.main-header__top ul li>a:hover {
    color: #f3c108;
}

.main-header__top ul li img {
    margin-right: 10px;
}


/***************************************
* Footer
****************************************/

.footer {
    position: relative;
}

.footer-title {
    font-size: 15px;
    line-height: 1.42em;
    color: #3d3d3d;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 18px;
}


/***************************************
* Bloc text / image
****************************************/

.bloc-text p:first-of-type img:first-of-type,
.bloc-text p:first-of-type img:nth-of-type(2),
.bloc-text p:first-of-type img:nth-of-type(3),
.bloc-text h2:first-of-type img:first-of-type {
    display: none;
}

.bloc-text {
    font-family: "Jost", sans-serif;
    color: #3d3d3d;
    font-size: 17px;
    font-weight: 400;
    line-height: 2em;
    position: relative;
}

.bloc-text ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 30px;
}

.bloc-text ol {
    list-style: decimal;
    margin-left: 30px;
    margin-bottom: 30px;
}

.line-height-165 {
    line-height: 1.65em;
}

.bloc-text p:last-of-type {
    margin-bottom: 0;
}

.bloc-text h2,
.bloc-text .h2 {
    font-weight: 700;
    font-size: 28px;
    color: #3d3d3d;
    line-height: 1.5em;
    text-transform: uppercase;
    margin-bottom: 10px;
}