/***** FONTS *****/
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  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: 1170px;
  --container-offset: 28px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --space-between: 100px;
  --font-color: #1A1F2C;
  --white-color: rgba(255,255,255,1);
}

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

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
  background: var(--white-color);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section {
  width: 100%;
  padding-top: var(--space-between);
  padding-bottom: var(--space-between);
}

html.with-fancybox body.hide-scrollbar {
  margin-right: 0 !important;
}

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

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

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

.hidden,
.screen-reader-text {
  display: none !important;
}

/***** COMPONENTS GLOBAL *****/
.header {
  width: 100%;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.0784313725);
}
.header-top {
  width: 100%;
  color: var(--white-color);
  background: #1A3A5C;
}
.header-top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 36px;
  padding-top: 8px;
  padding-bottom: 5px;
}
.header-top-left, .header-top-right {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.header-top-left p, .header-top-left a, .header-top-right p, .header-top-right a {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}
.header-top-left a:hover, .header-top-right a:hover {
  color: var(--white-color) !important;
}
.header-main {
  background: var(--white-color);
}
.header-main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 92px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-menu {
  display: flex;
  align-items: center;
}
.header-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu-list li {
  display: inline-flex;
}
.header-menu-list li:not(:last-child) {
  margin-right: 30px;
}
.header-menu-list li a {
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #1C2B3A;
  transition: color 0.3s ease;
}
.header-menu-list li a:hover {
  color: #00A3E6;
}
.header-menu .button-primary {
  margin-left: 44px;
  padding: 10px 15px;
  min-height: 40px;
}
.header-menu-open, .header-menu-close {
  display: none;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 212px;
}
.header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .header-top-left, .header-top-right {
    column-gap: 16px;
  }
  .header-main-container {
    min-height: 72px;
  }
  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow-y: auto;
    padding: 28px var(--container-offset);
    background: var(--white-color);
    z-index: 1000;
    transition: right 0.3s ease;
  }
  .header-menu.open {
    right: 0;
  }
  .header-menu-list {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }
  .header-menu-list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .header-menu-list li a {
    font-size: 18px;
  }
  .header-menu .button-primary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    padding: 16px 20px;
    min-height: 54px;
  }
  .header-menu-open, .header-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
  }
  .header-menu-open img, .header-menu-close img {
    width: 100%;
    height: auto;
  }
  .header-menu-close {
    position: absolute;
    top: 28px;
    right: var(--container-offset);
    margin-left: auto;
    margin-bottom: 48px;
  }
  .header-logo {
    width: 170px;
  }
}
@media screen and (max-width: 576px) {
  .header-top-container {
    justify-content: center;
    flex-direction: column;
    min-height: 36px;
    padding-top: 12px;
    padding-bottom: 10px;
    row-gap: 6px;
  }
  .header-top-left p, .header-top-left a, .header-top-right p, .header-top-right a {
    font-size: 14px;
  }
  .header-main-container {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-menu {
    padding-top: 20px;
  }
  .header-menu-list li:not(:last-child) {
    margin-bottom: 28px;
  }
  .header-menu-list li a {
    font-size: 17px;
  }
  .header-menu .button-primary {
    margin-top: 40px;
  }
  .header-menu-open, .header-menu-close {
    width: 24px;
    height: 24px;
  }
  .header-menu-close {
    margin-bottom: 40px;
  }
  .header-logo {
    margin-top: 1px;
    width: 134px;
  }
}
.footer {
  padding-top: 36px;
  padding-bottom: 16px;
  background: #1A1F2C;
}
.footer-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 24px;
}
.footer-info, .footer-menu, .footer-contacts {
  width: calc((100% - 48px) / 3);
}
.footer-menu ul, .footer-contacts ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.footer-menu ul li, .footer-contacts ul li {
  display: inline-flex;
}
.footer-menu ul li:not(:last-child), .footer-contacts ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-menu ul li a, .footer-contacts ul li a {
  display: inline-flex;
  font-size: 14px;
  font-weight: normal;
  color: var(--white-color);
  transition: color 0.3s ease;
}
.footer-menu ul li a:hover, .footer-contacts ul li a:hover {
  color: #2DAF5D;
}
.footer-menu ul li p, .footer-contacts ul li p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  color: var(--white-color);
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 212px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-descriptor {
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 280px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.7);
}
.footer-title {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white-color);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copyright {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 32px;
}
.footer-links a {
  display: inline-flex;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #2DAF5D;
}

@media screen and (max-width: 1024px) {
  .footer-info {
    width: 40%;
  }
  .footer-menu, .footer-contacts {
    width: calc((60% - 48px) / 2);
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-top: 36px;
    padding-bottom: 16px;
  }
  .footer-container {
    gap: 28px 12px;
  }
  .footer-info, .footer-menu, .footer-contacts {
    width: 100%;
  }
  .footer-menu, .footer-contacts {
    width: calc(50% - 6px);
  }
  .footer-menu ul li:not(:last-child), .footer-contacts ul li:not(:last-child) {
    margin-bottom: 8px;
  }
  .footer-logo {
    width: 190px;
  }
  .footer-descriptor {
    margin-top: 12px;
    max-width: 340px;
    font-size: 14px;
  }
  .footer-title {
    margin-bottom: 12px;
  }
  .footer-bottom {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 20px;
    padding-top: 16px;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 6px;
    margin-top: 10px;
  }
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  max-width: 100%;
  min-height: 54px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none !important;
  text-align: center;
  color: var(--white-color) !important;
  border-radius: 6px;
  outline: none;
  border: 0;
  background-color: #2DAF5D;
  box-shadow: 0px 4px 20px 0px rgba(37, 211, 102, 0.3490196078);
  transition: all 0.3s ease;
}
.button-primary span {
  margin-top: 2px;
}
@media screen and (min-width: 1025px) {
  .button-primary:hover {
    background-color: #23A553;
  }
}
.button-primary-max {
  position: relative;
}
.button-primary-max::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-right: 12px;
  background-image: url('data:image/svg+xml,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.70412 18.9458C7.83951 18.9458 6.97299 18.6724 5.4668 17.5788C4.51407 18.8091 1.49714 19.7705 1.36556 18.1256C1.36556 16.8908 1.09336 15.8474 0.784853 14.7083C0.417385 13.3049 0 11.742 0 9.47746C0 4.06892 4.41881 0 9.65422 0C14.8942 0 18.9999 4.26941 18.9999 9.52757C19.0175 14.7044 14.8585 18.9182 9.70412 18.9458ZM9.78125 4.67493C7.2316 4.5428 5.24448 6.31527 4.80443 9.09471C4.44148 11.3957 5.08571 14.1979 5.63465 14.3438C5.89778 14.4075 6.56015 13.8699 6.97299 13.4552C7.65566 13.9289 8.45062 14.2134 9.27768 14.28C11.9195 14.4076 14.1769 12.3876 14.3543 9.73719C14.4576 7.08113 12.4235 4.83149 9.78125 4.67949V4.67493Z" fill="white"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  max-width: 100%;
  min-height: 54px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  text-align: center;
  color: #1A1F2C !important;
  border-radius: 10px;
  outline: none;
  border: 0;
  background-color: rgba(26, 31, 44, 0.05);
  transition: all 0.3s ease;
}
.button-secondary span {
  margin-top: 2px;
}
.button-secondary svg:nth-child(2) {
  display: block;
  width: 12px;
  height: auto;
  margin-left: 10px;
}
@media screen and (min-width: 1025px) {
  .button-secondary:hover {
    background-color: rgba(26, 31, 44, 0.1);
  }
}

