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

body {
    font-family: "mundial", sans-serif;
    color: #74706c;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.68em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #508735;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.sub-title svg {
    margin-right: 14px;
}

.sect-title h2,
.sect-title .h2,
.bloc-title {
    font-family: "Source Serif 4", serif;
    font-weight: 700;
    font-size: 42px;
    color: #112236;
    line-height: 1.2em;
    margin-bottom: 55px;
    position: relative;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    font-family: "Source Serif 4", serif;
    font-weight: 700;
    font-size: 50px;
    color: #112236;
    line-height: 1.2em;
    margin-bottom: 40px;
    position: relative;
}


/** Back to top **/

#totop {
    display: none;
    position: fixed;
    right: 35px;
    bottom: 73px;
    z-index: 999;
    height: 0;
    width: 0;
    text-align: center;
    background-color: transparent;
    border-radius: 50%;
    height: 58px;
    width: 58px;
}

#totop.top-visible {
    display: inline;
}


/** Animation **/

[data-rellax-y] {
    transition: transform .25s ease-out;
    transition-delay: 2.5ms;
    will-change: transform;
}

@keyframes scaleOutIn {
    0% {
        transform: scale(1.2) translateZ(.1px)
    }
    to {
        transform: scale(1)
    }
}

.scaleOutIn {
    animation-name: scaleOutIn;
    animation-timing-function: cubic-bezier(0.15, 0.7, 0.78, 1);
}


/** 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 **/

.swiper-slider {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slide-controls .swiper-button-next,
.slide-controls .swiper-button-prev,
.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;
    align-items: center;
    gap: 12px;
}

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

.slide-controls .swiper-button-prev,
.slide-controls .swiper-button-next {
    width: 33px;
    height: 33px;
    background: #fff;
    display: flex;
    border: 2px solid #06467c;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
}

.slide-controls .swiper-button-prev:hover,
.slide-controls .swiper-button-next:hover {
    background-color: #06467c;
    border-color: #06467c;
}

.slide-controls .swiper-button-prev:hover svg path,
.slide-controls .swiper-button-next:hover svg path {
    fill: #fff !important
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-bullets {
    top: 50%;
    display: table;
    width: auto;
    right: 10px;
    left: auto;
    transform: translateY(-50%) rotate(-90deg);
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    transition: box-shadow 0.3s ease;
    background: transparent;
    width: 22px;
    height: 22px;
    margin: 6px !important;
    position: relative;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover,
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    box-shadow: 0 0 0 2px #eeeeee;
    border: none;
    border-radius: 50%;
    background: transparent;
    width: 22px;
    height: 22px;
    outline: none;
    opacity: 1;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:after {
    position: absolute;
    transition: background-color 0.3s ease, transform 0.3s ease;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    background-color: rgba(238, 238, 238, 0.38);
    text-indent: -999em;
    cursor: pointer;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover:after,
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: scale(0.4);
    -webkit-transform: scale(0.45);
    background-color: #eeeeee;
}


/** Colors **/

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

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

.color--3 {
    color: #112236 !important;
}

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

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

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

.color--7 {
    color: #1a304d !important;
}


/** Background **/

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

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

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

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

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

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

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


/** Socials **/

.social-links .social-link i {
    color: #fff;
    height: 42px;
    width: 42px;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    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: 50%;
}

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

.social-links .social-link span {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25em;
    text-transform: uppercase;
    margin-left: 15px;
}

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

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

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

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

.social-links .social-link:hover i,
.social-links .social-link:focus i {
    background-color: #a0b050;
    color: #fff;
}


/** Variables **/

p {
    margin-bottom: 1.68em;
}

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

section.line-b-ver:after,
section.line-t-ver:before {
    content: '';
    width: 1px;
    height: 62px;
    background-color: rgba(119, 119, 119, 0.25);
    position: absolute;
    left: 50%;
    top: 0;
}

section.line-b-ver:after {
    top: unset;
    bottom: 0;
}

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: "mundial", sans-serif;
    color: #74706c;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.2em;
    font-style: normal;
    vertical-align: middle;
    width: 100%;
    text-transform: inherit;
    outline: none;
    height: 62px;
    padding: 16px 27px 21px 27px;
    border: 1px solid #112236;
    background-color: #fff;
    margin: 0;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    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: #74706c;
    border: 1px solid #112236;
    background-color: #fff;
}

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

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

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

textarea::placeholder {
    color: #74706c !important;
}

.btn-1,
.btn-2,
input[type="submit"],
input[type="button"] {
    font-family: "mundial", sans-serif;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: none;
    font-size: 16px;
    padding: 10px 25px;
    height: 52px;
    text-align: center;
    position: relative;
    color: #112236;
    background-color: #fff;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    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: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
}

.btn-1,
.btn-2 {
    min-width: 206px;
}

.btn-1,
.btn-2 {
    margin-right: 40px;
}

.btn-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #112236;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
}

