/***** FONTS *****/
@font-face {
  font-family: "WixMadeforDisplay";
  font-display: swap;
  src: url("../fonts/WixMadeforDisplay-Bold.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "WixMadeforDisplay";
  font-display: swap;
  src: url("../fonts/WixMadeforDisplay-Regular.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "WixMadeforDisplay";
  font-display: swap;
  src: url("../fonts/WixMadeforDisplay-Medium.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "WixMadeforDisplay";
  font-display: swap;
  src: url("../fonts/WixMadeforDisplay-SemiBold.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "WixMadeforDisplay";
  font-display: swap;
  src: url("../fonts/WixMadeforDisplay-ExtraBold.woff2") format("woff2"), url("../fonts/WixMadeforDisplay-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a {
  background-color: transparent;
  transition: 0.3s ease;
}

a:active,
a:hover {
  outline: 0;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}

a:focus {
  outline: none;
  outline-offset: 0;
}

figure {
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg,
svg:hover,
path,
polygon {
  transition: 0.05s;
}

svg:not(:root) {
  overflow: hidden;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: #ff0;
  color: #000;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #f2f2f2;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
  outline-offset: 0;
}

button {
  overflow: visible;
  transition: 0.3s ease;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

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

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 0.125rem;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/***** GENERAL ELEMENTS *****/
:root {
  --content-width: 1280px;
  --container-offset: 40px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --primary-color: rgba(1,0,200,1);
  --secondary-color: rgba(255,95,1,1);
  --font-color: rgba(0,0,0,1);
  --white-color: rgba(255,255,255,1);
}

/***** Mixins *****/
@media screen and (max-width: 576px) {
  :root {
    --container-offset: 20px;
  }
}
@media screen and (max-width: 360px) {
  :root {
    --container-offset: 16px;
  }
}
/***** BLOCKS GLOBAL *****/
/*-----generals-----*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "WixMadeforDisplay", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  color: var(--font-color);
  background: var(--white-color);
  overflow-x: hidden;
  padding-top: 164px;
}

.cky-consent-bar p a {
  text-decoration: underline;
  color: var(--primary-color);
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
  width: 100%;
}

.container-padding {
  width: 100%;
  box-sizing: border-box;
  padding-left: calc((100vw - var(--content-width)) / 2);
  padding-right: calc((100vw - var(--content-width)) / 2);
  max-width: 100%;
}

.container-left {
  width: 100%;
  padding-left: max(var(--container-offset), (100% - var(--content-width)) / 2);
  max-width: 100%;
  margin-left: 0;
}

.container-right {
  width: 100%;
  padding-right: max(var(--container-offset), (100% - var(--content-width)) / 2);
  max-width: 100%;
  margin-right: 0;
}

.link-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.dis-scroll {
  overflow: hidden;
  height: 100vh;
}

.screen-reader-text {
  display: none;
}

.single-team .section12 {
  padding-top: 0;
}

@media screen and (min-width: 1500px) {
  .fancybox__carousel.is-horizontal.has-thumbs .fancybox__slide.has-image .fancybox__content {
    width: auto !important;
    min-height: 80vh !important;
  }
  .fancybox__carousel.is-horizontal.has-thumbs .fancybox__slide.has-image .fancybox__content img {
    width: auto !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1499px) {
  .fancybox__footer {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  body {
    padding-top: 126px;
  }
}
@media screen and (max-width: 576px) {
  body {
    padding-top: 122px;
  }
}
@media screen and (max-width: 360px) {
  body {
    padding-top: 106px;
  }
}
.scrollup {
  position: fixed;
  right: 24px;
  bottom: -30%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #DDDCEB;
  background-color: var(--white-color);
  z-index: -1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.scrollup svg {
  width: 16px;
  height: auto;
  color: var(--primary-color);
}
.scrollup:hover {
  transform: translateY(-0.25rem);
  opacity: 0.95;
}
.scrollup.show-scroll {
  bottom: 24px;
  z-index: 500;
}

@media screen and (max-width: 576px) {
  .scrollup {
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .scrollup svg {
    width: 14px;
  }
  .scrollup.show-scroll {
    bottom: 20px;
  }
}
/***** COMPONENTS GLOBAL *****/
.header-desktop.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white-color);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header-desktop.header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 104px;
}
.header-desktop.header .header-logo {
  display: inline-flex;
  width: 21.64%;
  margin-top: -3px;
  margin-right: 56px;
}
.header-desktop.header .header-logo img {
  width: 100%;
  height: auto;
}
.header-desktop.header .header-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-desktop.header .header-socials p {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  width: 120px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.header-desktop.header .header-socials__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-desktop.header .header-socials__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #C7CDDF;
  transition: color 0.3s ease;
}
.header-desktop.header .header-socials__list a svg {
  width: 100%;
  height: auto;
}
.header-desktop.header .header-socials__list a:not(:last-child) {
  margin-right: 14px;
}
.header-desktop.header .header-socials__list a:hover {
  color: var(--primary-color);
}
.header-desktop.header .header-email {
  margin-top: 12px;
  margin-right: 36px;
  margin-left: auto;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.header-desktop.header .header-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-email:hover {
    color: var(--secondary-color);
  }
  .header-desktop.header .header-email:hover::after {
    background-color: var(--secondary-color);
  }
}
.header-desktop.header .header-phone {
  margin-top: 6px;
  margin-right: 42px;
  position: relative;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.header-desktop.header .header-phone::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33CB70;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-phone:hover {
    color: var(--secondary-color);
  }
}
.header-desktop.header .header-rejime {
  margin-top: 4px;
  margin-bottom: 0;
  width: 142px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.header-desktop.header .header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 60px;
  position: relative;
}
.header-desktop.header .header-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--container-width);
  width: 100%;
  height: 1px;
  background: #D9D9D9;
}
.header-desktop.header .header-menu__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-desktop.header .header-menu__list > li:not(:last-child) {
  margin-right: 40px;
}
.header-desktop.header .header-menu__list > li > a {
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #605E6A;
  transition: color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-menu__list > li > a:hover {
    color: var(--font-color);
  }
}
.header-desktop.header .header-menu__list > li.menu-item-has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.header-desktop.header .header-menu__list > li.menu-item-has-children > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.header-desktop.header .header-menu__list > li.menu-item-has-children > span svg {
  display: block;
  width: 100%;
  height: auto;
}
.header-desktop.header .header-menu__list > li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 240px;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 32px 20px 20px;
  border-radius: 10px;
  background-color: var(--white-color);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: all 0.3s ease;
}
.header-desktop.header .header-menu__list > li.menu-item-has-children .sub-menu li {
  display: inline-flex;
}
.header-desktop.header .header-menu__list > li.menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 14px;
}
.header-desktop.header .header-menu__list > li.menu-item-has-children .sub-menu li a {
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #605E6A;
  transition: color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-menu__list > li.menu-item-has-children .sub-menu li a:hover {
    color: var(--font-color);
  }
}
.header-desktop.header .header-menu__list > li.menu-item-has-children:hover > span {
  transform: rotate(-180deg);
}
.header-desktop.header .header-menu__list > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header-desktop.header .header-menu__services {
  position: absolute;
  top: 164px;
  left: 0;
  max-height: calc(100vh - 164px);
  overflow-y: auto;
  padding-top: 26px;
  padding-bottom: 56px;
  width: 100%;
  height: auto;
  background: var(--white-color);
  box-shadow: 0 20px 20px rgba(11, 7, 24, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease;
}
.header-desktop.header .header-menu__services.show {
  opacity: 1;
  visibility: visible;
  z-index: 1001;
}
.header-desktop.header .header-menu__services-title {
  margin-top: 0;
  margin-bottom: 36px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.header-desktop.header .header-menu__services-title:hover {
  color: var(--primary-color);
}
.header-desktop.header .header-menu__services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 88px;
  width: 100%;
  height: auto;
}
.header-desktop.header .header-menu__services-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-desktop.header .header-menu__services-list li {
  display: inline-flex;
  width: 100%;
  height: auto;
}
.header-desktop.header .header-menu__services-list li:not(:last-child) {
  margin-bottom: 28px;
}
.header-desktop.header .header-menu__services-list li a {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: fit-content;
}
.header-desktop.header .header-menu__services-list li a svg {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  margin-right: 20px;
  color: #BDC6D2;
  transition: color 0.3s ease;
}
.header-desktop.header .header-menu__services-list li a span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
  transition: font-weight 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-menu__services-list li a:hover svg {
    color: var(--secondary-color);
  }
  .header-desktop.header .header-menu__services-list li a:hover span {
    font-weight: 600;
  }
}
.header-desktop.header .header-menu__services-client {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 80px;
  padding: 28px 42px;
  border-radius: 20px;
  border: 1px solid rgb(0, 0, 0);
}
.header-desktop.header .header-menu__services-client-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 40px;
}
.header-desktop.header .header-menu__services-client-heading h3 {
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--font-color);
}
.header-desktop.header .header-menu__services-client-heading p {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 22px;
  max-width: 276px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #605E6A;
}
.header-desktop.header .header-menu__services-client-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-desktop.header .header-menu__services-client-contacts-union {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header-desktop.header .header-menu__services-client-contacts-union:not(:last-child) {
  margin-right: 52px;
}
.header-desktop.header .header-menu__services-client-contacts-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-desktop.header .header-menu__services-client-contacts-phone {
  margin-top: 2px;
  margin-right: 24px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-menu__services-client-contacts-phone:hover {
    color: var(--secondary-color);
  }
}
.header-desktop.header .header-menu__services-client-contacts-rejime {
  margin-top: 0;
  margin-bottom: 0;
  width: 128px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.header-desktop.header .header-menu__services-client-contacts-email {
  margin-top: 14px;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.header-desktop.header .header-menu__services-client-contacts-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-menu__services-client-contacts-email:hover {
    color: var(--secondary-color);
  }
  .header-desktop.header .header-menu__services-client-contacts-email:hover::after {
    background-color: var(--secondary-color);
  }
}
.header-desktop.header .header-menu__services-client-contacts-socials {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-desktop.header .header-menu__services-client-contacts-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.header-desktop.header .header-menu__services-client-contacts-socials a svg {
  width: 100%;
  height: auto;
}
.header-desktop.header .header-menu__services-client-contacts-socials a.header-menu__services-client-contacts-socials--tg {
  color: #279CDE;
}
.header-desktop.header .header-menu__services-client-contacts-socials a.header-menu__services-client-contacts-socials--wa {
  color: #1EB36C;
}
.header-desktop.header .header-menu__services-client-contacts-socials a.header-menu__services-client-contacts-socials--vk {
  color: #2770DE;
}
.header-desktop.header .header-menu__services-client-contacts-socials a.header-menu__services-client-contacts-socials--tg:hover, .header-desktop.header .header-menu__services-client-contacts-socials a.header-menu__services-client-contacts-socials--wa:hover, .header-desktop.header .header-menu__services-client-contacts-socials a.header-menu__services-client-contacts-socials--vk:hover {
  color: #C7CDDF;
}
.header-desktop.header .header-menu__services-client-contacts-socials a:not(:last-child) {
  margin-right: 22px;
}
.header-desktop.header .header-menu__services-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin-right: 44px;
  padding-left: 3px;
  color: var(--font-color);
  transition: color 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .header-desktop.header .header-menu__services-button:hover {
    color: var(--secondary-color);
  }
}
.header-desktop.header .header-menu__services-button svg {
  width: 34px;
  height: auto;
  flex-shrink: 0;
  margin-right: 16px;
}
.header-desktop.header .header-menu__services-button span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.header-desktop.header.header-desktop--fixed {
  position: fixed;
}
.header-desktop.header.header-desktop--fixed .header-top {
  display: none;
}
.header-desktop.header.header-desktop--fixed .header-menu__services {
  top: 60px;
  max-height: calc(100vh - 60px);
}

.header-adaptive {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  background: var(--white-color);
  z-index: 1000;
}
.header-adaptive .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
}
.header-adaptive .header-top .header-phone {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  margin-top: 4px;
  font-size: 20px;
}
.header-adaptive .header-top .header-phone::before {
  content: "";
  display: block;
  margin-top: -1px;
  margin-left: 8px;
  margin-right: -3px;
  order: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33CB70;
}
.header-adaptive .header-top .header-socials__list a {
  width: 24px;
  height: 24px;
}
.header-adaptive .header-top .header-socials__list a:not(:last-child) {
  margin-right: 12px;
}
.header-adaptive .header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 74px;
  position: relative;
}
.header-adaptive .header-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--container-width);
  width: 100%;
  height: 1px;
  background: #D9D9D9;
}
.header-adaptive .header-bottom .header-logo {
  margin-top: -4px;
}
.header-adaptive .header-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-adaptive .header-socials p {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  width: 106px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.header-adaptive .header-socials__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-adaptive .header-socials__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #C7CDDF;
  transition: color 0.3s ease;
}
.header-adaptive .header-socials__list a svg {
  width: 100%;
  height: auto;
}
.header-adaptive .header-socials__list a:not(:last-child) {
  margin-right: 14px;
}
.header-adaptive .header-phone {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.header-adaptive .header-email {
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.header-adaptive .header-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
}
.header-adaptive .header-email:not(:last-child) {
  margin-bottom: 26px;
}
.header-adaptive .header-logo {
  display: inline-flex;
  width: 200px;
  margin-right: 10px;
}
.header-adaptive .header-logo img {
  width: 100%;
  height: auto;
}
.header-adaptive .header-rejime {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.header-adaptive .header-menu {
  position: fixed;
  top: 0px;
  left: -100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  padding: 16px var(--container-offset) 48px;
  overflow-y: auto;
  background-color: var(--white-color);
  transition: all 0.3s ease;
  z-index: 1000;
}
.header-adaptive .header-menu.show {
  left: 0;
  box-shadow: 0 20px 80px rgba(13, 12, 33, 0.25);
}
.header-adaptive .header-menu.header-menu__disscroll {
  top: 0;
  overflow-y: hidden;
  height: auto;
}
.header-adaptive .header-menu__open {
  margin-top: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  cursor: pointer;
}
.header-adaptive .header-menu__open img {
  width: 100%;
  height: auto;
}
.header-adaptive .header-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 4px;
  cursor: pointer;
}
.header-adaptive .header-menu__close img {
  width: 24px;
  height: auto;
}
.header-adaptive .header-menu__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease;
}
.header-adaptive .header-menu__bg.show {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}
.header-adaptive .header-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid #EBEEF3;
}
.header-adaptive .header-menu__head-logo {
  display: inline-flex;
  width: 200px;
}
.header-adaptive .header-menu__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-adaptive .header-menu__list:not(:last-child) {
  margin-bottom: 60px;
}
.header-adaptive .header-menu__list > li {
  display: inline-flex;
}
.header-adaptive .header-menu__list > li:not(:last-child) {
  margin-bottom: 25px;
}
.header-adaptive .header-menu__list > li > a {
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.header-adaptive .header-menu__list > li.menu-item-has-children {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.header-adaptive .header-menu__list > li.menu-item-has-children > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.header-adaptive .header-menu__list > li.menu-item-has-children > span svg {
  display: block;
  width: 16px;
  height: auto;
}
.header-adaptive .header-menu__list > li.menu-item-has-children .sub-menu {
  position: relative;
  padding: 0 0 0 12px;
  list-style: none;
  margin: 0;
  width: 100%;
  max-height: none;
  overflow-y: none;
  border-radius: 0;
  background: none;
  opacity: 1;
  z-index: 1000;
  overflow: hidden;
  height: 0;
  transition: 0.3s ease;
}
.header-adaptive .header-menu__list > li.menu-item-has-children .sub-menu li {
  display: inline-flex;
}
.header-adaptive .header-menu__list > li.menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
.header-adaptive .header-menu__list > li.menu-item-has-children .sub-menu li a {
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #605E6A;
  transition: color 0.3s ease;
}
.header-adaptive .header-menu__list > li.menu-item-has-children.open .sub-menu__button {
  transform: rotate(-180deg);
}
.header-adaptive .header-menu__list > li.menu-item-has-children.open .sub-menu {
  margin-top: 8px;
  visibility: visible;
}
.header-adaptive .header-menu__contacts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  margin-top: auto;
}
.header-adaptive .header-menu__contacts .header-socials {
  width: 100%;
  justify-content: space-between;
}
.header-adaptive .header-menu__contacts .header-socials:not(:last-child) {
  margin-bottom: 36px;
}
.header-adaptive .header-menu__contacts .header-phone {
  font-size: 30px;
  margin-bottom: 5px;
}
.header-adaptive .header-menu__services {
  position: fixed;
  top: 94px;
  left: -100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 400px;
  max-width: 100%;
  height: calc(100vh - 94px);
  padding-top: 30px;
  padding-bottom: 40px;
  overflow-y: auto;
  background-color: var(--white-color);
  transition: all 0.3s ease;
  z-index: 1000;
}
.header-adaptive .header-menu__services.show {
  left: 0;
}
.header-adaptive .header-menu__services-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 36px;
  color: var(--font-color);
  cursor: pointer;
}
.header-adaptive .header-menu__services-button svg {
  width: 34px;
  height: auto;
  flex-shrink: 0;
  margin-right: 16px;
}
.header-adaptive .header-menu__services-button span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.header-adaptive .header-menu__services-close {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
  cursor: pointer;
}
.header-adaptive .header-menu__services-close img {
  width: 10px;
  height: auto;
  flex-shrink: 0;
  margin-right: 15px;
}
.header-adaptive .header-menu__services-close span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--font-color);
}
.header-adaptive .header-menu__services-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-adaptive .header-menu__services-list li {
  display: inline-flex;
  width: 100%;
}
.header-adaptive .header-menu__services-list li:not(:last-child) {
  margin-bottom: 20px;
}
.header-adaptive .header-menu__services-list li a {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: fit-content;
}
.header-adaptive .header-menu__services-list li a svg {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  margin-right: 15px;
  color: #BDC6D2;
}
.header-adaptive .header-menu__services-list li a span {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.header-adaptive .header-menu__services-link {
  display: inline-flex;
  position: relative;
  margin-top: 30px;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.header-adaptive .header-menu__services-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
}
.header-adaptive.header-adaptive--fixed {
  position: fixed;
}
.header-adaptive.header-adaptive--fixed .header-top {
  display: none;
}
.header-adaptive.header-adaptive--fixed .header-menu__services {
  top: 60px;
  max-height: calc(100vh - 60px);
}

.company-close .header-phone::before {
  display: none;
}

@media screen and (max-width: 1279px) {
  .header-desktop.header {
    display: none;
  }
  .header-adaptive.header {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .header-adaptive .header-top {
    height: 48px;
  }
  .header-adaptive .header-top .header-phone {
    margin-top: 2px;
  }
  .header-adaptive .header-bottom .header-logo {
    margin-top: -3px;
  }
  .header-adaptive .header-menu {
    width: 350px;
    padding-bottom: 40px;
  }
  .header-adaptive .header-menu__services {
    top: 94px;
    width: 350px;
    height: calc(100% - 94px);
  }
}
@media screen and (max-width: 360px) {
  .header-adaptive .header-top {
    height: 40px;
  }
  .header-adaptive .header-top .header-phone {
    margin-top: 1px;
    font-size: 18px;
  }
  .header-adaptive .header-top .header-phone::before {
    margin-left: 4px;
    width: 5px;
    height: 5px;
  }
  .header-adaptive .header-top .header-socials__list a {
    width: 22px;
    height: 22px;
  }
  .header-adaptive .header-top .header-socials__list a:not(:last-child) {
    margin-right: 10px;
  }
  .header-adaptive .header-bottom {
    height: 66px;
  }
  .header-adaptive .header-bottom .header-logo {
    margin-top: -2px;
  }
  .header-adaptive .header-logo {
    width: 180px;
    margin-right: 8px;
  }
  .header-adaptive .header-menu {
    padding-bottom: 32px;
  }
  .header-adaptive .header-menu__open {
    width: 52px;
    height: 36px;
  }
  .header-adaptive .header-menu__close {
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }
  .header-adaptive .header-menu__close img {
    width: 20px;
  }
}
.footer {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 68px;
  background: var(--white-color);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer-logo {
  display: inline-flex;
  flex-shrink: 0;
  width: 21.64%;
  margin-top: -3px;
  margin-right: 56px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-socials p {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  width: 120px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.footer-socials__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-socials__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #C7CDDF;
  transition: color 0.3s ease;
}
.footer-socials__list a svg {
  width: 100%;
  height: auto;
}
.footer-socials__list a:not(:last-child) {
  margin-right: 14px;
}
.footer-socials__list a:hover {
  color: var(--primary-color);
}
.footer-email {
  margin-top: 12px;
  margin-right: 36px;
  margin-left: auto;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.footer-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .footer-email:hover {
    color: var(--secondary-color);
  }
  .footer-email:hover::after {
    background-color: var(--secondary-color);
  }
}
.footer-phone {
  margin-top: 6px;
  margin-right: 24px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .footer-phone:hover {
    color: var(--secondary-color);
  }
}
.footer-rejime {
  margin-top: 4px;
  margin-bottom: 0;
  width: 142px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.footer-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 52px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
}
.footer-info p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #605E6A;
}
.footer-info p:not(:last-child) {
  margin-bottom: 14px;
}
.footer-info a {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #605E6A;
}
.footer-info a:not(:last-child) {
  margin-bottom: 14px;
}
.footer-info a:hover {
  color: rgb(255, 95, 1);
  text-decoration: underline;
}
.footer-menus {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 43%;
}
.footer-menu:nth-child(1) {
  width: calc(42.31% - 10px);
  margin-right: 20px;
}
.footer-menu:nth-child(2) {
  width: calc(57.69% - 10px);
}
.footer-menu__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.footer-menu__wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.footer-menu__wrapper ul li {
  display: inline-flex;
}
.footer-menu__wrapper ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-menu__wrapper ul li a {
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.footer-menu__wrapper ul li a:hover {
  color: rgb(1, 0, 200);
  font-weight: 600;
}

@media screen and (max-width: 1279px) {
  .footer {
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .footer-top {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .footer-logo {
    width: 240px;
    margin-top: 0;
    margin-right: 0;
  }
  .footer-socials {
    margin-top: 20px;
  }
  .footer-email {
    margin-top: 36px;
    margin-right: 0;
    margin-left: 0;
  }
  .footer-phone {
    margin-top: 26px;
    margin-right: 0;
  }
  .footer-rejime {
    margin-top: 4px;
    margin-bottom: 0;
    width: 100%;
  }
  .footer-container {
    justify-content: flex-start;
    flex-direction: column-reverse;
    margin-top: 36px;
  }
  .footer-info {
    width: 100%;
    margin-top: 40px;
  }
  .footer-menus {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .footer-logo {
    max-width: 70%;
  }
  .footer-socials-list {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .footer-email {
    margin-top: 28px;
  }
  .footer-menus {
    justify-content: flex-start;
    flex-direction: column;
  }
  .footer-menu:nth-child(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer-menu:nth-child(2) {
    width: 100%;
  }
  .footer-menu__title {
    margin-bottom: 0;
    position: relative;
    padding-right: 24px;
    width: fit-content;
  }
  .footer-menu__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.43778 8.76144L0.828466 4.15212L1.98059 3L6.01384 7.03325L10.0471 3L11.1992 4.15212L6.5899 8.76144C6.43711 8.91419 6.2299 9 6.01384 9C5.79779 9 5.59058 8.91419 5.43778 8.76144Z" fill="black"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
  }
  .footer-menu__wrapper {
    box-sizing: border-box;
    overflow: hidden;
    height: 0;
    transition: all 0.25s ease;
  }
  .footer-menu-open .footer-menu__title::after {
    transform: translateY(-50%) rotate(-180deg);
  }
  .footer-menu-open .footer-menu__wrapper {
    margin-top: 16px;
  }
  .footer-menu-open:not(:last-child) .footer-menu__wrapper {
    margin-bottom: 10px;
  }
}
.button-primary--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 44px;
  min-height: 70px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--white-color) !important;
  border-radius: 10px;
  border: 0;
  outline: none;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}
.button-primary--icon::after {
  content: "";
  display: block;
  margin-left: 12px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.36373 13.1777L10.9692 4.57218V12.4776L12.9703 12.4706V1.15685H1.65662V3.1509L9.55501 3.15797L0.949516 11.7635L2.36373 13.1777Z" fill="white"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.button-primary--icon:hover {
  color: var(--white-color);
}
@media screen and (min-width: 1025px) {
  .button-primary--icon:hover {
    background-color: rgb(215, 81, 19);
  }
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 44px;
  min-height: 70px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--white-color);
  border-radius: 10px;
  border: 0;
  outline: none;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}
.button-primary:hover {
  color: var(--white-color);
}
@media screen and (min-width: 1025px) {
  .button-primary:hover {
    background-color: #F55500;
  }
}

.button-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 44px;
  min-height: 70px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--white-color);
  border-radius: 10px;
  border: 0;
  outline: none;
  background-color: #2765DE;
  transition: all 0.3s ease;
}
.button-tg::before {
  content: "";
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml, <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14.3439" cy="15.8787" r="12.1378" fill="%233C70D5"/><path d="M16 32C24.8387 32 32 24.8387 32 16C32 7.16133 24.8387 0 16 0C7.16133 0 0 7.16133 0 16C0 24.8387 7.16133 32 16 32ZM7.32133 15.6533L22.748 9.70533C23.464 9.44667 24.0893 9.88 23.8573 10.9627L23.8587 10.9613L21.232 23.336C21.0373 24.2133 20.516 24.4267 19.7867 24.0133L15.7867 21.0653L13.8573 22.924C13.644 23.1373 13.464 23.3173 13.0507 23.3173L13.3347 19.2467L20.748 12.5493C21.0707 12.2653 20.676 12.1053 20.2507 12.388L11.0893 18.156L7.14 16.924C6.28267 16.652 6.264 16.0667 7.32133 15.6533V15.6533Z" fill="white"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.button-tg:hover {
  color: var(--white-color);
}
@media screen and (min-width: 1025px) {
  .button-tg:hover {
    background-color: #0c55e1;
  }
}

.button-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 44px;
  min-height: 70px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--white-color);
  border-radius: 10px;
  border: 0;
  outline: none;
  background-color: #1EB36C;
  transition: all 0.3s ease;
}
.button-wa::before {
  content: "";
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml, <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="15.9092" cy="16.5404" r="12.6436" fill="%23339D6A"/><path d="M16 0C7.16 0 0 7.16 0 16C0 19.52 1.12 22.76 3.04 25.4L0.84 31.2L7.2 29.36C9.72 31.04 12.76 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0ZM24.52 22.64L22.8 24.32C21 26.12 16.24 24.16 12.04 19.92C7.84 15.72 5.96 10.96 7.64 9.2L9.36 7.48C10 6.84 11.08 6.84 11.76 7.48L14.28 10C15.16 10.88 14.8 12.4 13.64 12.76C12.84 13.04 12.28 13.92 12.56 14.72C13 16.6 15.44 18.92 17.24 19.36C18.04 19.56 18.96 19.08 19.2 18.28C19.56 17.12 21.08 16.76 21.96 17.64L24.48 20.16C25.12 20.84 25.12 21.92 24.52 22.64V22.64Z" fill="white"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.button-wa:hover {
  color: var(--white-color);
}
@media screen and (min-width: 1025px) {
  .button-wa:hover {
    background-color: #339D6A;
  }
}

@media screen and (max-width: 1279px) {
  .button-primary--icon {
    padding: 10px 36px;
    min-height: 60px;
  }
  .button-primary {
    padding: 10px 36px;
    min-height: 60px;
  }
  .button-tg,
.button-wa {
    padding: 8px 20px;
    font-size: 18px;
    min-height: 60px;
  }
  .button-tg::before,
.button-wa::before {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 576px) {
  .button-primary--icon {
    padding: 7px 16px;
  }
  .button-primary {
    padding: 7px 16px;
  }
  .button-tg,
.button-wa {
    padding: 6px 12px;
    font-size: 16px;
  }
  .button-tg::before,
.button-wa::before {
    width: 24px;
    height: 24px;
  }
}
.kama_breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 36px 0;
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #EBEEF3;
  box-sizing: border-box;
}
.kama_breadcrumbs a {
  display: inline-flex;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white-color);
  border: 1px solid #5B5975;
  border-radius: 8px;
}
.kama_breadcrumbs .kb_sep {
  display: none;
}
.kama_breadcrumbs span:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 1279px) {
  .kama_breadcrumbs {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 576px) {
  .kama_breadcrumbs {
    margin-bottom: 28px;
    font-size: 11px;
  }
  .kama_breadcrumbs a {
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 7px;
  }
  .kama_breadcrumbs span:not(:last-child) {
    margin-right: 16px;
  }
}
.heading {
  width: 100%;
  margin-bottom: 40px;
}

.section-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 28px;
  min-height: 40px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--font-color);
  border-radius: 8px;
  outline: none;
  border: 1px solid #DDDCEB;
  background-color: transparent;
  transition: all 0.3s ease;
}
.section-link::after {
  content: "";
  display: block;
  margin-left: 10px;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.36373 13.1777L10.9692 4.57218V12.4776L12.9703 12.4706V1.15685H1.65662V3.1509L9.55501 3.15797L0.949516 11.7635L2.36373 13.1777Z" fill="black"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section-link:hover {
  color: rgb(1, 0, 200);
}
@media screen and (min-width: 1025px) {
  .section-link:hover {
    border-color: var(--primary-color);
  }
}