.button-third {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 16px 20px;
  max-width: 100%;
  min-height: 54px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  text-align: center;
  color: var(--white-color) !important;
  border-radius: 10px;
  outline: none;
  border: 0;
  background-color: #1A1F2C;
  transition: all 0.3s ease;
}
.button-third span {
  margin-top: 2px;
}
@media screen and (min-width: 1025px) {
  .button-third:hover {
    background-color: #23A553;
  }
}

.s-heading {
  margin-bottom: 36px;
}
.s-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.s-heading.light .s-title {
  color: var(--white-color);
}
.s-heading.light .s-title span {
  color: #E8A020;
}
.s-heading.light .s-subtitle {
  color: rgba(255, 255, 255, 0.75);
}
.s-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1A1F2C;
}
.s-subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A1F2C;
}
.s-subtitle:not(:first-child) {
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .s-heading {
    margin-bottom: 28px;
  }
  .s-title {
    font-size: 32px;
  }
  .s-subtitle {
    font-size: 16px;
  }
  .s-subtitle:not(:first-child) {
    margin-top: 8px;
  }
}
@media screen and (max-width: 576px) {
  .s-heading {
    margin-bottom: 24px;
  }
  .s-title {
    font-size: 24px;
  }
  .s-subtitle {
    font-size: 15px;
  }
  .s-subtitle:not(:first-child) {
    margin-top: 6px;
  }
}
.kama_breadcrumbs {
  display: inline-block;
  width: 100%;
  margin: 0 0 28px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #5A6874;
}
.kama_breadcrumbs span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--font-color);
}
.kama_breadcrumbs a,
.kama_breadcrumbs a span {
  position: relative;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none !important;
  color: #5A6874;
  transition: color 0.3s ease;
}
.kama_breadcrumbs a:hover span,
.kama_breadcrumbs a:hover {
  color: var(--font-color);
}
.kama_breadcrumbs .kb_sep {
  margin-right: 3px;
  margin-left: 3px;
  color: #5A6874 !important;
}

@media screen and (max-width: 576px) {
  .kama_breadcrumbs {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .kama_breadcrumbs span {
    font-size: 12px;
  }
  .kama_breadcrumbs a,
.kama_breadcrumbs a span {
    font-size: 12px;
  }
  .kama_breadcrumbs .kb_sep {
    margin-right: 1px;
    margin-left: 1px;
  }
}
.swiper {
  width: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  column-gap: 10px;
}
.swiper-prev, .swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  outline: none;
  border: none;
  border-radius: 10px;
  font-size: 0;
  background-color: rgba(26, 31, 44, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: not-allowed;
}
.swiper-prev.swiper-button-disabled svg, .swiper-next.swiper-button-disabled svg {
  opacity: 0.5;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}
.swiper-prev svg, .swiper-next svg {
  display: block;
  width: 16px;
  height: auto;
  color: #1A1F2C;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .swiper-prev:hover, .swiper-next:hover {
    background-color: rgba(26, 31, 44, 0.1);
  }
  .swiper-prev:hover svg, .swiper-next:hover svg {
    color: #1F5FA6;
  }
}
.swiper-prev svg {
  transform: rotate(180deg);
}
.swiper-container {
  position: relative;
}
.swiper-container .swiper-prev, .swiper-container .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-container .swiper-prev {
  left: -52px;
}
.swiper-container .swiper-next {
  right: -52px;
}
.swiper-container .swiper-pagination {
  display: none;
}

@media screen and (max-width: 576px) {
  .swiper-prev, .swiper-next {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .swiper-prev svg, .swiper-next svg {
    width: 14px;
  }
}
.form-input {
  width: 100%;
  padding: 14px 0px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A3A5C;
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  border: 0;
  border-bottom: 1px solid #EAEDF2;
  background: var(--white-color);
  transition: 0.3s ease;
}
.form-input::placeholder {
  color: #5A6A7A;
}
.form-input.wpcf7-not-valid {
  border-color: #E82020 !important;
}
.form-group {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
}
.form-group textarea {
  resize: none;
  max-width: 100%;
  width: 100%;
  height: 46px;
  padding: 14px 0px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A3A5C;
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  border: 0;
  border-bottom: 1px solid #EAEDF2;
  background: var(--white-color);
  transition: 0.3s ease;
}
.form-group textarea::placeholder {
  color: #5A6A7A;
}
.form-group textarea.wpcf7-not-valid {
  border-color: #E82020 !important;
}
.form-group--acceptance {
  margin-top: 8px;
  margin-bottom: 20px;
}
.form-group--acceptance .wpcf7-acceptance .wpcf7-list-item {
  margin-bottom: 0;
}
.form-group--submit {
  margin-bottom: 0 !important;
}

.wpcf7-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}
.wpcf7-form p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: 100%;
}
.wpcf7-form .button-primary {
  width: 100%;
}

.wpcf7-spinner,
.wpcf7-not-valid-tip,
.wpcf7 form .wpcf7-response-output {
  display: none !important;
}

