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

body {
    font-family: "Lexend Deca", serif;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #ed6d56;
    font-weight: 400;
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 39px;
    position: relative;
}

.sect-title .deco+.sub-title {
    padding-left: 52px;
}

.sect-title .deco {
    position: relative;
    display: inline-block;
    padding-left: 52px;
    padding-top: 72px;
}

.sect-title .deco:before {
    content: '';
    background: url('../images/icons/ico-logo.svg') no-repeat top left;
    width: 109px;
    height: 107px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}

.sect-title .deco.deco--white:before {
    background: url('../images/icons/ico-logo-white.svg') no-repeat top left;
    background-size: cover;
}

.sect-title h2,
.sect-title .h2,
.bloc-title {
    font-weight: 400;
    font-size: 31px;
    color: #10101f;
    line-height: 1em;
    margin-bottom: 56px;
    position: relative;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    font-weight: 400;
    font-size: 40px;
    color: #151529;
    line-height: 1em;
    margin-bottom: 38px;
    position: relative;
}

.shape {
    width: 496px;
    margin-left: -72px;
}

.shape-2 {
    width: 411px;
    margin-left: -48px;
}

.shape-3 {
    width: 411px;
    margin-right: -55px;
}

.img-masking {
    -webkit-mask-image: url(../images/img-masking.png);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.txt-stroke {
    color: #000;
    font-weight: 400;
    -webkit-text-stroke: 1px #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000;
    opacity: 0.4;
    text-transform: uppercase;
    position: absolute;
    transform: rotate(-90deg);
    right: 1px;
    white-space: nowrap;
    font-size: 65px;
    line-height: 50px;
    width: 50px;
    bottom: 65px;
}

/** Spliting **/

.splt-txt .whitespace {
    width: 8px;
}

.splt-txt.animated .char {
    -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

/** Animation **/

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.gsap__parallax {
    overflow: hidden;
}

.imageLeftToRight {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.imageLeftToRight.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

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

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

.slide-controls .owl-prev,
.slide-controls .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slide-controls .owl-next {
    right: 0;
}

.slide-controls .owl-prev {
    left: 0;
}

.slide-controls.swiper-pagination-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 57px;
    gap: 9px;
}

.slide-controls .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: 0;
    background-color: #ed6d56;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0 !important;
}

.slide-controls .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ed6d56;
    width: 46px;
}

/** Colors **/

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

.color--2 {
    color: #10101f !important;
}

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

.color--4 {
    color: #2c2c3c !important;
}

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

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


/** Background **/

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

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

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

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

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

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


/** Socials **/

.social-links .social-link {
    color: #fff;
    height: 32px;
    width: 32px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.1);
    float: left;
    font-weight: bold;
    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 i.fa-facebook {
    padding-top: 2px;
}

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

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

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

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


/** Variables **/

p {
    margin-bottom: 1em;
}

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: "Lexend Deca", serif;
    vertical-align: middle;
    width: 100%;
    padding: 19px 0;
    font-size: 17px;
    font-weight: 400;
    color: #9e9e9e;
    line-height: 1.2em;
    text-transform: inherit;
    outline: none;
    height: 56px;
    border: 0;
    border-bottom: 1px solid #b7b7b7;
    background: #fff;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: left;
    position: relative;
    z-index: 1;
    font-style: normal;
    transition: all .2s linear;
}

.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: #9e9e9e;
    border-bottom: 1px solid #ed6d56;
    background: #fff;
}

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

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

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

textarea::placeholder {
    color: #9e9e9e !important;
}

.btn-1,
input[type="submit"],
input[type="button"] {
    font-family: "Lexend Deca", serif;
    font-weight: 300;
    color: #fff;
    line-height: 1.2em;
    text-transform: none;
    background-color: #ed6d56;
    -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;
    font-size: 17px;
    padding: 10px 27px;
    height: 48px;
    border: 1px solid #ed6d56;
    text-align: center;
    position: relative;
    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: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
}

.btn-1 svg {
    margin-right: 20px;
}


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

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

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

.overlay {
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

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

.opacity-53 {
    opacity: 0.53;
}

.text-shadow {
    text-shadow: 11px 8px 18px rgb(0, 0, 0, 0.09);
}

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

.box-shadow {
    -webkit-box-shadow: 0 5px 13px 0 rgba(58, 51, 102, 0.45);
    box-shadow: 0 5px 13px 0 rgba(58, 51, 102, 0.45);
}

.padding-x-65px {
    padding-left: 65px;
    padding-right: 65px;
}

.padding-r-45px {
    padding-right: 45px;
}

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

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

.font-weight-400 {
    font-weight: 400 !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-l-neg15px {
    margin-left: -15px;
}

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

.border-white-15px {
    border: 15px solid #fff;
}

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

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

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

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

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

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

.cursor-pointer {
    cursor: pointer;
}

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

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

.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-70px {
    -moz-column-gap: 70px;
    -webkit-column-gap: 70px;
    column-gap: 70px;
}

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

/** Transition **/

img,
svg,
svg path {
    -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 {
    position: relative;
}

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

.main-header {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
    background-color: #10101f;
}

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

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

.main-header .site-navigation .menu ul ul li a {
    font-family: "Manrope", serif;
    font-size: 16px;
    font-weight: 400;
    color: #10101f;
    line-height: 1.2em;
    display: block;
    text-decoration: none;
    position: relative;
    padding: 12px 13px;
    border-radius: 25px;
}

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


/** Other links **/

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

.other-links .menu__free-quote-link {
    padding: 10px 13px;
}

.other-links .menu__phone-contact-link {
    margin-left: 25px;
    border: 1px solid #ed6d56;
    background-color: transparent;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1em;
}

.other-links .menu__free-quote-link:focus,
.other-links .menu__free-quote-link:hover {
    background-color: #fff;
    color: #ed6d56;
}

.main-header .menu__phone-contact-link {
    padding: 10px 12px;
}

.main-header .menu__phone-contact-link svg {
    margin-right: 9px;
}

.main-header .menu__phone-contact-link:focus,
.main-header .menu__phone-contact-link:hover {
    background-color: #ed6d56;
    color: #fff;
}

.main-header .menu__phone-contact-link:focus svg path,
.main-header .menu__phone-contact-link:hover svg path {
    color: #fff;
    fill: #fff !important;
}

/** Header top **/

.main-header__top {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    background-color: #2c2c3c;
}

.main-header__top ul.contact-list {
    gap: 0;
}

.main-header__top ul.contact-list li:last-child {
    padding-left: 30px;
    margin-left: 30px;
}

.main-header__top ul.contact-list li:last-child:before {
    content: '';
    background-color: #a7a7a7;
    height: 29px;
    width: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


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

.footer {
    position: relative;
    padding-top: 73px;
}

.footer-title {
    color: #ed6d56;
    font-size: 21px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 14px;
}


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

.bloc-text {
    font-family: "Lexend Deca", serif;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    position: relative;
}

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

.bloc-text h2,
.bloc-text .h2 {
    font-size: 27px;
    line-height: 1.2em;
    font-weight: 600;
    color: #ed6d56;
    margin-bottom: 16px;
    padding-top: 2px;
}

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