@charset "UTF-8";
:root {
  /* ========== Fonts ========== */
  --font: "Geist", sans-serif;
  --font-heading: "Funnel Display", sans-serif;
  /* Headings */
  --h1-size: 48px;
  --h2-size: 40px;
  --h3-size: 32px;
  --h4-size: 24px;
  --h5-size: 20px;
  /* Body */
  --body-xl: 24px;
  --body-l: 18px;
  --body-m: 16px;
  --body-s: 14px;
  --сaption: 12px;
  --btn-l: 18px;
  --primary: #1D4ED8;
  --primary-hover: #335FDC;
  --secondary: #f9fafb;
  --secondary-2: #dbeafe;
  --white: #FFFFFF;
  --white-25: rgba(249, 250, 251, 0.25);
  --white-50: rgba(249, 250, 251, 0.50);
  --white-75: rgba(249, 250, 251, 0.75);
  --black: #020617;
  --gray-25: #3F4250;
  --gray-50: rgba(2, 6, 23, 0.5);
  --gray-75: rgba(2, 6, 23, 0.75);
  --c-light: rgba(249, 250, 251, 0.5);
  --glass-reflex-light: 1;
  --saturation: 105%;
}

@media (max-width: 768px) {
  :root {
    --h1-size: 32px;
    --h2-size: 28px;
    --h3-size: 24px;
    --h4-size: 20px;
    --h5-size: 16px;
    --btn-l: 16px;
  }
}
/* MAIN  FILES
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: var(--black);
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--secondary);
  height: auto;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
body ::-moz-selection {
  background: #3b5993;
  color: #ffffff;
}
body ::selection {
  background: #3b5993;
  color: #ffffff;
}

#wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

mark {
  background: none;
}

/* ==========================================================================
   FORMS & TABLE & NAVIGATION
   ========================================================================== */
input, textarea, select {
  outline: 0 none;
  padding: 0 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input[type=text], input[type=number], input[type=email], input[type=password], input[type=search], input[type=tel], textarea {
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #222222;
  font-family: var(--font);
  font-size: 16px;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 100%;
}
input[type=text]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #4c4c4c;
  font-family: var(--font);
  font-size: 16px;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #4c4c4c;
  font-family: var(--font);
  font-size: 16px;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #4c4c4c;
  font-family: var(--font);
  font-size: 16px;
  opacity: 1;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, textarea:focus {
  border-color: #3b5993;
}

textarea {
  resize: none;
  height: 100px;
  padding: 10px;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type=search], input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6, ._h1, ._h2, ._h3, ._h4, ._h5 {
  font-weight: 600;
  line-height: 120%;
  font-family: var(--font-heading);
}

h1, ._h1 {
  font-size: var(--h1-size);
}

h2, ._h2 {
  font-size: var(--h2-size);
}

h3, ._h3 {
  font-size: var(--h3-size);
}

h4, ._h4 {
  font-size: var(--h4-size);
}

h5, ._h5 {
  font-size: var(--h5-size);
}

._body-xl {
  font-size: var(--body-xl);
  line-height: 1.6;
}

._body-l {
  font-size: var(--body-l);
  line-height: 1.6;
}

._body-m {
  font-size: var(--body-m);
  line-height: 1.6;
}

._body-s {
  font-size: var(--body-s);
  line-height: 1.6;
}

._caption {
  font-size: var(--сaption);
  line-height: 1.6;
}

._btn-l {
  font-size: var(--body-l);
  line-height: 1.2;
  font-weight: 600;
}

svg {
  transition: all 0.3s ease;
}
svg path {
  transition: all 0.3s ease;
}

p {
  padding-bottom: 20px;
  line-height: 1.6;
}
p:last-child {
  padding-bottom: 0;
}
p.has-x-large-font-size {
  font-size: var(--body-xl) !important;
}
@media (max-width: 576px) {
  p.has-x-large-font-size {
    font-size: 20px !important;
  }
}
p.has-large-font-size {
  font-size: var(--body-l) !important;
}

a {
  color: var(--black);
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  outline: 0;
  color: var(--primary-hover);
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

strong, b {
  font-weight: 700;
}

i {
  font-style: normal;
}

@media screen and (min-width: 1140px) {
  ::-webkit-scrollbar {
    width: 13px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cccccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #3b5993;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(51.6966019417, 77.9830097087, 128.8033980583);
  }
}
.btn-global {
  font-size: var(--btn-l);
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  text-decoration: none !important;
  color: var(--secondary);
  border: none;
  outline: 0;
  background: var(--primary);
  appearance: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-global:hover {
  background: var(--primary-hover);
  color: var(--secondary);
}
.btn-global:disabled {
  opacity: 0.3;
}
.btn-global.none-bg {
  color: var(--black);
  padding: 0;
  background: transparent;
}
.btn-global.none-bg:hover {
  color: var(--primary-hover);
}
.btn-global.border {
  color: var(--black);
  border: 1px solid rgba(2, 6, 23, 0.25);
  padding: 10px 20px;
  background: transparent;
}
.btn-global.border:hover {
  background: var(--secondary-2);
  border-color: transparent;
}
.btn-global.light {
  color: var(--black);
  background: var(--secondary-2);
}
.btn-global.light:hover {
  background: var(--primary-hover);
  color: var(--secondary);
}
.btn-global.border-dark {
  border: 1px solid var(--white-25);
  padding: 10px 20px;
  background-color: transparent;
}
.btn-global.border-dark:hover {
  border-color: #AAABB3;
  background: var(--gray-25);
}
.btn-global.none-bg-dark {
  background: transparent;
  padding: 0;
}
.btn-global.none-bg-dark:hover {
  color: var(--primary-hover);
}

.row1200, #wrap > .wp-block-heading, #wrap > .breadcrumbs, #wrap > .wp-block-image,
#wrap > p, #wrap > ul, #wrap > ol {
  width: 1200px;
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .row1200, #wrap > .wp-block-heading, #wrap > .breadcrumbs, #wrap > .wp-block-image,
  #wrap > p, #wrap > ul, #wrap > ol {
    max-width: 89.334%;
  }
}

#wrap > h1 {
  margin-top: 80px;
  margin-bottom: 40px;
  padding-right: clamp(0vw, 100vw - 900px, 360px);
}
@media screen and (max-width: 576px) {
  #wrap > h1 {
    margin-top: 48px;
    margin-bottom: 32px;
  }
}
#wrap > h2 {
  margin-top: 60px;
  margin-bottom: 20px;
  padding-right: clamp(0vw, 100vw - 900px, 360px);
}
@media screen and (max-width: 576px) {
  #wrap > h2 {
    margin-top: 40px;
    margin-bottom: 16px;
  }
}
#wrap > h3, #wrap > h4, #wrap > h5, #wrap > h6 {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: clamp(0vw, 100vw - 900px, 360px);
}
@media screen and (max-width: 576px) {
  #wrap > h3, #wrap > h4, #wrap > h5, #wrap > h6 {
    margin-bottom: 16px;
  }
}
#wrap > p {
  padding-right: clamp(0vw, 100vw - 900px, 360px);
}
@media screen and (max-width: 576px) {
  #wrap > p {
    font-size: 14px;
  }
}
#wrap > ul {
  padding-right: clamp(0vw, 100vw - 900px, 360px);
  list-style: disc;
  margin-top: 20px;
  margin-bottom: 20px;
}
#wrap > ul li {
  margin-left: 20px;
  margin-bottom: 5px;
}
#wrap > ol {
  padding-right: clamp(0vw, 100vw - 900px, 360px);
  margin-top: 20px;
  margin-bottom: 20px;
}
#wrap > ol li {
  margin-left: 20px;
  margin-bottom: 5px;
}
#wrap > .wp-block-image {
  padding-right: clamp(0vw, 100vw - 900px, 360px);
  margin-top: 32px;
  margin-bottom: 32px;
}
#wrap > .wp-block-image img {
  width: 100%;
}

.row1280 {
  width: 1280px;
  max-width: 98%;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .row1280 {
    max-width: 94.666%;
  }
}

.row1400 {
  width: 1400px;
  max-width: 98%;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .row1400 {
    max-width: 100%;
  }
}

.select2-dropdown.form-dropdown .select2-search {
  display: none;
}
.select2-dropdown.form-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background: var(--primary);
}

html.html-pop-up-active {
  overflow: hidden;
}

body:before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}

html.cookieyes-active body:before {
  opacity: 1;
  visibility: visible;
}

.calendly-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.calendly-overlay .calendly-close-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
}
.calendly-overlay .calendly-popup {
  height: 100%;
  position: relative;
  z-index: 2;
}
.calendly-overlay .calendly-popup .calendly-popup-content {
  height: 100%;
}
.calendly-overlay .calendly-popup-close {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.4209 13.2793L20.707 19.9932L27.4277 26.7139L26.7207 27.4209L20 20.7002L13.2793 27.4209L12.5723 26.7139L19.293 19.9932L12.5791 13.2793L13.2861 12.5723L20 19.2861L26.7139 12.5723L27.4209 13.2793Z' fill='%23020617'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 649px) {
  .calendly-overlay .calendly-popup-close {
    right: unset;
    left: 20px;
  }
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex.h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.flex.h-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.flex.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.v-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.flex.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.flex-column {
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
.flex.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-wrap: none;
}

[class*=col-] {
  width: 100%;
}

.col-1 {
  -webkit-flex-basis: 5.5833333333%;
  -moz-flex-basis: 5.5833333333%;
  -ms-flex-basis: 5.5833333333%;
  flex-basis: 5.5833333333%;
}

.col-2 {
  -webkit-flex-basis: 14.1666666667%;
  -moz-flex-basis: 14.1666666667%;
  -ms-flex-basis: 14.1666666667%;
  flex-basis: 14.1666666667%;
}

.col-3 {
  -webkit-flex-basis: 22.75%;
  -moz-flex-basis: 22.75%;
  -ms-flex-basis: 22.75%;
  flex-basis: 22.75%;
}

.col-4 {
  -webkit-flex-basis: 31.3333333333%;
  -moz-flex-basis: 31.3333333333%;
  -ms-flex-basis: 31.3333333333%;
  flex-basis: 31.3333333333%;
}

.col-5 {
  -webkit-flex-basis: 39.9166666667%;
  -moz-flex-basis: 39.9166666667%;
  -ms-flex-basis: 39.9166666667%;
  flex-basis: 39.9166666667%;
}

.col-6 {
  -webkit-flex-basis: 48.5%;
  -moz-flex-basis: 48.5%;
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
}

.col-7 {
  -webkit-flex-basis: 57.0833333333%;
  -moz-flex-basis: 57.0833333333%;
  -ms-flex-basis: 57.0833333333%;
  flex-basis: 57.0833333333%;
}

.col-8 {
  -webkit-flex-basis: 65.6666666667%;
  -moz-flex-basis: 65.6666666667%;
  -ms-flex-basis: 65.6666666667%;
  flex-basis: 65.6666666667%;
}

.col-9 {
  -webkit-flex-basis: 74.25%;
  -moz-flex-basis: 74.25%;
  -ms-flex-basis: 74.25%;
  flex-basis: 74.25%;
}

.col-10 {
  -webkit-flex-basis: 82.8333333333%;
  -moz-flex-basis: 82.8333333333%;
  -ms-flex-basis: 82.8333333333%;
  flex-basis: 82.8333333333%;
}

.col-11 {
  -webkit-flex-basis: 91.4166666667%;
  -moz-flex-basis: 91.4166666667%;
  -ms-flex-basis: 91.4166666667%;
  flex-basis: 91.4166666667%;
}

.col-12 {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}

.col-50 {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}

@media (max-width: 960px) {
  .md-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .md-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .md-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .md-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .md-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .md-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .md-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .md-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .md-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .md-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .md-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .md-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .sm-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .sm-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .sm-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .sm-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .sm-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .sm-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .sm-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .sm-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .sm-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .sm-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .sm-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .xs-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .xs-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .xs-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .xs-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .xs-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .xs-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .xs-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .xs-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .xs-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .xs-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .xs-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .xs-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .xs-bottom {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
   HELPERS
   ========================================================================== */
.wrap {
  margin: 0 auto;
  width: 1140px;
  max-width: 94%;
  position: relative;
}

#content {
  padding: 40px 0;
}
@media (max-width: 1140px) {
  #content {
    padding: 20px 0;
  }
}

#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.c {
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
  overflow: hidden;
}

.cfx:after, .cfx:before {
  display: table;
  clear: both;
  content: " ";
}