.page-heading {
  width: 100%;
}
.page-heading h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 75px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white-color);
}
.page-heading-icon {
  margin-top: -50px;
  margin-left: 8px;
  width: 22px;
  height: auto;
}
.page-heading p {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}

@media screen and (max-width: 1279px) {
  .heading {
    margin-bottom: 32px;
  }
  .section-title {
    font-size: 44px;
  }
  .page-heading h1 {
    font-size: 48px;
  }
  .page-heading-icon {
    margin-top: -30px;
    width: 18px;
  }
  .page-heading p {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .heading {
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 30px;
  }
  .page-heading h1 {
    font-size: 32px;
  }
  .page-heading-icon {
    margin-top: -20px;
    margin-left: 6px;
    width: 14px;
  }
  .page-heading p {
    margin-top: 14px;
    font-size: 16px;
  }
}
.swiper {
  width: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  gap: 10px 0;
  padding: 0 20px;
}
.swiper-pagination-bullet {
  width: 16px;
  height: 3px;
  margin: 0 10px;
  opacity: 1;
  border-radius: 20px;
  background-color: #DCE1E8;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  width: 36px;
  background-color: var(--font-color);
}
@media screen and (min-width: 1025px) {
  .swiper-pagination-bullet:hover {
    background-color: var(--font-color);
  }
}

.slider-button-prev,
.slider-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  color: var(--font-color);
  border: 0.5px solid transparent;
  background-color: var(--white-color);
  box-shadow: 0 15px 40px rgba(10, 7, 23, 0.15);
  transition: all 0.3s ease;
  z-index: 0;
  cursor: pointer;
}
.slider-button-prev.swiper-button-lock,
.slider-button-next.swiper-button-lock {
  display: none !important;
}
.slider-button-prev svg,
.slider-button-next svg {
  display: block;
  width: 14px;
  height: 24px;
}
.slider-button-prev:hover,
.slider-button-next:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.slider-button-prev.swiper-button-disabled,
.slider-button-next.swiper-button-disabled {
  opacity: 0.3;
  color: var(--font-color) !important;
  border-color: transparent !important;
  cursor: auto;
}

