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


body {
    font-family: "Inter", sans-serif;
    color: #BCBDB9;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #7EB944;
    font-family: "Bitter", serif;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sect-title h2,
.sect-title .h2,
.sect-title .bloc-title {
    color: #FFF;
    font-family: "Bitter", serif;
    font-size: clamp(30px, 1rem + 1.7vw, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.166666em;
    margin-bottom: clamp(30px, 1rem + 1.9vw, 52px);
    position: relative;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    color: #FFF;
    font-family: "Bitter", serif;
    font-size: clamp(30px, 1rem + 1.7vw, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.166666em;
    margin-bottom: 26px;
    position: relative;
}


/** Animation **/

html:not(.no-js) [data-aos=fade-up] {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
}

html:not(.no-js) [data-aos=fade-right] {
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}

html:not(.no-js) [data-aos=fade-left] {
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
}

.img-anim img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
    transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.img-anim:hover img {
    -webkit-transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
    transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}

/* Preloader */

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


/** Slider **/
.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
    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;
}

.slide-controls {
    display: flex;
    align-items: center;
    gap: 13px;
}

.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
    width: 50px;
    height: 50px;
    display: flex;
    background: none;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 25px;
    border: 1px solid #FFF;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-shadow: none;
    padding: 15px;
}

.swiper-btn-next:after,
.swiper-btn-prev:after {
    display: none;
}

.slide-controls .swiper-btn-prev:hover,
.slide-controls .swiper-btn-next:hover {
    background: #7EB944;
    border-color: #7EB944;
}

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

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

.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0 !important;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #0F76BB;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0F76BB;
    opacity: 1;
}


/** Colors **/

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

.color--2 {
    color: #7EB944 !important;
}

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

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

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

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


/** Background **/

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

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

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

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

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

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


/** Socials **/

.social-links .social-link {
    outline: none;
}

.social-txt {
    color: #FFF;
    font-size: clamp(18px, 1rem + 0.3vw, 20px);
    font-style: normal;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -0.2px;
    margin-right: 16px;
}

.social-link:hover svg path {
    fill: #7EB944 !important;
}

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


/** Variables **/

p {
    margin-bottom: 1.25em;
}

section {
    padding-top: clamp(50px, 1rem + 7.8vh, 100px);
    padding-bottom: clamp(50px, 1rem + 7.8vh, 100px);
    position: relative;
}

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

a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

figure {
    margin: 0;
}

.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: "Inter", sans-serif;
    color: #BCBDB9;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    text-transform: none;
    vertical-align: middle;
    width: 100%;
    outline: none;
    height: 56px;
    padding: 16px 26px;
    border-radius: 10px;
    border: 1px solid rgba(188, 189, 185, 0.10);
    background: #050505;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}

.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: #BCBDB9;
    border: 1px solid rgba(188, 189, 185, 0.10);
    background: #050505;
}

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

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

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

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


.btn-1,
.btn-2,
button,
input[type="submit"],
input[type="button"] {
    font-family: "Inter", sans-serif;
    color: #3D3D3B;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1em;
    text-transform: none;
    padding: 5px 5px 5px 25px;
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    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;
    border-radius: 10px;
    background: #fff;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
    height: auto;
    gap: 13px;
    overflow: hidden;
    outline: none;
}

.btn-2 {
    background: #7EB944;
    color: #fff;
}

.btn-text {
    position: relative;
    overflow: hidden;
}

.btn-text span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.5;
    text-shadow: 0 30px 0 #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.btn-1:hover .btn-text span,
.btn-2:hover .btn-text span {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}