.bg-center {
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.underline {
  position: relative;
  display: inline-block;
}
.underline:after {
  display: block;
  width: 0;
  height: 1px;
  margin: auto;
  content: "";
  transition: width 0.5s ease, background-color 0.5s ease;
  background: transparent;
}
.underline:hover:after {
  width: 100%;
  background: #3b5993;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn {
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  outline: 0;
  background: #3b5993;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}
.btn:hover {
  background: rgb(47.3145631068, 71.372815534, 117.8854368932);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.btn:active {
  background: rgb(37.0898058252, 55.9490291262, 92.4101941748);
}

/* ==========================================================================
   WORDPRESS DEFAULT CLASSES
   ========================================================================== */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background-color: #f3f3f3;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* ==========================================================================
   WYSIWYG
   ========================================================================== */
.wysiwyg h1 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.wysiwyg p {
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 20px;
  word-break: break-word;
}
.wysiwyg ul {
  margin-left: 30px;
  padding-bottom: 20px;
}
.wysiwyg ul li {
  line-height: 1.4;
}

/* ==========================================================================
   FULL FRAME
   ========================================================================== */
.fullframe {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
  z-index: 0;
}
.fullframe iframe, .fullframe object, .fullframe embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* ==========================================================================
   CONTACT FORM 7
   ========================================================================== */
.wpcf7 {
  width: 100%;
}
.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  display: block;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  display: block;
  background: #16a085;
}
.wpcf7 .wpcf7-not-valid-tip {
  font: 500 16px/1 var(--font);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ff5f5f;
  background: #eeeeee;
}
.wpcf7 .wpcf7-response-output {
  display: none;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  padding: 15px 20px;
  cursor: pointer;
  text-align: center;
  color: white;
  background: #ff5f5f;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #1091ae;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #16a085;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block !important;
}

div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url(../img/ajax-loader.gif);
  width: 16px;
  height: 16px;
  border: none;
  margin: 0 0 0 4px;
  vertical-align: middle;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

div.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}

/* ==========================================================================
   SOCIAL LINK
   ========================================================================== */
.s-link {
  font-size: 0;
  display: inline-block;
  width: auto;
  cursor: pointer;
  text-align: center;
}
.s-link a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 2px;
  color: #ffffff;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.s-link a:before {
  font-size: 20px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.s-link a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.s-link a.fa-facebook:hover {
  background: #3b5993;
}
.s-link a.fa-twitter:hover {
  background: #55acee;
}
.s-link a.fa-instagram:hover {
  background: #181818;
}
.s-link a.fa-linkedin:hover {
  background: #0177b5;
}
.s-link a.fa-youtube:hover {
  background: #f80000;
}
.s-link a.fa-pinterest:hover {
  background: #bd081c;
}
.s-link a.fa-vimeo:hover {
  background: #1bb7ea;
}
.s-link a.fa-yelp:hover {
  background: #d32323;
}
.s-link a.fa-google-plus:hover {
  background: #dd4c39;
}

/* ==========================================================================
   index-style
   ========================================================================== */
.index-style .post-item {
  margin-bottom: 20px;
}
.index-style .post-title {
  font-size: 18px;
  display: block;
  padding-bottom: 15px;
}
.index-style .post-title:hover {
  color: #f1b820;
}
.index-style .post-thumbnail {
  min-height: 160px;
  will-change: opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.index-style .post-thumbnail:hover {
  opacity: 0.9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wp-pagenavi {
  font-size: 0;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #cccccc;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 14px;
  margin: 0 3px;
  padding: 3px 5px;
}
.wp-pagenavi a {
  border: 1px solid #cccccc;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #ffffff;
  border-color: #3b5993;
  background: #3b5993;
}

#top {
  min-height: 500px;
  text-align: center;
  color: #fff;
}
#top h1 {
  font-size: 60px;
}

.desctop_hide {
  display: none;
}

@media (max-width: 1140px) {
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
  .burger {
    position: fixed;
    z-index: 101;
    top: 10px;
    right: calc((100vw - 96%) / 2);
    will-change: transform;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* resp_menu_active
  ========================================================================== */
}
@media screen and (max-width: 1140px) and (max-width: 576px) {
  .burger {
    right: calc((100vw - 89.3333%) / 2);
    top: 5px;
  }
}
@media (max-width: 1140px) {
  .burger .burger-icon {
    display: inline-block;
    position: relative;
    margin-top: 4px;
    margin-bottom: 4px;
    user-select: none;
    will-change: transform;
    border-radius: 7px;
  }
  .burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--primary);
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .burger .burger-icon::before, .burger .burger-icon::after {
    position: absolute;
    content: "";
  }
  .burger .burger-icon::before {
    top: -4px;
  }
  .burger .burger-icon::after {
    top: 4px;
  }
  .burger .burger-icon::before {
    width: 10px;
    right: 0;
    will-change: transform;
    border-radius: 7px;
  }
  .burger .burger-icon::after {
    width: 18px;
    right: 0;
    will-change: transform;
    border-radius: 7px;
  }
  .burger.is-active .burger-icon {
    background-color: transparent;
  }
  .burger.is-active .burger-icon::before {
    transform: translateY(4px) rotate(45deg);
  }
  .burger.is-active .burger-icon::after {
    transform: translateY(-4px) rotate(-45deg);
  }
  .burger.is-active .burger-icon::before,
  .burger.is-active .burger-icon::after {
    background: var(--primary);
    width: 18px;
  }
  .mobile_menu_container {
    font-size: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    background: var(--secondary);
    will-change: transform, opacity;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 1140px) and (max-width: 768px) {
  .mobile_menu_container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1140px) {
  .mobile_menu_container.footer {
    padding: 15px 0 30px;
  }
  .mobile_menu_container.footer .footer__top {
    margin-bottom: 0;
  }
  .mobile_menu_container.footer .footer__brand {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary-2);
  }
}
@media screen and (max-width: 1140px) and (max-width: 576px) {
  .mobile_menu_container.footer .footer__brand .footer__logo {
    max-width: 98px;
  }
}
@media (max-width: 1140px) {
  .mobile_menu_container.footer .footer__brand img {
    width: 100%;
    object-fit: contain;
  }
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active:before {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mobile_menu_active .burger {
    position: fixed;
    top: 15px;
  }
}
@media screen and (max-width: 1140px) and (max-width: 576px) {
  .mobile_menu_active .burger {
    top: 11px;
  }
}
@media (max-width: 1140px) {
  .mobile_menu_active .burger span {
    position: relative;
    z-index: 101;
  }
  .mobile_menu_active .mobile_menu_container {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.alignleft {
  float: left;
  margin: 0 30px 10px 0;
}

.alignright {
  float: right;
  margin: 0 0 10px 30px;
}

.aligncenter {
  margin: 0 auto 20px;
}

.alignnone {
  margin: 0 0 20px;
}

.block-center {
  text-align: center;
  position: relative;
}

@media (max-width: 1024px) {
  .alignleft, .aligncenter, .alignright {
    float: none;
    margin: 0 auto 20px;
  }
  .alignnone {
    margin: 0 0 20px;
  }
}
.contact-form-pop-up {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 105;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  transition: 0.5s opacity, 0.5s visibility, 0.5s z-index;
  overflow-y: hidden;
}
.contact-form-pop-up.pop-up-active {
  visibility: visible !important;
  opacity: 1 !important;
  transition: 0.5s opacity, 0.5s visibility, 0.5s z-index;
}
.contact-form-pop-up .contact-form-pop-up-background {
  z-index: 106;
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--secondary);
}
.contact-form-pop-up .contact-form-pop-up-close-btn {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 107;
}
.contact-form-pop-up .contact-form-pop-up-close-btn:hover svg path {
  fill: var(--primary);
}
.contact-form-pop-up .contact-form-pop-up-close-btn svg path {
  transition: 0.3s all ease;
}
.contact-form-pop-up .contact-form-pop-up-container {
  z-index: 107;
  max-height: calc(93vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}

.cky-consent-container {
  width: 1220px !important;
  max-width: 96%;
  left: 50% !important;
  bottom: 40px !important;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .cky-consent-container {
    left: 0 !important;
    bottom: 0 !important;
    transform: none;
    max-width: 100%;
  }
}
.cky-consent-container .cky-consent-bar {
  border: none !important;
  box-shadow: none !important;
  background: var(--secondary) !important;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar {
    border-radius: 4px 4px 0 0;
  }
}
.cky-consent-container .cky-consent-bar > div:not(.cky-notice-content-wrapper) {
  display: none !important;
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper {
  padding: 20px 40px !important;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper {
    padding: 20px !important;
  }
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group {
  gap: 30px;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group {
    position: relative;
    padding-left: 20px;
  }
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    border-radius: 16px 0 0 16px;
  }
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child {
  position: relative;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child {
    padding-left: 0;
  }
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 16px 0 0 16px;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child:before {
    display: none;
  }
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child .cky-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--h5-size);
  line-height: 120%;
  color: var(--gray-75) !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child .cky-title {
    margin-bottom: 8px !important;
  }
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child .cky-notice-des {
  padding: 0;
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child .cky-notice-des p {
  font-size: var(--body-m);
  color: var(--gray-75);
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group > div:first-child .cky-notice-des p {
    font-size: var(--body-s);
  }
}
.cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group .cky-notice-btn-wrapper {
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0;
  gap: 10px;
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group .cky-notice-btn-wrapper {
    margin-top: 16px !important;
    gap: 8px;
  }
}
@media (max-width: 576px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group .cky-notice-btn-wrapper {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group .cky-notice-btn-wrapper .cky-btn {
    font-size: var(--сaption) !important;
    max-width: max-content;
    padding: 9px 15px !important;
  }
  .cky-consent-container .cky-consent-bar .cky-notice-content-wrapper .cky-notice .cky-notice-group .cky-notice-btn-wrapper .cky-btn.cky-btn-customize {
    padding: 8px 15px !important;
  }
}

.cky-modal .cky-footer-wrapper > div:last-child {
  display: none !important;
}

.cky-btn {
  margin: 0 !important;
  font-size: var(--body-s) !important;
  line-height: 1 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11.5px 20px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  color: var(--secondary) !important;
  border: none !important;
  outline: 0;
  background: var(--primary) !important;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cky-btn:hover {
  background: var(--primary-hover);
  color: var(--secondary);
}
.cky-btn:disabled {
  opacity: 0.3;
}
.cky-btn:after {
  display: none;
}
.cky-btn.cky-btn-customize, .cky-btn.cky-btn-preferences {
  color: var(--black) !important;
  border: 1px solid rgba(2, 6, 23, 0.25) !important;
  padding: 10.5px 20px !important;
  background: transparent !important;
}
.cky-btn.cky-btn-customize:hover, .cky-btn.cky-btn-preferences:hover {
  background: var(--secondary-2) !important;
  border-color: transparent !important;
}
.cky-overlay {
  background: rgba(0, 0, 0, 0.8) !important;
  opacity: 1 !important;
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.main_nav {
  font-size: 0;
}
.main_nav * {
  line-height: 1;
}
.main_nav a {
  display: block;
}
.main_nav a:hover {
  text-decoration: none;
}
.main_nav .level_a {
  position: relative;
}
.main_nav .level_a li {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.main_nav .level_a > li > a {
  font-size: 14px;
  padding: 5px 20px;
  color: var(--secondary);
  font-weight: 600;
}
.main_nav .level_a > li.current-menu-item > a, .main_nav .level_a > li:hover > a {
  color: var(--primary-hover);
}
.main_nav .level_a > li.menu-item-has-children:hover > a {
  color: var(--primary-hover) !important;
}
.main_nav .level_a > li.menu-item-has-children > a {
  padding-right: 36px;
  position: relative;
}
.main_nav .level_a > li.menu-item-has-children > a:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.77333 9.78745L11.7082 6.85255C12.1114 6.44937 11.8259 5.76 11.2557 5.76L5.38588 5.76C4.8157 5.76 4.53015 6.44937 4.93333 6.85255L7.86823 9.78745C8.11817 10.0374 8.52339 10.0374 8.77333 9.78745Z' fill='%231D4ED8'/%3E%3C/svg%3E%0A");
}
.main_nav .level_a > li.menu-item-has-children:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  content: "";
}
.main_nav .level_a > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.main_nav .level_a > li > .sub-menu {
  position: absolute;
  z-index: 100;
  display: flex;
  width: 250px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 4px;
  background: var(--secondary);
  border: 1px solid var(--secondary-2);
  flex-direction: column;
  row-gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  left: 20px;
}
.main_nav .level_a > li > .sub-menu .sub-menu {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.main_nav .level_a > li > .sub-menu li {
  display: block;
  list-style-type: none;
}
.main_nav .level_a > li > .sub-menu a {
  font-size: 14px;
  line-height: 1.2;
  color: var(--black);
}
.main_nav .level_a > li > .sub-menu a:hover {
  text-decoration: none;
  color: var(--primary-hover);
}

/* ==========================================================================
   Archive services
   ========================================================================== */
.breadcrumbs {
  padding-top: 120px;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .breadcrumbs {
    padding-top: 76px;
  }
}

.post-type-archive-services h1 {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .post-type-archive-services h1 {
    margin-bottom: 16px;
  }
}
.post-type-archive-services h1 + p {
  color: var(--gray-75);
  padding-bottom: 0;
  margin-bottom: 20px;
  padding-right: clamp(0vw, 100vw - 600px, 600px);
}
@media screen and (max-width: 576px) {
  .post-type-archive-services h1 + p {
    color: var(--black);
  }
}
.post-type-archive-services .services-acc__head {
  display: none;
}
@media (max-width: 576px) {
  .post-type-archive-services .services-acc__media {
    display: flex;
  }
}

.error404 {
  padding-top: 150px;
}
@media screen and (max-width: 576px) {
  .error404 {
    padding-top: 120px;
  }
}
.error404 .error-page {
  min-height: 36vh;
  text-align: center;
  padding-bottom: 30px;
}
.error404 h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
  font-weight: 600;
  font-size: 276px;
  line-height: 120%;
  margin-bottom: 40px;
}
@media screen and (max-width: 1140px) {
  .error404 h1 {
    font-size: 180px;
    column-gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .error404 h1 {
    font-size: 140px;
    column-gap: 35px;
  }
}
@media screen and (max-width: 576px) {
  .error404 h1 {
    font-size: 100px;
    column-gap: 25px;
  }
}
.error404 ._h4 {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .error404 ._h4 {
    margin-bottom: 16px;
  }
}
.error404 .anim {
  position: relative;
  max-width: 239px;
  width: 100%;
  aspect-ratio: 239/290;
  display: flex;
}
@media screen and (max-width: 1140px) {
  .error404 .anim {
    max-width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .error404 .anim {
    max-width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .error404 .anim {
    max-width: 92px;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error404 .anim:before {
  content: "";
  display: block;
  position: absolute;
  width: 135%;
  height: 57%;
  right: -23px;
  bottom: -23px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(12px);
  mask-image: linear-gradient(to top, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  transform-origin: 50% 0%;
  animation: rotate 10s linear infinite;
}
@media screen and (max-width: 1140px) {
  .error404 .anim:before {
    transform-origin: 50% -10%;
  }
}
@media screen and (max-width: 576px) {
  .error404 .anim:before {
    right: -25px;
    bottom: -13px;
    width: 157%;
    backdrop-filter: blur(6px);
    transform-origin: 50% -5%;
  }
}
.error404 .anim svg {
  width: 100%;
  height: 100%;
}
.error404 .num {
  z-index: 3;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  will-change: transform, opacity;
  padding: 10px 40px 10px 30px;
  transition: background 0.3s ease;
}
@media screen and (max-width: 576px) {
  header {
    padding: 10px 8px;
  }
}
header .flex {
  column-gap: 20px;
}
header .logo-wrap {
  flex: 1;
}
header #logo img {
  max-width: 147px;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  header #logo img {
    max-width: 98px;
  }
}
header #logo .img-logo-active {
  display: none;
}
header .btn-global {
  font-size: 14px;
}
@media screen and (max-width: 1140px) {
  header .btn-global {
    display: none;
  }
}

.switcher__filter {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
}

.header-glass {
  backdrop-filter: blur(4px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(4px) saturate(var(--saturation));
  box-shadow: inset 2px 3px 1px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -3px -7px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
}

.active-header .header, .post-type-archive-services .header, .error404 .header {
  background: #FFFFFF;
  box-shadow: unset;
}
.active-header .header #logo .img-logo, .post-type-archive-services .header #logo .img-logo, .error404 .header #logo .img-logo {
  display: none;
}
.active-header .header #logo .img-logo-active, .post-type-archive-services .header #logo .img-logo-active, .error404 .header #logo .img-logo-active {
  display: block;
}
.active-header .header .main_nav .level_a > li.current-menu-item > a, .post-type-archive-services .header .main_nav .level_a > li.current-menu-item > a, .error404 .header .main_nav .level_a > li.current-menu-item > a {
  color: var(--primary-hover);
  pointer-events: none;
}
.active-header .header .main_nav .level_a > li > a, .post-type-archive-services .header .main_nav .level_a > li > a, .error404 .header .main_nav .level_a > li > a {
  color: var(--black);
}
.active-header .header .main_nav .level_a > li > a:hover, .post-type-archive-services .header .main_nav .level_a > li > a:hover, .error404 .header .main_nav .level_a > li > a:hover {
  color: var(--primary-hover);
}
.active-header .header .btn-global, .post-type-archive-services .header .btn-global, .error404 .header .btn-global {
  color: var(--black);
  border: 1px solid rgba(2, 6, 23, 0.25);
  padding: 10px 20px;
}
.active-header .header .btn-global:hover, .post-type-archive-services .header .btn-global:hover, .error404 .header .btn-global:hover {
  background: var(--secondary-2);
  border-color: transparent;
}

.footer {
  padding: 40px 0 20px;
  background: #ffffff;
  border-top: 1px solid var(--secondary-2);
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 100px 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .footer__link {
    font-size: 16px;
  }
}
.footer__brand {
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .footer__brand {
    margin-bottom: 32px;
  }
}
.footer__logo {
  max-width: 147px;
  display: block;
}
.footer__logo img {
  width: 100%;
  object-fit: contain;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 610px;
  width: 100%;
  column-gap: 20px;
  row-gap: 32px;
}
@media screen and (max-width: 576px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .footer__cols ._сaption {
    font-size: 10px;
    padding-bottom: 16px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 576px) {
  .footer__list {
    row-gap: 16px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  row-gap: 32px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.footer__right {
  text-align: right;
  min-width: max-content;
}
@media screen and (max-width: 768px) {
  .footer__right {
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid var(--secondary-2);
}
.footer__clutch {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 48px;
  height: 40px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .footer__clutch {
    margin-bottom: 0;
    margin-top: 35px;
    order: 1;
  }
}
.footer__clutch:hover img {
  opacity: 0.7;
}
.footer__clutch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.footer__clutch:before {
  content: "4.7";
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--black);
  position: absolute;
  right: 0;
}
.footer__social {
  display: flex;
  gap: 15px;
  margin-bottom: 23px;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer__social {
    justify-content: flex-start;
  }
}
.footer__social .footer__social-link {
  width: 33px;
  height: 33px;
  padding: 0;
}
.footer__social .footer__social-link:hover svg path {
  fill: var(--primary-hover);
}
.footer__buttons {
  display: inline-flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer__buttons {
    align-items: flex-start;
  }
}
.footer__buttons .btn-global {
  padding: 12px 21px;
}
@media screen and (max-width: 768px) {
  .footer__buttons .btn-global {
    padding: 10px 16px;
  }
}
.footer__bottom-links {
  display: inline-flex;
  column-gap: 40px;
}

.hero {
  background-color: var(--black);
  color: var(--secondary);
  min-height: 738px;
  padding-top: 180px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .hero {
    padding-bottom: 100px;
    padding-top: 60px;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
.hero:before {
  content: "";
  display: block;
  position: absolute;
  width: 500px;
  height: 500px;
  background: #1D4DD3;
  filter: blur(234.4px);
  bottom: 0;
  left: calc((100vw - 1440px) / 2);
  transform: translate(-7.5%, 30%);
}
@media screen and (max-width: 576px) {
  .hero:before {
    width: 312px;
    height: 312px;
    left: 0;
    transform: translate(-35%, 68%);
    filter: blur(124.8px);
  }
}
.hero .container {
  position: relative;
}
.hero .inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
@media screen and (max-width: 1140px) {
  .hero .inner {
    width: 63%;
  }
}
@media screen and (max-width: 576px) {
  .hero .inner {
    width: 100%;
  }
}
.hero h1 {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .hero h1 {
    margin-bottom: 16px;
  }
}
.hero .text {
  padding-bottom: 40px;
  max-width: 550px;
  color: var(--white-75);
}
@media screen and (max-width: 576px) {
  .hero .text {
    padding-bottom: 32px;
    font-size: 16px;
  }
}
.hero__buttons {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .hero__buttons {
    margin-bottom: 32px;
  }
}
.hero .img-wrap {
  position: absolute;
  top: 0;
  right: calc((100vw - 1440px) / 2);
  transform: translate(10%, -25%);
  max-width: 747px;
  aspect-ratio: 747/905;
  padding-left: 22px;
  width: 62vw;
}
@media screen and (max-width: 1140px) {
  .hero .img-wrap {
    transform: translate(24%, 11%);
    width: 46vw;
    right: unset;
    left: 56%;
  }
}
@media screen and (max-width: 576px) {
  .hero .img-wrap {
    position: static;
    margin: 0 auto;
    transform: translate(0%, 0%);
    padding: 0 10px;
    width: 70vw;
  }
}
.hero .img-wrap:before {
  content: "";
  display: block;
  position: absolute;
  width: 106%;
  height: 53%;
  right: -26px;
  bottom: var(--hero-gap);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.1) 100%);
  backdrop-filter: blur(12px);
  mask-image: linear-gradient(to top, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .hero .img-wrap:before {
    height: 80%;
  }
}
@media screen and (max-width: 576px) {
  .hero .img-wrap:before {
    right: 0px;
    bottom: clamp(-90px, 53.2835820896px + -24.8756218905vw, -40px);
    height: 53%;
    backdrop-filter: blur(6px);
  }
}
.hero .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
  transition: transform 0.3s linear;
}
.hero .img-wrap-2 {
  position: absolute;
  right: calc((100vw - 1200px) / 2);
  max-width: 446px;
  aspect-ratio: 446/540;
  bottom: 78px;
  width: 70%;
}
.hero .img-wrap-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
@media screen and (max-width: 1140px) {
  .hero .img-wrap-2 {
    left: 65%;
    right: unset;
  }
}
@media screen and (max-width: 576px) {
  .hero .img-wrap-2 {
    position: static;
    width: 100%;
    margin-left: 5.33%;
    max-width: 100%;
    height: 272px;
  }
}
@media screen and (max-width: 480px) {
  .hero .img-wrap-2 {
    margin-left: 0;
    height: auto;
  }
}
.hero .text_badge {
  position: absolute;
  display: none;
  z-index: 5;
  max-width: 210px;
  padding: 10px 20px 10px 54px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #FFFFFF;
  backdrop-filter: blur(4px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(4px) saturate(var(--saturation));
  box-shadow: inset 2px 3px 1px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -3px -7px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
}
.hero .text_badge:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_46_6869)'%3E%3Cpath d='M18.1572 9.71125C18.1209 9.64712 18.0682 9.59378 18.0045 9.55667C17.9408 9.51956 17.8684 9.5 17.7947 9.5H12.3364L13.2515 2.50802C13.2613 2.41445 13.2393 2.32029 13.1891 2.24071C13.1389 2.16113 13.0634 2.10076 12.9747 2.06932C12.886 2.03787 12.7894 2.03719 12.7002 2.06738C12.6111 2.09757 12.5348 2.15687 12.4834 2.23573L5.84553 13.8651C5.80672 13.9282 5.78544 14.0006 5.7839 14.0747C5.78236 14.1488 5.80062 14.2219 5.83678 14.2866C5.87294 14.3513 5.9257 14.4052 5.98962 14.4427C6.05355 14.4802 6.12632 14.5 6.20043 14.5H11.5772L10.852 21.5025C10.8449 21.5958 10.8691 21.6887 10.9209 21.7666C10.9727 21.8445 11.0491 21.9028 11.1378 21.9322C11.2266 21.9617 11.3227 21.9607 11.4108 21.9292C11.4988 21.8978 11.5739 21.8378 11.624 21.7589L18.1522 10.1307C18.1901 10.0675 18.2105 9.99536 18.2113 9.92167C18.2122 9.84797 18.1935 9.77537 18.1572 9.71125Z' fill='%23F9FAFB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_46_6869'%3E%3Crect width='20' height='20' fill='white' transform='translate(2 2)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .hero .text_badge {
    font-size: 10px;
    padding: 8px 14px 8px 48px;
    max-width: 170px;
  }
}
.hero__date {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__date .date-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 28px;
  color: var(--white-75);
}
.hero__date .date-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_48_7607)'%3E%3Cg clip-path='url(%23clip1_48_7607)'%3E%3Cpath d='M10 0C4.47721 0 0 4.47721 0 10C0 15.5228 4.47721 20 10 20C15.5228 20 20 15.5228 20 10C19.9938 4.47982 15.5202 0.00618492 10 0ZM18.6486 13.5033L15.8047 13.994C16.1302 12.8001 16.306 11.5705 16.328 10.3333H19.325C19.2874 11.4215 19.0584 12.4946 18.6486 13.5033ZM0.674967 10.3333H3.67204C3.69401 11.5705 3.86979 12.8001 4.19531 13.994L1.3514 13.5033C0.941569 12.4946 0.712565 11.4215 0.674967 10.3333ZM1.3514 6.49675L4.19531 6.00602C3.86979 7.19987 3.69401 8.42953 3.67204 9.66667H0.674967C0.712565 8.57845 0.941569 7.50537 1.3514 6.49675ZM10.3333 5.35205C11.5311 5.36735 12.7259 5.4764 13.9067 5.67839L15.0833 5.88135C15.4448 7.11149 15.6393 8.3846 15.6616 9.66667H10.3333V5.35205ZM14.0203 5.02132C12.8021 4.81315 11.5692 4.70068 10.3333 4.68538V0.685384C12.2443 0.868978 13.9043 2.61865 14.8451 5.16504L14.0203 5.02132ZM9.66667 4.68538C8.43083 4.70068 7.19824 4.81315 5.97998 5.02132L5.15495 5.16406C6.0957 2.61702 7.7557 0.866699 9.66667 0.683919V4.68538ZM6.09359 5.67839C7.27425 5.4764 8.46891 5.36735 9.66667 5.35205V9.66667H4.33838C4.36068 8.3846 4.55518 7.11149 4.91667 5.88135L6.09359 5.67839ZM4.33838 10.3333H9.66667V14.6479C8.46891 14.6327 7.27409 14.5236 6.09326 14.3216L4.91667 14.1187C4.55518 12.8885 4.36068 11.6154 4.33838 10.3333ZM5.97966 14.9787C7.19792 15.1872 8.43066 15.3001 9.66667 15.3164V19.3164C7.7557 19.1327 6.0957 17.383 5.15495 14.8366L5.97966 14.9787ZM10.3333 15.3164C11.5692 15.3001 12.8018 15.1872 14.02 14.9787L14.8451 14.8359C13.9043 17.383 12.2443 19.1333 10.3333 19.3161V15.3164ZM13.9064 14.3216C12.7257 14.5236 11.5311 14.6327 10.3333 14.6479V10.3333H15.6616C15.6393 11.6154 15.4448 12.8885 15.0833 14.1187L13.9064 14.3216ZM16.328 9.66667C16.306 8.42953 16.1302 7.19987 15.8047 6.00602L18.6486 6.49675C19.0584 7.50537 19.2874 8.57845 19.325 9.66667H16.328ZM18.3114 5.76204L15.5853 5.29167C15.0952 3.69287 14.1784 2.25798 12.9333 1.1416C15.2616 1.91862 17.1924 3.57731 18.3114 5.76204ZM7.06673 1.1416C5.82161 2.25798 4.90479 3.69287 4.41471 5.29167L1.68864 5.76204C2.80762 3.57731 4.73844 1.91862 7.06673 1.1416ZM1.68864 14.238L4.41471 14.7083C4.90479 16.3071 5.82161 17.742 7.06673 18.8584C4.73844 18.0814 2.80762 16.4227 1.68864 14.238ZM12.9333 18.8584C14.1784 17.742 15.0952 16.3071 15.5853 14.7083L18.3114 14.238C17.1924 16.4227 15.2616 18.0814 12.9333 18.8584Z' fill='%231D4ED8'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_48_7607'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_48_7607'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.result {
  margin: 180px 0;
}
@media screen and (max-width: 1140px) {
  .result {
    margin: 140px 0;
  }
}
@media screen and (max-width: 576px) {
  .result {
    margin: 100px 0;
  }
}
.result__grid {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
  row-gap: 32px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .result__grid {
    flex-direction: column;
  }
}
@keyframes resultLayer1In {
  0% {
    transform: translate(2%, 30%);
  }
  100% {
    transform: translate(10%, 37%);
  }
}
@keyframes resultLayer2In {
  0% {
    transform: translate(-2%, -30%);
  }
  100% {
    transform: translate(-10%, -37%);
  }
}
@keyframes labelFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.result__card {
  max-width: 401px;
  width: 100%;
  height: 464px;
  border: 1px solid var(--secondary-2);
  border-radius: 20px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.result__card.is-inview .result__card-label.top {
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.3s;
}
.result__card.is-inview .result__card-label.bottom {
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.3s;
}
.result__card.is-inview .result__card-label.center {
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 1s;
}
.result__card.is-inview .result__card-layer--1 {
  animation: resultLayer1In 1.2s ease forwards;
}
.result__card.is-inview .result__card-layer--2 {
  animation: resultLayer2In 1.2s ease forwards;
}
.result__card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  position: relative;
}
.result__card-wrap .center {
  text-align: center;
  color: var(--primary);
  transition: opacity 5s ease;
}
.result__card-wrap .bottom {
  text-align: right;
  transition: opacity 5s ease;
}
.result__card-wrap .top {
  transition: opacity 5s ease;
}
.result__card-label {
  opacity: 0;
}
.result__content {
  max-width: 600px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .result__content {
    max-width: 100%;
  }
}
.result__label {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .result__label {
    margin-bottom: 16px;
  }
}
.result__text {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .result__text {
    margin-bottom: 32px;
    font-size: 20px;
  }
}
.result__stats {
  display: flex;
  column-gap: 80px;
}
@media screen and (max-width: 768px) {
  .result__stats {
    column-gap: 50px;
  }
}
.result__stat {
  max-width: 140px;
  width: 100%;
}
.result__stat-label {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .result__stat-label {
    margin-bottom: 16px;
  }
}
.result__stat-value {
  color: var(--primary);
}
.result__card-layer {
  position: absolute;
  display: block;
  width: 1092px;
  height: 1328px;
  transition: transform 3s linear;
}
.result__card-layer--1 {
  right: 50%;
  bottom: 50%;
  transform: translate(2%, 30%);
}
.result__card-layer--2 {
  left: 50%;
  top: 50%;
  transform: translate(-2%, -30%);
}

.cases-slider {
  margin: 160px 0;
  overflow: hidden;
}
@media screen and (max-width: 1140px) {
  .cases-slider {
    margin: 140px 0;
  }
}
@media screen and (max-width: 576px) {
  .cases-slider {
    margin: 100px 0;
  }
}
.cases-slider__title {
  flex: 1;
}
.cases-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 32px;
  row-gap: 32px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cases-slider__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .cases-slider__head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: unset;
  }
}
.cases-slider__actions {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .cases-slider__actions {
    justify-content: space-between;
  }
}
.cases-slider__nav {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 30px;
  column-gap: 18px;
  transition: background-color 0.3s ease;
}
.cases-slider__nav:hover {
  background: var(--secondary-2);
}
@media screen and (max-width: 576px) {
  .cases-slider__nav {
    column-gap: 4px;
    padding: 5px 10px;
  }
}
.cases-slider__all.border {
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .cases-slider__all.border {
    font-size: 12px;
    padding: 8px 16px;
  }
}
.cases-slider__counter {
  width: 50px;
  text-align: center;
  display: none;
}
@media screen and (max-width: 576px) {
  .cases-slider__counter {
    display: block;
    font-size: 10px;
  }
}
.cases-slider__btn {
  display: flex;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.cases-slider__btn:hover {
  background-color: var(--secondary);
}
@media screen and (max-width: 768px) {
  .cases-slider .swiper {
    overflow: visible;
  }
}

.cases-card .cases-card__link:hover {
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .cases-card .cases-card__link:hover .cases-card__media {
    transform: scale(1.05);
  }
}
.cases-card .cases-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 100px) !important;
  object-fit: cover;
  object-position: top;
  will-change: transform;
  transition: transform 0.15s linear;
}
.cases-card .cases-card__text {
  color: var(--gray-75);
}
@media screen and (max-width: 576px) {
  .cases-card .cases-card__text {
    font-size: 14px;
    padding-bottom: 16px;
  }
}
.cases-card .btn-global {
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .cases-card .btn-global {
    font-size: 12px;
    padding: 8px 16px;
  }
}
.cases-card:not(.cases-card-archive-slide) .cases-card__media-wrap {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px;
}
.cases-card:not(.cases-card-archive-slide) .cases-card__media {
  position: relative;
  aspect-ratio: 585/516;
  will-change: transform;
  transition: transform 0.4s ease;
}
.cases-card:not(.cases-card-archive-slide) .cases-card__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .cases-card:not(.cases-card-archive-slide) .cases-card__title {
    margin-bottom: 8px;
  }
}

.services-acc {
  margin: 120px 0;
}
@media screen and (max-width: 576px) {
  .services-acc {
    margin: 100px 0;
  }
}
.services-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 85px;
}
@media screen and (max-width: 576px) {
  .services-acc__head {
    margin-bottom: 40px;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 32px;
    align-items: flex-start;
  }
}
.services-acc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .services-acc__grid {
    grid-template-columns: 1fr;
  }
}
.services-acc__all.border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .services-acc__all.border {
    font-size: 12px;
    padding: 8px 14px;
    margin-left: auto;
  }
}
.services-acc__media {
  max-width: 445px;
  width: 100%;
  aspect-ratio: 445/434;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .services-acc__media {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .services-acc__media {
    display: none;
  }
}
.services-acc__media .services-acc__img-placeholder {
  width: 65%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  backdrop-filter: blur(2px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(2px) saturate(var(--saturation));
  box-shadow: inset -3px 0px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 2px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 1px 0px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
  position: relative;
  z-index: 2;
}
.services-acc__media .light-square {
  max-width: 281px;
  width: 63%;
  aspect-ratio: 1/1;
  position: absolute;
  background: linear-gradient(225deg, #DBEAFE 0%, rgba(219, 234, 254, 0) 100%);
  border-radius: 60px;
  bottom: 0;
  left: 0;
  transition: all 0.5s linear;
}
.services-acc__media .blue-square {
  position: absolute;
  background: var(--primary);
  border-radius: 60px;
  top: 0;
  right: 0;
  max-width: 313px;
  width: 70%;
  aspect-ratio: 1/1;
  transition: all 0.5s linear;
}
.services-acc__media.is-active-1 .light-square {
  bottom: 37%;
  left: 37%;
}
.services-acc__media.is-active-1 .blue-square {
  top: 30%;
  right: 30%;
}
.services-acc__media.is-active-2 .light-square {
  bottom: 37%;
  left: 0;
}
.services-acc__media.is-active-2 .blue-square {
  top: 30%;
  right: 0;
}
.services-acc__media.is-active-3 .light-square {
  bottom: 0;
  left: 37%;
}
.services-acc__media.is-active-3 .blue-square {
  top: 0;
  right: 30%;
}
.services-acc__media.is-active-4 .light-square {
  bottom: 37%;
  left: 0;
}
.services-acc__media.is-active-4 .blue-square {
  top: 30%;
  right: 0;
}
.services-acc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.services-acc__img._active {
  opacity: 1;
  pointer-events: auto;
}
.services-acc__list {
  display: flex;
  flex-direction: column;
  row-gap: 29px;
}

.acc-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 576px) {
  .acc-item__head {
    gap: 6px;
  }
}
.acc-item__title {
  transition: color 0.3s ease;
}
.acc-item__icon {
  width: 40px;
  height: 40px;
}
.acc-item__icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .acc-item__icon {
    width: 24px;
    height: 24px;
  }
}
.acc-item__body {
  display: none;
  will-change: transform;
}
.acc-item__content {
  padding-top: 12px;
  max-width: 520px;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .acc-item__content {
    font-size: 14px;
  }
}
.acc-item__btn {
  margin-top: 20px;
  font-size: 14px;
  display: inline-flex;
}
.acc-item._active .acc-item__title {
  color: var(--primary);
}
.acc-item._active .acc-item__icon svg {
  transform: rotate(135deg);
}
.acc-item._active .acc-item__icon svg path {
  stroke: rgba(2, 6, 23, 0.5);
}

.value-where {
  margin: 120px 0;
}
@media screen and (max-width: 576px) {
  .value-where {
    margin: 100px 0;
  }
}
.value-where__container {
  padding: 30px 0;
  min-height: 745px;
  display: flex;
  align-items: center;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .value-where__container {
    min-height: 842px;
    border-radius: 0;
    padding: 80px 0;
    align-items: flex-start;
  }
}
.value-where__container:before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  max-width: 586px;
  width: 100%;
  background: #1D4DD3;
  filter: blur(234.4px);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  position: absolute;
  right: 0;
  bottom: -10%;
}
@media (max-width: 576px) {
  .value-where__container:before {
    max-width: 334px;
    filter: blur(133.6px);
    right: 15px;
  }
}
.value-where__decor {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 984px;
  width: 100%;
  aspect-ratio: 984/1195;
  transform: translate(17%, 46%);
}
.value-where__decor svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .value-where__decor {
    max-width: 348px;
    transform: translate(7%, 33%);
  }
}
.value-where__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  row-gap: 60px;
  color: var(--white);
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .value-where__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.value-where__right {
  max-width: 515px;
  width: 100%;
}
@media (max-width: 1024px) {
  .value-where__right {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .value-where__right {
    max-width: 100%;
    margin-left: 0;
  }
}
.value-where__list {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
@media (max-width: 576px) {
  .value-where__list {
    row-gap: 16px;
  }
}
.value-where__item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}
@media (max-width: 576px) {
  .value-where__item {
    column-gap: 10px;
  }
}
.value-where__item:nth-child(1) {
  transform: translateX(8%);
}
.value-where__item:nth-child(2) {
  transform: translateX(21%);
}
.value-where__item:nth-child(3) {
  transform: translateX(-29%);
}
.value-where__item:nth-child(4) {
  transform: translateX(-10%);
}
.value-where__item:nth-child(5) {
  transform: translateX(-16%);
}
.value-where__item:nth-child(6) {
  transform: translateX(8%);
}
.value-where__item:nth-child(7) {
  transform: translateX(24%);
}
.value-where__item:nth-child(8) {
  transform: translateX(8%);
}
.value-where__item:nth-child(9) {
  transform: translateX(21%);
}
.value-where__item:nth-child(10) {
  transform: translateX(-29%);
}
.value-where__item:nth-child(11) {
  transform: translateX(-10%);
}
@media (max-width: 768px) {
  .value-where__item {
    transform: translateX(0%) !important;
  }
}
.value-where__item.is-active {
  transform: translateX(0);
}
.value-where__item.is-active .value-where__dot {
  animation: labelFadeIn 0.5s ease forwards;
}
.value-where__item.is-active .value-where__pill {
  transform: translateX(0);
}
@keyframes labelFadeIn {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.value-where__dot {
  width: 20px;
  height: 20px;
  opacity: 0;
}
.value-where__pill {
  padding: 10px 40px;
  border-radius: 111px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(2px) saturate(var(--saturation));
  box-shadow: inset 0px 0px 1px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .value-where__pill {
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateX(calc(100vw - 100% - 83px));
  }
}
@media (max-width: 576px) {
  .value-where__pill {
    font-size: 14px;
    padding: 10px 16px;
    transform: translateX(calc(100vw - 100% - 70px));
  }
}

.contact-block {
  margin: 120px 0;
}
@media screen and (max-width: 576px) {
  .contact-block {
    margin: 100px 0;
  }
}
.contact-block__inner {
  background-color: var(--secondary-2);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 48px 60px;
}
@media (max-width: 1024px) {
  .contact-block__inner {
    padding: 35px 30px 35px 50px;
    gap: 48px 30px;
  }
}
@media (max-width: 768px) {
  .contact-block__inner {
    flex-direction: column;
    border-radius: 4px;
    padding: 0 0 48px 0;
  }
}
.contact-block__left {
  position: relative;
  max-width: 409px;
  width: 100%;
  background: var(--primary);
  border-radius: 4px;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-left: 78px;
  max-height: 192px;
}
@media (max-width: 768px) {
  .contact-block__left {
    max-width: 100%;
    max-height: 184px;
    padding: 0 20px;
  }
}
.contact-block__left:before {
  content: "";
  display: block;
  height: 100%;
  width: 60%;
  position: absolute;
  left: 78px;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, #1D4ED8 0%, rgba(29, 78, 216, 0) 49.52%, #1D4ED8 100%);
}
@media (max-width: 768px) {
  .contact-block__left:before {
    left: 0;
    border-radius: 4px;
  }
}
.contact-block__right {
  max-width: 551px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact-block__right {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .contact-block__right {
    max-width: 100%;
    padding: 0 20px;
    row-gap: 16px;
  }
}
@media (max-width: 576px) {
  .contact-block__text {
    font-size: 16px;
  }
}
.contact-block__blue-icon {
  position: absolute;
  left: -40px;
  top: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  width: 104px;
  border-radius: 111px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px) var(--switcher-filter) saturate(var(--saturation));
  box-shadow: inset -1px -1px 1px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 1px 1px 1px 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 1px 1px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
}
@media (max-width: 768px) {
  .contact-block__blue-icon {
    width: 68px;
    height: 106px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    top: 50%;
    transform: translateY(-50%);
    right: 68px;
    left: unset;
    box-shadow: inset 1px 1px 1px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 2px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 1px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
    z-index: 3;
  }
}
.contact-block__decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.contact-block__blue {
  overflow: hidden;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  justify-content: flex-start;
}
.contact-block__questions {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  animation: scroll 20s linear infinite;
}
@media (max-width: 576px) {
  .contact-block__questions .contact-block__q {
    font-size: 12px;
  }
}
@keyframes scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-100% - 4px));
  }
}
.contact-block .btn-global {
  padding: 12px 20px;
}
@media (max-width: 576px) {
  .contact-block .btn-global {
    padding: 10px 17px;
  }
}
.contact-block.archive .contact-block__left:before, .contact-block.archive .contact-block__decor {
  display: none;
}
@media (max-width: 768px) {
  .contact-block.archive .contact-block__decor {
    display: block;
    top: 29px;
    transform: none;
  }
}
.contact-block.archive .contact-block__left {
  padding: 20px 40px;
  max-width: 328px;
}
@media (max-width: 768px) {
  .contact-block.archive .contact-block__left {
    max-width: 100%;
    position: relative;
    padding: 32px 55px 32px 32px;
  }
}
.contact-block.archive .contact-block__blue {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-direction: row;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .contact-block.archive .contact-block__blue {
    position: static;
  }
}
.contact-block.archive ._h5 {
  flex: 1;
}
@media (max-width: 768px) {
  .contact-block.archive ._h5 {
    font-size: 20px;
  }
}
.contact-block.archive .contact-block__decor-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  width: 80px;
  height: 80px;
}
.contact-block.archive .contact-block__blue-icon {
  width: 104px;
  height: 226px;
  border-radius: 60px;
  top: -53px;
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .contact-block.archive .contact-block__blue-icon {
    display: none;
  }
}
.contact-block.archive .contact-block__right {
  max-width: 632px;
}
.contact-block.archive .contact-block__inner {
  gap: 48px 52px;
}
@media (max-width: 768px) {
  .contact-block.archive .contact-block__inner {
    flex-direction: column-reverse;
    border-radius: 4px;
    padding: 0 0 48px 0;
  }
}