.slider-button-prev {
  left: -110px;
}

.slider-button-next {
  right: -110px;
}

@media screen and (max-width: 576px) {
  .swiper-pagination {
    margin-top: 20px;
  }
  .swiper-pagination-bullet {
    margin-right: 8px;
    margin-left: 8px;
  }
}
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.is-close-btn {
  top: 50px !important;
  right: 50px !important;
  width: 50px !important;
  height: 50px !important;
  border: 0 !important;
  outline: none !important;
  opacity: 1;
  border-radius: 0 !important;
  color: var(--font-color) !important;
  box-shadow: none !important;
  background-color: transparent !important;
  background-image: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.14645 2.14645C2.34171 1.95118 2.65829 1.95118 2.85355 2.14645L25 24.2929L47.1464 2.14645C47.3417 1.95118 47.6583 1.95118 47.8536 2.14645C48.0488 2.34171 48.0488 2.65829 47.8536 2.85355L25.7071 25L47.8536 47.1464C48.0488 47.3417 48.0488 47.6583 47.8536 47.8536C47.6583 48.0488 47.3417 48.0488 47.1464 47.8536L25 25.7071L2.85355 47.8536C2.65829 48.0488 2.34171 48.0488 2.14645 47.8536C1.95118 47.6583 1.95118 47.3417 2.14645 47.1464L24.2929 25L2.14645 2.85355C1.95118 2.65829 1.95118 2.34171 2.14645 2.14645Z" fill="black"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.3s ease;
}
.is-close-btn svg {
  display: none;
}
.is-close-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.14645 2.14645C2.34171 1.95118 2.65829 1.95118 2.85355 2.14645L25 24.2929L47.1464 2.14645C47.3417 1.95118 47.6583 1.95118 47.8536 2.14645C48.0488 2.34171 48.0488 2.65829 47.8536 2.85355L25.7071 25L47.8536 47.1464C48.0488 47.3417 48.0488 47.6583 47.8536 47.8536C47.6583 48.0488 47.3417 48.0488 47.1464 47.8536L25 25.7071L2.85355 47.8536C2.65829 48.0488 2.34171 48.0488 2.14645 47.8536C1.95118 47.6583 1.95118 47.3417 2.14645 47.1464L24.2929 25L2.14645 2.85355C1.95118 2.65829 1.95118 2.34171 2.14645 2.14645Z" fill="%230100C8"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.is-close-btn:hover {
  opacity: 0;
}
.is-close-btn:hover::before {
  opacity: 1;
}

.fancybox__slide {
  padding: 40px var(--container-offset);
}

.fancybox__container {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
}

.modal-consultation {
  width: 1020px;
  padding: 45px 70px 55px;
  color: var(--font-color);
  border-radius: 30px;
  background: var(--white-color);
}
.modal-consultation__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% - 300px - 60px);
  padding-bottom: 40px;
}
.modal-consultation__heading-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 62px;
  border-bottom: 1px solid #BDC6D2;
}
.modal-consultation__heading-container:not(:last-child) {
  margin-bottom: 40px;
}
.modal-consultation__heading-container > img {
  margin-top: 12px;
  width: 300px;
  height: auto;
}
.modal-consultation__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.modal-consultation__descr {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.modal-consultation__descr strong {
  font-weight: 600;
}

.modal-review {
  width: 600px;
  padding: 48px 44px 32px 44px;
  color: var(--font-color);
  border-radius: 30px;
  background: var(--white-color);
}
.modal-review .is-close-btn {
  top: 24px !important;
  right: 24px !important;
  width: 24px !important;
  height: 24px !important;
}
.modal-review h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.modal-review h3:not(:first-child) {
  margin-top: 12px;
}
.modal-review h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.modal-review h4:not(:first-child) {
  margin-top: 12px;
}
.modal-review p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.modal-review p:not(:last-child) {
  margin-bottom: 16px;
}

@media screen and (max-width: 1279px) {
  .is-close-btn {
    top: 24px !important;
    right: 24px !important;
    width: 24px !important;
    height: 24px !important;
  }
  .modal-consultation {
    width: 100%;
    padding: 32px 28px;
    border-radius: 24px;
  }
  .modal-consultation__heading {
    width: calc(70% - 16px);
    padding-bottom: 20px;
  }
  .modal-consultation__heading-container {
    padding-right: 20px;
  }
  .modal-consultation__heading-container:not(:last-child) {
    margin-bottom: 24px;
  }
  .modal-consultation__heading-container > img {
    width: 26%;
  }
  .modal-consultation__title {
    font-size: 44px;
  }
  .modal-consultation__descr {
    font-size: 18px;
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .is-close-btn {
    top: 20px !important;
    right: 20px !important;
    width: 20px !important;
    height: 20px !important;
  }
  .fancybox__slide {
    padding: 20px 14px;
  }
  .modal-consultation {
    width: 100%;
    padding: 32px 28px;
    border-radius: 20px;
  }
  .modal-consultation__heading {
    width: 100%;
    padding-bottom: 36px;
  }
  .modal-consultation__heading-container {
    position: relative;
    padding-right: 0;
  }
  .modal-consultation__heading-container:not(:last-child) {
    margin-bottom: 18px;
  }
  .modal-consultation__heading-container > img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36%;
  }
  .modal-consultation__title {
    margin-bottom: 16px;
    font-size: 30px;
  }
  .modal-consultation__descr {
    font-size: 15px;
    max-width: 64%;
  }
  .modal-review {
    width: 100%;
    padding: 32px 24px 20px 24px;
    border-radius: 20px;
  }
  .modal-review .is-close-btn {
    top: 20px !important;
    right: 20px !important;
    width: 20px !important;
    height: 20px !important;
  }
  .modal-review h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .modal-review h3:not(:first-child) {
    margin-top: 8px;
  }
  .modal-review h4 {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .modal-review h4:not(:first-child) {
    margin-top: 8px;
  }
  .modal-review p {
    font-size: 16px;
  }
  .modal-review p:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 360px) {
  .fancybox__slide {
    padding: 12px 14px;
  }
  .modal-consultation {
    padding: 24px 20px;
  }
  .modal-consultation__heading {
    padding-bottom: 16px;
  }
  .modal-consultation__title {
    margin-bottom: 12px;
    font-size: 28px;
  }
  .modal-consultation__descr {
    font-size: 14px;
    max-width: 64%;
  }
  .modal-review {
    padding: 32px 20px 20px 20px;
  }
  .modal-review h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .modal-review h3:not(:first-child) {
    margin-top: 8px;
  }
  .modal-review h4 {
    margin-bottom: 12px;
    font-size: 17px;
  }
  .modal-review p:not(:last-child) {
    margin-bottom: 12px;
  }
}
/***** SECTIONS GLOBAL (Widgets) *****/
.section1 {
  position: relative;
  width: 100%;
  padding-top: 52px;
  padding-bottom: 88px;
  color: var(--white-color);
  border-bottom-right-radius: 80px;
  overflow: hidden;
  background: #170E86;
  z-index: 0;
}
.section1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section1-bg-desktop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.section1__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.section1__content {
  width: 60%;
}
.section1__pretitle {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 80px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white-color);
  border: 1px solid #5B5975;
  border-radius: 8px;
}
.section1__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: var(--white-color);
}
.section1__title span {
  font-weight: 400;
}
.section1__subtitle {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white-color);
}
.section1 .button-primary--icon {
  margin-top: 88px;
}
.section1__creative {
  position: relative;
  width: calc(40% - 24px);
  height: 570px;
}
.section1__creative img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(21, 7, 7, 0.25);
}
.section1__creative img:nth-child(1) {
  top: 0;
  left: 0;
  margin-top: 40px;
  max-width: none;
  width: 620px;
  height: 370px;
  border-radius: 30px;
  transform: rotate(3.5deg);
}
.section1__creative img:nth-child(2) {
  top: 300px;
  left: 80px;
  max-width: none;
  width: 366px;
  height: 220px;
  border-radius: 20px;
  transform: rotate(-4.15deg);
}
.section1-benefits {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
  position: relative;
  padding-top: 50px;
  padding-bottom: 60px;
}
.section1-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 880px;
  max-width: 100%;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
}
.section1-benefits::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 880px;
  max-width: 100%;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
}
.section1-benefits:not(:last-child) {
  margin-bottom: 64px;
}
.section1-benefits__item {
  width: 40%;
  flex-shrink: 0;
}
.section1-benefits__item:nth-child(1) {
  width: calc(35.83% - 20px);
}
.section1-benefits__item:nth-child(2) {
  width: calc(30% - 20px);
}
.section1-benefits__item:nth-child(3) {
  width: calc(40% - 20px);
}
.section1-benefits__item:not(:last-child) {
  margin-right: 40px;
}
.section1-benefits__item-title {
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
}
.section1-benefits__item-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 12px;
  height: 9px;
  background-image: url('data:image/svg+xml,<svg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.7803 0.226373C11.921 0.371038 12 0.567138 12 0.771598C12 0.976059 11.921 1.17216 11.7803 1.31682L4.51881 8.77509C4.37796 8.91958 4.18704 9.00073 3.98797 9.00073C3.78891 9.00073 3.59798 8.91958 3.45713 8.77509L0.201977 5.43173C0.0691239 5.2855 -0.00325115 5.092 0.000112185 4.89202C0.00347553 4.69205 0.0823142 4.50123 0.220005 4.3598C0.357703 4.21837 0.543489 4.1374 0.738189 4.13395C0.932889 4.13049 1.12129 4.20483 1.26366 4.34128L3.98797 7.13942L10.7186 0.226373C10.8595 0.081888 11.0504 0.000732422 11.2495 0.000732422C11.4485 0.000732422 11.6395 0.081888 11.7803 0.226373Z" fill="%23FF5F01"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section1-benefits__item-text {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #CACACB;
}
.section1-values {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.section1-values__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
}
.section1-values__item:not(:last-child) {
  margin-right: 72px;
}
.section1-values__item-value {
  flex-shrink: 0;
  margin-right: 20px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white-color);
}
.section1-values__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #CACACB;
}