.wpcf7-acceptance .wpcf7-list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0;
  min-height: 20px;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.05;
  color: #5A6A7A;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item span a:hover {
  text-decoration: underline;
  color: #1A3A5C;
}
.wpcf7-acceptance .wpcf7-list-item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #EAEDF2;
  background: none;
}
.wpcf7-acceptance .wpcf7-list-item span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2.5px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.8018 3.9218C15.9551 4.08472 16.0374 4.30187 16.0307 4.5255C16.0239 4.74912 15.9286 4.96091 15.7658 5.1143L6.8445 13.5225C6.66264 13.6938 6.42098 13.7871 6.17121 13.7825C5.92144 13.7779 5.6834 13.6757 5.508 13.4978L2.493 10.4378C2.41316 10.3593 2.34973 10.2658 2.3064 10.1626C2.26306 10.0594 2.2407 9.94861 2.2406 9.83668C2.2405 9.72475 2.26268 9.61391 2.30583 9.51064C2.34899 9.40736 2.41226 9.3137 2.49196 9.23512C2.57167 9.15653 2.66621 9.09459 2.77009 9.0529C2.87396 9.01121 2.9851 8.99061 3.09701 8.99229C3.20893 8.99397 3.3194 9.0179 3.42197 9.06269C3.52455 9.10748 3.61719 9.17223 3.6945 9.25317L6.20775 11.8035L14.6093 3.8858C14.7722 3.73247 14.9893 3.65013 15.213 3.65688C15.4366 3.66363 15.6484 3.75892 15.8018 3.9218Z" fill="%231A1F2C"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.accordion-item {
  width: 100%;
  padding: 24px 24px 22px 20px;
  border: 1px solid #D0D8E4;
  border-radius: 8px;
  background: var(--white-color);
  cursor: pointer;
}
.accordion-item:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .accordion-item:hover .accordion-header h3,
.accordion-item:hover .accordion-button::before,
.accordion-item:hover .accordion-button::after {
    color: #2DAF5D;
  }
}
.accordion-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.accordion-header h3 {
  margin-top: auto !important;
  margin-bottom: auto !important;
  width: calc(100% - 40px);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: #1A1F2C;
  transition: color 0.3s ease;
}
.accordion-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.accordion-button::before, .accordion-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: #1A1F2C;
  transition: opacity 0.3s ease;
}
.accordion-button::before {
  content: "+";
}
.accordion-button::after {
  content: "-";
  opacity: 0;
}
.accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}
.accordion-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  color: #5A6A7A;
}
.accordion-content p:not(:last-child) {
  margin-bottom: 16px;
}
.accordion-content ul, .accordion-content ol {
  padding-left: 24px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  color: #5A6A7A;
}
.accordion-content ul:not(:first-child), .accordion-content ol:not(:first-child) {
  margin-top: 16px;
}
.accordion-content ul:not(:last-child), .accordion-content ol:not(:last-child) {
  margin-bottom: 16px;
}
.accordion-open .accordion-button::before {
  opacity: 0;
}
.accordion-open .accordion-button::after {
  opacity: 1;
}
.accordion-open .accordion-content {
  margin-top: 12px;
}

@media screen and (max-width: 1024px) {
  .accordion-item {
    padding: 20px 20px 18px 20px;
  }
  .accordion-button {
    width: 20px;
    height: 20px;
  }
  .accordion-button::before, .accordion-button::after {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .accordion-item {
    padding: 14px;
  }
  .accordion-item:not(:last-child) {
    margin-bottom: 8px;
  }
  .accordion-header h3 {
    width: calc(100% - 20px);
    font-size: 15px;
  }
  .accordion-button {
    width: 16px;
    height: 16px;
  }
  .accordion-button::before, .accordion-button::after {
    font-size: 16px;
  }
  .accordion-content p {
    font-size: 14px;
  }
  .accordion-content p:not(:last-child) {
    margin-bottom: 12px;
  }
  .accordion-content ul, .accordion-content ol {
    padding-left: 20px;
    font-size: 14px;
  }
  .accordion-content ul:not(:first-child), .accordion-content ol:not(:first-child) {
    margin-top: 12px;
  }
  .accordion-content ul:not(:last-child), .accordion-content ol:not(:last-child) {
    margin-bottom: 12px;
  }
  .accordion-open .accordion-content {
    margin-top: 10px;
  }
}
.comp-warn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 11px 3px 11px 44px;
  min-height: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.comp-warn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../img/comp-warn-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.comp-warn p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 182px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-color);
}

.comp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 60px;
  padding: 28px;
  border-radius: 10px;
  background: linear-gradient(90.5deg, #1A3C60 0.15%, #297FB8 100%);
}
.comp-cta .s-heading {
  margin-bottom: 0;
  max-width: 680px;
  padding: 12px;
}
.comp-cta .s-title {
  font-size: 30px;
  color: var(--white-color);
}
.comp-cta .s-title span {
  color: #E8A020;
}
.comp-cta-right {
  width: 300px;
  flex-shrink: 0;
}
.comp-cta-right .button-primary {
  width: 100%;
}
.comp-cta-right .comp-warn {
  margin-top: 14px;
  border-bottom: 0;
  margin-bottom: -16px;
}

