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

body {
  font-family: "Mona Sans", sans-serif;
  color: #808080;
  font-size: 16px;
  font-style: normal;
  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: #1e1e1c;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
  border-radius: 4px;
  background: rgba(79, 129, 189, 0.2);
  padding: 6px 8px;
}

.sect-title h1,
.sect-title .h1,
.page-title {
  color: #1e1e1c;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.125em;
  margin-bottom: 32px;
  position: relative;
}

.sect-title h2,
.sect-title .h2,
.sect-title .bloc-title {
  color: #1e1e1c;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.125em;
  margin-bottom: 60px;
  position: relative;
}

.img-masking,
.img-masking-2 {
  -webkit-mask-image: url("/images/img-masking.svg");
  mask-image: url("/images/img-masking.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-masking-2 {
  -webkit-mask-image: url("/images/img-masking-2.svg");
  mask-image: url("/images/img-masking-2.svg");
}

/**
    * Reinstate scrolling for non-JS clients
    */
.simplebar-content-wrapper {
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: initial;
  width: initial;
  height: initial;
}

/** Animation **/
@keyframes textrotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

/* 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 .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;
  justify-content: center;
  gap: 10px;
}

.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
  width: 56px;
  height: 56px;
  display: flex;
  background: none;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1.1749999523162842px);
  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: 12px;
  opacity: 1;
}

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

.slide-controls .swiper-btn-prev:hover,
.slide-controls .swiper-btn-next:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1.1749999523162842px);
}

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

.slide-controls.swiper-pagination-bullets .swiper-pagination-bullet {
  border-radius: 4px;
  margin: 0 !important;
  background: rgba(79, 129, 189, 0.15);
  border: 0;
  width: 12px;
  height: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  position: relative;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.slide-controls.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4f81bd;
  width: 64px;
}

/** Colors **/

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

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

.color--3 {
  color: #27405e !important;
}

.color--4 {
  color: #1e1e1c !important;
}

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

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

/** Background **/

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

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

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

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

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

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

/** Socials **/

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

.social-txt {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-right: 16px;
}

.social-links .social-link:hover svg path {
}

.social-links {
  display: flex;
}

/** Variables **/

p {
  margin-bottom: 1.5em;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
  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.4s;
  transition: all ease 0.4s;
}

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: "Mona Sans", sans-serif;
  color: 1e1E1C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: none;
  vertical-align: middle;
  width: 100%;
  outline: none;
  height: 56px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid #1e1e1c;
  background: #fff;
  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: #1e1e1c;
  border: 1px solid #1e1e1c;
  background: #fff;
}

input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(30, 30, 28, 0.5) !important;
}

input::placeholder {
  /* Chrome, Firefox, Opera, Safari 110.1+ */
  color: rgba(30, 30, 28, 0.5) !important;
  opacity: 1;
  /* Firefox */
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(30, 30, 28, 0.5) !important;
}

textarea::placeholder {
  color: rgba(30, 30, 28, 0.5) !important;
}

.btn-1,
input[type="submit"],
input[type="button"] {
  font-family: "Mona Sans", sans-serif;
  color: #fff;
  text-align: center;
  text-shadow: 0 30px 0 #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
  text-transform: none;
  padding: 5px 5px 5px 25px;
  text-align: center;
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s 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;
  border-radius: 50px;
  background: #4f81bd;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  z-index: 1;
  height: 48px;
  overflow: hidden;
  letter-spacing: normal;
}

.btn-ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: #1e1e1c;
  overflow: hidden;
  margin-left: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-1:hover .btn-ico {
  background: #4f81bd;
}

.btn-1:hover .btn-ico {
  transform: rotate(45deg);
}

.btn-ico svg {
  margin: 0;
}

.btn-1:hover,
button:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  background: #1e1e1c;
  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: #000;
  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-10 {
  opacity: 0.1;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-50 {
  opacity: 0.5;
}

.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-20px {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

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

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

.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.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/** Extra Outer **/

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

body .site-main {
  background: #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 400ms ease;
  transition: all 400ms ease;
  background: none;
  position: absolute;
  z-index: 999;
  background: none;
}

.main-header .site-navigation .menu > ul > li > a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 16px;
}

.main-header .site-navigation .menu ul ul > li a {
  color: #1e1e1c;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
  padding: 8px 0;
  display: inline-block;
}

.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: #4f81bd;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(5px);
}

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

/** Other links **/

.main-header .other-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-header .other-links a {
  padding: 5px 20px 5px 5px;
}

.main-header .other-links a .btn-ico {
  margin: 0 10px 0 0;
}

.main-header .other-links a:hover .btn-ico {
  transform: none;
}

.main-header .other-links a.menu__contact-mail-link {
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 2px solid #fff;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.main-header .other-links a.menu__contact-mail-link:hover {
  background-color: #fff;
}

.main-header .other-links a.menu__contact-mail-link:hover svg path {
  stroke: #4f81bd !important;
}

.main-header .other-links a.menu__free-quote-link:hover .btn-ico,
.main-header .other-links a.menu__free-quote-link {
  background-color: #1e1e1c;
}

.main-header .other-links a.menu__free-quote-link:hover,
.main-header .other-links a.menu__free-quote-link .btn-ico {
  background-color: #4f81bd;
}

/** Header top **/

.main-header__top .other-links {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  justify-content: end;
  gap: 30px;
}

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

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

.footer-title {
  color: #fff;
  font-size: 19.375px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45em;
  letter-spacing: -0.031em;
  margin-bottom: 34px;
}

/***************************************
* 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 h2:first-of-type img:first-of-type {
  display: none;
}
.bloc-text {
  font-family: "Mona Sans", sans-serif;
  color: #808080;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  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;
}