@media screen and (max-width: 1440px) {
  .section1__creative img:nth-child(1) {
    width: 500px;
    height: 300px;
    border-radius: 25px;
  }
  .section1__creative img:nth-child(2) {
    top: 260px;
    left: 70px;
    width: 330px;
    height: 200px;
  }
  .section1-benefits__item:nth-child(1) {
    width: calc(30% - 12px);
  }
  .section1-benefits__item:nth-child(2) {
    width: calc(30% - 12px);
  }
  .section1-benefits__item:nth-child(3) {
    width: calc(40% - 12px);
  }
  .section1-benefits__item:not(:last-child) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1279px) {
  .section1 {
    padding-top: 44px;
    padding-bottom: 52px;
    border-bottom-right-radius: 60px;
  }
  .section1::after {
    background-image: url("../img/section1-bg-adaptive.jpg");
  }
  .section1__container {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  .section1__content {
    width: 100%;
    margin-top: 36px;
  }
  .section1__pretitle {
    margin-bottom: 28px;
  }
  .section1__title {
    max-width: 680px;
    font-size: 56px;
  }
  .section1__subtitle {
    margin-top: 20px;
    font-size: 26px;
  }
  .section1 .button-primary--icon {
    margin-top: 40px;
    margin-bottom: 48px;
  }
  .section1__creative {
    width: 100%;
    height: 504px;
  }
  .section1__creative img:nth-child(1) {
    left: 50%;
    margin-top: 40px;
    width: 620px;
    height: 370px;
    border-radius: 30px;
    transform: rotate(3.5deg) translateX(-50%);
  }
  .section1__creative img:nth-child(2) {
    top: 260px;
    left: 50%;
    width: 366px;
    height: 220px;
    border-radius: 20px;
    transform: rotate(-4.15deg) translateX(-60%);
  }
  .section1-benefits {
    width: calc(100% + 80px);
    max-width: calc(100% + 80px);
    margin-left: -40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 22px;
    overflow-x: auto;
    border-top: 1px solid rgba(217, 217, 217, 0.2);
    border-bottom: 1px solid rgba(217, 217, 217, 0.2);
  }
  .section1-benefits::-webkit-scrollbar, .section1-benefits::-webkit-scrollbar-thumb {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .section1-benefits::before, .section1-benefits::after {
    display: none;
  }
  .section1-benefits:not(:last-child) {
    margin-bottom: 20px;
  }
  .section1-benefits__item {
    width: 300px !important;
  }
  .section1-benefits__item:not(:last-child) {
    margin-right: 20px;
  }
  .section1-benefits__item-title {
    margin-bottom: 10px;
    padding-left: 24px;
    font-size: 18px;
  }
  .section1-benefits__item-title::before {
    top: 7px;
  }
  .section1-benefits__item-text {
    padding-left: 24px;
    font-size: 15px;
  }
  .section1-values {
    width: calc(100% + 80px);
    max-width: calc(100% + 80px);
    margin-left: -40px;
    padding-left: 40px;
    padding-right: 40px;
    overflow-x: auto;
  }
  .section1-values::-webkit-scrollbar, .section1-values::-webkit-scrollbar-thumb {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .section1-values__item {
    flex-shrink: 0;
  }
  .section1-values__item:not(:last-child) {
    margin-right: 36px;
  }
  .section1-values__item-value {
    margin-right: 16px;
    font-size: 30px;
  }
  .section1-values__item-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .section1 {
    padding-top: 36px;
    padding-bottom: 48px;
    border-bottom-right-radius: 40px;
  }
  .section1__title {
    max-width: 100%;
    font-size: 32px;
  }
  .section1__subtitle {
    margin-top: 15px;
    font-size: 20px;
  }
  .section1 .button-primary--icon {
    margin-top: 30px;
    margin-bottom: 28px;
    width: 100%;
  }
  .section1__creative {
    height: 240px;
  }
  .section1__creative img:nth-child(1) {
    margin-top: 16px;
    width: 300px;
    height: 180px;
    border-radius: 25px;
  }
  .section1__creative img:nth-child(2) {
    top: 120px;
    width: 178px;
    height: 106px;
    border-radius: 15px;
  }
  .section1-benefits {
    width: calc(100% + var(--container-offset) * 2);
    max-width: calc(100% + var(--container-offset) * 2);
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section1-benefits__item {
    width: 280px !important;
  }
  .section1-benefits__item:not(:last-child) {
    margin-right: 20px;
  }
  .section1-values {
    width: calc(100% + var(--container-offset) * 2);
    max-width: calc(100% + var(--container-offset) * 2);
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section1-values__item:not(:last-child) {
    margin-right: 28px;
  }
  .section1-values__item-value {
    margin-right: 12px;
  }
}
.section2 {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--white-color);
}
.section2 .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section2 .heading {
  max-width: calc(100% - 300px);
}
.section2 .section-link {
  margin-top: 12px;
}
.section2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 15px;
  width: 100%;
}
.section2-grid .scard:nth-child(n+9) {
  display: none;
}

.scard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 300px;
  padding: 34px 40px 30px 42px;
  border-radius: 20px;
  z-index: 0;
}
.scard-meta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-left: 6px;
}
.scard-duration, .scard-days {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.scard-duration:not(:last-child), .scard-days:not(:last-child) {
  margin-right: 36px;
}
.scard-duration::before, .scard-days::before {
  content: "";
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.scard-duration span, .scard-days span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.scard-duration::before {
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5001 0.937936C11.5559 1.54754 12.4342 2.42232 13.048 3.47568C13.6619 4.52903 13.9899 5.72444 13.9998 6.94355C14.0096 8.16266 13.7009 9.36321 13.1042 10.4263C12.5075 11.4895 11.6434 12.3783 10.5976 13.0049C9.55179 13.6315 8.36046 13.9741 7.14156 13.9987C5.92265 14.0234 4.71844 13.7293 3.64813 13.1456C2.57782 12.5618 1.67853 11.7086 1.03928 10.6705C0.400028 9.6324 0.042987 8.44533 0.00350012 7.22681L0 7.00001L0.00350012 6.77321C0.0427028 5.56429 0.394488 4.38615 1.02456 3.35366C1.65463 2.32117 2.54149 1.46956 3.59867 0.881853C4.65585 0.294147 5.84727 -0.00959767 7.05679 0.000231175C8.26631 0.01006 9.45264 0.333127 10.5001 0.937936ZM7.00009 2.79996C6.82863 2.79998 6.66315 2.86293 6.53502 2.97686C6.40689 3.09079 6.32504 3.24779 6.30498 3.41807L6.30008 3.49997V7.00001L6.30638 7.09171C6.32234 7.21316 6.36989 7.3283 6.44428 7.42562L6.50518 7.49562L8.60521 9.59564L8.67101 9.65304C8.79377 9.74829 8.94473 9.79999 9.10011 9.79999C9.25549 9.79999 9.40645 9.74829 9.52922 9.65304L9.59502 9.59494L9.65312 9.52914C9.74837 9.40638 9.80006 9.25542 9.80006 9.10004C9.80006 8.94466 9.74837 8.79369 9.65312 8.67093L9.59502 8.60513L7.70009 6.70951V3.49997L7.69519 3.41807C7.67513 3.24779 7.59328 3.09079 7.46515 2.97686C7.33703 2.86293 7.17154 2.79998 7.00009 2.79996Z" fill="black"/></svg>');
}
.scard-days::before {
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 11.0833C0.00092625 11.8566 0.308514 12.5979 0.855295 13.1447C1.40208 13.6915 2.1434 13.9991 2.91667 14H11.0833C11.8566 13.9991 12.5979 13.6915 13.1447 13.1447C13.6915 12.5979 13.9991 11.8566 14 11.0833V5.83333H0V11.0833ZM9.91667 8.45833C10.0897 8.45833 10.2589 8.50965 10.4028 8.6058C10.5467 8.70194 10.6588 8.8386 10.7251 8.99849C10.7913 9.15837 10.8086 9.3343 10.7749 9.50404C10.7411 9.67377 10.6578 9.82968 10.5354 9.95205C10.413 10.0744 10.2571 10.1578 10.0874 10.1915C9.91764 10.2253 9.7417 10.208 9.58182 10.1417C9.42193 10.0755 9.28528 9.96335 9.18913 9.81946C9.09298 9.67556 9.04167 9.50639 9.04167 9.33333C9.04167 9.10127 9.13385 8.87871 9.29795 8.71461C9.46204 8.55052 9.6846 8.45833 9.91667 8.45833ZM7 8.45833C7.17306 8.45833 7.34223 8.50965 7.48612 8.6058C7.63002 8.70194 7.74217 8.8386 7.80839 8.99849C7.87462 9.15837 7.89195 9.3343 7.85819 9.50404C7.82442 9.67377 7.74109 9.82968 7.61872 9.95205C7.49635 10.0744 7.34044 10.1578 7.1707 10.1915C7.00097 10.2253 6.82504 10.208 6.66515 10.1417C6.50527 10.0755 6.36861 9.96335 6.27246 9.81946C6.17632 9.67556 6.125 9.50639 6.125 9.33333C6.125 9.10127 6.21719 8.87871 6.38128 8.71461C6.54538 8.55052 6.76794 8.45833 7 8.45833ZM4.08333 8.45833C4.25639 8.45833 4.42556 8.50965 4.56946 8.6058C4.71335 8.70194 4.8255 8.8386 4.89173 8.99849C4.95795 9.15837 4.97528 9.3343 4.94152 9.50404C4.90776 9.67377 4.82442 9.82968 4.70205 9.95205C4.57968 10.0744 4.42377 10.1578 4.25404 10.1915C4.0843 10.2253 3.90837 10.208 3.74849 10.1417C3.5886 10.0755 3.45194 9.96335 3.3558 9.81946C3.25965 9.67556 3.20833 9.50639 3.20833 9.33333C3.20833 9.10127 3.30052 8.87871 3.46461 8.71461C3.62871 8.55052 3.85127 8.45833 4.08333 8.45833ZM11.0833 1.16667H10.5V0.583333C10.5 0.428624 10.4385 0.280251 10.3291 0.170854C10.2197 0.0614582 10.0714 0 9.91667 0C9.76196 0 9.61358 0.0614582 9.50419 0.170854C9.39479 0.280251 9.33333 0.428624 9.33333 0.583333V1.16667H4.66667V0.583333C4.66667 0.428624 4.60521 0.280251 4.49581 0.170854C4.38642 0.0614582 4.23804 0 4.08333 0C3.92862 0 3.78025 0.0614582 3.67085 0.170854C3.56146 0.280251 3.5 0.428624 3.5 0.583333V1.16667H2.91667C2.1434 1.16759 1.40208 1.47518 0.855295 2.02196C0.308514 2.56874 0.00092625 3.31007 0 4.08333L0 4.66667H14V4.08333C13.9991 3.31007 13.6915 2.56874 13.1447 2.02196C12.5979 1.47518 11.8566 1.16759 11.0833 1.16667Z" fill="black"/></svg>');
}
.scard-icon {
  position: absolute;
  top: 52px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.scard-icon img {
  width: 100%;
  height: auto;
}
.scard-content {
  width: 100%;
}
.scard-content h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--font-color);
}
.scard-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.scard-content p:not(:first-child) {
  margin-top: 10px;
}
.scard-all {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 300px;
  padding: 12px 42px 30px 42px;
  border-radius: 20px;
  border: 1px solid #000000;
  background: var(--white-color);
}
.scard-all-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}
.scard-all-text {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #605E6A;
}
.scard-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--font-color);
  transition: all 0.3s ease;
}
.scard-all-link::after {
  content: "";
  display: block;
  margin-left: 16px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.36373 13.1777L10.9692 4.57218V12.4776L12.9703 12.4706V1.15685H1.65662V3.1509L9.55501 3.15797L0.949516 11.7635L2.36373 13.1777Z" fill="black"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.scard-all-link:hover {
  color: var(--font-color);
}

@media screen and (max-width: 1279px) {
  .section2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section2 .container {
    justify-content: flex-start;
  }
  .section2 .heading {
    max-width: 100%;
  }
  .section2 .section-link {
    order: 10;
    margin-top: 20px;
    width: 100%;
  }
  .section2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
  .section2-grid .scard-all {
    display: none;
  }
  .scard {
    min-height: 260px;
    padding: 32px 36px 32px 36px;
  }
  .scard-duration:not(:last-child), .scard-days:not(:last-child) {
    margin-right: 28px;
  }
  .scard-icon {
    top: 44px;
    right: 24px;
    width: 100px;
    height: 100px;
  }
  .scard-content h3 {
    font-size: 20px;
  }
  .scard-content p:not(:first-child) {
    margin-top: 8px;
  }
}
@media screen and (max-width: 576px) {
  .section2 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .section2-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .section2-grid .scard:nth-child(n+4) {
    display: none;
  }
  .section2-grid .scard:not(:first-child) {
    margin-top: 8px;
  }
  .section2-grid .scard-all {
    display: flex;
  }
  .section2-grid .scard-all:not(:first-child) {
    margin-top: 8px;
  }
  .section2 .section-link {
    display: none;
  }
  .section2 .section-link.show {
    display: inline-flex;
  }
  .scard {
    min-height: 240px;
    padding: 25px 20px 32px 22px;
  }
  .scard-icon {
    top: 44px;
    right: 28px;
    width: 80px;
    height: 80px;
  }
}
.section3 {
  width: 100%;
  margin-bottom: 100px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom-right-radius: 80px;
  background: #E8E9EE;
}
.section3-wrapper {
  width: 100%;
  padding: 50px 70px 60px 70px;
  border-radius: 30px;
  background: var(--white-color);
}
.section3-wrapper .heading {
  width: 100%;
  padding-bottom: 36px;
  border-bottom: 1px solid #BDC6D2;
  margin-bottom: 40px;
}
.section3-wrapper .heading .section-title {
  max-width: 1000px;
}
.section3-wrapper .heading p {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section3-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.section3-contacts__group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section3-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
}
.section3-socials p {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 26px;
  width: 150px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.section3-socials__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section3-socials__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #C7CDDF;
  transition: color 0.3s ease;
}
.section3-socials__list a svg {
  width: 100%;
  height: auto;
}
.section3-socials__list a:not(:last-child) {
  margin-right: 16px;
}
@media screen and (min-width: 1025px) {
  .section3-socials__list a:hover {
    color: var(--primary-color);
  }
}
.section3-email {
  margin-top: 12px;
  margin-right: 36px;
  margin-left: auto;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.section3-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .section3-email:hover {
    color: var(--secondary-color);
  }
  .section3-email:hover::after {
    background-color: var(--secondary-color);
  }
}
.section3-phone {
  margin-top: 6px;
  margin-right: 24px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .section3-phone:hover {
    color: var(--secondary-color);
  }
}
.section3-rejime {
  margin-top: 4px;
  margin-bottom: 0;
  width: 142px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.section3-buttons {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 28px;
}
.section3-buttons a {
  width: calc(50% - 6px);
}
.section3-buttons a:not(:last-child) {
  margin-right: 12px;
}
.section3-cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.section3-cards:not(:first-child) {
  margin-top: 20px;
}
.section3-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 16px 40px 0 70px;
  width: calc(66.35% - 7px);
  min-height: 286px;
  border-radius: 30px;
  background: var(--white-color);
}
.section3-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 320px;
  padding: 34px 10px 40px 0;
}
.section3-card__content h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section3-card__content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section3-card__photo {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 386px;
}
.section3-card__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.section3-consultation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 32px 44px 44px;
  width: calc(33.65% - 7px);
  min-height: 286px;
  border-radius: 30px;
  background: var(--primary-color);
  z-index: 0;
}
.section3-consultation h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white-color);
}
.section3-consultation p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 200px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}
.section3-consultation__icon {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 128px;
  height: auto;
}
.section3-consultation:hover {
  /*background-color: #339D6A;*/
  background-color: #1EB36C;
}
.section3.section3-v3 {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 100px;
  background: var(--white-color);
}
.section3.section3-v3 .section3-card {
  border: 1px solid var(--font-color);
}

@media screen and (max-width: 1279px) {
  .section3 {
    margin-bottom: 60px;
    border-bottom-right-radius: 60px;
  }
  .section3-wrapper {
    padding: 40px 40px 40px 40px;
    border-radius: 24px;
  }
  .section3-wrapper .heading {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .section3-wrapper .heading .section-title {
    max-width: 100%;
  }
  .section3-wrapper .heading p {
    margin-top: 20px;
    font-size: 18px;
  }
  .section3-contacts {
    flex-wrap: wrap;
  }
  .section3-contacts__group {
    margin-top: 20px;
    width: 100%;
  }
  .section3-email {
    margin-right: 0;
  }
  .section3-cards {
    justify-content: flex-start;
    flex-direction: column;
  }
  .section3-card {
    padding: 16px 40px 0 40px;
    width: 100%;
    min-height: 250px;
    border-radius: 24px;
  }
  .section3-card__content {
    padding: 20px 10px 36px 0;
  }
  .section3-card__photo {
    width: 300px;
  }
  .section3-consultation {
    margin-top: 20px;
    padding: 36px 40px 36px 40px;
    width: 100%;
    min-height: 200px;
    border-radius: 24px;
  }
  .section3-consultation__icon {
    width: 100px;
  }
  .section3.section3-v3 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .section3 {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 36px;
    border-bottom-right-radius: 40px;
  }
  .section3-wrapper {
    padding: 28px 22px 30px 24px;
  }
  .section3-wrapper .heading {
    margin-bottom: 20px;
  }
  .section3-wrapper .heading .section-title {
    font-size: 24px;
  }
  .section3-wrapper .heading p {
    margin-top: 12px;
    font-size: 16px;
  }
  .section3-contacts {
    flex-direction: column;
  }
  .section3-contacts__group {
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .section3-socials {
    width: 100%;
    margin-right: 0;
  }
  .section3-socials p {
    margin-right: 22px;
  }
  .section3-socials__list {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .section3-socials__list a {
    width: 36px;
    height: 36px;
  }
  .section3-socials__list a:not(:last-child) {
    margin-right: 16px;
  }
  .section3-email {
    margin-top: 20px;
    margin-right: auto;
    margin-left: 0;
  }
  .section3-phone {
    margin-top: 0;
    margin-right: 12px;
    font-size: 20px;
  }
  .section3-rejime {
    margin-top: 0;
    width: 116px;
    font-size: 11px;
  }
  .section3-buttons {
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 20px;
  }
  .section3-buttons a {
    width: 100%;
  }
  .section3-buttons a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .section3-cards:not(:first-child) {
    margin-top: 12px;
  }
  .section3-card {
    position: relative;
    padding: 21px 7px 0 24px;
    min-height: 232px;
    z-index: 0;
  }
  .section3-card__content {
    justify-content: flex-start;
    padding: 0 0 36px 0;
  }
  .section3-card__content h3 {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .section3-card__content p {
    font-size: 16px;
    width: calc(100% - 164px);
  }
  .section3-card__photo {
    position: absolute;
    right: 6px;
    bottom: 0;
    width: 164px;
    overflow: visible;
    z-index: -1;
  }
  .section3-card__photo img {
    top: auto;
    bottom: 0;
  }
  .section3-consultation {
    margin-top: 12px;
    padding: 22px 20px 26px 24px;
    min-height: 156px;
  }
  .section3-consultation h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .section3-consultation p {
    max-width: 180px;
    font-size: 16px;
  }
  .section3-consultation__icon {
    width: 76px;
    right: 20px;
    bottom: 16px;
    z-index: -1;
  }
  .section3.section3-v3 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  .section3-socials p {
    margin-right: 14px;
  }
  .section3-socials__list a {
    width: 28px;
    height: 28px;
  }
  .section3-socials__list a:not(:last-child) {
    margin-right: 12px;
  }
  .section3-rejime {
    margin-top: 6px;
    width: 100%;
  }
}
.section4 {
  width: 100%;
  margin-bottom: 100px;
}
.section4-slider {
  overflow: visible;
}
.section4-slider .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.section4-slider .swiper-slide a img {
  width: 100%;
  aspect-ratio: 420/405;
  border-radius: 20px;
  object-fit: cover;
}

@media screen and (max-width: 1279px) {
  .section4 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .section4 {
    margin-bottom: 40px;
  }
  .section4-slider .swiper-slide a img {
    aspect-ratio: 162/156;
    border-radius: 8px;
  }
}
.section5 {
  width: 100%;
  margin-bottom: 100px;
  background: var(--white-color);
}
.section5 .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section5 .heading {
  max-width: calc(100% - 300px);
}
.section5 .section-link {
  margin-top: 12px;
}
.section5-slider {
  border-radius: 20px;
}
.section5-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.section5-slider-container .slider-button-prev,
.section5-slider-container .slider-button-next {
  margin-top: -20px;
}
.section5-slider .swiper-slide {
  height: auto;
}

.rcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 40px 36px 40px 36px;
  border-radius: 20px;
  background: #F8EFEB;
}
.rcard-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 36px;
}
.rcard-head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--white-color);
}
.rcard-head-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  object-fit: cover;
}
.rcard-head-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 22px;
}
.rcard-head-name {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.rcard-head-city {
  display: inline-flex;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--font-color);
  border-radius: 10px;
  background: var(--white-color);
}
.rcard-content {
  width: 100%;
}
.rcard-content:not(:last-child) {
  margin-bottom: 36px;
}
.rcard-content h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.rcard-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.rcard-content p:not(:last-child) {
  margin-bottom: 20px;
}
.rcard-content strong {
  font-size: 18px;
  font-weight: bold;
  color: var(--font-color);
}
.rcard-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-top: auto;
}
.rcard-link span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.rcard-link span:hover {
  color: rgb(1, 0, 200);
}
.rcard-link::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 14px;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.36373 13.1777L10.9692 4.57218V12.4776L12.9703 12.4706V1.15685H1.65662V3.1509L9.55501 3.15797L0.949516 11.7635L2.36373 13.1777Z" fill="black"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.rcard-video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 190px;
  height: 260px;
  margin-left: auto;
  margin-right: auto;
}
.rcard-video-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.rcard-video-thumb-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: auto;
  color: var(--white-color);
  transition: color 0.3s ease;
}
.rcard-video-thumb-button:hover {
  color: var(--secondary-color);
}
.rcard-descr {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: #696C78 !important;
}