@media screen and (max-width: 1024px) {
  .comp-cta {
    margin-top: 48px;
    padding: 20px;
  }
  .comp-cta .s-heading {
    margin-bottom: 0;
    max-width: calc(100% - 340px);
    padding: 0;
  }
  .comp-cta .s-title {
    font-size: 28px;
  }
  .comp-cta-right .comp-warn {
    margin-bottom: -10px;
  }
}
@media screen and (max-width: 576px) {
  .comp-cta {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 28px;
    padding: 16px;
  }
  .comp-cta .s-heading {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .comp-cta .s-title {
    font-size: 24px;
  }
  .comp-cta-right {
    width: 100%;
  }
  .comp-cta-right .comp-warn {
    margin-bottom: -8px;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}
.pagination .nav-links {
  display: flex;
}

.page-numbers {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 2px 5px 0 5px;
  margin: 0 5px;
  min-width: 56px;
  height: 56px;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  color: rgba(26, 31, 44, 0.5) !important;
  border-radius: 10px;
  background-color: rgba(26, 31, 44, 0.05);
  transition: all 0.3s ease;
}
.page-numbers.dots {
  cursor: auto;
}
.page-numbers.dots:hover {
  color: rgba(26, 31, 44, 0.5) !important;
}
.page-numbers:hover {
  color: rgb(26, 31, 44) !important;
}
.page-numbers.current {
  color: rgb(26, 31, 44) !important;
}
.page-numbers.prev, .page-numbers.next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.page-numbers.prev svg, .page-numbers.next svg {
  display: block;
  width: 16px;
  height: auto;
  color: #1A1F2C;
  transition: color 0.3s ease;
}
.page-numbers.prev:hover svg, .page-numbers.next:hover svg {
  color: #2DAF5D;
}
.page-numbers.prev {
  margin-right: 18px;
  margin-left: 0;
}
.page-numbers.prev svg {
  transform: rotate(180deg);
}
.page-numbers.next {
  margin-right: 0;
  margin-left: 18px;
}

@media screen and (max-width: 576px) {
  .pagination {
    margin-top: 20px;
  }
  .page-numbers {
    padding: 1px 3px 0 3px;
    margin-right: 4px;
    margin-left: 4px;
    min-width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }
  .page-numbers.prev, .page-numbers.next {
    padding: 0;
  }
  .page-numbers.prev svg, .page-numbers.next svg {
    width: 14px;
  }
  .page-numbers.prev {
    margin-right: 4px;
  }
  .page-numbers.next {
    margin-left: 4px;
  }
}
@media screen and (max-width: 370px) {
  .pagination {
    margin-top: 20px;
  }
  .page-numbers {
    padding: 1px 2px 0 2px;
    margin-right: 3px;
    margin-left: 3px;
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    line-height: 32px;
    border-radius: 6px;
  }
  .page-numbers.prev svg, .page-numbers.next svg {
    width: 12px;
  }
  .page-numbers.prev {
    margin-right: 3px;
  }
  .page-numbers.next {
    margin-left: 3px;
  }
}
.s-text {
  padding-top: 28px;
  padding-bottom: 80px;
  background: #F4F6F9;
}

@media screen and (max-width: 1024px) {
  .s-text {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .s-text {
    padding-top: 14px;
    padding-bottom: 40px;
  }
}
.article {
  width: 100%;
}
.article h1, .article h2, .article h3, .article h4 {
  margin-top: 0;
  margin-bottom: 0;
}
.article h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.article h2:not(:first-child) {
  margin-top: 24px;
}
.article h2:not(:last-child) {
  margin-bottom: 16px;
}
.article h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.article h3:not(:first-child) {
  margin-top: 20px;
}
.article h3:not(:last-child) {
  margin-bottom: 16px;
}
.article h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.article h4:not(:first-child) {
  margin-top: 16px;
}
.article h4:not(:last-child) {
  margin-bottom: 16px;
}
.article p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--font-color);
}
.article p b, .article p strong {
  font-weight: 600;
}
.article .wp-block-image {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}
.article .wp-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.article blockquote {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  padding: 5px 0 6px 20px;
  border-left: 3px solid #1F5FA6;
}
.article blockquote p, .article blockquote cite {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.article blockquote p:not(:last-child), .article blockquote cite:not(:last-child) {
  margin-bottom: 6px !important;
}
.article blockquote cite {
  font-weight: 600;
}
.article ul, .article ol {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: var(--font-color);
}
.article ul li:not(:last-child), .article ol li:not(:last-child) {
  margin-bottom: 6px;
}
.article ul li::marker {
  color: #989FB2;
}
.article .wp-block-table {
  margin-top: 24px;
  margin-bottom: 24px;
}
.article .wp-block-table table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-width: 500px;
  flex-shrink: 0;
  width: 100%;
  border: 0;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: var(--font-color);
}
.article .wp-block-table table thead {
  border: 0 !important;
}
.article .wp-block-table table td {
  border: 0;
  font-weight: 400;
  border-top: 1px solid #D7D8DA;
  padding: 14px 12px 14px 0;
  background: var(--white-color);
}
.article .wp-block-table table th {
  border: 0;
  font-weight: 400;
  color: #7B7E85;
  padding: 0 12px 14px 0;
  background: var(--white-color);
}

table {
  margin-top: 24px;
  margin-bottom: 24px;
  min-width: 500px;
  flex-shrink: 0;
  width: 100%;
  border: 0;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: var(--font-color);
}
table thead {
  border: 0 !important;
}
table td {
  border: 0;
  font-weight: 400;
  border-top: 1px solid #D7D8DA;
  padding: 14px 12px 14px 0;
  background: var(--white-color);
}
table th {
  border: 0;
  font-weight: 400;
  color: #7B7E85;
  padding: 0 12px 14px 0;
  background: var(--white-color);
}

@media screen and (max-width: 576px) {
  .article h2 {
    font-size: 20px;
  }
  .article h2:not(:first-child) {
    margin-top: 20px;
  }
  .article h2:not(:last-child) {
    margin-bottom: 14px;
  }
  .article h3 {
    font-size: 18px;
  }
  .article h3:not(:first-child) {
    margin-top: 16px;
  }
  .article h3:not(:last-child) {
    margin-bottom: 14px;
  }
  .article h4 {
    font-size: 16px;
  }
  .article h4:not(:last-child) {
    margin-bottom: 14px;
  }
  .article p {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.4;
  }
  .article .wp-block-image {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .article blockquote {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 3px 0 4px 16px;
  }
  .article blockquote p:not(:last-child), .article blockquote cite:not(:last-child) {
    margin-bottom: 4px !important;
  }
  .article ul, .article ol {
    margin-top: 14px;
    margin-bottom: 14px;
    padding-left: 20px;
    font-size: 15px;
  }
  .article ul li:not(:last-child), .article ol li:not(:last-child) {
    margin-bottom: 4px;
  }
  .wp-block-table {
    margin-top: 16px;
    margin-bottom: 16px;
    overflow-x: auto;
  }
  .wp-block-table table {
    font-size: 13px;
    line-height: 1.3;
  }
  .wp-block-table table td {
    padding: 10px 8px 10px 0;
  }
  .wp-block-table table th {
    padding-right: 8px;
    padding-bottom: 10px;
  }
  table {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.3;
  }
  table td {
    padding: 10px 8px 10px 0;
  }
  table th {
    padding-right: 8px;
    padding-bottom: 10px;
  }
}
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.8);
}
.fancybox-is-open .fancybox-bg {
  opacity: 1;
}
.fancybox__slide {
  padding: 16px !important;
}
.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
  cursor: auto !important;
}

.is-close-btn {
  top: 28px !important;
  right: 28px !important;
  width: 14px !important;
  height: 14px !important;
  border: 0 !important;
  outline: none !important;
  opacity: 0.5 !important;
  padding: 0 !important;
  color: #1A3A5C;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transition: opacity 0.3s ease;
}
.is-close-btn:hover {
  opacity: 1 !important;
}

.modal {
  position: relative;
  max-width: 360px;
  width: 100%;
  padding: 28px;
  border-radius: 12px;
  background: var(--white-color);
  z-index: 0;
  cursor: auto !important;
}
.modal-heading {
  padding-top: 3px;
  padding-bottom: 16px;
  border-bottom: 2px solid #EAEDF2;
}
.modal-heading:not(:last-child) {
  margin-bottom: 16px;
}
.modal-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #1A3A5C;
}
.modal-subtitle {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.2;
  color: #5A6A7A;
}
.modal .wpcf7 {
  width: 100%;
}
.modal .wpcf7 .button-third {
  width: 100%;
}