.btn-txt>span {
    position: relative;
    overflow: hidden;
    text-decoration: inherit;
}

@keyframes MoveUpInitial {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -30%, 0);
    }
    100% {
        transform: translate3d(0, -105%, 0);
    }
}

@keyframes MoveUpEnd {
    0% {
        transform: translate3d(0, 100%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.btn-2:hover .btn-txt>span,
.btn-1:hover .btn-txt>span {
    animation: MoveUpInitial .2s forwards, MoveUpEnd .2s forwards .2s;
}

.btn-ico {
    position: absolute;
    right: -40px;
    left: auto;
    width: 52px;
    height: 52px;
    background-color: #3c79ab;
    top: 0;
    border-radius: 50%;
    text-align: center;
    transform: translate3d(0, 0, 0) rotateZ(0);
    transform-style: preserve-3d;
    transition: all .5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-2 .btn-ico {
    background-color: #1a304e;
}

.btn-2:hover .btn-ico,
.btn-1:hover .btn-ico {
    transform: translate3d(10px, 0, 0) rotateZ(40deg);
}

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

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

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

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

.opacity-25 {
    opacity: 0.25;
}

.overlay-gradient {
    content: '';
    background: rgb(2, 10, 27);
    background: -moz-linear-gradient(36deg, rgba(2, 10, 27, 1) 10%, rgba(4, 18, 45, 0) 100%);
    background: -webkit-linear-gradient(36deg, rgba(2, 10, 27, 1) 10%, rgba(4, 18, 45, 0) 100%);
    background: linear-gradient(36deg, rgba(2, 10, 27, 1) 10%, rgba(4, 18, 45, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#020a1b", endColorstr="#04122d", GradientType=1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

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

.image-shadow {
    -webkit-box-shadow: 8px 0 13px 0 rgb(0 0 0 / 10%);
    box-shadow: 8px 0 13px 0 rgb(0 0 0 / 10%);
}

.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-800 {
    font-weight: 800 !important;
}

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

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

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

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

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

.margin-t-210px {
    margin-top: 210px;
}

.margin-t-68px {
    margin-top: 68px;
}

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

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

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

.margin-t-neg68px {
    margin-top: -68px;
}

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

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

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

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

.border-tr-radius-50px {
    border-top-right-radius: 50px;
}

.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%;
}

.gap-30px {
    gap: 30px;
}

.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: #e8e8e8;
    overflow: hidden;
}

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


/***************************************
* 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: 999;
}

.main-header .site-navigation .menu>ul>li>a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2em;
    position: relative;
    display: block;
    text-transform: uppercase;
}

.main-header .site-navigation .menu ul ul>li a {
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2a2f35;
    line-height: 1.28em;
    display: block;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
}

.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: #fff;
}

.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: #3c79ab;
}


/** Other link **/

.other-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.other-links a.menu__contact-phone-link {
    height: 52px;
    padding: 14px 29px;
    background-color: #112236;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
    color: #fff;
    border-radius: 25px;
    margin-left: 8px;
}

.other-links a.menu__free-quote-link {
    text-transform: uppercase;
    min-width: auto;
    padding: 10px 33px;
    background-color: #e8e8e8;
    border-color: #e8e8e8;
}

.other-links a.menu__free-quote-link .btn-ico {
    background: #3c79ab;
}

.other-links a.menu__free-quote-link .btn-ico svg path {
    fill: #fff !important;
}

.fixed-header .other-links a.menu__free-quote-link .btn-ico {
    background: #e8e8e8;
}

.fixed-header .other-links a.menu__free-quote-link .btn-ico svg path {
    fill: #3c79ab !important;
}


/** Header top **/

.main-header__top {
    display: flex;
    align-items: center;
}

.main-header__top-inner {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32)
}

.main-header__top .other-links {
    justify-content: end;
}


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

.footer {
    position: relative;
    padding-bottom: 30px;
}

.footer__inner {
    margin: 0 auto;
    max-width: 1824px;
}

.footer-title {
    color: #70a656;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2em;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
}


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

.bloc-text {
    font-family: "mundial", sans-serif;
    color: #74706c;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.68em;
    position: relative;
}

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

.bloc-text h2,
.bloc-text .h2 {
    font-family: "Source Serif 4", serif;
    font-weight: 700;
    font-size: 28px;
    color: #1f1f1f;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.bloc-text p img,
.bloc-text h2 img {
    display: none;
}