@media screen and (max-width: 1279px) {
  .section5 {
    margin-bottom: 60px;
  }
  .section5 .container {
    justify-content: flex-start;
  }
  .section5 .heading {
    max-width: 100%;
  }
  .section5 .section-link {
    order: 10;
    margin-top: 20px;
    width: 100%;
  }
  .section5-slider-container .slider-button-prev,
.section5-slider-container .slider-button-next {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .section5 {
    margin-bottom: 50px;
  }
  .rcard {
    padding: 22px 20px 24px 20px;
  }
  .rcard-head {
    margin-bottom: 24px;
  }
  .rcard-head-icon {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
  .rcard-head-info {
    margin-left: 15px;
  }
  .rcard-head-name {
    margin-top: 2px;
    font-size: 20px;
  }
  .rcard-head-city {
    padding: 7px 10px;
    font-size: 12px;
    border-radius: 8px;
  }
  .rcard-content:not(:last-child) {
    margin-bottom: 28px;
  }
  .rcard-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .rcard-content p {
    font-size: 16px;
  }
  .rcard-content p:not(:last-child) {
    margin-bottom: 16px;
  }
  .rcard-link span {
    font-size: 15px;
  }
  .rcard-link::after {
    width: 12px;
    height: 12px;
    margin-left: 14px;
  }
  .rcard-video-thumb {
    width: 180px;
    height: 240px;
  }
  .rcard-video-thumb img {
    border-radius: 15px;
  }
  .rcard-video-thumb-button {
    width: 40%;
  }
  .rcard-descr {
    margin-top: 20px !important;
  }
}
.section6 {
  width: 100%;
  margin-bottom: 100px;
  background: var(--white-color);
}
.section6-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 32px;
}
.section6-row .heading {
  margin-bottom: 0;
  margin-right: 64px;
  width: fit-content;
  flex-shrink: 0;
}
.section6-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: max-content;
}
.section6-text img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  margin-right: 20px;
}
.section6-text p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section6-text p strong {
  font-weight: 600;
}
.section6-slider {
  border-radius: 20px;
}
.section6-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.section6-slider-container .slider-button-prev,
.section6-slider-container .slider-button-next {
  margin-top: -20px;
}
.section6-slider .swiper-slide {
  height: auto;
}

.tcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 40px 44px 40px;
  width: 100%;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.tcard-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tcard-photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 6, 23, 0) 5.15%, rgba(7, 6, 21, 0.8) 102.95%);
  z-index: 0;
}
.tcard-photo img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.tcard-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--font-color);
  border-radius: 10px;
  background: var(--white-color);
}
.tcard-content {
  width: 100%;
}
.tcard-name {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 270px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
}
.tcard-descr {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #EBEEF3;
  min-height: 56px;
}

@media screen and (max-width: 1279px) {
  .section6 {
    margin-bottom: 60px;
  }
  .section6-row {
    flex-direction: column;
  }
  .section6-row .heading {
    margin-right: 0;
    width: 100%;
  }
  .section6-text {
    width: 100%;
    max-width: 800px;
    margin-top: 16px;
  }
  .section6-text img {
    width: 28px;
    margin-right: 14px;
  }
  .section6-text p {
    font-size: 18px;
  }
  .section6-slider {
    overflow: visible;
  }
  .section6-slider-container {
    overflow: visible;
  }
  .section6-slider-container .slider-button-prev,
.section6-slider-container .slider-button-next {
    display: none;
  }
  .section6-slider-container .swiper-slide {
    width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .section6 {
    margin-bottom: 40px;
  }
  .section6-row {
    margin-bottom: 28px;
  }
  .section6-text {
    max-width: 100%;
  }
  .section6-text img {
    width: 24px;
    margin-right: 12px;
  }
  .section6-text p {
    font-size: 16px;
  }
  .section6-text p strong {
    display: block;
    font-weight: 400;
  }
  .section6-slider-container .swiper-slide {
    width: 310px;
  }
  .tcard {
    padding: 22px 24px 22px 28px;
    height: 440px;
  }
  .tcard-name {
    max-width: 220px;
    font-size: 22px;
  }
}
@media screen and (max-width: 360px) {
  .section6-slider-container .swiper-slide {
    width: 270px;
  }
  .tcard {
    height: 400px;
  }
}
.section7 {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #170E86;
  z-index: 0;
}
.section7::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section7-bg-desktop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.section7::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M80 80V0C80 44.1829 44.1836 80 0 80H80Z" fill="%23E8E9EE"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.section7-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.section7-title {
  margin-top: 0;
  margin-bottom: 20px;
  min-height: 72px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section7-clients, .section7-reviews {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-radius: 30px;
  background: var(--white-color);
}
.section7-clients {
  position: relative;
  width: calc(66% - 7px);
  padding: 36px 60px 20px 60px;
}
.section7-clients-slider {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.section7-clients-slider .swiper-slide {
  display: flex;
  flex-direction: column;
}
.section7-clients-slider .swiper-slide .section7-client {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 18/15;
}
.section7-clients-slider .swiper-slide .section7-client img {
  width: 80%;
  height: 80%;
}
.section7-clients-slider .swiper-slide:nth-child(odd) .section7-client:nth-child(odd) {
  background: #eeeeee;
}
.section7-clients-slider .swiper-slide:nth-child(odd) .section7-client:nth-child(even) {
  background: #f8f8f8;
}
.section7-clients-slider .swiper-slide:nth-child(even) .section7-client:nth-child(even) {
  background: #eeeeee;
}
.section7-clients-slider .swiper-slide:nth-child(even) .section7-client:nth-child(odd) {
  background: #f8f8f8;
}
.section7-clients-slider-button-prev, .section7-clients-slider-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  color: #C8D1DF;
  border: 0.5px solid #D8DDE5;
  background-color: var(--white-color);
  transition: all 0.3s ease;
  z-index: 0;
  cursor: pointer;
}
.section7-clients-slider-button-prev svg, .section7-clients-slider-button-next svg {
  display: block;
  width: 12px;
  height: 20px;
}
.section7-clients-slider-button-prev:hover, .section7-clients-slider-button-next:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.section7-clients-slider-button-prev.swiper-button-disabled, .section7-clients-slider-button-next.swiper-button-disabled {
  opacity: 0.5;
  color: #C8D1DF !important;
  border-color: #D8DDE5 !important;
  cursor: auto;
}
.section7-clients-slider-button-prev svg {
  margin-left: -2px;
}
.section7-clients-slider-button-next {
  margin-left: 15px;
}
.section7-clients-slider-button-next svg {
  margin-right: -2px;
}
.section7-clients .section7-title {
  max-width: calc(100% - 100px);
}
.section7-clients-buttons {
  position: absolute;
  top: 36px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section7-reviews {
  width: calc(34% - 7px);
  margin-left: 14px;
  padding: 36px 20px 20px 20px;
}
.section7-reviews .section7-title {
  margin-left: 20px;
}
.section7-reviews-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.section7-reviews-slider .swiper-slide a {
  display: flex;
  position: relative;
  width: 100%;
  height: 456px;
  border-radius: 20px;
  overflow: hidden;
}
.section7-reviews-slider .swiper-slide a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.section7-reviews-slider .swiper-slide p {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section7-reviews-slider .slider-button-prev,
.section7-reviews-slider .slider-button-next {
  margin-top: -20px;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 10px rgba(10, 7, 23, 0.05);
  z-index: 100;
}
.section7-reviews-slider .slider-button-prev svg,
.section7-reviews-slider .slider-button-next svg {
  width: 12px;
  height: 20px;
}
.section7-reviews-slider .slider-button-prev {
  left: 0;
}
.section7-reviews-slider .slider-button-next {
  right: 0;
}

@media screen and (max-width: 1279px) {
  .section7::before {
    width: 60px;
    height: 60px;
  }
  .section7-container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .section7-title {
    min-height: auto;
    font-size: 30px;
  }
  .section7-clients, .section7-reviews {
    width: 100%;
    border-radius: 24px;
  }
  .section7-clients {
    padding: 28px 36px 20px 36px;
  }
  .section7-clients .section7-title {
    max-width: 100%;
  }
  .section7-clients-buttons {
    display: none;
  }
  .section7-reviews {
    margin-top: 16px;
    margin-left: 0;
    padding: 28px 36px 20px 36px;
  }
  .section7-reviews .section7-title {
    margin-left: 0;
  }
  .section7-reviews-slider .swiper-slide {
    padding-right: 0;
    padding-left: 0;
  }
  .section7-reviews-slider .swiper-slide a {
    max-width: 380px;
    height: auto;
  }
  .section7-reviews-slider .swiper-slide a img {
    position: relative;
    top: auto;
    left: auto;
  }
  .section7-reviews-slider .swiper-slide p {
    margin-top: 16px;
  }
  .section7-reviews-slider .slider-button-prev,
.section7-reviews-slider .slider-button-next {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .section7 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section7::before {
    width: 40px;
    height: 40px;
  }
  .section7-title {
    font-size: 24px;
  }
  .section7-clients {
    padding: 24px 24px 20px 24px;
  }
  .section7-reviews {
    margin-top: 10px;
    padding: 24px 24px 20px 24px;
  }
  .section7-reviews-slider .swiper-slide a {
    max-width: 220px;
  }
  .section7-reviews-slider .swiper-slide p {
    margin-top: 12px;
    font-size: 14px;
  }
}
.section8 {
  position: relative;
  width: 100%;
  padding-top: 52px;
  padding-bottom: 84px;
  color: var(--white-color);
  border-bottom-right-radius: 80px;
  overflow: hidden;
  background: #170E86;
  z-index: 0;
}
.section8::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section1-bg-desktop.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 1279px) {
  .section8 {
    padding-top: 44px;
    padding-bottom: 52px;
    border-bottom-right-radius: 60px;
  }
}
@media screen and (max-width: 576px) {
  .section8 {
    padding-top: 24px;
    padding-bottom: 44px;
    border-bottom-right-radius: 40px;
  }
}
.section9 {
  padding-top: 44px;
  margin-bottom: 100px;
  width: 100%;
}
.section9-content {
  margin-bottom: 70px;
  width: 100%;
}
.section9-content h2 {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section9-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section9-content p:not(:first-child) {
  margin-top: 20px;
}
.section9-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.section9-categories:not(:last-child) {
  margin-bottom: 40px;
}
.section9-categories__item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  min-height: 86px;
  padding: 20px 56px 20px 32px;
  border-radius: 20px;
  background: #F8EFEB;
}
.section9-categories__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.00015 16.1701L5.53015 12.7001C5.34317 12.5131 5.08957 12.4081 4.82515 12.4081C4.56072 12.4081 4.30712 12.5131 4.12015 12.7001C3.93317 12.8871 3.82813 13.1407 3.82812 13.4051C3.82813 13.536 3.85391 13.6657 3.90402 13.7866C3.95412 13.9076 4.02756 14.0175 4.12015 14.1101L8.30015 18.2901C8.69015 18.6801 9.32015 18.6801 9.71015 18.2901L20.2901 7.71008C20.4771 7.5231 20.5822 7.2695 20.5822 7.00508C20.5822 6.74065 20.4771 6.48706 20.2901 6.30008C20.1032 6.1131 19.8496 6.00806 19.5851 6.00806C19.3207 6.00806 19.0671 6.1131 18.8801 6.30008L9.00015 16.1701Z" fill="%23FF5F01"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section9-categories__item p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section9-categories__item p strong {
  font-weight: 600;
}
.section9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 15px;
  width: 100%;
}

.scard-client {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 28px 20px 28px 40px;
  border-radius: 20px;
  border: 1px solid rgb(0, 0, 0);
}
.scard-client-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 26px;
}
.scard-client-heading h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--font-color);
}
.scard-client-heading p {
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 280px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #605E6A;
}
.scard-client-contacts-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.scard-client-contacts-phone {
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
@media screen and (min-width: 1025px) {
  .scard-client-contacts-phone:hover {
    color: var(--secondary-color);
  }
}
.scard-client-contacts-rejime {
  margin-top: 0;
  margin-bottom: 0;
  width: 128px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #605E6A;
}
.scard-client-contacts-email {
  margin-top: 16px;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.scard-client-contacts-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #CCD6F7;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .scard-client-contacts-email:hover {
    color: var(--secondary-color);
  }
  .scard-client-contacts-email:hover::after {
    background-color: var(--secondary-color);
  }
}
.scard-client-contacts-socials {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 22px;
}
.scard-client-contacts-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.scard-client-contacts-socials a svg {
  width: 100%;
  height: auto;
}
.scard-client-contacts-socials a:not(:last-child) {
  margin-right: 22px;
}
.scard-client-contacts-socials a.header-menu__services-client-contacts-socials--tg {
  color: #279CDE;
}
.scard-client-contacts-socials a.header-menu__services-client-contacts-socials--wa {
  color: #1EB36C;
}
.scard-client-contacts-socials a.header-menu__services-client-contacts-socials--vk {
  color: #2770DE;
}
.scard-client-contacts-socials a.header-menu__services-client-contacts-socials--tg:hover, .scard-client-contacts-socials a.header-menu__services-client-contacts-socials--wa:hover, .scard-client-contacts-socials a.header-menu__services-client-contacts-socials--vk:hover {
  color: #C7CDDF;
}

@media screen and (max-width: 1279px) {
  .section9 {
    margin-bottom: 60px;
  }
  .section9-content {
    margin-bottom: 52px;
  }
  .section9-content h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }
  .section9-content p {
    font-size: 18px;
  }
  .section9-content p:not(:first-child) {
    margin-top: 16px;
  }
  .section9-categories {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .section9-categories:not(:last-child) {
    margin-bottom: 28px;
  }
  .section9-categories__item {
    min-height: 60px;
    padding: 18px 48px 18px 24px;
    border-radius: 15px;
  }
  .section9-categories__item::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
  .section9-categories__item p {
    font-size: 18px;
  }
  .section9-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
  .scard-client {
    padding: 28px 20px 28px 36px;
  }
  .scard-client-heading {
    margin-bottom: 20px;
  }
  .scard-client-heading h3 {
    font-size: 20px;
  }
  .scard-client-heading p {
    margin-top: 8px;
  }
  .scard-client-contacts-group {
    align-items: flex-start;
    flex-direction: column;
  }
  .scard-client-contacts-phone {
    margin-right: 0;
    font-size: 20px;
  }
  .scard-client-contacts-rejime {
    margin-top: 5px;
    width: 100%;
  }
  .scard-client-contacts-socials a:not(:last-child) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .section9 {
    padding-top: 30px;
    margin-bottom: 50px;
  }
  .section9-content {
    margin-bottom: 40px;
  }
  .section9-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .section9-categories {
    gap: 5px;
  }
  .section9-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.section10 {
  width: 100%;
  margin-bottom: 100px;
  padding-top: 44px;
  background: var(--white-color);
}
.section10-group {
  width: 100%;
}
.section10-group:not(:last-child) {
  margin-bottom: 70px;
}
.section10-title {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}

.mcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 84px;
  padding: 20px 28px 20px 68px;
  border-radius: 20px;
}
.mcard:not(:last-child) {
  margin-bottom: 20px;
}
.mcard-open {
  background: #E7EFED;
}
.mcard-open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.00015 16.1701L5.53015 12.7001C5.34317 12.5131 5.08957 12.4081 4.82515 12.4081C4.56072 12.4081 4.30712 12.5131 4.12015 12.7001C3.93317 12.8871 3.82813 13.1407 3.82812 13.4051C3.82813 13.536 3.85391 13.6657 3.90402 13.7866C3.95412 13.9076 4.02756 14.0175 4.12015 14.1101L8.30015 18.2901C8.69015 18.6801 9.32015 18.6801 9.71015 18.2901L20.2901 7.71008C20.4771 7.5231 20.5822 7.2695 20.5822 7.00508C20.5822 6.74065 20.4771 6.48706 20.2901 6.30008C20.1032 6.1131 19.8496 6.00806 19.5851 6.00806C19.3207 6.00806 19.0671 6.1131 18.8801 6.30008L9.00015 16.1701Z" fill="%236BB29F"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mcard-close {
  background: #F8EFEB;
}
.mcard-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 40px;
  width: 136px;
  height: 44px;
  padding: 10px 10px;
  border-radius: 10px;
  background: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.mcard-descr {
  width: 62%;
}
.mcard-descr p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.mcard-descr p strong {
  font-weight: 600;
}
.mcard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  flex-shrink: 0;
  margin-left: auto;
}
.mcard-cta-close {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.01em;
  color: #CCAB9C;
}
.mcard-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  background-color: var(--font-color);
  transition: all 0.3s ease;
}
.mcard-cta-link span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white-color);
}
.mcard-cta-link svg {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  margin-left: 10px;
}
@media screen and (min-width: 1025px) {
  .mcard-cta-link:hover {
    background-color: var(--secondary-color);
  }
}