#modal-thanks .modal-heading {
  border-bottom: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  text-align: center;
}
#modal-thanks .modal-thanks-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 16px;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: #2DAF5D;
}

@media screen and (max-width: 576px) {
  .fancybox__slide {
    padding: 10px !important;
  }
}
/***** SECTIONS GLOBAL (Widgets) *****/
.s1 {
  padding-top: 0;
  padding-bottom: 0;
}
.s1-main {
  padding-top: 72px;
  padding-bottom: 64px;
  background-image: url("../img/s1-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.s1-main .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.s1-left {
  width: 600px;
}
.s1-right {
  display: flex;
  flex-direction: column;
  width: 360px;
  padding: 28px;
  border-radius: 12px;
  background-color: var(--white-color);
}
.s1-right-title {
  width: 100%;
  min-height: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #EAEDF2;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  color: #1A3A5C;
}
.s1-right-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 368px;
  overflow: hidden;
}
.s1-right-list-swiper {
  height: 368px;
}
.s1-right-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.s1-right-list-item:not(:last-child) {
  border-bottom: 1px solid #EAEDF2;
}
.s1-right-list-item span:nth-child(1) {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  text-align: left;
  color: #5A6A7A;
}
.s1-right-list-item span:nth-child(2) {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  color: #27AE60;
}
.s1-right-bottom {
  width: 100%;
  padding-top: 16px;
  margin-top: 20px;
  border-top: 1px solid #EAEDF2;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.22;
  text-align: center;
  color: #5A6A7A;
}
.s1-label {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 7px 14px 5px 15px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--white-color);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
}
.s1-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.238;
  text-transform: uppercase;
  color: var(--white-color);
}
.s1-title span {
  color: #E8A020;
}
.s1-descr {
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 520px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.213;
  color: rgba(255, 255, 255, 0.8);
}
.s1-benefs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 28px;
  margin-bottom: 36px;
}
.s1-benefs-item {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}
.s1-benefs-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: bold;
  color: #E8A020;
}
.s1-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 22px;
}
.s1-bottom-descr {
  width: 100%;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.22;
  color: var(--white-color);
}
.s1-values {
  background-color: #1A3A5C;
}
.s1-values .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.s1-values-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.s1-values-item-formobile {
  display: none;
}
.s1-values-item img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 8px;
}
.s1-values-item p {
  margin-top: 1px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white-color);
}

@media screen and (max-width: 1024px) {
  .s1-main {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .s1-main .container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .s1-right {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .s1-title {
    font-size: 44px;
  }
  .s1-values-item p {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .s1-main {
    padding-top: 36px;
    padding-bottom: 28px;
  }
  .s1-left {
    width: 100%;
  }
  .s1-right {
    margin-top: 24px;
    width: 100%;
    padding: 20px;
  }
  .s1-right-title {
    min-height: 28px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .s1-right-list {
    height: 305.6px;
  }
  .s1-right-list-swiper {
    height: 305.6px;
  }
  .s1-right-list-item {
    padding-top: 10px;
    padding-bottom: 8px;
  }
  .s1-right-bottom {
    padding-top: 10px;
    margin-top: 12px;
  }
  .s1-label {
    margin-bottom: 16px;
    padding: 6px 11px 2px 11px;
    font-size: 13px;
  }
  .s1-title {
    margin-bottom: 14px;
    font-size: 27px;
    line-height: 1.15;
  }
  .s1-descr {
    margin-bottom: 16px;
    max-width: 340px;
    font-size: 16px;
  }
  .s1-benefs {
    column-gap: 20px;
    margin-bottom: 20px;
  }
  .s1-benefs-item {
    font-size: 13px;
  }
  .s1-benefs-item span {
    margin-bottom: 2px;
    font-size: 22px;
  }
  .s1-bottom {
    column-gap: 0;
  }
  .s1-bottom-descr {
    margin-bottom: 14px;
    font-size: 16px;
  }
  .s1-bottom .button-primary {
    width: 100%;
  }
  .s1-bottom .comp-warn {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .s1-values {
    overflow: unset !important;
  }
  .s1-values .container {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 14px;
    width: max-content;
    animation: infinite-scroll 15s linear infinite;
    gap: 30px;
  }
  .s1-values-item {
    flex-shrink: 0;
  }
  .s1-values-item-formobile {
    display: flex;
  }
  .s1-values-item img {
    width: 16px;
    height: 16px;
    margin-top: -2px;
    margin-right: 6px;
  }
}
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.s2 {
  position: relative;
  overflow: hidden;
  background: #F4F6F9;
}
.s2::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -30px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--font-color);
  opacity: 0.05;
}
.s2 .s-heading {
  max-width: 520px;
}
.s2-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
  counter-reset: s2-counter;
}
.s2-item {
  position: relative;
  width: 100%;
  padding: 22px 20px 22px 22px;
  border-radius: 10px;
  background: var(--white-color);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.0509803922);
  counter-increment: s2-counter;
}
.s2-item::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 44px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1A3A5C;
  opacity: 0.05;
}
.s2-item::after {
  content: "0" counter(s2-counter);
  position: absolute;
  top: 22px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #1A3A5C;
  border-radius: 100px;
  background: #F4F6F9;
}
.s2-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-bottom: 44px;
  border-radius: 8px;
  background: #1A3A5C;
}
.s2-item-icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.s2-item h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.225;
  text-transform: uppercase;
}
.s2-item p {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .s2::before {
    top: -140px;
    right: -40px;
    width: 400px;
    height: 400px;
  }
  .s2 .s-heading {
    max-width: 100%;
  }
  .s2-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .s2::before {
    top: -100px;
    right: -60px;
    width: 300px;
    height: 300px;
  }
  .s2-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }
  .s2-item {
    padding: 16px 16px 16px 16px;
  }
  .s2-item::before {
    top: 32px;
    left: 32px;
    width: 40px;
    height: 40px;
  }
  .s2-item::after {
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .s2-item-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
  }
  .s2-item-icon img {
    width: 22px;
    height: 22px;
  }
  .s2-item p {
    margin-top: 10px;
  }
}
.s3 {
  padding-bottom: 60px;
}
.s3-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
  max-width: 100%;
  counter-reset: s3-counter;
}
.s3-item {
  width: 100%;
  counter-increment: s3-counter;
}
.s3-item-image {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 348/224;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.0509803922);
}
.s3-item h3 {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding-left: 48px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.225;
  text-transform: uppercase;
}
.s3-item h3::after {
  content: "0" counter(s3-counter);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--white-color);
  border-radius: 100px;
  background: #1F5FA6;
}
.s3-item p {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A1F2C;
}