.btn-icon {
    display: flex;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.btn-icon:before {
    content: "";
    background-color: #7EB944;
    width: 46px;
    height: calc(100% - 10px);
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: -1;
    border-radius: 8px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn-2 .btn-icon:before {
    background-color: #3D3D3B;
}

.btn-1:hover .btn-icon:before,
.btn-2:hover .btn-icon:before {
    width: calc(100% - 10px);
}

.btn-icon img,
.btn-icon svg {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-1:hover .btn-icon img,
.btn-2:hover .btn-icon img,
.btn-1:hover .btn-icon svg,
.btn-2:hover .btn-icon svg {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

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

.btn-2:hover {
    background: #7EB944;
    color: #FFF;
    outline: none;
}

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

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

.box-shadow {
    box-shadow: 4px 2px 18px 0 rgba(0, 0, 0, 0.11);
}

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

.opacity-20 {
    opacity: 0.20;
}

.opacity-40 {
    opacity: 0.40;
}

.opacity-50 {
    opacity: 0.50;
}

.opacity-60 {
    opacity: 0.60;
}

.border-0 {
    border: 0;
}

.offset-right-1 {
    margin-right: 8.333333%;
}

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

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

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

.font-weight-600 {
    font-weight: 600 !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-16px {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

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

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

.vh-middle {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 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;
}

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

.obj-fit-pos-t {
    object-position: top;
}

.obj-fit-pos-l9 {
    object-position: 9%;
}

.cursor-pointer {
    cursor: pointer;
}

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

.bg-pos-tc {
    background-position: top center;
}

.bg-pos-tl {
    background-position: top left;
}

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

.bg-pos-tr {
    background-position: top right;
}

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

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

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

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

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

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

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

.txt-stroke {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    color: transparent;
}

/** Transition **/

img,
svg,
svg path {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/** Extra Outer **/

body .page {
    position: relative;
    background: #050505;
    overflow: hidden;
}

body .site-main {
    background: #050505;
}


/***************************************
* 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 {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    position: relative;
    display: flex;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

.main-header .site-navigation .menu ul ul>li a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    display: block;
    text-decoration: none;
    position: relative;
    padding: 11px 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: #7EB944;
}

.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: #7EB944;
    padding-left: 8px;
}


/** Other links **/

.main-header .other-links {
    display: flex;
    gap: 13px;
}

.main-header .other-links a.menu__contact-phone-link .btn-icon:before {
    background-color: #fff;
}

.main-header .other-links a.menu__client-area-link {
    border-radius: 10px;
    background: #0C101C;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .other-links a.menu__client-area-link:hover {
    background-color: #7EB944;
}

.main-header .other-links a.menu__contact-phone-link:hover .btn-text span {
    text-shadow: 0 30px 0 #3D3D3B;
}

.main-header .other-links a .btn-icon svg {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}


/** Header top **/

.main-header__top {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

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

.main-header__top-item,
.main-header__top-item a {
    color: #BCBDB9;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
}

.main-header__top-item.main-header__mail {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #fff;
}

.main-header__top-item.main-header__phone {
    margin-left: 20px;
}

.main-header__top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-header__top-item a:hover {
    color: #7EB944;
}


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


.footer {
    position: relative;
}


.footer-title {
    color: #F6F7F7;
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 1rem + 0.3vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: -0.03em;
    margin-bottom: clamp(30px, 1rem + 1.9vw, 52px);
}



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

.bloc-text {
    font-family: "Inter", sans-serif;
    color: #BCBDB9;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
}

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

.bloc-text ul li {
    position: relative;
    padding-left: 16px;
}

.bloc-text ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #ecab23;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.bloc-text h2,
.bloc-text .h2 {
    color: #1e3853;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.27em;
    margin-bottom: 16px;
    padding-top: 9px;
}

.page .font-size-28px {
    font-size: 28px;
    line-height: 1.5em;
}

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

.bloc-text h2 {
    color: #FFF;
    font-family: "Bitter", serif;
    /*font-size: clamp(30px, 1rem + 1.7vw, 48px);*/
    font-style: normal;
    font-weight: 600;
    line-height: 1.166666em;
    margin-bottom: clamp(30px, 1rem + 1.9vw, 52px);
    position: relative;
}