@media screen and (max-width: 1279px) {
  .section10 {
    margin-bottom: 60px;
  }
  .section10-group:not(:last-child) {
    margin-bottom: 50px;
  }
  .section10-title {
    margin-bottom: 18px;
    font-size: 32px;
  }
  .mcard {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 24px 20px 24px;
  }
  .mcard:not(:last-child) {
    margin-bottom: 16px;
  }
  .mcard-open::before {
    top: 20px;
    left: auto;
    right: 24px;
    transform: none;
  }
  .mcard-date {
    margin-right: 0;
    margin-bottom: 16px;
    width: auto;
    min-width: 124px;
    height: 36px;
    padding: 8px 14px;
    font-size: 16px;
  }
  .mcard-descr {
    width: 600px;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .mcard-cta {
    justify-content: flex-start;
    width: auto;
    margin-left: 0;
  }
  .mcard-cta-close {
    font-size: 18px;
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .mcard-cta-link {
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .section10 {
    margin-bottom: 44px;
    padding-top: 36px;
  }
  .section10-group:not(:last-child) {
    margin-bottom: 40px;
  }
  .section10-title {
    margin-bottom: 16px;
    font-size: 24px;
  }
  .mcard {
    padding: 18px 24px 18px 24px;
  }
  .mcard:not(:last-child) {
    margin-bottom: 12px;
  }
  .mcard-open::before {
    top: 20px;
    right: 24px;
  }
  .mcard-date {
    margin-bottom: 12px;
    height: 32px;
    padding: 4px 10px;
    font-size: 15px;
  }
  .mcard-descr {
    width: 100%;
    margin-bottom: 14px;
  }
  .mcard-descr p {
    font-size: 16px;
  }
  .mcard-cta-close {
    margin-top: 2px;
    margin-bottom: 4px;
  }
  .mcard-cta-link {
    height: 40px;
  }
  .mcard-cta-link span {
    font-size: 16px;
  }
}
.section11 {
  position: relative;
  width: 100%;
  padding-top: 52px;
  padding-bottom: 88px;
  color: var(--white-color);
  border-bottom-right-radius: 80px;
  overflow: hidden;
  background: #170E86;
  z-index: 0;
}
.section11::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section1-bg-desktop.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.section11-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.section11-content {
  width: 100%;
}
.section11-content > p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 680px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}
.section11-content > p:not(:last-child) {
  margin-bottom: 40px;
}
.section11-content .button-primary--icon {
  width: 330px;
  min-height: 84px;
  border-radius: 20px;
  margin-top: 44px;
}
.section11-title {
  position: relative;
  width: fit-content;
  padding-right: 80px;
  margin-bottom: 40px;
}
.section11-title h1 {
  margin-top: 0;
  margin-bottom: 0;
  width: fit-content;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white-color);
  text-decoration: underline;
  text-decoration-color: #FF5F01;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.section11-title-icon {
  position: absolute;
  top: 12px;
  right: 0;
  width: 54px;
  height: auto;
}
.section11-texts {
  max-width: 920px;
}
.section11-texts p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 840px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #AAB1C5;
}
.section11-texts p strong {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}
.section11-texts p:not(:last-child) {
  margin-bottom: 24px;
}
.section11-texts strong {
  font-size: inherit;
  color: #ffffff;
}
.section11-texts__group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 840px;
}
.section11-texts__group:not(:last-child) {
  margin-bottom: 24px;
}
.section11-texts__group p:nth-child(1) {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 32px;
}
.section11-creative {
  position: absolute;
  right: 0;
  bottom: -88px;
  width: 360px;
  height: 400px;
}
.section11-creative img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(21, 7, 7, 0.25);
  z-index: 0;
}
.section11-creative img:nth-child(1) {
  right: 0;
  bottom: 100px;
  max-width: none;
  width: 280px;
  height: 334px;
  border-radius: 22px;
  transform: rotate(3.5deg);
}
.section11-creative img:nth-child(2) {
  right: 84px;
  bottom: 50px;
  max-width: none;
  width: 270px;
  height: 164px;
  border-radius: 14px;
  transform: rotate(-4.15deg);
}

@media screen and (min-width: 1600px) {
  .section11-creative {
    right: -60px;
    width: 440px;
    height: 540px;
  }
  .section11-creative img:nth-child(1) {
    bottom: 140px;
    width: 350px;
    height: 420px;
  }
  .section11-creative img:nth-child(2) {
    bottom: 70px;
    width: 337.5px;
    height: 205px;
  }
}
@media screen and (max-width: 1279px) {
  .section11 {
    padding-top: 44px;
    padding-bottom: 52px;
    border-bottom-right-radius: 60px;
  }
  .section11::after {
    background-image: url("../img/section1-bg-adaptive.jpg");
  }
  .section11-container {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  .section11-content {
    width: 100%;
    margin-top: 32px;
  }
  .section11-content > p {
    font-size: 18px;
  }
  .section11-content > p:not(:last-child) {
    margin-bottom: 28px;
  }
  .section11-content .button-primary--icon {
    width: 280px;
    min-height: 60px;
    border-radius: 10px;
    margin-top: 36px;
  }
  .section11-title {
    padding-right: 60px;
    margin-bottom: 24px;
  }
  .section11-title h1 {
    font-size: 56px;
    text-underline-offset: 7px;
    text-decoration-thickness: 1.3px;
  }
  .section11-title-icon {
    top: 6px;
    width: 40px;
  }
  .section11-texts p {
    font-size: 16px;
  }
  .section11-texts p strong {
    font-size: 18px;
  }
  .section11-texts p:not(:last-child) {
    margin-bottom: 20px;
  }
  .section11-texts__group:not(:last-child) {
    margin-bottom: 20px;
  }
  .section11-texts__group p:nth-child(1) {
    margin-right: 24px;
  }
  .section11-creative {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 390px;
    margin-top: 24px;
  }
  .section11-creative img:nth-child(1) {
    bottom: auto;
    right: auto;
    left: calc(50% + 20px);
    transform: rotate(3.5deg) translateX(-50%);
  }
  .section11-creative img:nth-child(2) {
    bottom: auto;
    right: auto;
    top: 200px;
    left: 50%;
    transform: rotate(-4.15deg) translateX(-65%);
  }
}
@media screen and (max-width: 576px) {
  .section11 {
    padding-top: 24px;
    padding-bottom: 44px;
    border-bottom-right-radius: 40px;
  }
  .section11-content {
    margin-top: 16px;
  }
  .section11-content > p {
    font-size: 16px;
  }
  .section11-content > p:not(:last-child) {
    margin-bottom: 16px;
  }
  .section11-content .button-primary--icon {
    width: 100%;
    margin-top: 20px;
  }
  .section11-title {
    padding-right: 28px;
    margin-bottom: 15px;
  }
  .section11-title h1 {
    font-size: 32px;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
  .section11-title-icon {
    top: 4px;
    width: 22px;
  }
  .section11-texts p {
    font-size: 14px;
  }
  .section11-texts p strong {
    font-size: 16px;
  }
  .section11-texts p:not(:last-child) {
    margin-bottom: 14px;
  }
  .section11-texts__group {
    flex-direction: column;
  }
  .section11-texts__group:not(:last-child) {
    margin-bottom: 14px;
  }
  .section11-texts__group p:nth-child(1) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .section11-creative {
    height: 210px;
    margin-top: 0px;
  }
  .section11-creative img:nth-child(1) {
    width: 145px;
    height: 172px;
    transform: rotate(3.5deg) translateX(-50%);
  }
  .section11-creative img:nth-child(2) {
    top: 110px;
    width: 142px;
    height: 85px;
    transform: rotate(-4.15deg) translateX(-60%);
  }
}
.postid-181 .section11-title {
  max-width: 656px;
}

.postid-67 .section11-title {
  max-width: 820px;
}

.postid-59 .section11-title {
  max-width: 1146px;
}

@media screen and (max-width: 1279px) {
  .postid-181 .section11-title {
    max-width: 508px;
  }
}
@media screen and (max-width: 576px) {
  .postid-183 .section11-title {
    max-width: 200px;
  }
  .postid-181 .section11-title {
    max-width: 290px;
  }
  .postid-69 .section11-title {
    max-width: 280px;
  }
  .postid-67 .section11-title {
    max-width: 364px;
  }
  .postid-65 .section11-title {
    max-width: 216px;
  }
  .postid-59 .section11-title {
    max-width: 248px;
  }
  .postid-49 .section11-title {
    max-width: 276px;
  }
  .postid-39 .section11-title {
    max-width: 220px;
  }
}
@media screen and (max-width: 389px) {
  .postid-63 .section11-title h1 {
    font-size: 27px;
  }
}
@media screen and (max-width: 380px) {
  .postid-67 .section11-title {
    max-width: 380px;
  }
  .postid-67 .section11-title h1 {
    font-size: 29px;
  }
}
@media screen and (max-width: 360px) {
  .postid-67 .section11-title {
    max-width: 362px;
  }
  .postid-67 .section11-title h1 {
    font-size: 25px;
  }
  .postid-63 .section11-title h1 {
    font-size: 25px;
  }
}
.section12 {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 40px;
  background: var(--white-color);
}
.section12-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 44px;
  border-bottom: 1px solid #BDC6D2;
}
.section12-head a {
  display: inline-flex;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #696C78;
  position: relative;
}
.section12-head a.section12-tab__link::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--font-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .section12-head a:hover {
    color: var(--font-color);
  }
}
.section12-head a.active {
  font-weight: 600;
  color: var(--font-color);
}
.section12-head a.active::before {
  opacity: 1;
}
.section12-head a:not(:last-child) {
  margin-right: 40px;
}
.section12-head a:nth-child(4) {
  margin-left: auto;
}
.section12-content {
  width: 100%;
}
.section12-tab__content {
  display: none;
}
.section12-tab__content.active {
  display: block;
}
.section12-article {
  width: 100%;
}
.section12-article:not(:last-child) {
  margin-bottom: 32px;
}
.section12-article h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section12-article h2:not(:first-child) {
  margin-top: 32px;
}
.section12-article h2:not(:last-child) {
  margin-bottom: 24px;
}
.section12-article h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section12-article h3:not(:first-child) {
  margin-top: 32px;
}
.section12-article h3:not(:last-child) {
  margin-bottom: 20px;
}
.section12-article p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section12-article p:not(:first-child) {
  margin-top: 20px;
}
.section12-article p:not(:last-child) {
  margin-bottom: 20px;
}
.section12-article a {
  text-decoration: none;
  /*color: var(--primary-color);*/
  color: black;
}
.section12-article a:hover {
  color: rgb(255, 95, 1);
}
.section12-article em:hover {
  /*text-decoration: underline;*/
  /*color: rgba(255, 95, 1, 1);*/
}
.section12-article ul, .section12-article ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 36px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section12-article ul:not(:first-child), .section12-article ol:not(:first-child) {
  margin-top: 20px;
}
.section12-article ul:not(:last-child), .section12-article ol:not(:last-child) {
  margin-bottom: 20px;
}
.section12-article ul li:not(:last-child), .section12-article ol li:not(:last-child) {
  margin-bottom: 4px;
}
.section12-article ul li::marker {
  color: var(--primary-color);
}
.section12-article ol li::marker {
  color: var(--primary-color);
  font-weight: 500;
}
.section12-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.section12-cards:not(:last-child) {
  margin-bottom: 32px;
}
.section12-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 32px 36px 36px 34px;
  border-radius: 20px;
  background: #F1F1FA;
}
.section12-card:not(:last-child) {
  margin-bottom: 24px;
}
.section12-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--white-color);
  border-radius: 50px;
  background: var(--primary-color);
}
.section12-card__content {
  width: 1000px;
  max-width: 100%;
}
.section12-card__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section12-card__title:not(:last-child) {
  margin-bottom: 14px;
}
.section12-card__text p {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section12-card__text p:not(:last-child) {
  margin-bottom: 14px;
}
.section12-info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 50px;
}
.section12-info__card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 30px 30px 36px 124px;
  border: 1.5px solid #C0C9D6;
  border-radius: 20px;
  background: var(--white-color);
}
.section12-info__card:nth-child(1) {
  width: calc(66.67% - 10px);
}
.section12-info__card:nth-child(2) {
  margin-left: 20px;
  width: calc(33.33% - 10px);
}
.section12-info__card:nth-child(3) {
  margin-top: 20px;
}
.section12-info__card-head {
  margin-bottom: 12px;
}
.section12-info__card-head p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section12-info__card-head svg {
  position: absolute;
  top: 25px;
  left: 32px;
  width: 70px;
  height: auto;
}
.section12-info__card > p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1000px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.section12-info__card > p strong {
  font-weight: 600;
}
.section12-info__card > p:not(:last-child) {
  margin-bottom: 10px;
}