@media screen and (max-width: 1024px) {
  .s3-list {
    gap: 20px;
  }
  .s3-item h3 {
    min-height: 34px;
    padding-left: 40px;
    font-size: 17px;
  }
  .s3-item h3::after {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .s3 {
    padding-bottom: 40px;
  }
  .s3-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .s3-item-image {
    margin-bottom: 12px;
  }
  .s3-item p {
    font-size: 14px;
  }
}
.s4 {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: #F4F6F9;
  z-index: 0;
}
.s4::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -125px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #1A3A5C;
  opacity: 0.05;
  z-index: -1;
}
.s4 .container > .s-heading {
  max-width: 700px;
}
.s4-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
}
.s4-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 236px;
  overflow: hidden;
  padding: 18px 18px 15px;
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .s4-item:hover {
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  }
}
.s4-item img {
  margin: -17px -17px 14px -17px;
  width: calc(100% + 34px);
  max-width: calc(100% + 34px);
  aspect-ratio: 28/13;
  object-fit: cover;
}
.s4-item h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #1A3A5C;
}
.s4-item p {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  color: #5A6A7A;
}
.s4-item-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  color: #1F5FA6;
}
.s4 .link-center .button-secondary {
  width: 300px;
  margin-top: 24px;
}
.s4 .comp-cta {
  margin-top: 36px;
}

.tax-product_cat .s4 {
  padding-top: 32px;
}
.tax-product_cat .s4::before {
  display: none;
}

@media screen and (max-width: 1024px) {
  .s4 {
    padding-bottom: 60px;
  }
  .s4::before {
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
  }
  .s4 .container > .s-heading {
    max-width: 560px;
  }
  .s4-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .s4 {
    padding-bottom: 40px;
  }
  .s4 .container > .s-heading {
    max-width: 100%;
  }
  .s4-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .s4-item {
    min-height: 180px;
    padding: 14px 12px 10px;
  }
  .s4-item img {
    margin: -13px -11px 10px -11px;
    width: calc(100% + 22px);
    max-width: calc(100% + 22px);
  }
  .s4-item h3 {
    margin-bottom: 3px;
    font-size: 13px;
  }
  .s4-item p {
    margin-bottom: 4px;
    font-size: 12px;
  }
  .s4-item-link {
    font-size: 10px;
  }
  .s4 .link-center .button-secondary {
    width: 100%;
    margin-top: 16px;
  }
  .s4 .comp-cta {
    margin-top: 28px;
  }
}
.s5 {
  padding-bottom: 80px;
}
.s5-swiper-container {
  position: relative;
}
.s5-swiper-container .swiper-buttons {
  position: absolute;
  top: -68px;
  right: 0;
}
.s5-swiper-container .swiper-slide {
  padding: 1px;
  height: auto;
}
.s5-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(26, 31, 44, 0.2);
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
}
.s5-item img {
  display: block;
  width: 100%;
  aspect-ratio: 28/25;
  object-fit: cover;
}
.s5-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 16px 13px 14px 13px;
}
.s5-item-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1A1F2C;
}
.s5-item-content p {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A1F2C;
}
.s5-item-content p span {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: bold;
  color: #27AE60;
}
.s5 .comp-cta {
  margin-top: 36px;
}

@media screen and (max-width: 1024px) {
  .s5 {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .s5 {
    padding-bottom: 40px;
  }
  .s5-swiper-container .swiper-buttons {
    position: static;
    top: auto;
    right: auto;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
  .s5-item-content {
    padding: 14px 12px 12px 12px;
  }
  .s5-item-content h3 {
    margin-bottom: 10px;
  }
  .s5-item-content p span {
    margin-top: 2px;
    font-size: 16px;
  }
  .s5 .comp-cta {
    margin-top: 28px;
  }
}
.s6 {
  position: relative;
  overflow: hidden;
  background: #F4F6F9;
}
.s6::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--font-color);
  opacity: 0.05;
}

@media screen and (max-width: 1024px) {
  .s6::before {
    top: -140px;
    right: -40px;
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .s6::before {
    top: -100px;
    right: -60px;
    width: 300px;
    height: 300px;
  }
}
.s7-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.s7-left {
  display: flex;
  flex-direction: column;
  width: calc(52% - 16px);
}
.s7-right {
  width: calc(48% - 16px);
}
.s7-image {
  width: 100%;
  aspect-ratio: 52/38;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.s7-cta {
  width: 100%;
  padding: 20px 22px 24px 22px;
  border-radius: 10px;
  background: #F4F6F9;
}
.s7-cta .s-title {
  font-size: 30px;
  text-transform: none;
  margin-bottom: 20px;
}
.s7-cta .button-third {
  width: 300px;
}
.s7 .accordion {
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .s7-container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .s7-left {
    width: 100%;
  }
  .s7-right {
    width: 100%;
    margin-top: 20px;
  }
  .s7-cta {
    padding: 20px 20px 20px 20px;
  }
  .s7-cta .s-title {
    margin-bottom: 12px;
  }
  .s7-cta .button-third {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .s7-cta {
    padding: 16px;
  }
  .s7-cta .s-title {
    font-size: 20px;
  }
}
.s8 {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(103deg, #1A3A5C 0%, #1F5FA6 100%);
}
.s8 .s-heading {
  margin-bottom: 20px;
}
.s8-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 330px;
  margin-left: auto;
  margin-right: auto;
}
.s8-cta .button-primary {
  width: 100%;
}
.s8-warn {
  margin-top: 15px;
  padding-top: 8px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--white-color);
}
.s8-warn p {
  margin-top: 0;
  margin-bottom: 0;
}
.s8-warn p span {
  font-weight: 900;
  color: #E8A020;
}
.s8-benefit {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.s8-benefits {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px 16px;
  margin-top: 36px;
}
.s8-benefit span {
  color: #25D366;
}
.s8-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.s8-info a, .s8-info p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
}
.s8-info a:not(:last-child), .s8-info p:not(:last-child) {
  position: relative;
  margin-right: 10px;
}
.s8-info a:not(:last-child)::after, .s8-info p:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.s8-single .s-title {
  text-transform: none;
}
.s8-single .s-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 576px) {
  .s8 {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .s8-cta {
    width: 100%;
  }
  .s8-warn {
    margin-top: 12px;
  }
  .s8-benefits {
    gap: 5px 12px;
    margin-top: 28px;
  }
  .s8-info {
    flex-direction: column;
    margin-top: 16px;
  }
  .s8-info a:not(:last-child), .s8-info p:not(:last-child) {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .s8-info a:not(:last-child)::after, .s8-info p:not(:last-child)::after {
    display: none;
  }
}
.s9 {
  padding-top: 28px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: #F4F6F9;
}
.s9 .container > .s-heading {
  margin-bottom: 28px;
}
.s9-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
}
.s9-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  padding: 10px 10px 12px;
  border-radius: 10px;
  border: 1px solid rgb(185, 185, 185);
  background-color: var(--white-color);
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .s9-item:hover {
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  }
}
.s9-item img {
  margin: -10px -10px 10px -10px;
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
  aspect-ratio: 28/23;
  object-fit: cover;
  border-bottom: 1px solid rgb(185, 185, 185);
}
.s9-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1A3A5C;
}
.s9-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
}
.s9-item-price-old {
  text-decoration: line-through;
  color: #7F8C8D;
}
.s9-item-price-new {
  font-weight: bold;
  color: #E67E22;
}
.s9-item-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  color: #1F5FA6;
}
.s9 .link-center .button-secondary {
  width: 300px;
  margin-top: 24px;
}
.s9 .comp-cta {
  margin-top: 36px;
}

