/* GLOBALS */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: 0;
}
button,
input,
select,
textarea {
  outline: none !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}
strong {
  font-weight: 700 !important;
}
img {
  max-width: 100%;
  height: auto;
  user-select: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
.rounded-10 {
  border-radius: 10px;
}
/*::-webkit-scrollbar{
  background-color: #000;
}
::-webkit-scrollbar-thumb{
  background-color: @green;
}*/
/*
.col-sm-20,
.col-md-20,
.col-lg-20,
.col-xl-20,
.col-xxl-20{
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}


@media (min-width: 576px) {
	.col-sm-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 768px) {
	.col-md-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 992px) {
	.col-lg-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1200px){
	.col-xl-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1400px){
	.col-xxl-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

*/
.header {
  width: 100%;
  overflow-anchor: none;
  top: 0;
  z-index: 999;
  background-color: #000;
  color: #fff;
  position: sticky;
  transition: 0.2s;
  padding: 20px 0 20px;
}
@media (min-width: 768px) {
  .header {
    padding: 30px 0 20px;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 50px 0 20px;
  }
}
.header:after {
  display: block;
  content: '';
  width: 100%;
  border-top: 1px solid #4271F1;
  border-bottom: 1px solid #3ED5AC;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
}
.header a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 576px) {
  .header .logo img {
    width: 190px;
  }
}
@media (max-width: 1199px) {
  .header .main-menu {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    transition: 0.3s;
    transform: translateX(100%);
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .header .main-menu .main-wrapper-menu {
    width: 500px;
    max-width: 100%;
    background-color: #000;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 50px 40px 40px 40px;
    overflow-y: auto;
  }
}
.header .main-menu .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .header .main-menu .menu-list {
    display: flex;
  }
}
.header .main-menu .menu-item {
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .header .main-menu .menu-item {
    position: relative;
  }
  .header .main-menu .menu-item:not(:last-child) {
    padding: 0 34px 0 0;
  }
  .header .main-menu .menu-item:not(:last-child):after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header .main-menu .menu-link {
  display: block;
  color: #fff;
  padding: 4px 0;
  user-select: none;
  font-size: 1rem;
  font-weight: 300;
}
.header .main-menu .menu-link:hover {
  color: #3ED5AC;
}
.header .main-menu .menu-link.active {
  font-weight: 700;
}
@media (max-width: 1199px) {
  .header .main-menu .menu-link {
    padding: 22px 0;
    font-size: 1.3rem;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}
.header .main-menu .close-bt {
  position: absolute;
  right: 20px;
  cursor: pointer;
  top: 20px;
  z-index: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: 0.2s;
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 1200px) {
  .header .main-menu .close-bt {
    display: none;
  }
}
.header .main-menu .close-bt:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}
.header .main-menu .bg-menu {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: 1s;
  opacity: 0;
}
@media (min-width: 1200px) {
  .header .main-menu .bg-menu {
    display: none;
  }
}
.nav-toggle {
  height: 38px;
  line-height: 34px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  width: 40px;
  z-index: 3;
  position: relative;
}
.nav-toggle span {
  margin-top: -1px;
  transform: translateX(7px);
}
.nav-toggle span,
.nav-toggle span:after,
.nav-toggle span:before {
  right: 15px;
  top: 50%;
  height: 2px;
  width: 26px;
  position: absolute;
  display: block;
  content: '';
  background-color: #fff;
}
.nav-toggle span:after {
  right: 0;
  top: -8px;
}
.nav-toggle span:before {
  right: 0;
  top: 8px;
}
body.nav-opened .header .main-menu {
  transform: translateY(0);
  opacity: 1;
}
body.nav-opened .header .main-menu .bg-menu {
  opacity: 1;
}
body.nav-opened .header .nav-toggle span {
  background: transparent !important;
}
body.nav-opened .header .nav-toggle span:before {
  transform: rotate(45deg);
  top: 0;
}
body.nav-opened .header .nav-toggle span:after {
  transform: rotate(-45deg);
  top: 0;
}
@media (min-width: 1200px) {
  body.scrolled .header {
    padding-top: 30px;
  }
}
/* roboto-300 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('/public/assets/web/font/roboto-v48-latin_latin-ext-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/public/assets/web/font/roboto-v48-latin_latin-ext-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/public/assets/web/font/roboto-v48-latin_latin-ext-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.footer {
  background-color: #000;
  position: relative;
  color: #fff;
  font-size: 1rem;
  padding-top: var(--spacing-x-large);
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer .links a {
  display: table;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .footer .links a {
    margin-bottom: 10px;
  }
}
.footer .links a:hover {
  text-decoration: underline;
}
.footer .copy {
  font-size: 12px;
  font-weight: 300;
}
.footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  margin-top: var(--spacing-x-large);
  padding: 30px 0;
}
.footer .bottom a {
  display: inline-block;
}
.footer .bottom a:not(:last-child) {
  margin-right: 15px;
}
.footer .bottom a:hover {
  text-decoration: underline;
}
.newsletter-wrapper {
  max-width: 450px;
}
@media (min-width: 992px) {
  .newsletter-wrapper {
    padding-right: var(--spacing-medium);
  }
}
.newsletter-wrapper .form-group {
  position: relative;
}
.newsletter-wrapper input.form-control {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding-right: 60px;
  border-radius: 300px;
}
.newsletter-wrapper input.form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-wrapper input.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-wrapper input.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-wrapper input.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-wrapper .bt-subscribe {
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  line-height: 42px;
  border-radius: 50%;
  color: #fff;
  font-style: normal !important;
  text-align: center;
  transition: 0.2s;
  background-color: #3ED5AC;
  transform: rotate(-22deg);
  position: absolute;
  right: 4px;
  top: 4px;
}
.newsletter-wrapper .bt-subscribe:before {
  display: inline;
  content: '\e831';
  font-family: 'fontello';
}
.newsletter-wrapper .bt-subscribe:hover {
  transform: rotate(0deg);
}
.color-white {
  color: #fff !important;
}
.bg-primary {
  background-color: #4271F1 !important;
}
.bg-secondary {
  background-color: #3ED5AC !important;
}
.bg-white {
  background-color: #fff;
}
.bg-home-sevicii {
  background-color: #001017;
}
.color-primary {
  color: #4271F1 !important;
}
.color-secondary {
  color: #3ED5AC !important;
}
.color-inherit {
  color: inherit;
}
.color-text {
  color: #000 !important;
}
.color-black {
  color: #000;
}
:root {
  color-scheme: light dark;
  --spacing-small: clamp(8px, calc(0.5vw + 6px), 16px);
  --spacing-medium: clamp(22px, calc(1.25vw + 1rem), 40px);
  --spacing-large: clamp(32px, calc(2.8vw + 1rem), 50px);
  --spacing-x-large: clamp(48px, calc(4.2vw + 1rem), 96px);
  --spacing-xx-large: clamp(60px, calc(7vw + 1rem), 150px);
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100%;
  background-color: #FFFFFF;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.125rem;
  line-height: calc(8px + 2ex);
  position: relative;
  font-weight: 400;
  color: #000;
}
.main-wrapper {
  position: relative;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.buton {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  cursor: pointer;
  background-color: #4271F1;
  color: #fff;
  border-radius: 200px;
  font-size: 1rem;
  line-height: 1;
  padding: 3px 3px 3px 24px;
  border: 0;
  font-weight: 700;
  transition: 0.2s;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 50px;
  user-select: none;
}
@media (max-width: 500px) {
  .buton {
    width: 100%;
  }
}
.buton:after {
  display: block;
  content: '\e831';
  font-family: 'fontello';
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #fff;
  font-style: normal !important;
  text-align: center;
  line-height: 44px;
  transition: 0.2s;
  background-color: #3ED5AC;
  transform: rotate(-36deg);
  transform-origin: 50% 50%;
  margin-left: clamp(20px, 6vw, 60px);
}
.buton:hover {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(66, 113, 241, 0.88);
  color: #fff;
}
.buton:hover:after {
  transform: rotate(0);
}
.buton.white {
  background-color: #fff;
  color: #000;
}
.buton.white:after {
  background-color: #4271F1;
}
.buton.white:hover {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.small {
  line-height: calc(6px + 2ex);
}
.fs-x-large {
  font-weight: 700;
  font-size: clamp(2.5rem, calc(4.5vw + 1rem), 6.25rem);
  line-height: calc(6px + 1.6ex);
}
.fs-large {
  font-weight: 700;
  font-size: clamp(2rem, calc(3.3vw + 1rem), 4.9rem);
  line-height: calc(6px + 1.8ex);
}
.fs-x-medium {
  font-weight: 700;
  font-size: clamp(2rem, calc(1.9vw + 1rem), 3.25rem);
  line-height: calc(6px + 2ex);
}
.fs-medium {
  font-weight: 700;
  font-size: clamp(1.5rem, calc(1vw + 1rem), 2.125rem);
  line-height: calc(6px + 2ex);
}
.fs-x-small {
  font-weight: 400;
  font-size: clamp(1.2rem, calc(0.65vw + 1rem), 1.75rem);
  line-height: calc(6px + 2ex);
}
.fs-small {
  font-weight: 400;
  font-size: clamp(1.1rem, calc(0.4vw + 1rem), 1.5rem);
  line-height: calc(6px + 2ex);
}
.fs-s-small {
  font-weight: 400;
  font-size: 1rem;
  line-height: calc(6px + 2ex);
}
.articol h1 {
  font-weight: 700;
  font-size: clamp(2.5rem, calc(4.5vw + 1rem), 6.25rem);
  line-height: calc(6px + 1.6ex);
  margin-bottom: 2.5rem;
}
.articol h2 {
  font-weight: 700;
  font-size: clamp(2rem, calc(3.3vw + 1rem), 4.9rem);
  line-height: calc(6px + 1.8ex);
  margin-bottom: 2rem;
}
.articol h3 {
  font-weight: 700;
  font-size: clamp(2rem, calc(1.9vw + 1rem), 3.25rem);
  line-height: calc(6px + 2ex);
  margin-bottom: 1.3rem;
}
.articol h4 {
  font-weight: 700;
  font-size: clamp(1.5rem, calc(1vw + 1rem), 2.125rem);
  line-height: calc(6px + 2ex);
  margin-bottom: 1.1rem;
}
.articol h5 {
  font-weight: 400;
  font-size: clamp(1.1rem, calc(0.3vw + 1rem), 1.5rem);
  line-height: calc(6px + 2ex);
}
.articol h6 {
  font-weight: 400;
  font-size: 1rem;
  line-height: calc(6px + 2ex);
}
.articol ul li {
  margin-bottom: 1rem;
}
@media (min-width: 1648px) {
  .container {
    max-width: 1648px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    /*padding-left: 50px;
        padding-right: 50px;*/
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) {
  .content-1000 {
    max-width: min(60vw, 950px);
  }
}
@media (min-width: 768px) {
  .content-1200 {
    max-width: min(80vw, 1200px);
  }
}
@media (min-width: 768px) {
  .content-1400 {
    max-width: min(80vw, 1400px);
  }
}
@media (min-width: 768px) {
  .content-700 {
    max-width: min(33vw, 700px);
  }
}
.pt-x-large {
  padding-top: var(--spacing-x-large);
}
.pb-x-large {
  padding-bottom: var(--spacing-x-large);
}
.mb-x-large {
  margin-bottom: var(--spacing-x-large);
}
.pt-large {
  padding-top: var(--spacing-large);
}
.px-large {
  padding-left: var(--spacing-large);
  padding-right: var(--spacing-large);
}
.pb-large {
  padding-bottom: var(--spacing-large);
}
.mb-large {
  margin-bottom: var(--spacing-large);
}
.pb-medium {
  padding-bottom: var(--spacing-medium);
}
.mb-medium {
  margin-bottom: var(--spacing-medium);
}
.mt-medium {
  margin-top: var(--spacing-medium);
}
.home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (min-width: 768px) {
  .home-hero {
    min-height: calc(100dvh - var(--header-height));
  }
}
.home-hero .content-top {
  position: relative;
  z-index: 1;
  padding-top: var(--spacing-large);
  width: clamp(400px, calc(40vw + 300px), 1100px);
  max-width: 100%;
  margin-top: auto;
}
.home-hero .content-bottom {
  margin-top: auto;
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-large);
  padding-top: var(--spacing-large);
}
.home-hero .content-bottom .text-right {
  width: 450px;
  max-width: 100%;
}
.home-hero .video {
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero .video:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .home-hero .video:before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.home-hero .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.home-hero .video img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 490px;
}
.home-hero .hero-list li {
  display: flex;
  margin: 0;
  gap: var(--spacing-medium);
}
.home-hero .hero-list li:not(:last-child) {
  padding: 0 0 var(--spacing-medium);
}
.home-hero .hero-list .ico {
  flex: 0 0 55px;
  text-align: center;
}
.home-hero .hero-list .text {
  flex: 1 0 0;
}
.section-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
  .section-image {
    aspect-ratio: 16 / 7;
  }
}
@media (min-width: 1200px) {
  .section-image {
    aspect-ratio: 1920 / 720;
  }
}
.section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
  .section-video {
    aspect-ratio: 16 / 7;
  }
}
@media (min-width: 1200px) {
  .section-video {
    aspect-ratio: 1920 / 720;
  }
}
.section-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section-fixed-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
  .section-fixed-video {
    aspect-ratio: 16 / 7;
  }
}
@media (min-width: 1200px) {
  .section-fixed-video {
    aspect-ratio: 1920 / 705;
  }
}
.section-fixed-video .video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  clip: rect(0px, auto, auto, 0px);
}
.section-fixed-video video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
@media (hover: none) {
  .section-fixed-video video {
    position: static !important;
  }
}
.section-audience {
  max-width: 2000px;
  margin: 0 auto;
}
.audience-item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: var(--spacing-medium) 15px;
}
@media (min-width: 576px) {
  .audience-item {
    padding: var(--spacing-medium);
  }
}
@media (min-width: 992px) {
  .audience-item:not(:last-child) {
    border-right: 1px solid #000;
  }
}
.audience-item .ico {
  margin-bottom: var(--spacing-x-large);
}
.audience-item .buton {
  margin-top: auto;
  margin-right: auto;
}
.number-card {
  border: 1px solid #fff;
  padding: var(--spacing-medium) 0 0;
  border-radius: 10px;
  width: 100%;
  position: relative;
}
.number-card .number {
  width: clamp(40px, calc(3vw + 1rem), 60px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.number-card .number:before {
  content: '';
  display: block;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #3ED5AC;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 10%);
}
.number-card .line {
  width: 1px;
  height: var(--spacing-x-large);
  background-color: #fff;
  margin: 20px 0 20px clamp(19px, calc(0.8vw + 1rem), 29px);
}
.number-card .top,
.number-card .text {
  position: relative;
  padding: 0 var(--spacing-medium);
}
.number-card .text {
  padding: 0 var(--spacing-medium) var(--spacing-medium);
}
.number-card img {
  position: absolute;
}
@media (max-width: 767px) {
  .number-card img {
    width: max(60px, 15%);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(80%) rotate(90deg);
    transform-origin: 50% 50%;
  }
}
@media (min-width: 768px) {
  .number-card img {
    right: 0;
    top: 0;
    transform: translateX(65%) translateY(-105%);
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .number-card img {
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .number-card.second img {
    display: none;
  }
}
ol.order-list-big {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}
ol.order-list-big li {
  counter-increment: item;
  display: flex;
  align-items: center;
  margin-bottom: clamp(1rem, calc(3vw + 0.2rem), 2.2rem);
}
ol.order-list-big li:before {
  content: counter(item) ".";
  font-size: clamp(2.5rem, calc(4vw + 1rem), 3.125rem);
  margin-right: clamp(0.5rem, calc(3vw + 0.2rem), 1.8rem);
  line-height: 1;
  align-self: flex-start;
}
ol.order-list-big li span {
  font-size: clamp(1.1rem, calc(0.3vw + 1rem), 1.5rem);
}
.whymatters-text {
  max-width: 450px;
  margin: 0 0 40px;
}
@media (min-width: 576px) {
  .whymatters-text {
    margin: 0 var(--spacing-medium) 40px;
  }
}
@media (min-width: 1200px) {
  .whymatters-text {
    margin: 0 var(--spacing-large) 40px;
  }
}
.contact-advert {
  overflow: hidden;
  border-radius: clamp(0.625rem, calc(2vw + 0.5rem), 2.5rem);
  position: relative;
  color: #fff;
  background-color: #000;
}
.contact-advert .content {
  padding: var(--spacing-large);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-advert .content {
    padding: var(--spacing-x-large);
    width: calc(42vw + 200px);
  }
}
.contact-advert .image {
  position: relative;
}
@media (min-width: 768px) {
  .contact-advert .image {
    padding-left: 30%;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}
.contact-advert .image:after {
  content: '';
  display: block;
  width: 100%;
  height: 60%;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg, #010205 0%, rgba(1, 2, 5, 0) 100%);
}
@media (min-width: 768px) {
  .contact-advert .image:after {
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, #010205 0%, #010205 50%, rgba(1, 2, 5, 0) 100%);
  }
}
.contact-advert .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-card {
  border: 1px solid #000;
  padding: var(--spacing-medium);
  border-radius: 10px;
  width: 100%;
  position: relative;
}
.simple-card img {
  margin-bottom: 40px;
  width: 35%;
  max-width: 100px;
}
@media (min-width: 1200px) {
  .simple-card img {
    width: 35%;
  }
}
.half-image-text .image {
  max-width: 1100px;
}
.half-image-text .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-advert {
  overflow: hidden;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
  .simple-advert {
    aspect-ratio: 16 / 7;
  }
}
@media (min-width: 1200px) {
  .simple-advert {
    aspect-ratio: 1920 / 705;
  }
}
.simple-advert .content {
  position: relative;
  z-index: 1;
}
.simple-advert .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.simple-advert .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-blue {
  background-color: #4271F1;
  color: #fff;
  padding: var(--spacing-x-large) var(--spacing-large);
  border-radius: 10px;
}
.card-blue-mt-n {
  position: relative;
  z-index: 1;
  margin-top: -15%;
}
@media (min-width: 768px) {
  .card-blue-mt-n {
    margin-top: -6%;
  }
}
.contact-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  min-height: auto;
  aspect-ratio: 1 / 1;
}
@media (min-width: 576px) {
  .contact-hero {
    aspect-ratio: 16 / 9;
  }
}
@media (min-width: 1200px) {
  .contact-hero {
    aspect-ratio: auto;
    min-height: calc(100dvh - var(--header-height));
  }
}
.contact-hero .content {
  position: relative;
  z-index: 1;
  padding: var(--spacing-large) 0 var(--spacing-x-large);
  max-width: 600px;
}
.contact-hero .video {
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero .video:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .contact-hero .video:before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.contact-hero .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.contact-hero .video img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-bloc {
  width: clamp(500px, calc(32vw + 400px), 1000px);
  max-width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: var(--spacing-medium);
  margin-top: -15vw;
}
@media (min-width: 576px) {
  .contact-bloc {
    margin-top: -9vw;
    padding: var(--spacing-x-large);
  }
}
@media (min-width: 768px) {
  .contact-bloc {
    margin-top: -12vw;
  }
}
@media (min-width: 1200px) {
  .contact-bloc {
    margin-top: -200px;
  }
}