.clients {
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.clicon {
  flex: 0 0 auto;
  padding: 10px;
  margin: 0 10px 10px 0;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #605E6A;
  cursor: revert;
  border-radius: 10px;
  width: 220px;
  background: #f8f8f8;
}

.clicon a {
  text-decoration: none;
}

.clicon img {
  background: #eeeeee;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  width: 200px;
}

.clicon b, strong {
  /*font-size: 16px;*/
  font-size: 20px;
  font-weight: bold;
  color: var(--font-color);
}

.clicon em {
  padding-top: 10px;
  /*position: absolute;*/
  font-style: normal;
}

.clicon:hover {
  background: #eeeeee;
  color: var(--primary-color);
}
.clicon:hover em {
  text-decoration: underline;
}
.clicon:hover img {
  background: #f8f8f8;
}

@media screen and (max-width: 1279px) {
  .section12 {
    padding-top: 48px;
    margin-bottom: 60px;
  }
  .section12-head {
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100% + 80px);
    max-width: calc(100% + 80px);
    margin-left: -40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 16px;
    margin-bottom: 36px;
  }
  .section12-head::-webkit-scrollbar, .section12-head::-webkit-scrollbar-thumb {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .section12-head a {
    font-size: 24px;
    flex-shrink: 0;
  }
  .section12-head a.section12-tab__link::before {
    bottom: -17px;
  }
  .section12-head a:not(:last-child) {
    margin-right: 28px;
  }
  .section12-head a:nth-child(4) {
    margin-left: 0;
  }
  .section12-article h2 {
    font-size: 32px;
  }
  .section12-article h2:not(:first-child) {
    margin-top: 32px;
  }
  .section12-article h2:not(:last-child) {
    margin-bottom: 16px;
  }
  .section12-article h3 {
    font-size: 24px;
  }
  .section12-article h3:not(:first-child) {
    margin-top: 28px;
  }
  .section12-article h3:not(:last-child) {
    margin-bottom: 16px;
  }
  .section12-article p {
    font-size: 19px;
  }
  .section12-article p:not(:first-child) {
    margin-top: 16px;
  }
  .section12-article p:not(:last-child) {
    margin-bottom: 16px;
  }
  .section12-article ul, .section12-article ol {
    padding-left: 32px;
    font-size: 19px;
  }
  .section12-card {
    padding: 26px 28px 28px 28px;
  }
  .section12-card:not(:last-child) {
    margin-bottom: 16px;
  }
  .section12-card__number {
    width: 44px;
    height: 44px;
    margin-right: 24px;
    font-size: 18px;
  }
  .section12-info {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }
  .section12-info__card {
    padding: 26px 24px 28px 106px;
  }
  .section12-info__card:nth-child(1) {
    width: 100%;
  }
  .section12-info__card:nth-child(2) {
    margin-top: 14px;
    margin-left: 0;
    width: 100%;
  }
  .section12-info__card:nth-child(3) {
    margin-top: 14px;
  }
  .section12-info__card-head {
    margin-bottom: 10px;
  }
  .section12-info__card-head p {
    font-size: 22px;
  }
  .section12-info__card-head svg {
    top: 24px;
    left: 26px;
    width: 60px;
  }
  .section12-info__card > p {
    font-size: 17px;
  }
  .section12-info__card > p:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 576px) {
  .section12 {
    padding-top: 32px;
    margin-bottom: 40px;
  }
  .section12-head {
    width: calc(100% + var(--container-offset) * 2);
    max-width: calc(100% + var(--container-offset) * 2);
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
  .section12-head a {
    font-size: 20px;
  }
  .section12-article h2 {
    font-size: 24px;
  }
  .section12-article h2:not(:first-child) {
    margin-top: 24px;
  }
  .section12-article h2:not(:last-child) {
    margin-bottom: 14px;
  }
  .section12-article h3 {
    font-size: 20px;
  }
  .section12-article h3:not(:first-child) {
    margin-top: 24px;
  }
  .section12-article h3:not(:last-child) {
    margin-bottom: 14px;
  }
  .section12-article p {
    font-size: 16px;
  }
  .section12-article p:not(:first-child) {
    margin-top: 14px;
  }
  .section12-article p:not(:last-child) {
    margin-bottom: 14px;
  }
  .section12-article ul, .section12-article ol {
    padding-left: 26px;
    font-size: 16px;
  }
  .section12-article ul:not(:first-child), .section12-article ol:not(:first-child) {
    margin-top: 16px;
  }
  .section12-article ul:not(:last-child), .section12-article ol:not(:last-child) {
    margin-bottom: 16px;
  }
  .section12-card {
    position: relative;
    padding: 20px 16px 24px 24px;
  }
  .section12-card:not(:last-child) {
    margin-bottom: 10px;
  }
  .section12-card__number {
    position: absolute;
    top: 20px;
    left: 22px;
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }
  .section12-card__content {
    width: 100%;
  }
  .section12-card__title {
    min-height: 40px;
    padding-left: 54px;
    font-size: 18px;
  }
  .section12-card__title:not(:last-child) {
    margin-bottom: 14px;
  }
  .section12-card__text p {
    font-size: 16px;
  }
  .section12-card__text p:not(:last-child) {
    margin-bottom: 12px;
  }
  .section12-info {
    margin-top: 32px;
  }
  .section12-info__card {
    padding: 18px 20px 22px 20px;
  }
  .section12-info__card:nth-child(2) {
    margin-top: 10px;
  }
  .section12-info__card:nth-child(3) {
    margin-top: 10px;
  }
  .section12-info__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 12px;
  }
  .section12-info__card-head p {
    margin-top: 7px;
    font-size: 20px;
  }
  .section12-info__card-head svg {
    position: relative;
    top: auto;
    left: auto;
    width: 40px;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .section12-info__card > p {
    font-size: 16px;
  }
}
.section13 {
  position: relative;
  width: 100%;
  padding-top: 52px;
  padding-bottom: 60px;
  margin-bottom: 70px;
  color: var(--white-color);
  border-bottom-right-radius: 80px;
  overflow: hidden;
  background: #170E86;
  z-index: 0;
}
.section13::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section1-bg-desktop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.section13-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.section13-content {
  width: 60%;
  max-width: 680px;
}
.section13-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 75px;
  font-weight: 600;
  line-height: 1;
  color: var(--white-color);
  text-decoration: underline;
  text-decoration-color: #FF5F01;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.section13-subtitle {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white-color);
}
.section13-quote {
  display: inline-flex;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white-color);
  border: 1px solid #5B5975;
  border-radius: 8px;
}
.section13-text {
  margin-top: 40px;
}
.section13-text h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}
.section13-text p {
  margin-top: 20px;
  margin-bottom: 0;
  max-width: 600px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}
.section13-creative {
  position: relative;
  margin-top: -24px;
  width: calc(40% - 24px);
  height: 530px;
}
.section13-creative img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(21, 7, 7, 0.25);
}
.section13-creative img:nth-child(1) {
  top: 0;
  left: 0;
  max-width: none;
  width: 620px;
  height: 370px;
  border-radius: 30px;
  transform: rotate(3.5deg);
}
.section13-creative img:nth-child(2) {
  top: 300px;
  left: 80px;
  max-width: none;
  width: 366px;
  height: 220px;
  border-radius: 20px;
  transform: rotate(-4.15deg);
}

@media screen and (max-width: 1440px) {
  .section13-creative img:nth-child(1) {
    width: 500px;
    height: 300px;
    border-radius: 25px;
  }
  .section13-creative img:nth-child(2) {
    top: 260px;
    left: 70px;
    width: 330px;
    height: 200px;
  }
}
@media screen and (max-width: 1279px) {
  .section13 {
    padding-top: 44px;
    padding-bottom: 52px;
    margin-bottom: 50px;
    border-bottom-right-radius: 60px;
  }
  .section13::after {
    background-image: url("../img/section1-bg-adaptive.jpg");
  }
  .section13-container {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  .section13-content {
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
  }
  .section13-title {
    font-size: 56px;
    text-underline-offset: 7px;
    text-decoration-thickness: 1.3px;
  }
  .section13-subtitle {
    margin-top: 24px;
    font-size: 22px;
  }
  .section13-quote {
    margin-top: 28px;
  }
  .section13-text {
    margin-top: 24px;
  }
  .section13-text h2 {
    max-width: 600px;
    font-size: 22px;
    line-height: 1.2;
  }
  .section13-text p {
    margin-top: 12px;
    font-size: 16px;
  }
  .section13-creative {
    margin-top: 0;
    width: 100%;
    height: 504px;
  }
  .section13-creative img:nth-child(1) {
    left: 50%;
    margin-top: 40px;
    width: 620px;
    height: 370px;
    border-radius: 30px;
    transform: rotate(3.5deg) translateX(-50%);
  }
  .section13-creative img:nth-child(2) {
    top: 260px;
    left: 50%;
    width: 366px;
    height: 220px;
    border-radius: 20px;
    transform: rotate(-4.15deg) translateX(-60%);
  }
}
@media screen and (max-width: 576px) {
  .section13 {
    padding-top: 36px;
    padding-bottom: 48px;
    margin-bottom: 24px;
    border-bottom-right-radius: 40px;
  }
  .section13-content {
    margin-top: 24px;
  }
  .section13-title {
    max-width: 100%;
    font-size: 32px;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
  .section13-subtitle {
    margin-top: 16px;
    font-size: 18px;
  }
  .section13-quote {
    margin-top: 18px;
  }
  .section13-text {
    margin-top: 16px;
  }
  .section13-text h2 {
    max-width: 100%;
    font-size: 18px;
  }
  .section13-text p {
    max-width: 100%;
    font-size: 14px;
    color: #AAB1C5;
  }
  .section13-creative {
    height: 240px;
  }
  .section13-creative img:nth-child(1) {
    margin-top: 16px;
    width: 300px;
    height: 180px;
    border-radius: 25px;
  }
  .section13-creative img:nth-child(2) {
    top: 120px;
    width: 178px;
    height: 106px;
    border-radius: 15px;
  }
}
.section14 {
  width: 100%;
  margin-bottom: 70px;
  background: var(--white-color);
}
.section14-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}
.section14-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 36px 36px 40px;
  border-radius: 20px;
  background: #F8EFEB;
  position: relative;
}
.section14-card::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 36px;
  width: 40px;
  height: 30px;
  background-image: url('data:image/svg+xml,<svg width="40" height="30" viewBox="0 0 40 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.3481 24.0147L4.06355 15.8144C3.61714 15.3726 3.01168 15.1243 2.38037 15.1243C1.74906 15.1243 1.1436 15.3726 0.697194 15.8144C0.250788 16.2563 0 16.8556 0 17.4805C0 17.7899 0.0615706 18.0963 0.181195 18.3821C0.30082 18.668 0.476157 18.9277 0.697194 19.1465L10.6769 29.0246C11.608 29.9463 13.1121 29.9463 14.0432 29.0246L39.3028 4.02218C39.7492 3.58032 40 2.98103 40 2.35614C40 1.73125 39.7492 1.13196 39.3028 0.690097C38.8564 0.248236 38.2509 0 37.6196 0C36.9883 0 36.3829 0.248236 35.9365 0.690097L12.3481 24.0147Z" fill="%23FF5F01"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section14-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-right: 60px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section14-card p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section14-card p:not(:last-child) {
  margin-bottom: 18px;
}

@media screen and (max-width: 1279px) {
  .section14 {
    margin-bottom: 50px;
  }
  .section14-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .section14 {
    margin-bottom: 42px;
  }
  .section14-card {
    padding: 22px 24px;
  }
  .section14-card::before {
    top: 22px;
    right: 22px;
    width: 20px;
    height: 22px;
  }
  .section14-card h3 {
    margin-bottom: 16px;
    padding-right: 48px;
    font-size: 20px;
  }
  .section14-card p {
    font-size: 16px;
  }
  .section14-card p:not(:last-child) {
    margin-bottom: 14px;
  }
}
.section15 {
  width: 100%;
  margin-bottom: 100px;
  background: var(--white-color);
}
.section15-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  z-index: 0;
  min-height: 160px;
  padding: 36px 36px 36px 76px;
  border-radius: 20px;
  background: #F8EFEB;
}
.section15-text:not(:last-child) {
  margin-bottom: 40px;
}
.section15-text img {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  margin-right: 26px;
}
.section15-text h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--font-color);
}
.section15-text p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section15-text p strong {
  font-size: 22px;
  font-weight: 600;
}
.section15-slider {
  border-radius: 20px;
}
.section15-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.section15-slider-container .slider-button-prev,
.section15-slider-container .slider-button-next {
  margin-top: -20px;
}
.section15-slider .swiper-slide {
  height: auto;
}
.section15-slider .swiper-slide .tcard {
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
}
.section15-slider .swiper-slide .tcard-name {
  max-width: 200px;
  font-size: 24px;
}
.section15-slider .swiper-slide .tcard-descr {
  min-height: 76px;
}

@media screen and (max-width: 1279px) {
  .section15 {
    margin-bottom: 60px;
  }
  .section15-text {
    width: 100%;
    max-width: 800px;
  }
  .section15-text:not(:last-child) {
    margin-bottom: 28px;
  }
  .section15-text img {
    width: 48px;
    margin-right: 14px;
  }
  .section15-text p {
    font-size: 18px;
  }
  .section15-slider {
    overflow: visible;
  }
  .section15-slider-container {
    overflow: visible;
  }
  .section15-slider-container .slider-button-prev,
.section15-slider-container .slider-button-next {
    display: none;
  }
  .section15-slider-container .swiper-slide {
    width: 310px;
  }
  .section15-slider-container .swiper-slide .tcard {
    padding: 22px 24px 22px 28px;
  }
}
@media screen and (max-width: 576px) {
  .section15 {
    margin-bottom: 40px;
  }
  .section15-text {
    max-width: 100%;
  }
  .section15-text p {
    font-size: 16px;
    line-height: 1.2;
  }
  .section15-text p strong {
    display: block;
    font-size: 18px;
  }
}
.section16 {
  position: relative;
  width: 100%;
  min-height: 470px;
  padding-top: 52px;
  padding-bottom: 52px;
  color: var(--white-color);
  border-bottom-right-radius: 80px;
  background: #170E86;
  z-index: 0;
}
.section16::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section1-bg-desktop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-right-radius: 80px;
  z-index: -1;
}
.section16-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  padding-left: 440px;
}
.section16-card {
  position: absolute;
  left: 0;
  bottom: -287px;
  width: 390px;
  display: flex;
  flex-direction: column;
  border-radius: 50px;
  background: #F1F3FA;
}
.section16-card__photo {
  position: relative;
  width: 100%;
}
.section16-card__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 39/53;
  object-fit: cover;
  border-radius: 50px;
}
.section16-card__label {
  position: absolute;
  top: 32px;
  left: 32px;
  display: inline-flex;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--font-color);
  border-radius: 10px;
  background: var(--white-color);
}
.section16-card__text {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  min-height: 60px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.01em;
  color: #BDC6D2;
}
.section16-content {
  padding-top: 28px;
  width: 100%;
}
.section16-content > p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}
.section16-content > p:not(:first-child) {
  margin-bottom: 20px;
}
.section16-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  color: var(--white-color);
  text-decoration: underline;
  text-decoration-color: #FF5F01;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
}
.section16-tags {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.section16-tags__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #646C7A;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.01em;
  color: #EBEEF3;
}
.section16-tags__item:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 1279px) {
  .section16 {
    min-height: auto;
    padding-top: 44px;
    border-bottom-right-radius: 60px;
  }
  .section16::after {
    background-image: url("../img/section1-bg-adaptive.jpg");
    border-bottom-right-radius: 60px;
  }
  .section16-container {
    flex-direction: column;
    padding-left: 0;
  }
  .section16-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 380px;
    border-radius: 36px;
  }
  .section16-card__photo {
    height: 460px;
    overflow: hidden;
    border-radius: 36px;
  }
  .section16-card__photo img {
    border-radius: 36px;
    aspect-ratio: unset;
  }
  .section16-card__label {
    top: 24px;
    left: 24px;
  }
  .section16-card__text {
    padding: 10px 16px;
    min-height: 40px;
    font-size: 14px;
  }
  .section16-content {
    padding-top: 36px;
  }
  .section16-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 576px) {
  .section16 {
    padding-top: 36px;
    padding-bottom: 28px;
    border-bottom-right-radius: 40px;
  }
  .section16::after {
    border-bottom-right-radius: 40px;
  }
  .section16-card {
    width: 260px;
    border-radius: 24px;
  }
  .section16-card__photo {
    height: 260px;
    border-radius: 24px;
  }
  .section16-card__photo img {
    border-radius: 24px;
  }
  .section16-card__label {
    top: 16px;
    left: 16px;
    border-radius: 7px;
    font-size: 10px;
    padding: 5px 6px;
  }
  .section16-card__text {
    padding: 6px 12px;
    min-height: 36px;
    font-size: 12px;
  }
  .section16-content {
    padding-top: 20px;
  }
  .section16-content > p {
    font-size: 14px;
    line-height: 1.2;
    color: #AAB1C5;
  }
  .section16-content > p:not(:first-child) {
    margin-bottom: 16px;
  }
  .section16-title {
    margin-bottom: 15px;
    font-size: 32px;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
  .section16-tags__item {
    padding: 7px 8px;
    border-radius: 8px;
    margin-top: 7px;
    font-size: 11px;
  }
  .section16-tags__item:not(:last-child) {
    margin-right: 7px;
  }
}
.section17 {
  width: 100%;
  padding-top: 36px;
  margin-bottom: 60px;
  background: var(--white-color);
}
.section17-specials {
  margin-left: 440px;
  min-height: 190px;
  margin-bottom: 40px;
}
.section17-specials h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section17-specials ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 20px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section17-specials ul li {
  position: relative;
  padding-left: 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section17-specials ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--font-color);
}
.section17-mission {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 160px;
  padding: 36px 36px 36px 202px;
  border-radius: 20px;
  background: #F8EFEB;
}
.section17-mission:not(:last-child) {
  margin-bottom: 50px;
}
.section17-mission h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--font-color);
}
.section17-mission h3::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 70px;
  width: 88px;
  height: 88px;
  background-image: url('data:image/svg+xml,<svg width="88" height="88" viewBox="0 0 88 88" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M43.9995 0C23.8239 0 7.51172 16.3122 7.51172 36.4878C7.51172 56.6634 23.8239 72.9756 43.9995 72.9756H46.1459V88C67.18 78.1268 80.4873 55.8049 80.4873 36.4878C80.4873 16.3122 64.1751 0 43.9995 0ZM41.8532 38.6341L37.5605 47.2195H31.1215L35.4142 38.6341H28.9751V25.7561H41.8532V38.6341ZM59.0239 38.6341L54.7312 47.2195H48.2922L52.5849 38.6341H46.1459V25.7561H59.0239V38.6341Z" fill="%23FF5F01"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section17-mission p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 840px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.section17-mission p:not(:last-child) {
  margin-bottom: 14px;
}