@media screen and (max-width: 1024px) {
  .s9 {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .s9-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .s9-item {
    min-height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .s9 {
    padding-top: 14px;
    padding-bottom: 40px;
  }
  .s9 .container > .s-heading {
    margin-bottom: 16px;
  }
  .s9-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .s9-item {
    min-height: 240px;
    padding: 8px;
  }
  .s9-item img {
    margin: -8px -8px 8px -8px;
    width: calc(100% + 16px);
    max-width: calc(100% + 16px);
  }
  .s9-item h3 {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .s9-item-price {
    margin-bottom: 6px;
    font-size: 10px;
  }
  .s9-item-link {
    font-size: 10px;
  }
  .s9 .link-center .button-secondary {
    width: 100%;
    margin-top: 16px;
  }
  .s9 .comp-cta {
    margin-top: 28px;
  }
}
@media screen and (max-width: 370px) {
  .s9-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.s10 {
  padding-top: 28px;
  padding-bottom: 100px;
  background: #F4F6F9;
}
.s10-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  border-radius: 28px;
  background: var(--white-color);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.03);
}
.s10-main:not(:last-child) {
  margin-bottom: 80px;
}
.s10-main-gallery {
  width: calc(50% - 20px);
}
.s10-main-gallery-top {
  position: relative;
}
.s10-main-gallery-top .swiper-slide {
  overflow: hidden;
  border: 1px solid rgb(185, 185, 185);
  border-radius: 15px;
}
.s10-main-gallery-top .swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 54/42;
  object-fit: cover;
}
.s10-main-gallery-top .swiper-prev, .s10-main-gallery-top .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.s10-main-gallery-top .swiper-prev {
  left: 15px;
}
.s10-main-gallery-top .swiper-next {
  right: 15px;
}
.s10-main-gallery-bottom {
  margin-top: 14px;
}
.s10-main-gallery-bottom .swiper-slide {
  opacity: 0.5;
  overflow: hidden;
  border: 1px solid rgb(185, 185, 185);
  border-radius: 11px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.s10-main-gallery-bottom .swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 54/42;
  object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .s10-main-gallery-bottom .swiper-slide:hover {
    opacity: 1;
  }
}
.s10-main-gallery-bottom .swiper-slide-thumb-active {
  opacity: 1;
}
.s10-main-info {
  width: 50%;
}
.s10-main-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 7px 15px 4px 12px;
  border-radius: 100px;
  background: rgb(238, 242, 255);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  color: #1E40AF;
  margin-bottom: 15px;
}
.s10-main-descr:not(:last-child) {
  margin-bottom: 20px;
}
.s10-main-descr h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #1A1F2C;
}
.s10-main-descr h1:not(:last-child) {
  margin-bottom: 14px;
}
.s10-main-descr p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A1F2C;
}
.s10-main-offer {
  width: 100%;
  padding: 22px 20px;
  border-radius: 15px;
  background: #FEF9E6;
}
.s10-main-offer:not(:last-child) {
  margin-bottom: 20px;
}
.s10-main-offer-rynok {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
  text-decoration: line-through;
  color: #7F8C8D;
}
.s10-main-offer-rynok:not(:last-child) {
  margin-bottom: 10px;
}
.s10-main-offer-price {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #E67E22;
}
.s10-main-offer-price:not(:last-child) {
  margin-bottom: 14px;
}
.s10-main-offer-benefit {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.2;
  color: #2C3E50;
}
.s10-main-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 100%;
}
.s10-main-benefits:not(:last-child) {
  margin-bottom: 36px;
}
.s10-main-benefits p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
}
.s10-main-cta {
  width: 100%;
  padding: 24px 24px 12px;
  border-radius: 15px;
  background: #EEF2FA;
}
.s10-main-cta h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.s10-main-cta > p {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 16px;
}
.s10-main-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px 16px;
}
.s10-main-cta .button-primary {
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.s10-main-cta .comp-warn {
  padding: 7px 3px 7px 36px;
  min-height: 44px;
  border-top: 1px solid rgba(26, 31, 44, 0.2);
  border-bottom: 1px solid rgba(26, 31, 44, 0.2);
}
.s10-main-cta .comp-warn::before {
  left: 2px;
  width: 26px;
  height: 26px;
  background-image: url("../img/comp-warn-black-icon.svg");
}
.s10-main-cta .comp-warn p {
  max-width: 150px;
  font-size: 10px;
  color: #1A1F2C;
}
.s10-main-accept {
  margin-top: 15px;
  max-width: 380px;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  color: #A1A1A1;
}
.s10-main-accept a {
  text-decoration: underline;
}
.s10-main-accept a:hover {
  text-decoration: none;
}
.s10-chars {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: 30px 20px 20px;
  border-radius: 28px;
  background: var(--white-color);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.03);
}
.s10-chars:not(:last-child) {
  margin-bottom: 80px;
}
.s10-chars-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #F8FAFC;
}
.s10-chars-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}
.s10-chars-item:not(:last-child) {
  border-bottom: 1px solid #E2E8F0;
}
.s10-chars-item-name {
  width: 35%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}