.hero-services {
  background-color: var(--black);
  color: var(--secondary);
  padding-top: 120px;
  padding-bottom: 77px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .hero-services {
    padding-bottom: 100px;
    padding-top: 76px;
  }
}
.hero-services:before {
  content: "";
  display: block;
  position: absolute;
  width: 500px;
  height: 500px;
  background: #1D4DD3;
  filter: blur(234.4px);
  bottom: 0;
  left: calc((100vw - 1440px) / 2);
  transform: translate(-7.5%, 30%);
}
@media screen and (max-width: 576px) {
  .hero-services:before {
    width: 312px;
    height: 312px;
    left: 0;
    transform: translate(-35%, 68%);
    filter: blur(124.8px);
  }
}
.hero-services .container {
  position: relative;
  display: flex;
  column-gap: 100px;
  margin-top: 43px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .hero-services .container {
    column-gap: 40px;
    row-gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .hero-services .container {
    flex-direction: column-reverse;
  }
}
.hero-services .breadcrumbs a {
  color: var(--white);
}
.hero-services .breadcrumbs a:hover {
  color: var(--primary-hover);
}
.hero-services .inner {
  margin-top: 37px;
  max-width: 600px;
}
@media screen and (max-width: 1140px) {
  .hero-services .inner {
    width: 63%;
  }
}
@media screen and (max-width: 768px) {
  .hero-services .inner {
    width: 100%;
    margin-top: 0;
  }
}
.hero-services h1 {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .hero-services h1 {
    margin-bottom: 16px;
  }
}
.hero-services .text {
  padding-bottom: 40px;
  max-width: 550px;
  color: var(--white-75);
}
@media screen and (max-width: 576px) {
  .hero-services .text {
    padding-bottom: 32px;
    font-size: 16px;
  }
}
.hero-services__buttons {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.hero-services .img-wrap {
  position: absolute;
  top: 0;
  right: calc((100vw - 1440px) / 2);
  transform: translate(10%, -25%);
  max-width: 747px;
  aspect-ratio: 747/905;
  padding-left: 22px;
  width: 62vw;
}
@media screen and (max-width: 1140px) {
  .hero-services .img-wrap {
    transform: translate(24%, 11%);
    width: 46vw;
    right: unset;
    left: 56%;
  }
}
@media screen and (max-width: 576px) {
  .hero-services .img-wrap {
    position: static;
    margin: 0 auto;
    transform: translate(0%, 0%);
    padding: 0 10px;
    width: 70vw;
  }
}
.hero-services .img-wrap:before {
  content: "";
  display: block;
  position: absolute;
  width: 106%;
  height: 53%;
  right: -26px;
  bottom: -16px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.1) 100%);
  backdrop-filter: blur(12px);
  mask-image: linear-gradient(to top, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 576px) {
  .hero-services .img-wrap:before {
    right: 0px;
    bottom: -10px;
    height: 42%;
    backdrop-filter: blur(6px);
  }
}
.hero-services .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-services .services-acc__img {
  opacity: 1;
  pointer-events: auto;
}
.hero-services .services-acc__media {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .hero-services .services-acc__media {
    width: 100%;
    margin: 0 auto;
  }
}
.hero-services .services-acc__img-placeholder {
  position: relative;
}
.hero-services .services-acc__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-services .services-acc__img.is-visible {
  opacity: 1;
}

.stats-about {
  margin: 160px 0 120px 0;
}
@media screen and (max-width: 1140px) {
  .stats-about {
    margin: 120px 0;
  }
}
@media screen and (max-width: 576px) {
  .stats-about {
    margin: 100px 0;
  }
}
.stats-about__grid {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 32px;
}
@media screen and (max-width: 768px) {
  .stats-about__grid {
    flex-direction: column-reverse;
  }
}
.stats-about__stats {
  display: flex;
  column-gap: clamp(0px, 8vw, 80px);
  max-width: 500px;
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .stats-about__stats {
    max-width: 100%;
  }
}
.stats-about__stat {
  max-width: 140px;
  width: 100%;
}
.stats-about__content {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .stats-about__content {
    max-width: 100%;
  }
}
.stats-about__text p {
  font-size: var(--body-xl);
}
@media screen and (max-width: 768px) {
  .stats-about ._caption {
    font-size: 10px;
    padding-bottom: 16px;
  }
}
.stats-about ._h2 {
  color: var(--primary);
}

.scope {
  margin: 120px 0;
}
@media screen and (max-width: 576px) {
  .scope {
    margin: 100px 0;
  }
}
.scope__container {
  background-color: var(--primary);
  padding: 100px 0 80px 0;
}
@media screen and (max-width: 576px) {
  .scope__container {
    padding: 100px 0;
  }
}
.scope__grid {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 40px;
  color: var(--white);
}
@media screen and (max-width: 576px) {
  .scope__grid {
    flex-direction: column;
  }
}
.scope__right {
  max-width: 600px;
  width: 60%;
}
@media screen and (max-width: 576px) {
  .scope__right {
    width: 100%;
  }
}
.scope__content ul {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.scope__content ul li {
  font-size: var(--body-xl);
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 576px) {
  .scope__content ul li {
    padding-left: 24px;
  }
}
.scope__content ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  left: 13px;
  top: 13px;
}
@media screen and (max-width: 1140px) {
  .scope__content ul li:before {
    top: 11px;
  }
}
@media screen and (max-width: 576px) {
  .scope__content ul li:before {
    top: 8px;
    left: 10px;
    width: 5px;
    height: 5px;
  }
}
@media screen and (max-width: 1140px) {
  .scope__content ul li {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .scope__content ul li {
    font-size: 16px;
  }
}
.scope__actions {
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .scope__actions {
    margin-top: 32px;
  }
}

.outcomes {
  margin: 120px 0 160px 0;
  overflow: hidden;
}
@media screen and (max-width: 1140px) {
  .outcomes {
    margin: 120px 0;
  }
}
@media screen and (max-width: 576px) {
  .outcomes {
    margin: 100px 0;
  }
}
.outcomes .swiper {
  overflow: visible;
}
.outcomes__nav {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 30px;
  column-gap: 18px;
  transition: background-color 0.3s ease;
}
.outcomes__nav:hover {
  background: var(--secondary-2);
}
@media screen and (max-width: 576px) {
  .outcomes__nav {
    padding: 5px 10px;
    column-gap: 4px;
  }
}
.outcomes__btn {
  display: flex;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.outcomes__btn:hover {
  background-color: var(--secondary);
}
.outcomes__nav-pagination {
  position: static;
  font-size: 10px;
  display: none;
}
@media screen and (max-width: 576px) {
  .outcomes__nav-pagination {
    display: block;
  }
}
.outcomes__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .outcomes__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .outcomes__head {
    flex-direction: column;
    row-gap: 32px;
    align-items: flex-start;
  }
}
.outcomes__slide {
  background: var(--secondary);
  border: 1px solid var(--secondary-2);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.outcomes__slide.active .outcomes-card {
  background-color: var(--secondary-2);
}
.outcomes__slide.active .outcomes-card__num {
  color: var(--black);
}
@media screen and (max-width: 576px) {
  .outcomes__slide.active .outcomes-card__num {
    color: rgba(2, 6, 23, 0.25);
    padding-left: 15px;
  }
}
.outcomes .outcomes-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 517px;
  padding: 30px 27px 30px 30px;
}
@media screen and (max-width: 768px) {
  .outcomes .outcomes-card {
    padding: 30px 15px 30px 15px;
    min-height: 460px;
  }
}
@media screen and (max-width: 576px) {
  .outcomes .outcomes-card__text {
    font-size: 12px;
  }
}
.outcomes .outcomes-card__text p {
  padding-top: 20px;
}
.outcomes .outcomes-card__num {
  color: rgba(2, 6, 23, 0.25);
  transition: color 0.3s ease;
}

.case-content-block {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .case-content-block {
    margin: 54px 0;
  }
}
.case-content-block .case-content-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
}
@media (max-width: 1024px) {
  .case-content-block .case-content-container {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .case-content-block .case-content-container {
    gap: 40px;
    flex-direction: column;
  }
}
.case-content-block .case-content-header {
  min-width: 220px;
}
.case-content-block .case-content-wrapper {
  max-width: 600px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper {
    max-width: 100%;
  }
}
.case-content-block .case-content-wrapper .case-content p {
  font-size: var(--body-xl);
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content p {
    font-size: var(--h4-size);
  }
}
.case-content-block .case-content-wrapper .case-content p.small-text {
  font-size: var(--body-m);
  color: var(--gray-75);
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content p.small-text {
    font-size: var(--body-s);
  }
}
.case-content-block .case-content-wrapper .case-content ol {
  padding-left: 18px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content ol {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content ol li {
    font-size: var(--body-s);
  }
}
.case-content-block .case-content-wrapper .case-content ol li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content ol li:not(:last-child) {
    margin-bottom: 18px;
  }
}
.case-content-block .case-content-wrapper .case-content ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content ul li {
    font-size: var(--body-s);
  }
}
.case-content-block .case-content-wrapper .case-content ul li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content ul li:not(:last-child) {
    margin-bottom: 18px;
  }
}
.case-content-block .case-content-wrapper .case-content ul li:before {
  display: block;
  position: relative;
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='%231D4ED8' /%3E%3Cpath d='M5 9.86765L8.33333 12.75L15 5.75' stroke='%23F9FAFB' stroke-width='3' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.case-content-block .case-content-wrapper .case-content h1:not(:last-child), .case-content-block .case-content-wrapper .case-content h2:not(:last-child), .case-content-block .case-content-wrapper .case-content h3:not(:last-child), .case-content-block .case-content-wrapper .case-content h4:not(:last-child), .case-content-block .case-content-wrapper .case-content h5:not(:last-child), .case-content-block .case-content-wrapper .case-content h6:not(:last-child), .case-content-block .case-content-wrapper .case-content blockquote:not(:last-child), .case-content-block .case-content-wrapper .case-content ul:not(:last-child), .case-content-block .case-content-wrapper .case-content ol:not(:last-child), .case-content-block .case-content-wrapper .case-content p:not(:last-child) {
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content h1:not(:last-child), .case-content-block .case-content-wrapper .case-content h2:not(:last-child), .case-content-block .case-content-wrapper .case-content h3:not(:last-child), .case-content-block .case-content-wrapper .case-content h4:not(:last-child), .case-content-block .case-content-wrapper .case-content h5:not(:last-child), .case-content-block .case-content-wrapper .case-content h6:not(:last-child), .case-content-block .case-content-wrapper .case-content blockquote:not(:last-child), .case-content-block .case-content-wrapper .case-content ul:not(:last-child), .case-content-block .case-content-wrapper .case-content ol:not(:last-child), .case-content-block .case-content-wrapper .case-content p:not(:last-child) {
    padding-bottom: 32px;
  }
}
.case-content-block .case-content-wrapper .case-content-stats {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 80px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content-stats {
    margin-top: 32px;
    gap: 32px 54px;
  }
}
.case-content-block .case-content-wrapper .case-content-stats .case-content-stat .case-content-stat-label {
  font-size: var(--body-m);
  line-height: 160%;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content-stats .case-content-stat .case-content-stat-label {
    font-size: var(--body-s);
  }
}
.case-content-block .case-content-wrapper .case-content-stats .case-content-stat .case-content-stat-value {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 120%;
  color: var(--primary);
}
.case-content-block .case-content-wrapper .case-content-stats .case-content-stat .case-content-stat-value:not(:only-child) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content-stats .case-content-stat .case-content-stat-value:not(:only-child) {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .case-content-block .case-content-wrapper .case-content-stats .case-content-stat .case-content-stat-value {
    font-size: var(--h2-size);
  }
}

.case-photos-slider {
  overflow: hidden;
  margin: 120px 0;
  padding: 80px 0 101px;
  background-color: var(--secondary-2);
}
@media (max-width: 768px) {
  .case-photos-slider {
    margin: 54px 0;
    padding: 40px 0;
  }
}
.case-photos-slider .case-photos-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .case-photos-slider .case-photos-slider-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .case-photos-slider .case-photos-slider-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.case-photos-slider .case-photos-slider-header .case-photos-slider-nav {
  display: flex;
  align-items: center;
  padding: 9.5px 9px;
  border: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 30px;
  column-gap: 18px;
  transition: background-color 0.3s ease;
}
.case-photos-slider .case-photos-slider-header .case-photos-slider-nav:hover {
  background: var(--secondary-2);
}
@media screen and (max-width: 576px) {
  .case-photos-slider .case-photos-slider-header .case-photos-slider-nav {
    column-gap: 22px;
    padding: 3px 7px;
  }
}
.case-photos-slider .case-photos-slider-header .case-photos-slider-nav .case-photos-slider-nav-button {
  display: flex;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.case-photos-slider .case-photos-slider-header .case-photos-slider-nav .case-photos-slider-nav-button:hover {
  background-color: var(--secondary);
}
.case-photos-slider .case-photos-slider-wrapper .case-photos-swiper {
  overflow: visible;
}
.case-photos-slider .case-photos-slider-wrapper .case-photos-swiper .case-photos-swiper-wrapper .case-photos-slide {
  width: auto;
  flex-shrink: 0;
}
.case-photos-slider .case-photos-slider-wrapper .case-photos-swiper .case-photos-swiper-wrapper .case-photos-slide img {
  height: 285px;
  width: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 425px) {
  .case-photos-slider .case-photos-slider-wrapper .case-photos-swiper .case-photos-swiper-wrapper .case-photos-slide img {
    height: 208px;
  }
}

.case-technologies {
  background-color: var(--white);
  padding: 60px 0;
  margin: 120px 0;
}
@media (max-width: 768px) {
  .case-technologies {
    padding: 48px 0;
    margin: 54px 0;
  }
}
.case-technologies .case-technologies-header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .case-technologies .case-technologies-header {
    margin-bottom: 40px;
  }
}
.case-technologies .case-technologies-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media (max-width: 768px) {
  .case-technologies .case-technologies-wrapper {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .case-technologies .case-technologies-wrapper {
    gap: 16px;
  }
}
.case-technologies .case-technologies-wrapper .technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .case-technologies .case-technologies-wrapper .technology {
    gap: 16px;
  }
}
.case-technologies .case-technologies-wrapper .technology .technology-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38.5px;
  height: 38.5px;
  flex: 0 0 38.5;
  border: 1px solid var(--secondary-2);
  border-radius: 60px;
  background-color: var(--secondary);
}
.case-technologies .case-technologies-wrapper .technology .technology-icon img {
  max-width: 23px;
  max-height: 23px;
  object-fit: contain;
}
.case-technologies .case-technologies-wrapper .technology .technology-name {
  font-size: var(--body-l);
}
@media (max-width: 768px) {
  .case-technologies .case-technologies-wrapper .technology .technology-name {
    font-size: var(--body-m);
  }
}