@media screen and (max-width: 1279px) {
  .section17-specials {
    margin-left: 0;
    min-height: auto;
  }
  .section17-specials h3 {
    margin-bottom: 20px;
  }
  .section17-specials ul li {
    font-size: 18px;
  }
  .section17-specials ul li::before {
    top: 8px;
    left: 10px;
  }
  .section17-mission {
    min-height: 160px;
    padding: 28px 24px 26px 120px;
  }
  .section17-mission h3::before {
    top: 28px;
    left: 32px;
    width: 60px;
    height: 60px;
  }
  .section17-mission p {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .section17 {
    padding-top: 24px;
    margin-bottom: 40px;
  }
  .section17-specials {
    margin-bottom: 24px;
  }
  .section17-specials h3 {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .section17-specials ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .section17-specials ul li {
    padding-left: 24px;
  }
  .section17-specials ul li::before {
    left: 8px;
  }
  .section17-mission {
    min-height: auto;
    padding: 20px 20px 22px 24px;
  }
  .section17-mission:not(:last-child) {
    margin-bottom: 24px;
  }
  .section17-mission h3 {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 54px;
    min-height: 40px;
    font-size: 20px;
  }
  .section17-mission h3::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
  }
  .section17-mission p {
    font-size: 16px;
  }
}
.section18 {
  width: 100%;
  margin-bottom: 80px;
  background: var(--white-color);
}
.section18-title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section18-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  counter-reset: list-counter;
}
.section18-card {
  width: 100%;
  padding: 31px 20px 31px 112px;
  border-radius: 20px;
  border: 1px solid #BDC6D2;
  counter-increment: list-counter;
  position: relative;
}
.section18-card:not(:last-child) {
  margin-bottom: 24px;
}
.section18-card::before {
  content: counter(list-counter);
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #E5E5F9;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.01em;
  color: #362E65;
}
.section18-card p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section18-card p strong {
  font-weight: 600;
}
.section18-card p:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (max-width: 1279px) {
  .section18 {
    margin-bottom: 60px;
  }
  .section18-title {
    margin-bottom: 20px;
  }
  .section18-card {
    padding: 20px 20px 20px 92px;
    min-height: 78px;
  }
  .section18-card:not(:last-child) {
    margin-bottom: 16px;
  }
  .section18-card::before {
    left: 24px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .section18 {
    margin-bottom: 40px;
  }
  .section18-title {
    font-size: 24px;
  }
  .section18-card {
    padding: 22px 20px 20px 76px;
    min-height: 74px;
  }
  .section18-card:not(:last-child) {
    margin-bottom: 10px;
  }
  .section18-card::before {
    left: 17px;
    top: 20px;
    transform: none;
    width: 40px;
    height: 40px;
  }
  .section18-card p {
    font-size: 16px;
    line-height: 1.2;
  }
  .section18-card p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.section19 {
  width: 100%;
  margin-bottom: 80px;
  background: var(--white-color);
}
.section19-wrapper {
  width: 100%;
  padding: 56px 70px 56px 70px;
  border-radius: 20px;
  background: #F8EFEB;
}
.section19-title {
  margin-top: 0;
  margin-bottom: 44px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section19-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 30px;
  width: 100%;
}
.section19-item {
  position: relative;
  width: 100%;
  padding-left: 48px;
}
.section19-item:not(:last-child) {
  margin-bottom: 48px;
}
.section19-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 11.5px;
  width: 1px;
  height: calc(100% + 50px);
  background: #D9D9D9;
  z-index: 0;
}
.section19-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background: var(--white-color);
  z-index: 1;
}
.section19-item__year {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--secondary-color);
}
.section19-item p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section19-item p a {
  text-decoration: underline;
}
.section19-item p a:hover {
  text-decoration: none;
}
.section19-item p:not(:last-child) {
  margin-bottom: 14px;
}

@media screen and (max-width: 1279px) {
  .section19 {
    margin-bottom: 60px;
  }
  .section19-wrapper {
    padding: 32px 28px;
  }
  .section19-title {
    margin-bottom: 36px;
  }
  .section19-list {
    padding-left: 10px;
  }
  .section19-item {
    padding-left: 48px;
  }
  .section19-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .section19-item__year {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .section19 {
    margin-bottom: 40px;
  }
  .section19-wrapper {
    padding: 24px 20px 24px 18px;
  }
  .section19-title {
    margin-bottom: 28px;
    margin-left: 2px;
    font-size: 24px;
  }
  .section19-list {
    padding-left: 0;
  }
  .section19-item {
    padding-left: 32px;
  }
  .section19-item:not(:last-child) {
    margin-bottom: 28px;
  }
  .section19-item:not(:last-child)::after {
    left: 9.5px;
    height: calc(100% + 30px);
  }
  .section19-item::before {
    width: 20px;
    height: 20px;
    border-width: 1.5px;
  }
  .section19-item__year {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 2px;
  }
}
.section20 {
  width: 100%;
  margin-bottom: 80px;
  background: var(--white-color);
}
.section20-content {
  width: 100%;
  margin-bottom: 28px;
}
.section20-content h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section20-content h2:not(:last-child) {
  margin-bottom: 24px;
}
.section20-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section20-content p:not(:last-child) {
  margin-bottom: 16px;
}
.section20-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  counter-reset: list-counter;
}
.section20-card {
  width: 100%;
  padding: 32px 20px 32px 96px;
  border-radius: 20px;
  counter-increment: list-counter;
  position: relative;
  background: #F1F1FA;
}
.section20-card:not(:last-child) {
  margin-bottom: 24px;
}
.section20-card::before {
  content: counter(list-counter);
  position: absolute;
  left: 32px;
  top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--white-color);
}
.section20-card p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section20-card p strong {
  font-weight: 600;
}
.section20-card p:not(:last-child) {
  margin-bottom: 20px;
}
.section20-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 20px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section20-card ul:not(:last-child) {
  margin-bottom: 20px;
}
.section20-card ul li {
  position: relative;
  padding-left: 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section20-card ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--font-color);
}

@media screen and (max-width: 1279px) {
  .section20 {
    margin-bottom: 60px;
  }
  .section20-content h2:not(:last-child) {
    margin-bottom: 16px;
  }
  .section20-content p {
    font-size: 18px;
  }
  .section20-card {
    padding: 26px 20px 26px 80px;
  }
  .section20-card:not(:last-child) {
    margin-bottom: 16px;
  }
  .section20-card::before {
    left: 24px;
    top: 19px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .section20-card p {
    font-size: 18px;
  }
  .section20-card p:not(:last-child) {
    margin-bottom: 16px;
  }
  .section20-card ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .section20-card ul:not(:last-child) {
    margin-bottom: 16px;
  }
  .section20-card ul li {
    font-size: 18px;
  }
  .section20-card ul li::before {
    top: 8px;
    left: 10px;
  }
}
@media screen and (max-width: 576px) {
  .section20 {
    margin-bottom: 40px;
  }
  .section20-content {
    margin-bottom: 20px;
  }
  .section20-content h2 {
    font-size: 24px;
  }
  .section20-content p {
    font-size: 16px;
  }
  .section20-card {
    padding: 16px 16px 16px 68px;
  }
  .section20-card:not(:last-child) {
    margin-bottom: 10px;
  }
  .section20-card::before {
    left: 16px;
    top: 14px;
  }
  .section20-card p {
    font-size: 16px;
  }
  .section20-card p:not(:last-child) {
    margin-bottom: 12px;
  }
  .section20-card ul:not(:last-child) {
    margin-bottom: 12px;
  }
  .section20-card ul li {
    font-size: 16px;
    padding-left: 20px;
  }
  .section20-card ul li::before {
    top: 6px;
    left: 4px;
  }
}
.section21 {
  width: 100%;
  margin-bottom: 80px;
  background: var(--white-color);
}
.section21 .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section21 .heading {
  max-width: calc(100% - 300px);
}
.section21-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section21-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 15px;
  width: 100%;
}

@media screen and (max-width: 1279px) {
  .section21 {
    margin-bottom: 60px;
  }
  .section21 .container {
    justify-content: flex-start;
  }
  .section21 .heading {
    max-width: 100%;
  }
  .section21 .section-link {
    order: 10;
    margin-top: 20px;
    width: 100%;
  }
  .section21-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
  .section21-grid .scard-all {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .section21 {
    margin-bottom: 40px;
  }
  .section21-title {
    font-size: 30px;
  }
  .section21-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .section21-grid .scard:nth-child(n+4) {
    display: none;
  }
  .section21-grid .scard:not(:first-child) {
    margin-top: 8px;
  }
}
.section404 {
  width: 100%;
  padding-top: 120px;
  margin-bottom: 72px;
  background: var(--white-color);
}
.section404-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.section404-image {
  display: block;
  width: calc(50% - 24px);
  height: 300px;
  position: relative;
  margin-top: 32px;
}
.section404-image img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: none;
  width: 720px;
  height: auto;
}
.section404-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(50% - 24px);
  margin-left: auto;
}
.section404-pretitle {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--secondary-color);
}
.section404-title {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--font-color);
}
.section404-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  color: #696C78;
}
.section404-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 56px;
}
.section404-buttons .section404-button-primary:not(:last-child),
.section404-buttons .section404-button-secondary:not(:last-child) {
  margin-right: 20px;
}
.section404-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--font-color) !important;
  border: 1px solid var(--font-color);
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .section404-button-secondary:hover {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
  }
}
.section404-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--white-color) !important;
  border-radius: 10px;
  background-color: var(--font-color);
}
@media screen and (min-width: 1025px) {
  .section404-button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--secondary-color);
  }
}
.section404 .header-menu__services-title {
  margin-top: 60px;
  margin-bottom: 36px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--font-color);
}
.section404 .header-menu__services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 88px;
  width: 100%;
  height: auto;
}
.section404 .header-menu__services-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section404 .header-menu__services-list li {
  display: inline-flex;
  width: 100%;
  height: auto;
}
.section404 .header-menu__services-list li:not(:last-child) {
  margin-bottom: 28px;
}
.section404 .header-menu__services-list li a {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: fit-content;
}
.section404 .header-menu__services-list li a svg {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  margin-right: 20px;
  color: #BDC6D2;
  transition: color 0.3s ease;
}
.section404 .header-menu__services-list li a span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
  transition: font-weight 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .section404 .header-menu__services-list li a:hover svg {
    color: var(--secondary-color);
  }
  .section404 .header-menu__services-list li a:hover span {
    font-weight: 600;
  }
}
.section404 .header-menu__services-link {
  display: none;
}

@media screen and (max-width: 1279px) {
  .section404 {
    padding-top: 80px;
    margin-bottom: 60px;
  }
  .section404-container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .section404-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 36px;
  }
  .section404-image img {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    width: 60%;
    margin-left: -10%;
  }
  .section404-content {
    width: 100%;
    margin-left: 0;
  }
  .section404-buttons {
    margin-top: 32px;
  }
  .section404-button-secondary, .section404-button-primary {
    min-height: 60px;
    font-size: 18px;
  }
  .section404 .header-menu__services-title {
    margin-top: 56px;
    margin-bottom: 24px;
    font-size: 30px;
  }
  .section404 .header-menu__services-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .section404 .header-menu__services-list li:not(:last-child) {
    margin-bottom: 24px;
  }
  .section404 .header-menu__services-list li a span {
    font-size: 18px;
  }
  .section404 .header-menu__services-link {
    display: inline-flex;
    position: relative;
    margin-top: 30px;
    padding-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--font-color);
  }
  .section404 .header-menu__services-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #CCD6F7;
  }
}
@media screen and (max-width: 576px) {
  .section404 {
    padding-top: 60px;
    margin-bottom: 48px;
  }
  .section404-image {
    margin-bottom: 28px;
  }
  .section404-image img {
    width: 100%;
    margin-left: -15%;
  }
  .section404-pretitle {
    margin-bottom: 18px;
    font-size: 30px;
  }
  .section404-title {
    font-size: 20px;
  }
  .section404-buttons {
    flex-direction: column;
  }
  .section404-buttons .section404-button-primary:not(:last-child),
.section404-buttons .section404-button-secondary:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .section404-button-secondary, .section404-button-primary {
    width: 100%;
  }
  .section404 .header-menu__services-title {
    margin-top: 48px;
    margin-bottom: 24px;
    font-size: 20px;
  }
  .section404 .header-menu__services-container {
    gap: 20px;
  }
  .section404 .header-menu__services-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .section404 .header-menu__services-list li a svg {
    width: 20px;
    height: auto;
    margin-right: 16px;
  }
  .section404 .header-menu__services-list li a span {
    font-size: 16px;
  }
}
.section22 {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--white-color);
}
.section22-group {
  width: 100%;
}
.section22-group:not(:last-child) {
  margin-bottom: 80px;
}
.section22-slider {
  border-radius: 20px;
}
.section22-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.section22-slider-container .slider-button-prev,
.section22-slider-container .slider-button-next {
  margin-top: -20px;
}
.section22-slider .swiper-slide {
  height: auto;
}

@media screen and (max-width: 1279px) {
  .section22 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section22-group:not(:last-child) {
    margin-bottom: 60px;
  }
  .section22-slider-container .slider-button-prev,
.section22-slider-container .slider-button-next {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .section22 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section22-group:not(:last-child) {
    margin-bottom: 48px;
  }
  .section22-slider-container .slider-button-prev,
.section22-slider-container .slider-button-next {
    display: none;
  }
}
.section23 {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--white-color);
}
.section23-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  max-width: 100%;
}
.section23-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section23-grid a img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 2px solid #ffffff;
}
.section23 .link-center {
  margin-top: 40px;
}
.section23 .link-center .button-primary {
  width: 300px;
}

@media screen and (max-width: 1279px) {
  .section23 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section23-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section23 .link-center {
    margin-top: 30px;
  }
  .section23 .link-center .button-primary {
    width: 250px;
  }
}
@media screen and (max-width: 576px) {
  .section23 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section23-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section23 .link-center {
    margin-top: 20px;
  }
  .section23 .link-center .button-primary {
    width: 220px;
  }
}