.s10-chars-item-value {
  width: 65%;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  text-align: left;
}
.s10-chars-note {
  width: 100%;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white-color);
  padding: 22px 16px;
  border-radius: 16px;
  background: #1F5FA6;
}
.s10-benefits {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: 36px;
  border-radius: 28px;
  background: var(--white-color);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.03);
}
.s10-benefits:not(:last-child) {
  margin-bottom: 80px;
}
.s10-benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 80px;
  width: 100%;
  max-width: 100%;
}
.s10-benefits-col {
  width: 100%;
}
.s10-benefits-col p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  color: #1A1F2C;
}
.s10-benefits-col p strong {
  font-weight: bold;
}
.s10-benefits-col p:not(:last-child) {
  margin-bottom: 4px;
}
.s10-offers {
  width: 100%;
}
.s10-offers .s-heading {
  max-width: 540px;
  margin-bottom: 28px;
}
.s10-offers-swiper-container {
  position: relative;
}
.s10-offers-swiper-container .swiper-buttons {
  position: absolute;
  top: -100px;
  right: 0;
}
.s10-offers-swiper-container .swiper-slide {
  width: 100%;
  height: auto;
  padding: 1px;
}
.s10-offers-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.s10-offers-item-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.s10-offers-item-icon span {
  font-size: 22px;
  line-height: 22px;
}
.s10-offers-item-content {
  width: 100%;
}
.s10-offers-item-content h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #1A1F2C;
}
.s10-offers-item-content p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #E67E22;
}
.s10-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #1A1F2C;
}

@media screen and (max-width: 1024px) {
  .s10 {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .s10-main {
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }
  .s10-main:not(:last-child) {
    margin-bottom: 60px;
  }
  .s10-main-gallery {
    width: 100%;
    margin-bottom: 24px;
  }
  .s10-main-info {
    width: 100%;
  }
  .s10-chars:not(:last-child) {
    margin-bottom: 60px;
  }
  .s10-benefits:not(:last-child) {
    margin-bottom: 60px;
  }
  .s10-benefits-row {
    gap: 30px 60px;
  }
  .s10-benefits-col p {
    font-size: 18px;
  }
  .s10-offers .s-heading {
    margin-bottom: 28px;
  }
  .s10-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .s10 {
    padding-top: 14px;
    padding-bottom: 40px;
  }
  .s10-main {
    padding: 16px;
    border-radius: 16px;
  }
  .s10-main:not(:last-child) {
    margin-bottom: 40px;
  }
  .s10-main-gallery {
    margin-bottom: 20px;
  }
  .s10-main-gallery-top .swiper-slide {
    border-radius: 10px;
  }
  .s10-main-gallery-top .swiper-prev {
    left: 10px;
  }
  .s10-main-gallery-top .swiper-next {
    right: 10px;
  }
  .s10-main-gallery-bottom {
    margin-top: 10px;
  }
  .s10-main-gallery-bottom .swiper-slide {
    border-radius: 10px;
  }
  .s10-main-label {
    min-height: 24px;
    padding: 5px 12px 3px 10px;
    margin-bottom: 12px;
  }
  .s10-main-descr:not(:last-child) {
    margin-bottom: 16px;
  }
  .s10-main-descr h1 {
    font-size: 20px;
  }
  .s10-main-descr h1:not(:last-child) {
    margin-bottom: 8px;
  }
  .s10-main-descr p {
    font-size: 14px;
  }
  .s10-main-offer {
    padding: 12px 12px;
    border-radius: 12px;
  }
  .s10-main-offer:not(:last-child) {
    margin-bottom: 16px;
  }
  .s10-main-offer-rynok {
    font-size: 14px;
  }
  .s10-main-offer-rynok:not(:last-child) {
    margin-bottom: 4px;
  }
  .s10-main-offer-price {
    font-size: 18px;
  }
  .s10-main-offer-price:not(:last-child) {
    margin-bottom: 4px;
  }
  .s10-main-offer-benefit {
    font-size: 12px;
  }
  .s10-main-benefits {
    padding-left: 2px;
    grid-template-columns: repeat(1, 1fr);
    gap: 7px;
  }
  .s10-main-benefits:not(:last-child) {
    margin-bottom: 16px;
  }
  .s10-main-cta {
    padding: 18px 15px 12px;
    border-radius: 15px;
  }
  .s10-main-cta h2 {
    font-size: 16px;
  }
  .s10-main-cta > p {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .s10-main-cta-row {
    gap: 8px 10px;
  }
  .s10-main-cta .button-primary {
    width: 100%;
  }
  .s10-main-cta .comp-warn {
    width: 100%;
  }
  .s10-main-accept {
    margin-top: 12px;
  }
  .s10-chars {
    padding: 15px 15px;
    border-radius: 16px;
  }
  .s10-chars:not(:last-child) {
    margin-bottom: 40px;
  }
  .s10-chars-list {
    padding: 12px 15px;
    border-radius: 14px;
  }
  .s10-chars-item {
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .s10-chars-item-name {
    width: 100%;
    font-size: 15px;
  }
  .s10-chars-item-value {
    width: 100%;
    font-size: 15px;
    margin-top: 2px;
  }
  .s10-chars-note {
    margin-top: 12px;
    font-size: 15px;
    padding: 15px 14px;
    border-radius: 14px;
  }
  .s10-benefits {
    padding: 15px;
    border-radius: 16px;
  }
  .s10-benefits:not(:last-child) {
    margin-bottom: 40px;
  }
  .s10-benefits-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .s10-benefits-col p {
    font-size: 15px;
  }
  .s10-benefits-col p:not(:last-child) {
    margin-bottom: 2px;
  }
  .s10-offers .s-heading {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .s10-offers-swiper-container .swiper-buttons {
    position: static;
    top: auto;
    right: auto;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
  .s10-offers-item-icon {
    margin-bottom: 16px;
  }
  .s10-offers-item-content h3 {
    font-size: 16px;
  }
  .s10-offers-item-content p {
    margin-top: 8px;
    font-size: 14px;
  }
  .s10-title {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.s404 {
  padding-top: 0;
  padding-bottom: 0;
  background: #F5F7FB;
}
.s404-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 128px);
}
.s404-creative {
  display: block;
  width: 480px;
  height: auto;
  flex-shrink: 0;
  margin-bottom: 48px;
}
.s404 .s-title {
  font-size: 32px;
  text-transform: none;
  text-align: center;
}
.s404 .s-subtitle {
  margin-top: 6px;
  font-size: 16px;
  text-align: center;
}
.s404 .button-secondary {
  width: 240px;
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {
  .s404-container {
    min-height: calc(100vh - 108px);
  }
}
@media screen and (max-width: 576px) {
  .s404-container {
    min-height: calc(100vh - 125px);
  }
  .s404-creative {
    width: 280px;
    margin-bottom: 24px;
  }
  .s404 .s-title {
    font-size: 22px;
  }
  .s404 .s-subtitle {
    margin-top: 4px;
    font-size: 14px;
  }
  .s404 .button-secondary {
    margin-top: 20px;
  }
}