.about {
  overflow: hidden;
  padding-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 576px) {
  .about {
    padding-top: 76px;
    margin-bottom: 100px;
  }
}
.about__title {
  margin-bottom: 20px;
  margin-top: 80px;
}
@media screen and (max-width: 576px) {
  .about__title {
    margin-bottom: 16px;
    margin-top: 48px;
  }
}
.about__text {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}
.about__grid {
  display: flex;
  gap: 60px;
  align-items: end;
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .about__grid {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .about__grid {
    gap: 20px;
    margin-top: 48px;
    overflow: scroll;
    align-items: flex-start;
    touch-action: pan-x;
    width: 100vw;
    margin-left: -2%;
    padding: 0 2% 20px 2%;
  }
}
@media screen and (max-width: 768px) {
  .about__grid {
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .about__grid {
    margin-left: -3.47%;
    padding: 0 3.47% 20px 3.47%;
  }
}
.about .about-card {
  position: relative;
  aspect-ratio: 360/486;
  max-width: 360px;
  width: calc(33% - 36px);
}
@media screen and (max-width: 1024px) {
  .about .about-card {
    width: calc(33% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .about .about-card {
    width: 46.2%;
  }
}
.about .about-card__swiper {
  padding-bottom: 20px;
  touch-action: pan-x;
}
.about .about-card__label {
  position: absolute;
  left: 14px;
  bottom: 0px;
  background: var(--secondary-2);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transform: translateY(50%);
  transition: opacity 2s ease;
}
.about .about-card__media {
  border-radius: 4px;
  overflow: hidden;
}
.about .about-card__img {
  width: 100%;
  height: auto;
  display: block;
}
.about .about-card__slide .about-card__label {
  opacity: 0;
}
.about .about-card__slide.swiper-slide-active .about-card__label {
  opacity: 1;
}

.about-card--small {
  transform: translateY(99px);
}
@media screen and (max-width: 768px) {
  .about-card--small {
    transform: translateY(0px);
  }
}

.about-card--medium {
  transform: translateY(213px);
}
@media screen and (max-width: 768px) {
  .about-card--medium {
    transform: translateY(0px);
  }
}

.about-card--tall {
  transform: translateY(0px);
}

.approach {
  margin: 120px 0;
}
@media screen and (max-width: 576px) {
  .approach {
    margin: 100px 0;
  }
}
.approach__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .approach__title {
    margin-bottom: 40px;
  }
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .approach__grid {
    margin-bottom: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.approach .approach-card {
  color: var(--gray-75);
}
.approach .approach-card__num {
  color: var(--secondary-2);
  margin-bottom: 20px;
}
.approach .approach-card__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .approach .approach-card__title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 576px) {
  .approach .approach-card__text {
    font-size: 16px;
  }
}
.approach__btn {
  align-items: center;
  column-gap: 5px;
  font-size: 14px;
}

.mission {
  margin: 120px 0;
  padding: 90px 0;
  background: var(--black);
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .mission {
    margin: 100px 0;
    padding: 100px 0;
  }
}
.mission__container {
  position: relative;
}
.mission__container:before {
  content: "";
  display: block;
  width: 407px;
  aspect-ratio: 1;
  background: #1D4DD3;
  filter: blur(162.8px);
  left: 37px;
  top: 117px;
  position: absolute;
}
@media screen and (max-width: 576px) {
  .mission__container:before {
    left: 100%;
    top: 100%;
    transform: translate(-50%, -50%);
  }
}
.mission__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .mission__grid {
    flex-direction: column;
  }
}
.mission__content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mission__content {
    max-width: 100%;
  }
}
.mission__title {
  margin-bottom: 30px;
  color: var(--primary);
}
.mission__text {
  color: var(--white);
}
@media screen and (max-width: 576px) {
  .mission__text {
    font-size: 20px;
  }
}
.mission__media {
  position: relative;
  z-index: 2;
  aspect-ratio: 444/324;
  max-width: 444px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission__media .mission__img-placeholder {
  width: 63%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  backdrop-filter: blur(2px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(2px) saturate(var(--saturation));
  box-shadow: inset -3px 0px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 2px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 1px 0px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
  position: relative;
  z-index: 2;
}
.mission__media .blue-square {
  position: absolute;
  background: var(--primary);
  border-radius: 60px;
  top: 0;
  left: 0;
  max-width: 340px;
  width: 77%;
  aspect-ratio: 340/286;
  transition: all 0.5s linear;
  z-index: 1;
}
.mission__img-line {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.mission__img-line svg {
  width: 100%;
  height: 100%;
}

.leaders {
  margin: 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .leaders {
    margin: 100px 0;
  }
}
.leaders__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .leaders__head {
    flex-direction: column;
    row-gap: 32px;
    margin-bottom: 40px;
    align-items: flex-start;
  }
}
.leaders__nav {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 30px;
  column-gap: 18px;
  transition: background-color 0.3s ease;
}
.leaders__nav:hover {
  background: var(--secondary-2);
}
@media screen and (max-width: 576px) {
  .leaders__nav {
    column-gap: 4px;
    padding: 5px 10px;
    width: 70px;
    justify-content: space-between;
  }
}
.leaders__btn {
  display: flex;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.leaders__btn:hover {
  background-color: var(--secondary);
}
.leaders__slider {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .leaders__slider {
    overflow: visible;
  }
}
.leaders .leaders-card {
  color: var(--gray-75);
}
.leaders .leaders-card__media {
  aspect-ratio: 1;
  background-color: var(--secondary-2);
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.leaders .leaders-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 2;
}
.leaders .leaders-card__name {
  margin-bottom: 10px;
}
.leaders .leaders-card__pos {
  margin-bottom: 10px;
}
.leaders .leaders-card__box {
  background-color: var(--secondary-2);
  padding: 10px 20px;
}
.leaders .leaders-card__desc p {
  padding-bottom: 4px;
}
.leaders .leaders-card__label {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: calc(100% + 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leaders .leaders-card__label svg {
  aspect-ratio: 202/246;
  width: 75%;
  height: auto;
}
.leaders__bottom {
  display: flex;
  align-items: center;
  column-gap: 50px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .leaders__bottom {
    flex-direction: column;
    row-gap: 16px;
    align-items: flex-start;
  }
}
.leaders__quote {
  padding-left: 24px;
  color: var(--gray-75);
  flex: 1;
}
@media screen and (max-width: 576px) {
  .leaders__quote p {
    font-size: 20px;
  }
}
.leaders__quote-line {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  height: 100%;
  width: 4px;
  border-radius: 8px 0 0 8px;
}
.leaders__cta {
  align-items: center;
  column-gap: 5px;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .leaders__cta {
    margin-left: 24px;
  }
}
.leaders .is-active-1 .light-square {
  bottom: 37%;
  left: 37%;
}
.leaders .is-active-1 .blue-square {
  top: 30%;
  right: 30%;
}
.leaders .is-active-2 .light-square {
  bottom: 37%;
  left: 0;
}
.leaders .is-active-2 .blue-square {
  top: 30%;
  right: 0;
}
.leaders .is-active-3 .light-square {
  bottom: 0;
  left: 37%;
}
.leaders .is-active-3 .blue-square {
  top: 0;
  right: 30%;
}
.leaders .is-active-4 .light-square {
  bottom: 37%;
  left: 0;
}
.leaders .is-active-4 .blue-square {
  top: 30%;
  right: 0;
}

.cooperation-models {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .cooperation-models {
    margin: 100px 0;
  }
}
.cooperation-models .cooperation-models-header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-header {
    margin-bottom: 40px;
  }
}
.cooperation-models .cooperation-models-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1140px) {
  .cooperation-models .cooperation-models-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .cooperation-models .cooperation-models-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper {
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .cooperation-models .cooperation-models-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid var(--secondary-2);
  border-radius: 4px;
  background-color: var(--white);
  padding: 30px;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-icon {
  margin-bottom: 20px;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 6px;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-title {
    margin-bottom: 16px;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-description {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-description {
    font-size: var(--body-m) !important;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list {
  position: relative;
  margin-top: 40px;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list {
    padding-left: 20px;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--secondary-2);
  border-radius: 16px 0 0 16px;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list .cooperation-model-list-includes {
  font-size: var(--сaption);
  color: var(--gray-75);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list .cooperation-model-list-includes {
    font-size: 10px;
    margin-bottom: 8px;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list ul .cooperation-model-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--gray-75);
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list ul .cooperation-model-list-item {
    font-size: var(--body-s);
    gap: 8px;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list ul .cooperation-model-list-item:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list ul .cooperation-model-list-item:not(:last-child) {
    margin-bottom: 8px;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-content .cooperation-model-list ul .cooperation-model-list-item:before {
  display: block;
  position: relative;
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='%231D4ED8' /%3E%3Cpath d='M5 9.86765L8.33333 12.75L15 5.75' stroke='%23F9FAFB' stroke-width='3' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model {
    gap: 8px;
  }
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model .cooperation-model-payment-model-icon {
  flex: 0 0 32px;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model .cooperation-model-payment-model-icon svg {
  width: 32px;
  height: 32px;
}
.cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model .cooperation-model-payment-model-content .cooperation-model-payment-model-content-label {
  font-size: var(--сaption);
  color: var(--gray-75);
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model .cooperation-model-payment-model-content .cooperation-model-payment-model-content-label {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .cooperation-models .cooperation-models-wrapper .cooperation-model .cooperation-model-payment-model .cooperation-model-payment-model-content .cooperation-model-payment-model-content-text {
    font-size: var(--body-m);
  }
}
.cooperation-models .additional-information-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 650px) {
  .cooperation-models .additional-information-block {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 16px;
  }
  .cooperation-models .additional-information-block:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    border-radius: 16px 0 0 16px;
  }
}
.cooperation-models .additional-information-block .additional-information-content {
  position: relative;
  padding-left: 24px;
  flex: 1;
}
@media (max-width: 650px) {
  .cooperation-models .additional-information-block .additional-information-content {
    padding-left: 0;
  }
}
.cooperation-models .additional-information-block .additional-information-content:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 16px 0 0 16px;
}
@media (max-width: 650px) {
  .cooperation-models .additional-information-block .additional-information-content:before {
    display: none;
  }
}
.cooperation-models .additional-information-block .additional-information-content .additional-title {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cooperation-models .additional-information-block .additional-information-content .additional-title {
    margin-bottom: 8px;
  }
}
.cooperation-models .additional-information-block .additional-information-content .additional-description {
  color: var(--gray-75);
}
@media (max-width: 768px) {
  .cooperation-models .additional-information-block .additional-information-content .additional-description {
    font-size: var(--body-s);
  }
}
.cooperation-models .additional-information-block .btn-global {
  column-gap: 5px;
  font-size: var(--body-s);
}
@media (max-width: 650px) {
  .cooperation-models .additional-information-block .btn-global {
    font-size: var(--сaption);
    padding: 8px 14px;
  }
}

.all-technologies {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .all-technologies {
    margin: 100px 0;
  }
}
.all-technologies .all-technologies-header {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .all-technologies .all-technologies-header {
    margin-bottom: 40px;
  }
}
.all-technologies .all-technologies-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 86.4px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .all-technologies .all-technologies-wrapper {
    gap: 30px 60px;
  }
}
@media (max-width: 768px) {
  .all-technologies .all-technologies-wrapper {
    gap: 20px 40px;
  }
}
@media (max-width: 576px) {
  .all-technologies .all-technologies-wrapper {
    gap: 16px 20px;
    padding: 0 27.5px;
  }
}
.all-technologies .all-technologies-wrapper .technology {
  position: relative;
}
.all-technologies .all-technologies-wrapper .technology:hover .technology-title {
  opacity: 1;
  visibility: visible;
}
.all-technologies .all-technologies-wrapper .technology.is-hidden {
  display: none;
}
.all-technologies .all-technologies-wrapper .technology .technology-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  padding: 10px;
  border: 2px solid var(--secondary-2);
  border-radius: 8px;
  background-color: rgba(219, 234, 254, 0.4);
}
@media (max-width: 576px) {
  .all-technologies .all-technologies-wrapper .technology .technology-icon {
    width: 80px;
    height: 80px;
    padding: 16px;
    border-width: 1px;
  }
}
.all-technologies .all-technologies-wrapper .technology .technology-icon img {
  object-fit: contain;
}
.all-technologies .all-technologies-wrapper .technology .technology-title {
  position: absolute;
  top: 114px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: var(--сaption);
  width: max-content;
  padding: 5.5px 20px;
  border-radius: 111px;
  backdrop-filter: blur(4px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(4px) saturate(var(--saturation));
  box-shadow: inset 2px 3px 1px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -3px -7px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 576px) {
  .all-technologies .all-technologies-wrapper .technology .technology-title {
    top: 68px;
    font-size: 10px;
    padding: 5.5px 17px;
  }
}
.all-technologies .more-technologies {
  cursor: pointer;
  color: var(--primary);
  max-width: max-content;
  margin-bottom: 10px;
}
.all-technologies .all-technologies-description {
  font-size: var(--body-m);
}

.banner-with-map {
  background-color: var(--black);
  padding: 120px 0 76px;
}
@media (max-width: 768px) {
  .banner-with-map {
    padding: 76px 0 100px;
  }
}
.banner-with-map .banner-with-map-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .banner-with-map .banner-with-map-container {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .banner-with-map .banner-with-map-container {
    width: 100%;
    max-width: 100%;
  }
}
.banner-with-map .breadcrumbs {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .banner-with-map .breadcrumbs {
    margin-bottom: 48px;
  }
}
.banner-with-map .breadcrumbs span, .banner-with-map .breadcrumbs a {
  font-size: var(--body-s);
  font-weight: 600;
  line-height: 120%;
  color: var(--white-75);
}
@media (max-width: 768px) {
  .banner-with-map .breadcrumbs span, .banner-with-map .breadcrumbs a {
    font-size: var(--сaption);
  }
}
.banner-with-map .breadcrumbs a:hover {
  color: var(--white);
}
.banner-with-map .banner-with-map-inner {
  max-width: 480px;
}
@media (max-width: 1024px) {
  .banner-with-map .banner-with-map-inner {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .banner-with-map .banner-with-map-inner {
    width: 1200px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .banner-with-map .banner-with-map-inner {
    max-width: 93.056%;
  }
}
.banner-with-map .banner-with-map-inner .banner-with-map-title {
  color: var(--secondary);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .banner-with-map .banner-with-map-inner .banner-with-map-title {
    margin-bottom: 16px;
  }
}
.banner-with-map .banner-with-map-inner .banner-with-map-text {
  color: var(--white-75);
}
@media (max-width: 768px) {
  .banner-with-map .banner-with-map-inner .banner-with-map-text {
    padding-bottom: 16px;
    font-size: var(--body-m);
  }
}
.banner-with-map .banner-with-map-inner .banner-with-map-sub-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.banner-with-map .banner-with-map-inner .banner-with-map-sub-text .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-with-map .banner-with-map-inner .banner-with-map-sub-text .text {
  color: var(--secondary);
}
@media (max-width: 768px) {
  .banner-with-map .banner-with-map-inner .banner-with-map-sub-text .text {
    font-size: var(--body-s);
  }
}
.banner-with-map .banner-with-map-inner .banner-with-map-buttons {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .banner-with-map .banner-with-map-inner .banner-with-map-buttons {
    margin-top: 32px;
  }
}
.banner-with-map .banner-with-map-inner .banner-with-map-buttons .banner-with-map-btn {
  padding: 12px 20px;
}
@media (max-width: 1024px) {
  .banner-with-map .map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.banner-with-map .map .map-wrapper {
  max-width: 615px;
  position: relative;
  aspect-ratio: 615/336;
}
.banner-with-map .map .map-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.banner-with-map .map .map-wrapper .mark {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: var(--сaption);
  font-weight: 700;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
  pointer-events: none;
}
.banner-with-map .map .map-wrapper .mark.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 576px) {
  .banner-with-map .map .map-wrapper .mark {
    font-size: 11px;
    font-weight: 400;
  }
}
.banner-with-map .map .map-wrapper .mark.label-left {
  flex-direction: row-reverse;
}
.banner-with-map .map .map-wrapper .mark.label-left:after {
  left: unset;
  right: 7px;
}
@media (max-width: 576px) {
  .banner-with-map .map .map-wrapper .mark.label-left:after {
    right: 6px;
  }
}
.banner-with-map .map .map-wrapper .mark:before {
  display: block;
  position: relative;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 30px;
  backdrop-filter: blur(4px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(4px) saturate(var(--saturation));
  box-shadow: inset 2px 3px 1px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -3px -7px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
}
@media (max-width: 576px) {
  .banner-with-map .map .map-wrapper .mark:before {
    width: 18.5px;
    height: 18.5px;
  }
}
.banner-with-map .map .map-wrapper .mark:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6' height='6' rx='3' fill='%23F9FAFB' /%3E%3Ccircle cx='3' cy='3' r='1' fill='%23020617' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 576px) {
  .banner-with-map .map .map-wrapper .mark:after {
    top: 6px;
    left: 6px;
  }
}

.contact-form-block {
  padding: 120px 0 68px;
}
@media (max-width: 768px) {
  .contact-form-block {
    padding: 76px 0 100px;
  }
}
.contact-form-block .breadcrumbs {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .contact-form-block .breadcrumbs {
    margin-bottom: 48px;
  }
}
.contact-form-block .breadcrumbs span, .contact-form-block .breadcrumbs a {
  font-size: var(--body-s);
  font-weight: 600;
  line-height: 120%;
  color: var(--gray-75);
}
@media (max-width: 768px) {
  .contact-form-block .breadcrumbs span, .contact-form-block .breadcrumbs a {
    font-size: var(--сaption);
  }
}
.contact-form-block .breadcrumbs a:hover {
  color: var(--black);
}

.contact-form-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1024px) {
  .contact-form-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 100px;
  }
}
.contact-form-wrapper .content {
  max-width: 480px;
  flex: 1 1 0;
}
@media (max-width: 1024px) {
  .contact-form-wrapper .content {
    max-width: 100%;
  }
}
.contact-form-wrapper .content .contact-form-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .contact-form-title {
    margin-bottom: 16px;
  }
}
.contact-form-wrapper .content .contact-form-description {
  color: var(--gray-75);
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .contact-form-description {
    font-size: var(--body-m);
    margin-bottom: 48px;
  }
}
.contact-form-wrapper .content .contact-form-email {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-weight: 600;
  font-size: var(--body-l);
  color: var(--gray-75);
  margin-bottom: 20px;
  transition: 0.3s color ease;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .contact-form-email {
    gap: 16px;
    font-size: var(--body-m);
  }
}
.contact-form-wrapper .content .contact-form-email:hover {
  color: var(--primary);
}
.contact-form-wrapper .content .contact-form-email:hover .email-icon {
  background-color: var(--secondary-2);
}
.contact-form-wrapper .content .contact-form-email .email-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-2);
  border-radius: 4px;
  width: 48px;
  height: 48px;
  transition: 0.3s background-color ease;
}
.contact-form-wrapper .content .contact-form-email .email-icon svg {
  width: 32px;
  height: 32px;
}
.contact-form-wrapper .content .contact-form-phone-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .contact-form-phone-wrapper {
    gap: 16px;
  }
}
.contact-form-wrapper .content .contact-form-phone-wrapper .messengers {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
}
.contact-form-wrapper .content .contact-form-phone-wrapper .messengers .messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-2);
  border-radius: 4px;
  width: 48px;
  height: 48px;
  transition: 0.3s background-color ease;
}
.contact-form-wrapper .content .contact-form-phone-wrapper .messengers .messenger:hover {
  background-color: var(--secondary-2);
}
.contact-form-wrapper .content .contact-form-phone-wrapper .messengers .messenger img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.contact-form-wrapper .content .contact-form-phone-wrapper .phone-number {
  font-weight: 600;
  font-size: var(--body-l);
  color: var(--gray-75);
  transition: 0.3s color ease;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .contact-form-phone-wrapper .phone-number {
    font-size: var(--body-m);
  }
}
.contact-form-wrapper .content .contact-form-phone-wrapper .phone-number:hover {
  color: var(--primary);
}
.contact-form-wrapper .content .calendly-booking {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--secondary-2);
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .calendly-booking {
    margin-top: 32px;
    padding-top: 32px;
  }
}
.contact-form-wrapper .content .calendly-booking .calendly-booking-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .calendly-booking .calendly-booking-title {
    margin-bottom: 16px;
  }
}
.contact-form-wrapper .content .calendly-booking .calendly-booking-button {
  padding: 11px 20px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .content .calendly-booking .calendly-booking-button {
    padding: 8.5px 15px;
  }
}
.contact-form-wrapper .form {
  position: relative;
  max-width: 600px;
  flex: 1 1 0;
}
@media (max-width: 1024px) {
  .contact-form-wrapper .form {
    max-width: 100%;
  }
}
.contact-form-wrapper .form.is-sent .success-message {
  opacity: 1;
  visibility: visible;
}
.contact-form-wrapper .form .success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 60px;
  background-color: var(--secondary);
  border: 1px solid var(--secondary-2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  z-index: 3;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form .success-message {
    padding: 32px 20px;
  }
}
.contact-form-wrapper .form .success-message .success-message-title {
  margin: 20px 0;
}
.contact-form-wrapper .form form {
  border: 1px solid var(--secondary-2);
  border-radius: 4px;
  padding: 40px 60px;
  background-color: var(--secondary);
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form {
    padding: 32px 20px;
  }
}
.contact-form-wrapper .form form .hidden-fields-container {
  display: none;
}
.contact-form-wrapper .form form label {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.contact-form-wrapper .form form label:has(input:focus, textarea:focus, input:not(:placeholder-shown), textarea:not(:placeholder-shown), .select2-container--open, .select2-selection__rendered[title]:not([title=Subject])) .label-text {
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: var(--сaption);
  color: rgba(2, 6, 23, 0.5);
}
.contact-form-wrapper .form form label .label-text {
  position: absolute;
  top: 29px;
  left: 0;
  z-index: 2;
  font-weight: 600;
  font-size: var(--body-l);
  line-height: 120%;
  color: rgba(2, 6, 23, 0.5);
  transition: 0.3s all ease;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label .label-text {
    font-size: var(--body-m);
    top: 24px;
  }
}
.contact-form-wrapper .form form label .label-text span {
  color: rgba(2, 6, 23, 0.25);
}
.contact-form-wrapper .form form label input, .contact-form-wrapper .form form label textarea {
  resize: none;
  overflow-y: hidden;
  height: 64px;
  border: none;
  border-bottom: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 0;
  background-color: var(--secondary);
  padding: 29px 0 13px;
  font-weight: 600;
  font-size: var(--body-l);
  line-height: 120%;
  color: var(--black);
  transition: 0.3s border-bottom ease;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label input, .contact-form-wrapper .form form label textarea {
    height: 57px;
    padding: 24px 0 14px;
    font-size: var(--body-m);
  }
}
.contact-form-wrapper .form form label input:focus, .contact-form-wrapper .form form label textarea:focus {
  border-bottom-color: var(--primary);
}
.contact-form-wrapper .form form label input.wpcf7-not-valid, .contact-form-wrapper .form form label textarea.wpcf7-not-valid {
  border-bottom-color: #ea2b42;
}
.contact-form-wrapper .form form label textarea {
  min-height: 64px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label textarea {
    min-height: 57px;
  }
}
.contact-form-wrapper .form form label .select2-container {
  width: 100%;
}
.contact-form-wrapper .form form label .select2-container.select2-container--open .select2-selection__arrow:before {
  transform: scale(-1);
}
.contact-form-wrapper .form form label .select2-container .selection .select2-selection {
  border: none;
  border-bottom: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 0;
  background-color: var(--secondary);
  height: 64px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label .select2-container .selection .select2-selection {
    height: 57px;
  }
}
.contact-form-wrapper .form form label .select2-container .selection .select2-selection .select2-selection__rendered {
  padding: 29px 0 13px;
  font-weight: 600;
  font-size: var(--body-l);
  line-height: 120%;
  color: var(--black);
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label .select2-container .selection .select2-selection .select2-selection__rendered {
    font-size: var(--body-m);
    padding: 24px 0 14px;
  }
}
.contact-form-wrapper .form form label .select2-container .selection .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  display: none;
  color: rgba(2, 6, 23, 0.5);
}
.contact-form-wrapper .form form label .select2-container .selection .select2-selection .select2-selection__arrow:before {
  position: absolute;
  content: "";
  top: 29px;
  right: 0;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7071 15.2929L18.2929 10.7071C18.9229 10.0771 18.4767 9 17.5858 9L8.41421 9C7.52331 9 7.07714 10.0771 7.70711 10.7071L12.2929 15.2929C12.6834 15.6834 13.3166 15.6834 13.7071 15.2929Z' fill='%231D4ED8' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s transform ease;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label .select2-container .selection .select2-selection .select2-selection__arrow:before {
    top: 24px;
  }
}
.contact-form-wrapper .form form label .select2-container .selection .select2-selection .select2-selection__arrow b {
  display: none;
}
.contact-form-wrapper .form form label .wpcf7-not-valid-tip {
  font-size: var(--сaption);
  color: #ea2b42;
  background: transparent;
  height: auto;
  right: unset;
  top: calc(100% + 10px);
  line-height: 160%;
  bottom: unset;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form label .wpcf7-not-valid-tip {
    top: calc(100% + 5px);
  }
}
.contact-form-wrapper .form form .terms-and-conditions {
  font-size: var(--body-s);
  color: var(--gray-50);
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form .terms-and-conditions {
    font-size: var(--сaption);
  }
}
.contact-form-wrapper .form form .terms-and-conditions a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--primary);
}
.contact-form-wrapper .form form .wpcf7-submit {
  margin-top: 30px;
  width: 100%;
  padding: 12px 20px;
}
@media (max-width: 768px) {
  .contact-form-wrapper .form form .wpcf7-submit {
    padding: 9.5px 20px;
  }
}
.contact-form-wrapper .form form .wpcf7-response-output {
  display: none !important;
}

.testimonials {
  padding-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .testimonials {
    padding-bottom: 100px;
  }
}
.testimonials__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  margin-top: 80px;
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .testimonials__head {
    margin-bottom: 48px;
    margin-top: 48px;
  }
}
@media screen and (max-width: 576px) {
  .testimonials__head {
    flex-direction: column;
    row-gap: 32px;
    align-items: flex-start;
  }
}
.testimonials__nav {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(2, 6, 23, 0.25);
  border-radius: 30px;
  column-gap: 18px;
  transition: background-color 0.3s ease;
}
.testimonials__nav:hover {
  background: var(--secondary-2);
}
@media screen and (max-width: 576px) {
  .testimonials__nav {
    padding: 5px 10px;
    column-gap: 4px;
    width: 70px;
    justify-content: space-between;
  }
}
.testimonials__arrow {
  display: flex;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.testimonials__arrow:hover {
  background-color: var(--secondary);
}
.testimonials__slider {
  overflow: visible;
  margin-bottom: 80px;
  min-height: 418px;
}
@media screen and (max-width: 576px) {
  .testimonials__slider {
    margin-bottom: 48px;
  }
}
.testimonials__slider:before, .testimonials__slider:after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1;
  width: 297px;
  border-radius: 50%;
  background: var(--secondary-2);
  filter: blur(106.229px);
  z-index: -1;
}
.testimonials__slider:before {
  top: -49px;
  left: 120px;
}
@media screen and (max-width: 576px) {
  .testimonials__slider:before {
    left: 0;
    transform: translateX(-50%);
  }
}
.testimonials__slider:after {
  bottom: -120px;
  right: 120px;
}
@media screen and (max-width: 576px) {
  .testimonials__slider:after {
    right: 0;
    transform: translateX(50%);
  }
}
.testimonials .testimonial-card {
  padding: 40px 60px;
  background: var(--secondary);
  border: 1px solid var(--secondary-2);
  text-align: center;
  color: var(--gray-75);
}
@media screen and (max-width: 576px) {
  .testimonials .testimonial-card {
    padding: 32px 20px;
  }
}
.testimonials .testimonial-card.swiper-slide-active .testimonial-card__top {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .testimonials .testimonial-card.swiper-slide-active .testimonial-card__top {
    margin-bottom: 54px;
  }
}
.testimonials .testimonial-card__top {
  margin-bottom: 40px;
  transition: margin-bottom 0.7s ease;
}
@media screen and (max-width: 1024px) {
  .testimonials .testimonial-card__top {
    margin-bottom: 54px;
  }
}
.testimonials .testimonial-card__photo {
  aspect-ratio: 1;
  position: relative;
  width: 120px;
  margin: 0 auto;
}
.testimonials .testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonials .testimonial-card__logo {
  aspect-ratio: 1;
  position: absolute;
  z-index: 2;
  width: 40px;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 576px) {
  .testimonials .testimonial-card__sub {
    font-size: 14px;
  }
}
.testimonials .testimonial-card__text {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .testimonials .testimonial-card__text {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.testimonials .testimonial-card__name {
  margin-bottom: 10px;
}
.testimonials__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 32px;
  row-gap: 32px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 576px) {
  .testimonials__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonials__rating {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 96px;
  height: 80px;
}
.testimonials__rating img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.testimonials__rating:before {
  content: "4.7";
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  color: var(--black);
  position: absolute;
  right: 0;
}

.cases-archive-section {
  margin: 120px 0 160px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .cases-archive-section {
    margin: 100px 0;
  }
}
.cases-archive-section .cases-archive-section-title {
  margin-bottom: 40px;
}
.cases-archive-section .cases-archive-section-cats {
  margin: 40px 0 60px;
}
@media (max-width: 576px) {
  .cases-archive-section .cases-archive-section-cats {
    margin: 40px 0;
  }
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc((100vw - min(1200px, 96vw)) / 2);
  padding-right: calc((100vw - min(1200px, 96vw)) / 2);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  margin-bottom: -8px;
}
@media (max-width: 576px) {
  .cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list {
    padding-left: calc((100vw - min(1200px, 93.056vw)) / 2);
    padding-right: calc((100vw - min(1200px, 93.056vw)) / 2);
    gap: 16px;
  }
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list .cases-archive-section-cats-item {
  flex: 0 0 auto;
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list .cases-archive-section-cats-item .cases-archive-section-cats-link {
  display: inline-block;
  position: relative;
  color: var(--gray-50);
  transition: 0.3s color ease;
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list .cases-archive-section-cats-item .cases-archive-section-cats-link:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s opacity ease, 0.3s visibility ease;
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list .cases-archive-section-cats-item .cases-archive-section-cats-link.is-active {
  color: var(--black);
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list .cases-archive-section-cats-item .cases-archive-section-cats-link.is-active:before {
  opacity: 1;
  visibility: visible;
}
.cases-archive-section .cases-archive-section-cats .cases-archive-section-cats-list .cases-archive-section-cats-item .cases-archive-section-cats-link:hover {
  color: var(--black);
}
.cases-archive-section .cases-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}
.cases-archive-section .cases-wrapper > *:nth-child(odd):not(:first-child) {
  margin-top: -128px;
}
.cases-archive-section .cases-wrapper > *:nth-child(2) {
  margin-top: 128px;
}
@media (max-width: 768px) {
  .cases-archive-section .cases-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .cases-archive-section .cases-wrapper > *:nth-child(odd):not(:first-child),
  .cases-archive-section .cases-wrapper > *:nth-child(2) {
    margin-top: 0;
  }
}
.cases-archive-section .cases-infinite-sentinel {
  height: 1px;
}
.cases-archive-section .cases-loader {
  display: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 60px auto 0;
}
@media (max-width: 576px) {
  .cases-archive-section .cases-loader {
    margin: 40px auto 0;
  }
}
.cases-archive-section .cases-loader.is-active {
  display: flex;
}
.cases-archive-section .cases-loader .cases-loader-bubbles {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: rgba(2, 6, 23, 0.25);
}
.cases-archive-section .cases-loader .cases-loader-bubbles .cases-loader-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cases-archive-breadcrumbs-container {
  margin: 120px auto 33px;
}
@media (max-width: 768px) {
  .cases-archive-breadcrumbs-container {
    margin: 76px auto 48px;
  }
}
.cases-archive-breadcrumbs-container .breadcrumbs span, .cases-archive-breadcrumbs-container .breadcrumbs a {
  font-size: var(--body-s);
  font-weight: 600;
  line-height: 120%;
  color: var(--gray-50);
}
@media (max-width: 768px) {
  .cases-archive-breadcrumbs-container .breadcrumbs span, .cases-archive-breadcrumbs-container .breadcrumbs a {
    font-size: var(--сaption);
  }
}
.cases-archive-breadcrumbs-container .breadcrumbs a:hover {
  color: var(--black);
}

.cases-archive-slider {
  width: 1200px;
  max-width: 100%;
}
.cases-archive-slider .cases-archive-slider-nav {
  --card-image-height: clamp(115px, -357.0149253731px + 125.8706467662vw, 368px);
  position: absolute;
  top: 434px;
  right: clamp(20px, -16.3636363636px + 9.696969697vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--white-25);
  border-radius: 30px;
  padding: 10.5px 10px;
  z-index: 10;
  transition: 0.3s background-color ease;
}
@media (max-width: 576px) {
  .cases-archive-slider .cases-archive-slider-nav {
    top: calc(var(--card-image-height) + 43px);
    padding: 6px 10px;
  }
}
.cases-archive-slider .cases-archive-slider-nav:hover {
  background-color: var(--white-25);
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-button {
  position: static;
  margin: 0;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  transition: 0.3s background-color;
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-button:hover {
  background-color: var(--black);
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-button:after {
  display: none;
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-button.cases-archive-slider-nav-next {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8H12' stroke='%23F9FAFB' /%3E%3Cpath d='M9.75 6L11.75 8L9.75 10' stroke='%23F9FAFB' /%3E%3C/svg%3E");
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-button.cases-archive-slider-nav-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8L4 8' stroke='%23F9FAFB' /%3E%3Cpath d='M6.25 10L4.25 8L6.25 6' stroke='%23F9FAFB' /%3E%3C/svg%3E");
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-button.swiper-button-disabled {
  opacity: 0.3;
}
.cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-pagination {
  position: static;
  font-weight: 400;
  font-size: var(--сaption);
  line-height: 1;
  text-align: center;
  color: var(--secondary);
  min-width: 48px;
}
@media (max-width: 576px) {
  .cases-archive-slider .cases-archive-slider-nav .cases-archive-slider-nav-pagination {
    font-size: 10px;
  }
}
.cases-archive-slider .archive-slider-label {
  --card-image-height: clamp(115px, -357.0149253731px + 125.8706467662vw, 368px);
  position: absolute;
  top: 348.5px;
  left: clamp(20px, -25.4545454545px + 12.1212121212vw, 120px);
  background-color: var(--secondary);
  font-weight: 600;
  font-size: var(--body-m);
  line-height: 1;
  color: var(--black);
  border-radius: 4px;
  padding: 11.5px 20px;
  z-index: 5;
}
@media (max-width: 576px) {
  .cases-archive-slider .archive-slider-label {
    top: calc(var(--card-image-height) + 40px);
    font-size: var(--body-s);
    padding: 9.5px 20px;
    max-width: 200px;
  }
}

.cases-card.cases-card-archive-slide .cases-card__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  z-index: 4;
}
.cases-card.cases-card-archive-slide .cases-card__media-wrap {
  overflow: hidden;
}
.cases-card.cases-card-archive-slide .cases-card__media {
  position: relative;
  will-change: transform;
  transition: transform 0.4s ease;
  height: clamp(115px, -357.0149253731px + 125.8706467662vw, 368px);
}
.cases-card.cases-card-archive-slide .cases-card__body {
  background-color: var(--black);
  padding-top: 60px;
  padding-bottom: 40px;
  padding-left: clamp(20px, -25.4545454545px + 12.1212121212vw, 120px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .cases-card.cases-card-archive-slide .cases-card__body {
    padding-top: 93px;
  }
}
.cases-card.cases-card-archive-slide .cases-card__body:before {
  content: "";
  display: block;
  position: absolute;
  width: 586px;
  height: 586px;
  background: #1D4DD3;
  filter: blur(234.4px);
  bottom: -424px;
  left: -216px;
  z-index: 3;
}
@media (max-width: 576px) {
  .cases-card.cases-card-archive-slide .cases-card__body:before {
    width: 400px;
    height: 400px;
    bottom: -253px;
    left: -122px;
    filter: blur(124.8px);
  }
}
.cases-card.cases-card-archive-slide .cases-card__title {
  --max-width-title: clamp(20px, -16.3636363636px + 9.696969697vw, 100px);
  max-width: calc(100% - var(--max-width-title) - 120px);
  position: relative;
  z-index: 4;
  margin-bottom: 10px;
  font-size: var(--h1-size);
  color: var(--secondary);
}
@media screen and (max-width: 576px) {
  .cases-card.cases-card-archive-slide .cases-card__title {
    max-width: 100%;
    font-size: var(--h1-size);
    margin-bottom: 8px;
  }
}
.cases-card.cases-card-archive-slide .cases-card__text {
  --max-width-text: clamp(20px, -16.3636363636px + 9.696969697vw, 100px);
  max-width: calc(100% - var(--max-width-text) - 120px);
  position: relative;
  z-index: 4;
  color: var(--white-75);
}
@media (max-width: 576px) {
  .cases-card.cases-card-archive-slide .cases-card__text {
    max-width: 100%;
  }
}
.cases-card.cases-card-archive-slide .btn-global {
  position: relative;
  z-index: 4;
  color: var(--secondary);
  border-color: var(--white-25);
}
.cases-card.cases-card-archive-slide .btn-global:hover {
  background: var(--white-25);
}

.single-case .single-case-breadcrumbs-container {
  position: relative;
  z-index: 2;
}
.single-case .single-case-breadcrumbs-container.mobile {
  display: none;
  margin: 76px auto 48px;
}
@media (max-width: 768px) {
  .single-case .single-case-breadcrumbs-container.mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .single-case .single-case-breadcrumbs-container:not(.mobile) {
    display: none;
  }
}
.single-case .single-case-breadcrumbs-container:not(.mobile) .breadcrumbs {
  padding: 2px 17px;
  border-radius: 111px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(2px) saturate(var(--saturation));
  box-shadow: inset 0px 0px 1px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset 0px 0px 0px 0px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
}
.single-case .single-case-breadcrumbs-container .breadcrumbs {
  width: max-content;
}
.single-case .single-case-breadcrumbs-container .breadcrumbs span, .single-case .single-case-breadcrumbs-container .breadcrumbs a {
  font-size: var(--body-s);
  font-weight: 600;
  line-height: 120%;
  color: var(--white-75);
}
@media (max-width: 768px) {
  .single-case .single-case-breadcrumbs-container .breadcrumbs span, .single-case .single-case-breadcrumbs-container .breadcrumbs a {
    color: var(--gray-50);
  }
}
.single-case .single-case-breadcrumbs-container .breadcrumbs a:hover {
  color: var(--secondary);
}
@media (max-width: 768px) {
  .single-case .single-case-breadcrumbs-container .breadcrumbs a:hover {
    color: var(--black);
  }
}
.single-case .single-case-banner {
  position: relative;
  padding-top: 116px;
  height: 500px;
}
@media (max-width: 425px) {
  .single-case .single-case-banner {
    height: 220px;
  }
}
.single-case .single-case-banner .single-case-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}
@media (max-width: 425px) {
  .single-case .single-case-banner .single-case-image {
    height: 220px;
  }
}
.single-case .single-case-banner .single-case-image img {
  width: 100vw;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 425px) {
  .single-case .single-case-banner .single-case-image img {
    height: 220px;
  }
}
.single-case .single-case-header-container {
  background-color: var(--white);
}
.single-case .single-case-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 40px;
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  .single-case .single-case-header {
    padding: 32px 0 48px;
    margin-bottom: 54px;
  }
}
.single-case .single-case-header .single-case-header-wrap {
  max-width: 720px;
}
@media (max-width: 1140px) {
  .single-case .single-case-header .single-case-header-wrap {
    max-width: 100%;
    width: 100%;
  }
}
.single-case .single-case-header .single-case-header-wrap .single-case-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .single-case .single-case-header .single-case-header-wrap .single-case-title {
    margin-bottom: 16px;
  }
}
.single-case .single-case-header .single-case-header-wrap .single-case-excerpt {
  font-size: var(--body-l);
  color: var(--gray-75);
}
@media (max-width: 768px) {
  .single-case .single-case-header .single-case-header-wrap .single-case-excerpt {
    font-size: var(--h5-size);
  }
}
.single-case .single-case-header .single-case-consultation-block {
  position: absolute;
  top: -71px;
  right: 0;
  border: 1px solid var(--secondary-2);
  border-radius: 60px;
  background-color: var(--secondary);
  padding: 111px 40px 40px;
}
@media (max-width: 1140px) {
  .single-case .single-case-header .single-case-consultation-block {
    position: fixed;
    top: unset;
    bottom: 0;
    left: 0;
    padding: 8px 20px;
    border: none;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    border-radius: 0;
    z-index: 10;
    transition: 0.3s transform ease;
    transform: translateY(0);
  }
  .single-case .single-case-header .single-case-consultation-block.hidden-element {
    transform: translateY(101%);
  }
}
.single-case .single-case-header .single-case-consultation-block .consultation-block-icon {
  position: absolute;
  top: -69px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border: 1px solid var(--secondary-2);
  border-radius: 958px;
  background-color: var(--secondary);
  margin: 0 auto;
}
@media (max-width: 1140px) {
  .single-case .single-case-header .single-case-consultation-block .consultation-block-icon {
    position: static;
    top: unset;
    left: unset;
    transform: unset;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 100px;
    margin: 0;
  }
}
.single-case .single-case-header .single-case-consultation-block .consultation-block-icon svg {
  width: 102px;
  height: 102px;
}
@media (max-width: 1140px) {
  .single-case .single-case-header .single-case-consultation-block .consultation-block-icon svg {
    width: 31px;
    height: 31px;
  }
}
.single-case .single-case-header .single-case-consultation-block .consultation-block-title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1140px) {
  .single-case .single-case-header .single-case-consultation-block .consultation-block-title {
    margin-bottom: 0;
  }
}
@media (max-width: 1140px) {
  .single-case .single-case-header .single-case-consultation-block .consultation-block-button {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .single-case .single-case-header .single-case-consultation-block .consultation-block-button {
    font-size: var(--сaption);
    padding: 9px 20px;
  }
}
.single-case .more-cases {
  margin: 120px 0 160px;
}
@media (max-width: 768px) {
  .single-case .more-cases {
    margin: 100px 0;
  }
}
.single-case .more-cases .more-cases-container .more-cases-head {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .single-case .more-cases .more-cases-container .more-cases-head {
    margin-bottom: 40px;
  }
}
.single-case .more-cases .more-cases-container .more-cases-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .single-case .more-cases .more-cases-container .more-cases-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

/*# sourceMappingURL=main.css.map */
