@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf");
  src: local("Lato Regular"), local("Lato-Regular"), url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Medium.ttf");
  src: local("Lato Medium"), local("Lato-Medium"), url("../fonts/Lato-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-SemiBold.ttf");
  src: local("Lato SemiBold"), local("Lato-SemiBold"), url("../fonts/Lato-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf");
  src: local("Lato Bold"), local("Lato-Bold"), url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

html.no-scroll {
  overflow: hidden;
}
html.no-scroll:before {
  opacity: 1;
}

.pic-abolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.line-title {
  position: relative;
}
.line-title::before {
  content: "";
  position: absolute;
  width: 11.875rem;
  height: 5px;
  top: -1.5rem;
  left: 0;
}
.line-title.is-orange::before {
  background: #EA5B0C;
}
.line-title.is-orange-light::before {
  background: #FFA52F;
}
.line-title.is-purple::before {
  background: #7B4DB3;
}
.line-title.is-blue::before {
  background: #529FBD;
}
.line-title.is-rose::before {
  background: #D2325E;
}

.title-big,
.title {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

/* .title-big {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
} */

.regular-text {
  display: grid;
  gap: 0.5rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.btn span {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
.btn.btn-arrow:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M3.5 12H19M19 12L12 5M19 12L12 19' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  transition: 0.3s;
}
.btn.btn-arrow:hover:after {
  transform: scale(1.2);
}
.btn.btn-orange span {
  color: #EA5B0C;
}
.btn.btn-orange.btn-arrow:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M3.5 12H19M19 12L12 5M19 12L12 19' stroke='%23EA5B0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.btn.btn-white span {
  color: #fff;
}
.btn.btn-white.btn-arrow:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M3.5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.btn.btn-back-orange {
  padding: 1rem 2.5rem;
  background: #EA5B0C;
}
.btn.btn-back-purple {
  padding: 1rem 2.5rem;
  background: #7B4DB3;
}
.btn.btn-back-rose {
  padding: 1rem 2.5rem;
  background: #D2325E;
}
.btn.btn-border-orange-light {
  position: relative;
}
.btn.btn-border-orange-light::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFA52F;
  opacity: 0;
  transition: 0.3s;
}
.btn.btn-border-orange-light:hover:before {
  opacity: 1;
}
.btn.btn-border-rose {
  position: relative;
}
.btn.btn-border-rose::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D2325E;
  opacity: 0;
  transition: 0.3s;
}
.btn.btn-border-rose:hover:before {
  opacity: 1;
}

.swiper-arrows {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.swiper-arrows__item {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  background-color: #EA5B0C;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  cursor: pointer;
  transition: 0.1s;
}
.swiper-arrows__item.-prev {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22' fill='none'%3e%3cg clip-path='url(%23clip0_517_275)'%3e%3cpath d='M14 1.97949L5 10.9795L14 19.9795' stroke='white' stroke-width='3'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_517_275'%3e%3crect width='20' height='20.0412' fill='white' transform='matrix(-1 0 0 1 20 0.979492)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.swiper-arrows__item.-next {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22' fill='none'%3e%3cg clip-path='url(%23clip0_517_314)'%3e%3cpath d='M6 1.97949L15 10.9795L6 19.9795' stroke='white' stroke-width='3'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_517_314'%3e%3crect width='20' height='20.0412' fill='white' transform='translate(0 0.979492)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.swiper-arrows__item:hover {
  background-size: 58%;
}

.breadcrumbs {
  position: relative;
  margin: 1.25rem 0 2rem;
  z-index: 3;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__item span {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
  transition: 0.3s;
}
.breadcrumbs__item span:hover {
  opacity: 1;
}
.breadcrumbs__item:not(:last-child):after {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3e%3cpath d='M5.25 10.5L8.75 7L5.25 3.5' stroke='%23808080' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.breadcrumbs__text {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}

.accordeon.-active > .accordeon__head:after {
  transition: 0.3s;
  transform: scale(1, -1);
}
.accordeon__body {
  display: none;
}

.pagination {
  margin-top: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
}
.pagination__btn {
  display: block;
  width: 4rem;
  height: 4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.pagination__btn.--prev {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='64' height='64' transform='matrix(-1 0 0 1 64 0)' fill='%23FFA52F'/%3e%3cpath d='M36.25 40.4999L27.75 31.9999L36.25 23.4999' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.pagination__btn.--next {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='64' height='64' fill='%23FFA52F'/%3e%3cpath d='M27.75 40.4999L36.25 31.9999L27.75 23.4999' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.pagination__btn.--disable {
  opacity: 0.8;
  pointer-events: none;
}
.pagination__btn:hover {
  transform: scale(1.05);
}
.pagination__page {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pagination__page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.9rem;
  min-width: 3.9rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  transition: 0.3s;
  border: 2px solid transparent;
}
.pagination__page-item:hover, .pagination__page-item.is-active {
  border-color: #FFA52F;
}
.pagination__page-gap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.9rem;
  min-width: 3.9rem;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  pointer-events: none;
}

.filter {
  height: 3.375rem;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  border: 1px solid #EA5B0C;
}
.filter__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 1.25rem;
  height: 100%;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  border: 1px solid transparent;
}
.filter__item:hover {
  border-color: #EA5B0C;
}
.filter__item.is-active {
  color: #fff;
  background: #EA5B0C;
  opacity: 1;
}

.mark-list {
  display: grid;
  gap: 0.75rem;
}
.mark-list li {
  position: relative;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.mark-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: -1.75rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #ea5b0c;
  mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3e%3cpath d='M6 8.5C7.10457 8.5 8 9.39543 8 10.5C8 11.6046 7.10457 12.5 6 12.5C4.89543 12.5 4 11.6046 4 10.5C4 9.39543 4.89543 8.5 6 8.5ZM2 4.5C3.10457 4.5 4 5.39543 4 6.5C4 7.60457 3.10457 8.5 2 8.5C0.895431 8.5 0 7.60457 0 6.5C0 5.39543 0.895431 4.5 2 4.5ZM10 4.5C11.1046 4.5 12 5.39543 12 6.5C12 7.60457 11.1046 8.5 10 8.5C8.89543 8.5 8 7.60457 8 6.5C8 5.39543 8.89543 4.5 10 4.5ZM6 0.5C7.10457 0.5 8 1.39543 8 2.5C8 3.60457 7.10457 4.5 6 4.5C4.89543 4.5 4 3.60457 4 2.5C4 1.39543 4.89543 0.5 6 0.5Z' fill='%23EA5B0C'/%3e%3c/svg%3e");
  mask-size: cover;
  mask-position: center;
  /*background-position: center;*/
  /*background-size: contain;*/
  /*background-repeat: no-repeat;*/
  /*background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3e%3cpath d='M6 8.5C7.10457 8.5 8 9.39543 8 10.5C8 11.6046 7.10457 12.5 6 12.5C4.89543 12.5 4 11.6046 4 10.5C4 9.39543 4.89543 8.5 6 8.5ZM2 4.5C3.10457 4.5 4 5.39543 4 6.5C4 7.60457 3.10457 8.5 2 8.5C0.895431 8.5 0 7.60457 0 6.5C0 5.39543 0.895431 4.5 2 4.5ZM10 4.5C11.1046 4.5 12 5.39543 12 6.5C12 7.60457 11.1046 8.5 10 8.5C8.89543 8.5 8 7.60457 8 6.5C8 5.39543 8.89543 4.5 10 4.5ZM6 0.5C7.10457 0.5 8 1.39543 8 2.5C8 3.60457 7.10457 4.5 6 4.5C4.89543 4.5 4 3.60457 4 2.5C4 1.39543 4.89543 0.5 6 0.5Z' fill='%23EA5B0C'/%3e%3c/svg%3e");*/
}

.form__row.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.form__row:not(:first-child) {
  margin-top: 0.5rem;
}
.form__input-holder {
  position: relative;
  height: 3.375rem;
  width: 100%;
}
.form__input-holder span {
  pointer-events: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #8D99A2;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  z-index: 1;
  transition: 0.3s;
}
.form__input-holder.is-textarea {
  height: 6.25rem;
}
.form__input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.75rem 1rem 0.25rem 1rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  border: none;
  outline: none;
  background: rgba(217, 223, 223, 0.5);
  cursor: pointer;
  resize: none;
}
.form__input:not(:-moz-placeholder) + span {
  top: 0.35rem;
  font-size: 0.75rem;
}
.form__input:not(:placeholder-shown) + span, .form__input:focus + span {
  top: 0.35rem;
  font-size: 0.75rem;
}
.form__btn {
  margin-top: 1.25rem;
  width: 100%;
}
.form__policy {
  position: relative;
  margin-top: 0.5rem;
}
.form__policy input {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.form__policy label {
  position: relative;
  padding-left: 2rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.form__policy label a {
  color: #EA5B0C;
}
.form__policy label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.3s;
  cursor: pointer;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='2' y='4' width='16' height='16' fill='%23D9D9D9'/%3e%3c/svg%3e ");
}
.form__policy input:checked ~ label:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='2' y='4' width='16' height='16' fill='%23D9D9D9'/%3e%3cpath d='M21 5L10 16L5 11' stroke='%23EA5B0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

.cookie {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 2.75rem;
  width: 42%;
  display: none;
  gap: 4.5rem;
  z-index: 10;
  background-color: #FFF;
  background-image: url("../img/cookie.png");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: -57px 217px 63px 0px rgba(0, 0, 0, 0), -36px 139px 57px 0px rgba(0, 0, 0, 0.01), -20px 78px 48px 0px rgba(0, 0, 0, 0.05), -9px 35px 36px 0px rgba(0, 0, 0, 0.09), -2px 9px 20px 0px rgba(0, 0, 0, 0.1);
}
.cookie__info a {
  color: #EA5B0C;
}
.cookie__btn {
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 3.5rem !important;
}
.form__row .form__selector,
.form__row .form__selector input {
  width: 100%;
}
.form__selector {
  position: relative;
}
.form__selector-head {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.375rem;
  overflow: hidden;
  color: #8D99A2;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  background: #ECEFEF;
  cursor: pointer;
  border: transparent;
  width: 100%;
}
.form__selector-head::placeholder {
  color: #8D99A2;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.form__selector-head:after {
  content: "";
  display: block;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.25rem;
  transition: 0.3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3e%3cpath d='M6 9.5L12 15.5L18 9.5' stroke='%233B4145' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.form__selector-head.is-active:after {
  transform: scale(1, -1);
}
.form__selector-body {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 100%;
  max-height: 10rem;
  overflow: hidden;
  overflow-y: auto;
  background: #ECEFEF;
  z-index: 10;
  box-shadow: 0px 20px 9px rgba(0, 0, 0, 0.03);
  border: 2px solid #3C4145;
}
.form__selector-body-item {
  position: relative;
}
.form__selector-body-item input {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.form__selector-body-item label {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--Black, #3C4145);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  transition: 0.3s;
}
.form__selector-body-item label:hover {
  background: #c4c5c5;
}

.banner--mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .banner--desktop-only {
    display: none;
  }
  .banner--mobile-only {
    display: none;
  }
  .line-title::before {
    width: 6.25rem;
    height: 2px;
    top: -0.75rem;
  }
  .title-big,
  .title {
    font-size: 1.25rem;
    line-height: 120%;
  }
  /* .title-big {
    font-size: 2rem;
  } */
  .regular-text {
    font-size: 1rem;
    line-height: 130%;
  }
  .btn span {
    font-size: 0.875rem;
    font-weight: 700;
  }
  .btn.btn-arrow:after {
    width: 1rem;
    height: 1rem;
  }
  .btn.btn-back-orange {
    padding: 1rem 2.5rem;
    background: #EA5B0C;
  }
  .mark-list {
    gap: 0.5rem;
  }
  .mark-list li {
    padding-left: 1.25rem;
    font-size: 0.875rem;
    line-height: 130%;
  }
  .mark-list li::before {
    top: 0.2rem;
    left: 0;
  }
  .filter {
    height: 3.125rem;
    flex-wrap: wrap;
  }
  .filter__item {
    flex: 1;
    padding: 0.75rem;
    height: 100%;
    font-size: 0.875rem;
  }
  .pagination {
    margin-top: 2rem;
    gap: 1rem;
  }
  .pagination__btn {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }
  .pagination__page {
    gap: 0.25rem;
  }
  .pagination__page-item {
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 0.875rem;
  }
  .pagination__page-gap {
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 0.875rem;
  }
  .form__row.grid-2 {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .form__row:not(:first-child) {
    margin-top: 0.25rem;
  }
  .form__input-holder {
    height: 2.75rem;
  }
  .form__input-holder span {
    position: absolute;
    left: 0.75rem;
    font-size: 0.75rem;
  }
  .form__input {
    padding: 0.875rem 0.75rem 0.25rem 0.75rem;
    font-size: 0.875rem;
  }
  .form__input:not(:-moz-placeholder) + span {
    top: 0.35rem;
    font-size: 0.75rem;
  }
  .form__input:not(:placeholder-shown) + span, .form__input:focus + span {
    top: 0.35rem;
    font-size: 0.75rem;
  }
  .form__btn {
    margin-top: 0.25rem;
  }
  .form__policy {
    margin-top: 0.25rem;
  }
  .form__policy label {
    padding-left: 1.75rem;
    gap: 0.25rem;
  }
  .cookie {
    padding: 1.5rem 1.25rem;
    width: calc(100% - 2rem);
    flex-direction: column;
    gap: 1.25rem;
  }
  .cookie__btn {
    width: 100%;
    padding: 0.5rem 3.5rem !important;
  }
  .breadcrumbs {
    margin: 0.75rem 0 2rem;
  }
  .breadcrumbs__list {
    gap: 0.25rem;
  }
  .breadcrumbs__item {
    gap: 0.25rem;
  }
  .form__selector-head {
    padding: 0.25rem 0.75rem;
    height: 2.75rem;
    font-size: 0.875rem;
  }
  .form__selector-head::placeholder {
    font-size:  0.75rem;
  }
  .form__selector-head:after {
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
  }
  .form__selector-body-item label {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Lato";
  font-size: 0.833335vw;
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

body {
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: #3C4145;
  background: #fff;
}

input,
textarea {
  -webkit-animation: bugfix infinite 1s;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

a {
  color: unset;
}

a,
a:hover {
  text-decoration: none;
}

button,
input,
a,
textarea {
  outline: none;
  cursor: pointer;
  font: inherit;
}
button:focus,
input:focus,
a:focus,
textarea:focus {
  outline: none;
}
button:active,
input:active,
a:active,
textarea:active {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  padding: 0;
  background-color: inherit;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  height: 100%;
  width: 111rem;
  margin: 0 auto;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

@media (max-width: 768px) {
  html {
    font-size: 2.08333vw;
  }
  .container {
    padding: 0 2.5rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 4.10256vw;
  }
  .container {
    padding: 0 1.25rem;
    width: 100%;
  }
}
.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: auto;
}
.popup__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}
.popup__content {
  padding: 2rem 7.5rem;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 70vh;
  width: 52%;
  background: #fff;
  z-index: 2;
  overflow: hidden;
  overflow-y: scroll;
}
.popup__content::-webkit-scrollbar {
  width: 4px;
}
.popup__content::-webkit-scrollbar-thumb {
  background: #EA5B0C;
}
.popup__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3e%3cpath d='M33 11L11 33M11 11L33 33' stroke='%233C4145' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  cursor: pointer;
  z-index: 5;
}
.popup__title {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.popup__shade {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}
.popup__big-text {
  margin-bottom: 2.5rem;
}

.popup__tg .popup__content {
  padding: 0rem;
}
.popup__tg-content {
  display: flex;
  align-items: center;
}
.popup__tg-info {
  width: 60%;
  padding: 2.5rem;
}
.popup__tg-title {
  margin-bottom: 0.75rem;
}
.popup__tg-text {
  margin-bottom: 2.5rem;
}
.popup__tg-btn {
  width: 100%;
}
.popup__tg-img {
  width: 40%;
  height: 100%;
  pointer-events: none;
}
.popup__tg-img img {
  margin-top: 2.75rem;
  margin-left: -10%;
  width: 100%;
  height: 100%;
  max-height: 25.625rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

@media (max-width: 768px) {
  .popup__content {
    padding: 1rem;
    width: calc(100% - 2rem);
  }
  .popup__close {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
  .popup__title {
    width: 90%;
    font-size: 1.125rem;
  }
  .popup__tg-content {
    flex-direction: column;
  }
  .popup__tg-info {
    width: 100%;
    padding: 1rem;
  }
  .popup__tg-title {
    width: 90%;
    margin-bottom: 0.5rem;
  }
  .popup__tg-text {
    margin-bottom: 1.25rem;
  }
  .popup__tg-img {
    width: 60%;
  }
  .popup__tg-img img {
    margin-left: 0%;
  }
}
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}
.header__content {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.header__logo {
  margin-right: 9.5rem;
  padding: 0.625rem;
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1/1;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s;
}
.header__logo:hover img {
  /*transform: scale(1.05) rotate(-10deg);*/
}
.header__menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9.5rem;
}
.header__menu-title {
  display: none;
}
.header__nav {
  flex: 1;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-item-sub {
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: 0.3;
}
.header__nav-item-sub.is-active {
  opacity: 1;
  pointer-events: all;
}
.header__nav-item-sub-body {
  padding: 2rem 3.75rem;
  background: var(--White, #FFF);
  box-shadow: -57px 217px 63px 0px rgba(0, 0, 0, 0), -36px 139px 57px 0px rgba(0, 0, 0, 0.01), -20px 78px 48px 0px rgba(0, 0, 0, 0.05), -9px 35px 36px 0px rgba(0, 0, 0, 0.09), -2px 9px 20px 0px rgba(0, 0, 0, 0.1);
}
.header__nav-item-sub-title {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.header__nav-item-sub-content {
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}
.header__nav-item-sub-list {
  width: 30%;
  min-width: 30%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  gap: 1.5rem;
}
.header__nav-item-sub-list a {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  transition: 0.3s;
}
.header__nav-item-sub-list a:hover {
  color: #EA5B0C;
}
.header__nav-item-sub-img {
  position: relative;
  width: 100%;
  height: 18rem;
}
.header__nav-item-sub-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1rem;
  width: 0.125rem;
  height: 1.5rem;
  background: #EA5B0C;
}
.header__nav-item-sub-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__nav-link {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 0;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  transition: 0.3s;
}
.header__nav-link:before, .header__nav-link:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0%;
  height: 3px;
  background: #EA5B0C;
  transition: 0.4s;
}
.header__nav-link:before {
  left: 50%;
}
.header__nav-link:after {
  right: 50%;
}
.header__nav-link:hover {
  color: #EA5B0C;
}
.header__nav-link:hover:before, .header__nav-link:hover:after {
  width: 50%;
}
.header__search {
  position: relative;
}
.header__search-form-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3e%3cpath d='M28 28L22.2133 22.2133M25.3333 14.6667C25.3333 20.5577 20.5577 25.3333 14.6667 25.3333C8.77563 25.3333 4 20.5577 4 14.6667C4 8.77563 8.77563 4 14.6667 4C20.5577 4 25.3333 8.77563 25.3333 14.6667Z' stroke='%23EA5B0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.header__search-form-input {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
}
.header__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  opacity: 0.5;
  transition: 0.3s;
}
.header__lang:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3e%3cpath d='M29.3332 16C29.3332 23.3638 23.3636 29.3333 15.9998 29.3333M29.3332 16C29.3332 8.6362 23.3636 2.66667 15.9998 2.66667M29.3332 16H2.6665M15.9998 29.3333C8.63604 29.3333 2.6665 23.3638 2.6665 16M15.9998 29.3333C12.5761 25.7385 10.6665 20.9643 10.6665 16C10.6665 11.0357 12.5761 6.26154 15.9998 2.66667M15.9998 29.3333C19.4235 25.7385 21.3332 20.9643 21.3332 16C21.3332 11.0357 19.4235 6.26154 15.9998 2.66667M2.6665 16C2.6665 8.6362 8.63604 2.66667 15.9998 2.66667' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.header__lang:hover {
  opacity: 1;
}
.header__burger {
  display: none;
}
.header__eng {
  margin: 0 auto;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 768px) {
  .header__content {
    padding: 1rem 0;
    gap: 1.5rem;
  }
  .header__logo {
    margin-right: unset;
    padding: 0rem;
  }
  .header__menu {
    padding: 2rem 1.125rem 5rem;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 96%;
    gap: 0.875rem;
    z-index: 105;
    background: #FFF;
    box-shadow: -57px 217px 63px 0px rgba(0, 0, 0, 0), -36px 139px 57px 0px rgba(0, 0, 0, 0.01), -20px 78px 48px 0px rgba(0, 0, 0, 0.05), -9px 35px 36px 0px rgba(0, 0, 0, 0.09), -2px 9px 20px 0px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .header__menu-title {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }
  .header__menu.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .header__nav {
    order: 1;
    width: 100%;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .header__nav-item-sub {
    display: none;
    opacity: 1;
    pointer-events: all;
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    transition: 0.3;
  }
  .header__nav-item-sub.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .header__nav-item-sub-body {
    padding: 1rem 1.25rem;
    box-shadow: unset;
  }
  .header__nav-item-sub-title {
    display: none;
  }
  .header__nav-item-sub-list {
    width: 100%;
    min-width: 100%;
    gap: 0.75rem;
  }
  .header__nav-item-sub-list a {
    font-size: 0.875rem;
  }
  .header__nav-item-sub-img {
    display: none;
  }
  .header__nav-link {
    padding: 0.5rem 0;
    font-size: 1.125rem;
  }
  .header__nav-link:hover {
    color: #3C4145;
  }
  .header__nav-link:before, .header__nav-link:after {
    display: none;
  }
  .header__nav-link.with-sub {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header__nav-link.with-sub:after {
    content: "";
    position: static;
    display: block;
    width: 1rem;
    height: 1.125rem;
    background-color: unset;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='19' viewBox='0 0 16 19' fill='none'%3e%3cpath d='M2 8.5L8 14.5L14 8.5' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  }
  .header__nav-link.with-sub.is-active:after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='19' viewBox='0 0 16 19' fill='none'%3e%3cpath d='M14 14.5L8 8.5L2 14.5' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  }
  .header__search {
    width: 100%;
  }
  .header__search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    width: 100%;
    border-radius: 1.25rem;
    border: 1px solid rgba(59, 65, 69, 0.3);
  }
  .header__search-form-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M21 21L16.66 16.66M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z' stroke='%233C4145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  }
  .header__search-form-input {
    flex: 1;
    position: static;
    top: unset;
    right: unset;
    opacity: 1;
    border: none;
    outline: none;
  }
  .header__burger {
    position: relative;
    z-index: 110;
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    transition: 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3e%3cpath d='M5.5 22.7857H38.5M11 33H38.5M17.4167 12.5714H22H38.5' stroke='%233C4145' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  }
  .header__burger.is-active {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3e%3cpath d='M33 11L11 33M11 11L33 33' stroke='%233C4145' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  }
}
.hero__content {
  min-height: 43.75rem;
  position: relative;
  padding: 3.75rem 0.5rem;
}
.hero__content-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__info {
  padding: 5rem 5rem 5rem 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1/0.65;
  position: relative;
  z-index: 3;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='775' height='490' viewBox='0 0 775 490' fill='none'%3e%3cpath d='M774.5 489.5L0 423V0H705.778L774.5 489.5Z' fill='white'/%3e%3c/svg%3e");
}
.hero__title {
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
.hero__btn {
  margin-top: 2rem;
}
.hero.is-full {
  position: relative;
  overflow: hidden;
}
.hero.is-full .hero__content {
  position: static;
  padding: 3.75rem 13%;
}
.hero.is-full .hero__info {
  padding: 5rem 10rem 6rem 2.5rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='485' height='316' viewBox='0 0 485 316' fill='none'%3e%3cpath d='M443.5 274.5L1.5 315.5L0 0H485L443.5 274.5Z' fill='white'/%3e%3c/svg%3e");
}
.hero.is-full .hero__title {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .hero {
    overflow: hidden;
  }
  .hero__content {
    margin: 0 -1.5rem;
    min-height: -moz-fit-content;
    min-height: fit-content;
    position: relative;
    padding: 3.75rem 1.875rem 10rem;
  }
  .hero__content img {
    -o-object-position: left;
       object-position: left;
  }
  .hero__info {
    background-size: cover;
    /* padding: 2rem 3rem 3rem 1.5rem; */
    padding: 2rem 3rem 2rem 1rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='485' height='316' viewBox='0 0 485 316' fill='none'%3e%3cpath d='M443.5 274.5L1.5 315.5L0 0H485L443.5 274.5Z' fill='white'/%3e%3c/svg%3e");
  }
  .hero__title {
    /* font-size: 1.5rem; */
    font-size: 1.3rem;
  }
  .hero.is-full .hero__content {
    min-height: -moz-fit-content;
    min-height: fit-content;
    position: relative;
    padding: 3.75rem 1.875rem 10rem;
  }
  .hero.is-full .hero__info {
    padding: 2rem 4rem 2rem 1.5rem;
  }
  .hero.is-full .hero__title {
    font-size: 1.5rem;
  }
}
.text-block {
  margin: 3.75rem 0;
}
.text-block__content {
  display: flex;
  gap: 2rem;
}
.text-block__content:before {
  content: "";
  width: 4.43rem;
  min-width: 4.43rem;
  height: 4.625rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='71' height='74' viewBox='0 0 71 74' fill='none'%3e%3cg clip-path='url(%23clip0_91_684)'%3e%3cpath d='M4 5.00232H0V8.99762H4V5.00232Z' fill='%233C4145'/%3e%3cpath d='M35 5.00232H31V8.99762H35V5.00232Z' fill='%233C4145'/%3e%3cpath d='M68 5H64V9H68V5Z' fill='%233C4145'/%3e%3cpath d='M4 37.0023H0V40.9976H4V37.0023Z' fill='%233C4145'/%3e%3cpath d='M35 37.0023H31V40.9976H35V37.0023Z' fill='%233C4145'/%3e%3cpath d='M68 37H64V41H68V37Z' fill='%233C4145'/%3e%3cpath d='M4 69.0023H0V72.9976H4V69.0023Z' fill='%233C4145'/%3e%3cpath d='M35 69.0023H31V72.9976H35V69.0023Z' fill='%233C4145'/%3e%3cpath d='M68 69H64V73H68V69Z' fill='%233C4145'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_91_684'%3e%3crect width='71' height='74' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.text-block__content.no-decor::before {
  opacity: 0;
}
.text-block__content.no-decor ul {
  padding-left: 1.5rem;
}
.text-block__content.w-85 {
  width: 85%;
}
.text-block__content.w-65 {
  width: 65%;
  margin: 0 auto;
}
.text-block__content-text {
  padding-top: 0.75rem;
  flex: 1;
  display: grid;
  gap: 2rem;
}
.text-block__content-text-block {
  display: grid;
  gap: 0.75rem;
}
.text-block__colorfull {
  margin: 2.5rem 0 2.5rem auto;
  padding: 5.5rem 12.5rem;
  width: 82.5%;
  background-position: left  1.625rem;
  background-size: 50%;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg width="803" height="558" viewBox="0 0 803 558" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_771_1577)"><path d="M2.30747 0H0V2.31215H2.30747V0Z" fill="%233C4145"/><path d="M50.7645 0H48.457V2.31215H50.7645V0Z" fill="%233C4145"/><path d="M98.452 0H96.1445V2.31215H98.452V0Z" fill="%233C4145"/><path d="M146.909 0H144.602V2.31215H146.909V0Z" fill="%233C4145"/><path d="M195.366 0H193.059V2.31215H195.366V0Z" fill="%233C4145"/><path d="M243.054 0H240.746V2.31215H243.054V0Z" fill="%233C4145"/><path d="M291.511 0H289.203V2.31215H291.511V0Z" fill="%233C4145"/><path d="M339.968 0H337.66V2.31215H339.968V0Z" fill="%233C4145"/><path d="M387.655 0H385.348V2.31215H387.655V0Z" fill="%233C4145"/><path d="M436.112 0H433.805V2.31215H436.112V0Z" fill="%233C4145"/><path d="M484.569 0H482.262V2.31215H484.569V0Z" fill="%233C4145"/><path d="M532.257 0H529.949V2.31215H532.257V0Z" fill="%233C4145"/><path d="M580.714 0H578.406V2.31215H580.714V0Z" fill="%233C4145"/><path d="M629.171 0H626.863V2.31215H629.171V0Z" fill="%233C4145"/><path d="M676.858 0H674.551V2.31215H676.858V0Z" fill="%233C4145"/><path d="M725.315 0H723.008V2.31215H725.315V0Z" fill="%233C4145"/><path d="M773.003 0H770.695V2.31215H773.003V0Z" fill="%233C4145"/><path d="M2.30747 48.5552H0V50.8673H2.30747V48.5552Z" fill="%233C4145"/><path d="M50.7645 48.5552H48.457V50.8673H50.7645V48.5552Z" fill="%233C4145"/><path d="M98.452 48.5552H96.1445V50.8673H98.452V48.5552Z" fill="%233C4145"/><path d="M146.909 48.5552H144.602V50.8673H146.909V48.5552Z" fill="%233C4145"/><path d="M195.366 48.5552H193.059V50.8673H195.366V48.5552Z" fill="%233C4145"/><path d="M243.054 48.5552H240.746V50.8673H243.054V48.5552Z" fill="%233C4145"/><path d="M291.511 48.5552H289.203V50.8673H291.511V48.5552Z" fill="%233C4145"/><path d="M339.968 48.5552H337.66V50.8673H339.968V48.5552Z" fill="%233C4145"/><path d="M387.655 48.5552H385.348V50.8673H387.655V48.5552Z" fill="%233C4145"/><path d="M436.112 48.5552H433.805V50.8673H436.112V48.5552Z" fill="%233C4145"/><path d="M484.569 48.5552H482.262V50.8673H484.569V48.5552Z" fill="%233C4145"/><path d="M532.257 48.5552H529.949V50.8673H532.257V48.5552Z" fill="%233C4145"/><path d="M580.714 48.5552H578.406V50.8673H580.714V48.5552Z" fill="%233C4145"/><path d="M629.171 48.5552H626.863V50.8673H629.171V48.5552Z" fill="%233C4145"/><path d="M676.858 48.5552H674.551V50.8673H676.858V48.5552Z" fill="%233C4145"/><path d="M725.315 48.5552H723.008V50.8673H725.315V48.5552Z" fill="%233C4145"/><path d="M773.003 48.5552H770.695V50.8673H773.003V48.5552Z" fill="%233C4145"/><path d="M2.30747 96.3398H0V98.652H2.30747V96.3398Z" fill="%233C4145"/><path d="M50.7645 96.3398H48.457V98.652H50.7645V96.3398Z" fill="%233C4145"/><path d="M98.452 96.3398H96.1445V98.652H98.452V96.3398Z" fill="%233C4145"/><path d="M146.909 96.3398H144.602V98.652H146.909V96.3398Z" fill="%233C4145"/><path d="M195.366 96.3398H193.059V98.652H195.366V96.3398Z" fill="%233C4145"/><path d="M243.054 96.3398H240.746V98.652H243.054V96.3398Z" fill="%233C4145"/><path d="M291.511 96.3398H289.203V98.652H291.511V96.3398Z" fill="%233C4145"/><path d="M339.968 96.3398H337.66V98.652H339.968V96.3398Z" fill="%233C4145"/><path d="M387.655 96.3398H385.348V98.652H387.655V96.3398Z" fill="%233C4145"/><path d="M436.112 96.3398H433.805V98.652H436.112V96.3398Z" fill="%233C4145"/><path d="M484.569 96.3398H482.262V98.652H484.569V96.3398Z" fill="%233C4145"/><path d="M532.257 96.3398H529.949V98.652H532.257V96.3398Z" fill="%233C4145"/><path d="M580.714 96.3398H578.406V98.652H580.714V96.3398Z" fill="%233C4145"/><path d="M629.171 96.3398H626.863V98.652H629.171V96.3398Z" fill="%233C4145"/><path d="M676.858 96.3398H674.551V98.652H676.858V96.3398Z" fill="%233C4145"/><path d="M725.315 96.3398H723.008V98.652H725.315V96.3398Z" fill="%233C4145"/><path d="M773.003 96.3398H770.695V98.652H773.003V96.3398Z" fill="%233C4145"/><path d="M2.30747 144.895H0V147.207H2.30747V144.895Z" fill="%233C4145"/><path d="M50.7645 144.895H48.457V147.207H50.7645V144.895Z" fill="%233C4145"/><path d="M98.452 144.895H96.1445V147.207H98.452V144.895Z" fill="%233C4145"/><path d="M146.909 144.895H144.602V147.207H146.909V144.895Z" fill="%233C4145"/><path d="M195.366 144.895H193.059V147.207H195.366V144.895Z" fill="%233C4145"/><path d="M243.054 144.895H240.746V147.207H243.054V144.895Z" fill="%233C4145"/><path d="M291.511 144.895H289.203V147.207H291.511V144.895Z" fill="%233C4145"/><path d="M339.968 144.895H337.66V147.207H339.968V144.895Z" fill="%233C4145"/><path d="M387.655 144.895H385.348V147.207H387.655V144.895Z" fill="%233C4145"/><path d="M436.112 144.895H433.805V147.207H436.112V144.895Z" fill="%233C4145"/><path d="M484.569 144.895H482.262V147.207H484.569V144.895Z" fill="%233C4145"/><path d="M532.257 144.895H529.949V147.207H532.257V144.895Z" fill="%233C4145"/><path d="M580.714 144.895H578.406V147.207H580.714V144.895Z" fill="%233C4145"/><path d="M629.171 144.895H626.863V147.207H629.171V144.895Z" fill="%233C4145"/><path d="M676.858 144.895H674.551V147.207H676.858V144.895Z" fill="%233C4145"/><path d="M725.315 144.895H723.008V147.207H725.315V144.895Z" fill="%233C4145"/><path d="M773.003 144.895H770.695V147.207H773.003V144.895Z" fill="%233C4145"/><path d="M2.30747 193.45H0V195.762H2.30747V193.45Z" fill="%233C4145"/><path d="M50.7645 193.45H48.457V195.762H50.7645V193.45Z" fill="%233C4145"/><path d="M98.452 193.45H96.1445V195.762H98.452V193.45Z" fill="%233C4145"/><path d="M146.909 193.45H144.602V195.762H146.909V193.45Z" fill="%233C4145"/><path d="M195.366 193.45H193.059V195.762H195.366V193.45Z" fill="%233C4145"/><path d="M243.054 193.45H240.746V195.762H243.054V193.45Z" fill="%233C4145"/><path d="M291.511 193.45H289.203V195.762H291.511V193.45Z" fill="%233C4145"/><path d="M339.968 193.45H337.66V195.762H339.968V193.45Z" fill="%233C4145"/><path d="M387.655 193.45H385.348V195.762H387.655V193.45Z" fill="%233C4145"/><path d="M436.112 193.45H433.805V195.762H436.112V193.45Z" fill="%233C4145"/><path d="M484.569 193.45H482.262V195.762H484.569V193.45Z" fill="%233C4145"/><path d="M532.257 193.45H529.949V195.762H532.257V193.45Z" fill="%233C4145"/><path d="M580.714 193.45H578.406V195.762H580.714V193.45Z" fill="%233C4145"/><path d="M629.171 193.45H626.863V195.762H629.171V193.45Z" fill="%233C4145"/><path d="M676.858 193.45H674.551V195.762H676.858V193.45Z" fill="%233C4145"/><path d="M725.315 193.45H723.008V195.762H725.315V193.45Z" fill="%233C4145"/><path d="M773.003 193.45H770.695V195.762H773.003V193.45Z" fill="%233C4145"/><path d="M2.30747 241.235H0V243.547H2.30747V241.235Z" fill="%233C4145"/><path d="M50.7645 241.235H48.457V243.547H50.7645V241.235Z" fill="%233C4145"/><path d="M98.452 241.235H96.1445V243.547H98.452V241.235Z" fill="%233C4145"/><path d="M146.909 241.235H144.602V243.547H146.909V241.235Z" fill="%233C4145"/><path d="M195.366 241.235H193.059V243.547H195.366V241.235Z" fill="%233C4145"/><path d="M243.054 241.235H240.746V243.547H243.054V241.235Z" fill="%233C4145"/><path d="M291.511 241.235H289.203V243.547H291.511V241.235Z" fill="%233C4145"/><path d="M339.968 241.235H337.66V243.547H339.968V241.235Z" fill="%233C4145"/><path d="M387.655 241.235H385.348V243.547H387.655V241.235Z" fill="%233C4145"/><path d="M436.112 241.235H433.805V243.547H436.112V241.235Z" fill="%233C4145"/><path d="M484.569 241.235H482.262V243.547H484.569V241.235Z" fill="%233C4145"/><path d="M532.257 241.235H529.949V243.547H532.257V241.235Z" fill="%233C4145"/><path d="M580.714 241.235H578.406V243.547H580.714V241.235Z" fill="%233C4145"/><path d="M629.171 241.235H626.863V243.547H629.171V241.235Z" fill="%233C4145"/><path d="M676.858 241.235H674.551V243.547H676.858V241.235Z" fill="%233C4145"/><path d="M725.315 241.235H723.008V243.547H725.315V241.235Z" fill="%233C4145"/><path d="M773.003 241.235H770.695V243.547H773.003V241.235Z" fill="%233C4145"/><path d="M2.30747 289.79H0V292.102H2.30747V289.79Z" fill="%233C4145"/><path d="M50.7645 289.79H48.457V292.102H50.7645V289.79Z" fill="%233C4145"/><path d="M98.452 289.79H96.1445V292.102H98.452V289.79Z" fill="%233C4145"/><path d="M146.909 289.79H144.602V292.102H146.909V289.79Z" fill="%233C4145"/><path d="M195.366 289.79H193.059V292.102H195.366V289.79Z" fill="%233C4145"/><path d="M243.054 289.79H240.746V292.102H243.054V289.79Z" fill="%233C4145"/><path d="M291.511 289.79H289.203V292.102H291.511V289.79Z" fill="%233C4145"/><path d="M339.968 289.79H337.66V292.102H339.968V289.79Z" fill="%233C4145"/><path d="M387.655 289.79H385.348V292.102H387.655V289.79Z" fill="%233C4145"/><path d="M436.112 289.79H433.805V292.102H436.112V289.79Z" fill="%233C4145"/><path d="M484.569 289.79H482.262V292.102H484.569V289.79Z" fill="%233C4145"/><path d="M532.257 289.79H529.949V292.102H532.257V289.79Z" fill="%233C4145"/><path d="M580.714 289.79H578.406V292.102H580.714V289.79Z" fill="%233C4145"/><path d="M629.171 289.79H626.863V292.102H629.171V289.79Z" fill="%233C4145"/><path d="M676.858 289.79H674.551V292.102H676.858V289.79Z" fill="%233C4145"/><path d="M725.315 289.79H723.008V292.102H725.315V289.79Z" fill="%233C4145"/><path d="M773.003 289.79H770.695V292.102H773.003V289.79Z" fill="%233C4145"/><path d="M2.30747 338.345H0V340.657H2.30747V338.345Z" fill="%233C4145"/><path d="M50.7645 338.345H48.457V340.657H50.7645V338.345Z" fill="%233C4145"/><path d="M98.452 338.345H96.1445V340.657H98.452V338.345Z" fill="%233C4145"/><path d="M146.909 338.345H144.602V340.657H146.909V338.345Z" fill="%233C4145"/><path d="M195.366 338.345H193.059V340.657H195.366V338.345Z" fill="%233C4145"/><path d="M243.054 338.345H240.746V340.657H243.054V338.345Z" fill="%233C4145"/><path d="M291.511 338.345H289.203V340.657H291.511V338.345Z" fill="%233C4145"/><path d="M339.968 338.345H337.66V340.657H339.968V338.345Z" fill="%233C4145"/><path d="M387.655 338.345H385.348V340.657H387.655V338.345Z" fill="%233C4145"/><path d="M436.112 338.345H433.805V340.657H436.112V338.345Z" fill="%233C4145"/><path d="M484.569 338.345H482.262V340.657H484.569V338.345Z" fill="%233C4145"/><path d="M532.257 338.345H529.949V340.657H532.257V338.345Z" fill="%233C4145"/><path d="M580.714 338.345H578.406V340.657H580.714V338.345Z" fill="%233C4145"/><path d="M629.171 338.345H626.863V340.657H629.171V338.345Z" fill="%233C4145"/><path d="M676.858 338.345H674.551V340.657H676.858V338.345Z" fill="%233C4145"/><path d="M725.315 338.345H723.008V340.657H725.315V338.345Z" fill="%233C4145"/><path d="M773.003 338.345H770.695V340.657H773.003V338.345Z" fill="%233C4145"/><path d="M2.30747 386.13H0V388.442H2.30747V386.13Z" fill="%233C4145"/><path d="M50.7645 386.13H48.457V388.442H50.7645V386.13Z" fill="%233C4145"/><path d="M98.452 386.13H96.1445V388.442H98.452V386.13Z" fill="%233C4145"/><path d="M146.909 386.13H144.602V388.442H146.909V386.13Z" fill="%233C4145"/><path d="M195.366 386.13H193.059V388.442H195.366V386.13Z" fill="%233C4145"/><path d="M243.054 386.13H240.746V388.442H243.054V386.13Z" fill="%233C4145"/><path d="M291.511 386.13H289.203V388.442H291.511V386.13Z" fill="%233C4145"/><path d="M339.968 386.13H337.66V388.442H339.968V386.13Z" fill="%233C4145"/><path d="M387.655 386.13H385.348V388.442H387.655V386.13Z" fill="%233C4145"/><path d="M436.112 386.13H433.805V388.442H436.112V386.13Z" fill="%233C4145"/><path d="M484.569 386.13H482.262V388.442H484.569V386.13Z" fill="%233C4145"/><path d="M532.257 386.13H529.949V388.442H532.257V386.13Z" fill="%233C4145"/><path d="M580.714 386.13H578.406V388.442H580.714V386.13Z" fill="%233C4145"/><path d="M629.171 386.13H626.863V388.442H629.171V386.13Z" fill="%233C4145"/><path d="M676.858 386.13H674.551V388.442H676.858V386.13Z" fill="%233C4145"/><path d="M725.315 386.13H723.008V388.442H725.315V386.13Z" fill="%233C4145"/><path d="M773.003 386.13H770.695V388.442H773.003V386.13Z" fill="%233C4145"/><path d="M2.30747 434.685H0V436.997H2.30747V434.685Z" fill="%233C4145"/><path d="M50.7645 434.685H48.457V436.997H50.7645V434.685Z" fill="%233C4145"/><path d="M98.452 434.685H96.1445V436.997H98.452V434.685Z" fill="%233C4145"/><path d="M146.909 434.685H144.602V436.997H146.909V434.685Z" fill="%233C4145"/><path d="M195.366 434.685H193.059V436.997H195.366V434.685Z" fill="%233C4145"/><path d="M243.054 434.685H240.746V436.997H243.054V434.685Z" fill="%233C4145"/><path d="M291.511 434.685H289.203V436.997H291.511V434.685Z" fill="%233C4145"/><path d="M339.968 434.685H337.66V436.997H339.968V434.685Z" fill="%233C4145"/><path d="M387.655 434.685H385.348V436.997H387.655V434.685Z" fill="%233C4145"/><path d="M436.112 434.685H433.805V436.997H436.112V434.685Z" fill="%233C4145"/><path d="M484.569 434.685H482.262V436.997H484.569V434.685Z" fill="%233C4145"/><path d="M532.257 434.685H529.949V436.997H532.257V434.685Z" fill="%233C4145"/><path d="M580.714 434.685H578.406V436.997H580.714V434.685Z" fill="%233C4145"/><path d="M629.171 434.685H626.863V436.997H629.171V434.685Z" fill="%233C4145"/><path d="M676.858 434.685H674.551V436.997H676.858V434.685Z" fill="%233C4145"/><path d="M725.315 434.685H723.008V436.997H725.315V434.685Z" fill="%233C4145"/><path d="M773.003 434.685H770.695V436.997H773.003V434.685Z" fill="%233C4145"/><path d="M2.30747 483.24H0V485.552H2.30747V483.24Z" fill="%233C4145"/><path d="M50.7645 483.24H48.457V485.552H50.7645V483.24Z" fill="%233C4145"/><path d="M98.452 483.24H96.1445V485.552H98.452V483.24Z" fill="%233C4145"/><path d="M146.909 483.24H144.602V485.552H146.909V483.24Z" fill="%233C4145"/><path d="M195.366 483.24H193.059V485.552H195.366V483.24Z" fill="%233C4145"/><path d="M243.054 483.24H240.746V485.552H243.054V483.24Z" fill="%233C4145"/><path d="M291.511 483.24H289.203V485.552H291.511V483.24Z" fill="%233C4145"/><path d="M339.968 483.24H337.66V485.552H339.968V483.24Z" fill="%233C4145"/><path d="M387.655 483.24H385.348V485.552H387.655V483.24Z" fill="%233C4145"/><path d="M436.112 483.24H433.805V485.552H436.112V483.24Z" fill="%233C4145"/><path d="M484.569 483.24H482.262V485.552H484.569V483.24Z" fill="%233C4145"/><path d="M532.257 483.24H529.949V485.552H532.257V483.24Z" fill="%233C4145"/><path d="M580.714 483.24H578.406V485.552H580.714V483.24Z" fill="%233C4145"/><path d="M629.171 483.24H626.863V485.552H629.171V483.24Z" fill="%233C4145"/><path d="M676.858 483.24H674.551V485.552H676.858V483.24Z" fill="%233C4145"/><path d="M725.315 483.24H723.008V485.552H725.315V483.24Z" fill="%233C4145"/><path d="M773.003 483.24H770.695V485.552H773.003V483.24Z" fill="%233C4145"/><path d="M2.30747 531.025H0V533.337H2.30747V531.025Z" fill="%233C4145"/><path d="M50.7645 531.025H48.457V533.337H50.7645V531.025Z" fill="%233C4145"/><path d="M98.452 531.025H96.1445V533.337H98.452V531.025Z" fill="%233C4145"/><path d="M146.909 531.025H144.602V533.337H146.909V531.025Z" fill="%233C4145"/><path d="M195.366 531.025H193.059V533.337H195.366V531.025Z" fill="%233C4145"/><path d="M243.054 531.025H240.746V533.337H243.054V531.025Z" fill="%233C4145"/><path d="M291.511 531.025H289.203V533.337H291.511V531.025Z" fill="%233C4145"/><path d="M339.968 531.025H337.66V533.337H339.968V531.025Z" fill="%233C4145"/><path d="M387.655 531.025H385.348V533.337H387.655V531.025Z" fill="%233C4145"/><path d="M436.112 531.025H433.805V533.337H436.112V531.025Z" fill="%233C4145"/><path d="M484.569 531.025H482.262V533.337H484.569V531.025Z" fill="%233C4145"/><path d="M532.257 531.025H529.949V533.337H532.257V531.025Z" fill="%233C4145"/><path d="M580.714 531.025H578.406V533.337H580.714V531.025Z" fill="%233C4145"/><path d="M629.171 531.025H626.863V533.337H629.171V531.025Z" fill="%233C4145"/><path d="M676.858 531.025H674.551V533.337H676.858V531.025Z" fill="%233C4145"/><path d="M725.315 531.025H723.008V533.337H725.315V531.025Z" fill="%233C4145"/><path d="M773.003 531.025H770.695V533.337H773.003V531.025Z" fill="%233C4145"/></g><defs><clipPath id="clip0_771_1577"><rect width="803" height="558" fill="white"/></clipPath></defs></svg>');
}
.text-block__colorfull.is-rose {
  background-color: #DCBBC4;
}
.text-block__colorfull.is-rose .text-block__colorfull-text {
  background-color: #DCBBC4;
}
.text-block__colorfull-text {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 1.9rem;
}

.download-block {
  margin: 5rem 0;
  background: #D66788;
}
.download-block__content {
  padding: 4.5rem 0;
}
.download-block__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.375rem;
  color: #fff;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.download-block__text:after {
  content: "";
  display: block;
  width: 2.125rem;
  height: 2.125rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='35' height='34' viewBox='0 0 35 34' fill='none'%3e%3cpath d='M17.5 21.25V4.25M17.5 21.25L10.4167 14.1667M17.5 21.25L24.5833 14.1667M30.25 21.25V26.9167C30.25 27.6681 29.9515 28.3888 29.4201 28.9201C28.8888 29.4515 28.1681 29.75 27.4167 29.75H7.58333C6.83189 29.75 6.11122 29.4515 5.57986 28.9201C5.04851 28.3888 4.75 27.6681 4.75 26.9167V21.25' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .text-block__content {
    display: flex;
    gap: 2rem;
  }
  .text-block__content:before {
    display: none;
  }
  .text-block__content.w-85, .text-block__content.w-65 {
    width: 100%;
  }
  .text-block__content-text {
    padding-top: 0rem;
    gap: 1.25rem;
  }
  .text-block__colorfull {
    margin: 2rem 0;
    padding: 2.5rem 1rem;
    width: 100%;
    background-image: unset;
  }
  .text-block__colorfull-text {
    font-size: 1.125rem;
  }
  .download-block {
    margin: 3.75rem 0;
    background: #D66788;
  }
  .download-block__content {
    padding: 4.5rem 0;
  }
  .download-block__text {
    gap: 0.75rem;
    font-size: 1.5rem;
  }
  .download-block__text:after {
    width: 1.25rem;
    height: 1.25rem;
  }
  .text-block__content.no-decor ul {
    padding-left: 0;
  }
}
.orange-block {
  margin: 3.75rem 0;
}
.orange-block__content {
  padding: 3.75rem 2.75rem;
  background: #FFA52F;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.orange-block__content.purple-light {
  background: #DDD8E4;
}
.orange-block__content.blue-light {
  background: #CBFCFF;
}
.orange-block__item {
  padding: 1rem 1.75rem;
}
.orange-block__item:not(:last-child) {
  border-right: 0.25rem solid #3C4145;
}
.orange-block__item-title {
  width: 80%;
  margin-bottom: 1.75rem;
}
.orange-block__item-text.fz-28 {
  font-size: 1.875rem;
}

@media (max-width: 768px) {
  .orange-block__content {
    padding: 2rem 1.25rem;
    grid-template-columns: 1fr;
  }
  .orange-block__item {
    padding: 1.25rem 0;
  }
  .orange-block__item:not(:last-child) {
    border-right: unset;
    border-bottom: 1px solid #3C4145;
  }
  .orange-block__item:first-child {
    padding-top: 0;
  }
  .orange-block__item:last-child {
    padding-bottom: 0;
  }
  .orange-block__item-title {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .orange-block__item-text.fz-28 {
    font-size: 1.125rem;
  }
}
.quote {
  margin: 5rem 0;
}
.quote__content {
  padding: 3rem 0;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='803' height='460' viewBox='0 0 803 460' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_102_53)'%3e%3cpath d='M2.30747 35.3398H0V37.652H2.30747V35.3398Z' fill='%233C4145'/%3e%3cpath d='M50.7643 35.3398H48.4568V37.652H50.7643V35.3398Z' fill='%233C4145'/%3e%3cpath d='M98.452 35.3398H96.1445V37.652H98.452V35.3398Z' fill='%233C4145'/%3e%3cpath d='M146.909 35.3398H144.602V37.652H146.909V35.3398Z' fill='%233C4145'/%3e%3cpath d='M195.366 35.3398H193.058V37.652H195.366V35.3398Z' fill='%233C4145'/%3e%3cpath d='M243.054 35.3398H240.746V37.652H243.054V35.3398Z' fill='%233C4145'/%3e%3cpath d='M291.511 35.3398H289.203V37.652H291.511V35.3398Z' fill='%233C4145'/%3e%3cpath d='M339.967 35.3398H337.66V37.652H339.967V35.3398Z' fill='%233C4145'/%3e%3cpath d='M387.655 35.3398H385.348V37.652H387.655V35.3398Z' fill='%233C4145'/%3e%3cpath d='M436.112 35.3398H433.805V37.652H436.112V35.3398Z' fill='%233C4145'/%3e%3cpath d='M484.569 35.3398H482.261V37.652H484.569V35.3398Z' fill='%233C4145'/%3e%3cpath d='M532.257 35.3398H529.949V37.652H532.257V35.3398Z' fill='%233C4145'/%3e%3cpath d='M580.714 35.3398H578.406V37.652H580.714V35.3398Z' fill='%233C4145'/%3e%3cpath d='M629.171 35.3398H626.863V37.652H629.171V35.3398Z' fill='%233C4145'/%3e%3cpath d='M676.858 35.3398H674.551V37.652H676.858V35.3398Z' fill='%233C4145'/%3e%3cpath d='M725.315 35.3398H723.008V37.652H725.315V35.3398Z' fill='%233C4145'/%3e%3cpath d='M773.003 35.3398H770.695V37.652H773.003V35.3398Z' fill='%233C4145'/%3e%3cpath d='M2.30747 83.895H0V86.2072H2.30747V83.895Z' fill='%233C4145'/%3e%3cpath d='M50.7643 83.895H48.4568V86.2072H50.7643V83.895Z' fill='%233C4145'/%3e%3cpath d='M98.452 83.895H96.1445V86.2072H98.452V83.895Z' fill='%233C4145'/%3e%3cpath d='M146.909 83.895H144.602V86.2072H146.909V83.895Z' fill='%233C4145'/%3e%3cpath d='M195.366 83.895H193.058V86.2072H195.366V83.895Z' fill='%233C4145'/%3e%3cpath d='M243.054 83.895H240.746V86.2072H243.054V83.895Z' fill='%233C4145'/%3e%3cpath d='M291.511 83.895H289.203V86.2072H291.511V83.895Z' fill='%233C4145'/%3e%3cpath d='M339.967 83.895H337.66V86.2072H339.967V83.895Z' fill='%233C4145'/%3e%3cpath d='M387.655 83.895H385.348V86.2072H387.655V83.895Z' fill='%233C4145'/%3e%3cpath d='M436.112 83.895H433.805V86.2072H436.112V83.895Z' fill='%233C4145'/%3e%3cpath d='M484.569 83.895H482.261V86.2072H484.569V83.895Z' fill='%233C4145'/%3e%3cpath d='M532.257 83.895H529.949V86.2072H532.257V83.895Z' fill='%233C4145'/%3e%3cpath d='M580.714 83.895H578.406V86.2072H580.714V83.895Z' fill='%233C4145'/%3e%3cpath d='M629.171 83.895H626.863V86.2072H629.171V83.895Z' fill='%233C4145'/%3e%3cpath d='M676.858 83.895H674.551V86.2072H676.858V83.895Z' fill='%233C4145'/%3e%3cpath d='M725.315 83.895H723.008V86.2072H725.315V83.895Z' fill='%233C4145'/%3e%3cpath d='M773.003 83.895H770.695V86.2072H773.003V83.895Z' fill='%233C4145'/%3e%3cpath d='M2.30747 132.45H0V134.762H2.30747V132.45Z' fill='%233C4145'/%3e%3cpath d='M50.7643 132.45H48.4568V134.762H50.7643V132.45Z' fill='%233C4145'/%3e%3cpath d='M98.452 132.45H96.1445V134.762H98.452V132.45Z' fill='%233C4145'/%3e%3cpath d='M146.909 132.45H144.602V134.762H146.909V132.45Z' fill='%233C4145'/%3e%3cpath d='M195.366 132.45H193.058V134.762H195.366V132.45Z' fill='%233C4145'/%3e%3cpath d='M243.054 132.45H240.746V134.762H243.054V132.45Z' fill='%233C4145'/%3e%3cpath d='M291.511 132.45H289.203V134.762H291.511V132.45Z' fill='%233C4145'/%3e%3cpath d='M339.967 132.45H337.66V134.762H339.967V132.45Z' fill='%233C4145'/%3e%3cpath d='M387.655 132.45H385.348V134.762H387.655V132.45Z' fill='%233C4145'/%3e%3cpath d='M436.112 132.45H433.805V134.762H436.112V132.45Z' fill='%233C4145'/%3e%3cpath d='M484.569 132.45H482.261V134.762H484.569V132.45Z' fill='%233C4145'/%3e%3cpath d='M532.257 132.45H529.949V134.762H532.257V132.45Z' fill='%233C4145'/%3e%3cpath d='M580.714 132.45H578.406V134.762H580.714V132.45Z' fill='%233C4145'/%3e%3cpath d='M629.171 132.45H626.863V134.762H629.171V132.45Z' fill='%233C4145'/%3e%3cpath d='M676.858 132.45H674.551V134.762H676.858V132.45Z' fill='%233C4145'/%3e%3cpath d='M725.315 132.45H723.008V134.762H725.315V132.45Z' fill='%233C4145'/%3e%3cpath d='M773.003 132.45H770.695V134.762H773.003V132.45Z' fill='%233C4145'/%3e%3cpath d='M2.30747 180.235H0V182.547H2.30747V180.235Z' fill='%233C4145'/%3e%3cpath d='M50.7643 180.235H48.4568V182.547H50.7643V180.235Z' fill='%233C4145'/%3e%3cpath d='M98.452 180.235H96.1445V182.547H98.452V180.235Z' fill='%233C4145'/%3e%3cpath d='M146.909 180.235H144.602V182.547H146.909V180.235Z' fill='%233C4145'/%3e%3cpath d='M195.366 180.235H193.058V182.547H195.366V180.235Z' fill='%233C4145'/%3e%3cpath d='M243.054 180.235H240.746V182.547H243.054V180.235Z' fill='%233C4145'/%3e%3cpath d='M291.511 180.235H289.203V182.547H291.511V180.235Z' fill='%233C4145'/%3e%3cpath d='M339.967 180.235H337.66V182.547H339.967V180.235Z' fill='%233C4145'/%3e%3cpath d='M387.655 180.235H385.348V182.547H387.655V180.235Z' fill='%233C4145'/%3e%3cpath d='M436.112 180.235H433.805V182.547H436.112V180.235Z' fill='%233C4145'/%3e%3cpath d='M484.569 180.235H482.261V182.547H484.569V180.235Z' fill='%233C4145'/%3e%3cpath d='M532.257 180.235H529.949V182.547H532.257V180.235Z' fill='%233C4145'/%3e%3cpath d='M580.714 180.235H578.406V182.547H580.714V180.235Z' fill='%233C4145'/%3e%3cpath d='M629.171 180.235H626.863V182.547H629.171V180.235Z' fill='%233C4145'/%3e%3cpath d='M676.858 180.235H674.551V182.547H676.858V180.235Z' fill='%233C4145'/%3e%3cpath d='M725.315 180.235H723.008V182.547H725.315V180.235Z' fill='%233C4145'/%3e%3cpath d='M773.003 180.235H770.695V182.547H773.003V180.235Z' fill='%233C4145'/%3e%3cpath d='M2.30747 228.79H0V231.102H2.30747V228.79Z' fill='%233C4145'/%3e%3cpath d='M50.7643 228.79H48.4568V231.102H50.7643V228.79Z' fill='%233C4145'/%3e%3cpath d='M98.452 228.79H96.1445V231.102H98.452V228.79Z' fill='%233C4145'/%3e%3cpath d='M146.909 228.79H144.602V231.102H146.909V228.79Z' fill='%233C4145'/%3e%3cpath d='M195.366 228.79H193.058V231.102H195.366V228.79Z' fill='%233C4145'/%3e%3cpath d='M243.054 228.79H240.746V231.102H243.054V228.79Z' fill='%233C4145'/%3e%3cpath d='M291.511 228.79H289.203V231.102H291.511V228.79Z' fill='%233C4145'/%3e%3cpath d='M339.967 228.79H337.66V231.102H339.967V228.79Z' fill='%233C4145'/%3e%3cpath d='M387.655 228.79H385.348V231.102H387.655V228.79Z' fill='%233C4145'/%3e%3cpath d='M436.112 228.79H433.805V231.102H436.112V228.79Z' fill='%233C4145'/%3e%3cpath d='M484.569 228.79H482.261V231.102H484.569V228.79Z' fill='%233C4145'/%3e%3cpath d='M532.257 228.79H529.949V231.102H532.257V228.79Z' fill='%233C4145'/%3e%3cpath d='M580.714 228.79H578.406V231.102H580.714V228.79Z' fill='%233C4145'/%3e%3cpath d='M629.171 228.79H626.863V231.102H629.171V228.79Z' fill='%233C4145'/%3e%3cpath d='M676.858 228.79H674.551V231.102H676.858V228.79Z' fill='%233C4145'/%3e%3cpath d='M725.315 228.79H723.008V231.102H725.315V228.79Z' fill='%233C4145'/%3e%3cpath d='M773.003 228.79H770.695V231.102H773.003V228.79Z' fill='%233C4145'/%3e%3cpath d='M2.30747 277.345H0V279.657H2.30747V277.345Z' fill='%233C4145'/%3e%3cpath d='M50.7643 277.345H48.4568V279.657H50.7643V277.345Z' fill='%233C4145'/%3e%3cpath d='M98.452 277.345H96.1445V279.657H98.452V277.345Z' fill='%233C4145'/%3e%3cpath d='M146.909 277.345H144.602V279.657H146.909V277.345Z' fill='%233C4145'/%3e%3cpath d='M195.366 277.345H193.058V279.657H195.366V277.345Z' fill='%233C4145'/%3e%3cpath d='M243.054 277.345H240.746V279.657H243.054V277.345Z' fill='%233C4145'/%3e%3cpath d='M291.511 277.345H289.203V279.657H291.511V277.345Z' fill='%233C4145'/%3e%3cpath d='M339.967 277.345H337.66V279.657H339.967V277.345Z' fill='%233C4145'/%3e%3cpath d='M387.655 277.345H385.348V279.657H387.655V277.345Z' fill='%233C4145'/%3e%3cpath d='M436.112 277.345H433.805V279.657H436.112V277.345Z' fill='%233C4145'/%3e%3cpath d='M484.569 277.345H482.261V279.657H484.569V277.345Z' fill='%233C4145'/%3e%3cpath d='M532.257 277.345H529.949V279.657H532.257V277.345Z' fill='%233C4145'/%3e%3cpath d='M580.714 277.345H578.406V279.657H580.714V277.345Z' fill='%233C4145'/%3e%3cpath d='M629.171 277.345H626.863V279.657H629.171V277.345Z' fill='%233C4145'/%3e%3cpath d='M676.858 277.345H674.551V279.657H676.858V277.345Z' fill='%233C4145'/%3e%3cpath d='M725.315 277.345H723.008V279.657H725.315V277.345Z' fill='%233C4145'/%3e%3cpath d='M773.003 277.345H770.695V279.657H773.003V277.345Z' fill='%233C4145'/%3e%3cpath d='M2.30747 325.13H0V327.442H2.30747V325.13Z' fill='%233C4145'/%3e%3cpath d='M50.7643 325.13H48.4568V327.442H50.7643V325.13Z' fill='%233C4145'/%3e%3cpath d='M98.452 325.13H96.1445V327.442H98.452V325.13Z' fill='%233C4145'/%3e%3cpath d='M146.909 325.13H144.602V327.442H146.909V325.13Z' fill='%233C4145'/%3e%3cpath d='M195.366 325.13H193.058V327.442H195.366V325.13Z' fill='%233C4145'/%3e%3cpath d='M243.054 325.13H240.746V327.442H243.054V325.13Z' fill='%233C4145'/%3e%3cpath d='M291.511 325.13H289.203V327.442H291.511V325.13Z' fill='%233C4145'/%3e%3cpath d='M339.967 325.13H337.66V327.442H339.967V325.13Z' fill='%233C4145'/%3e%3cpath d='M387.655 325.13H385.348V327.442H387.655V325.13Z' fill='%233C4145'/%3e%3cpath d='M436.112 325.13H433.805V327.442H436.112V325.13Z' fill='%233C4145'/%3e%3cpath d='M484.569 325.13H482.261V327.442H484.569V325.13Z' fill='%233C4145'/%3e%3cpath d='M532.257 325.13H529.949V327.442H532.257V325.13Z' fill='%233C4145'/%3e%3cpath d='M580.714 325.13H578.406V327.442H580.714V325.13Z' fill='%233C4145'/%3e%3cpath d='M629.171 325.13H626.863V327.442H629.171V325.13Z' fill='%233C4145'/%3e%3cpath d='M676.858 325.13H674.551V327.442H676.858V325.13Z' fill='%233C4145'/%3e%3cpath d='M725.315 325.13H723.008V327.442H725.315V325.13Z' fill='%233C4145'/%3e%3cpath d='M773.003 325.13H770.695V327.442H773.003V325.13Z' fill='%233C4145'/%3e%3cpath d='M2.30747 373.685H0V375.997H2.30747V373.685Z' fill='%233C4145'/%3e%3cpath d='M50.7643 373.685H48.4568V375.997H50.7643V373.685Z' fill='%233C4145'/%3e%3cpath d='M98.452 373.685H96.1445V375.997H98.452V373.685Z' fill='%233C4145'/%3e%3cpath d='M146.909 373.685H144.602V375.997H146.909V373.685Z' fill='%233C4145'/%3e%3cpath d='M195.366 373.685H193.058V375.997H195.366V373.685Z' fill='%233C4145'/%3e%3cpath d='M243.054 373.685H240.746V375.997H243.054V373.685Z' fill='%233C4145'/%3e%3cpath d='M291.511 373.685H289.203V375.997H291.511V373.685Z' fill='%233C4145'/%3e%3cpath d='M339.967 373.685H337.66V375.997H339.967V373.685Z' fill='%233C4145'/%3e%3cpath d='M387.655 373.685H385.348V375.997H387.655V373.685Z' fill='%233C4145'/%3e%3cpath d='M436.112 373.685H433.805V375.997H436.112V373.685Z' fill='%233C4145'/%3e%3cpath d='M484.569 373.685H482.261V375.997H484.569V373.685Z' fill='%233C4145'/%3e%3cpath d='M532.257 373.685H529.949V375.997H532.257V373.685Z' fill='%233C4145'/%3e%3cpath d='M580.714 373.685H578.406V375.997H580.714V373.685Z' fill='%233C4145'/%3e%3cpath d='M629.171 373.685H626.863V375.997H629.171V373.685Z' fill='%233C4145'/%3e%3cpath d='M676.858 373.685H674.551V375.997H676.858V373.685Z' fill='%233C4145'/%3e%3cpath d='M725.315 373.685H723.008V375.997H725.315V373.685Z' fill='%233C4145'/%3e%3cpath d='M773.003 373.685H770.695V375.997H773.003V373.685Z' fill='%233C4145'/%3e%3cpath d='M2.30747 422.24H0V424.552H2.30747V422.24Z' fill='%233C4145'/%3e%3cpath d='M50.7643 422.24H48.4568V424.552H50.7643V422.24Z' fill='%233C4145'/%3e%3cpath d='M98.452 422.24H96.1445V424.552H98.452V422.24Z' fill='%233C4145'/%3e%3cpath d='M146.909 422.24H144.602V424.552H146.909V422.24Z' fill='%233C4145'/%3e%3cpath d='M195.366 422.24H193.058V424.552H195.366V422.24Z' fill='%233C4145'/%3e%3cpath d='M243.054 422.24H240.746V424.552H243.054V422.24Z' fill='%233C4145'/%3e%3cpath d='M291.511 422.24H289.203V424.552H291.511V422.24Z' fill='%233C4145'/%3e%3cpath d='M339.967 422.24H337.66V424.552H339.967V422.24Z' fill='%233C4145'/%3e%3cpath d='M387.655 422.24H385.348V424.552H387.655V422.24Z' fill='%233C4145'/%3e%3cpath d='M436.112 422.24H433.805V424.552H436.112V422.24Z' fill='%233C4145'/%3e%3cpath d='M484.569 422.24H482.261V424.552H484.569V422.24Z' fill='%233C4145'/%3e%3cpath d='M532.257 422.24H529.949V424.552H532.257V422.24Z' fill='%233C4145'/%3e%3cpath d='M580.714 422.24H578.406V424.552H580.714V422.24Z' fill='%233C4145'/%3e%3cpath d='M629.171 422.24H626.863V424.552H629.171V422.24Z' fill='%233C4145'/%3e%3cpath d='M676.858 422.24H674.551V424.552H676.858V422.24Z' fill='%233C4145'/%3e%3cpath d='M725.315 422.24H723.008V424.552H725.315V422.24Z' fill='%233C4145'/%3e%3cpath d='M773.003 422.24H770.695V424.552H773.003V422.24Z' fill='%233C4145'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_102_53'%3e%3crect width='803' height='558' fill='white' transform='translate(0 -61)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
}
.quote.no-back .quote__content {
  background: #fff;
  padding: 0;
}
.quote__body {
  margin: 0 14% 0 22%;
  display: flex;
  padding: 1.5rem;
  gap: 0.75rem;
  background: #fff;
}
.quote__decor {
  width: 2.75rem;
  height: 2.75rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3e%3cpath d='M32.125 25L37 25L37 40L24 40L24 25L31.042 10L37 10L32.125 25Z' fill='%237B4DB3'/%3e%3cpath d='M14.125 25L19 25L19 40L6 40L6 25L13.042 10L19 10L14.125 25Z' fill='%237B4DB3'/%3e%3c/svg%3e");
}
.quote__text {
  flex: 1;
}
.quote__text-content {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.quote__text-content a{
  color: #7b4db3;
}
.quote__text-author {
  margin-top: 2.5rem;
}
.quote__text-author-name {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.quote__text-author-role {
  margin-top: 0.25rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
}
.quote__eng {
  margin: 0 8%;
  padding: 1.5rem;
  display: flex;
  gap: 6rem;
  background: #fff;
}
.quote__eng-title {
  width: 24%;
  padding-top: 1rem;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  border-top: 4px solid #FFA52F;
}
.quote__eng-info-title {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 768px) {
  .quote {
    margin: 3.75rem 0;
  }
  .quote__content {
    padding: 5rem 0;
    background-position: center;
    background-size: cover;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='360' height='579' viewBox='0 0 360 579' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_103_7024)'%3e%3crect width='360' height='579' fill='white'/%3e%3cg clip-path='url(%23clip1_103_7024)'%3e%3cpath d='M358.55 23.7644L358.55 21.4569L356.238 21.4569L356.238 23.7644L358.55 23.7644Z' fill='%233C4145'/%3e%3cpath d='M358.55 71.4521L358.55 69.1447L356.238 69.1447L356.238 71.4521L358.55 71.4521Z' fill='%233C4145'/%3e%3cpath d='M358.55 119.909L358.55 117.602L356.238 117.602L356.238 119.909L358.55 119.909Z' fill='%233C4145'/%3e%3cpath d='M358.55 168.366L358.55 166.058L356.238 166.058L356.238 168.366L358.55 168.366Z' fill='%233C4145'/%3e%3cpath d='M358.55 216.054L358.55 213.746L356.238 213.746L356.238 216.054L358.55 216.054Z' fill='%233C4145'/%3e%3cpath d='M358.55 264.51L358.55 262.203L356.238 262.203L356.238 264.51L358.55 264.51Z' fill='%233C4145'/%3e%3cpath d='M358.55 312.967L358.55 310.66L356.238 310.66L356.238 312.967L358.55 312.967Z' fill='%233C4145'/%3e%3cpath d='M358.55 360.655L358.55 358.348L356.238 358.348L356.238 360.655L358.55 360.655Z' fill='%233C4145'/%3e%3cpath d='M358.55 409.112L358.55 406.805L356.238 406.805L356.238 409.112L358.55 409.112Z' fill='%233C4145'/%3e%3cpath d='M358.55 457.569L358.55 455.261L356.238 455.261L356.238 457.569L358.55 457.569Z' fill='%233C4145'/%3e%3cpath d='M358.55 505.257L358.55 502.949L356.238 502.949L356.238 505.257L358.55 505.257Z' fill='%233C4145'/%3e%3cpath d='M358.55 553.713L358.55 551.406L356.238 551.406L356.238 553.713L358.55 553.713Z' fill='%233C4145'/%3e%3cpath d='M310.766 23.7644L310.766 21.4569L308.453 21.4569L308.453 23.7644L310.766 23.7644Z' fill='%233C4145'/%3e%3cpath d='M310.766 71.4521L310.766 69.1447L308.453 69.1447L308.453 71.4521L310.766 71.4521Z' fill='%233C4145'/%3e%3cpath d='M310.766 119.909L310.766 117.602L308.453 117.602L308.453 119.909L310.766 119.909Z' fill='%233C4145'/%3e%3cpath d='M310.766 168.366L310.766 166.058L308.453 166.058L308.453 168.366L310.766 168.366Z' fill='%233C4145'/%3e%3cpath d='M310.766 216.054L310.766 213.746L308.453 213.746L308.453 216.054L310.766 216.054Z' fill='%233C4145'/%3e%3cpath d='M310.766 264.51L310.766 262.203L308.453 262.203L308.453 264.51L310.766 264.51Z' fill='%233C4145'/%3e%3cpath d='M310.766 312.967L310.766 310.66L308.453 310.66L308.453 312.967L310.766 312.967Z' fill='%233C4145'/%3e%3cpath d='M310.766 360.655L310.766 358.348L308.453 358.348L308.453 360.655L310.766 360.655Z' fill='%233C4145'/%3e%3cpath d='M310.766 409.112L310.766 406.805L308.453 406.805L308.453 409.112L310.766 409.112Z' fill='%233C4145'/%3e%3cpath d='M310.766 457.569L310.766 455.261L308.453 455.261L308.453 457.569L310.766 457.569Z' fill='%233C4145'/%3e%3cpath d='M310.766 505.257L310.766 502.949L308.453 502.949L308.453 505.257L310.766 505.257Z' fill='%233C4145'/%3e%3cpath d='M310.766 553.713L310.766 551.406L308.453 551.406L308.453 553.713L310.766 553.713Z' fill='%233C4145'/%3e%3cpath d='M262.21 23.7644L262.21 21.4569L259.898 21.4569L259.898 23.7644L262.21 23.7644Z' fill='%233C4145'/%3e%3cpath d='M262.21 71.4521L262.21 69.1447L259.898 69.1447L259.898 71.4521L262.21 71.4521Z' fill='%233C4145'/%3e%3cpath d='M262.21 119.909L262.21 117.602L259.898 117.602L259.898 119.909L262.21 119.909Z' fill='%233C4145'/%3e%3cpath d='M262.21 168.366L262.21 166.058L259.898 166.058L259.898 168.366L262.21 168.366Z' fill='%233C4145'/%3e%3cpath d='M262.21 216.054L262.21 213.746L259.898 213.746L259.898 216.054L262.21 216.054Z' fill='%233C4145'/%3e%3cpath d='M262.21 264.51L262.21 262.203L259.898 262.203L259.898 264.51L262.21 264.51Z' fill='%233C4145'/%3e%3cpath d='M262.21 312.967L262.21 310.66L259.898 310.66L259.898 312.967L262.21 312.967Z' fill='%233C4145'/%3e%3cpath d='M262.21 360.655L262.21 358.348L259.898 358.348L259.898 360.655L262.21 360.655Z' fill='%233C4145'/%3e%3cpath d='M262.21 409.112L262.21 406.805L259.898 406.805L259.898 409.112L262.21 409.112Z' fill='%233C4145'/%3e%3cpath d='M262.21 457.569L262.21 455.261L259.898 455.261L259.898 457.569L262.21 457.569Z' fill='%233C4145'/%3e%3cpath d='M262.21 505.257L262.21 502.949L259.898 502.949L259.898 505.257L262.21 505.257Z' fill='%233C4145'/%3e%3cpath d='M262.21 553.713L262.21 551.406L259.898 551.406L259.898 553.713L262.21 553.713Z' fill='%233C4145'/%3e%3cpath d='M213.654 23.7644L213.654 21.4569L211.342 21.4569L211.342 23.7644L213.654 23.7644Z' fill='%233C4145'/%3e%3cpath d='M213.654 71.4521L213.654 69.1447L211.342 69.1447L211.342 71.4521L213.654 71.4521Z' fill='%233C4145'/%3e%3cpath d='M213.654 119.909L213.654 117.602L211.342 117.602L211.342 119.909L213.654 119.909Z' fill='%233C4145'/%3e%3cpath d='M213.654 168.366L213.654 166.058L211.342 166.058L211.342 168.366L213.654 168.366Z' fill='%233C4145'/%3e%3cpath d='M213.654 216.054L213.654 213.746L211.342 213.746L211.342 216.054L213.654 216.054Z' fill='%233C4145'/%3e%3cpath d='M213.654 264.51L213.654 262.203L211.342 262.203L211.342 264.51L213.654 264.51Z' fill='%233C4145'/%3e%3cpath d='M213.654 312.967L213.654 310.66L211.342 310.66L211.342 312.967L213.654 312.967Z' fill='%233C4145'/%3e%3cpath d='M213.654 360.655L213.654 358.348L211.342 358.348L211.342 360.655L213.654 360.655Z' fill='%233C4145'/%3e%3cpath d='M213.654 409.112L213.654 406.805L211.342 406.805L211.342 409.112L213.654 409.112Z' fill='%233C4145'/%3e%3cpath d='M213.654 457.569L213.654 455.261L211.342 455.261L211.342 457.569L213.654 457.569Z' fill='%233C4145'/%3e%3cpath d='M213.654 505.257L213.654 502.949L211.342 502.949L211.342 505.257L213.654 505.257Z' fill='%233C4145'/%3e%3cpath d='M213.654 553.713L213.654 551.406L211.342 551.406L211.342 553.713L213.654 553.713Z' fill='%233C4145'/%3e%3cpath d='M165.87 23.7644L165.87 21.4569L163.558 21.4569L163.558 23.7644L165.87 23.7644Z' fill='%233C4145'/%3e%3cpath d='M165.87 71.4521L165.87 69.1447L163.558 69.1447L163.558 71.4521L165.87 71.4521Z' fill='%233C4145'/%3e%3cpath d='M165.87 119.909L165.87 117.602L163.558 117.602L163.558 119.909L165.87 119.909Z' fill='%233C4145'/%3e%3cpath d='M165.87 168.366L165.87 166.058L163.558 166.058L163.558 168.366L165.87 168.366Z' fill='%233C4145'/%3e%3cpath d='M165.87 216.054L165.87 213.746L163.558 213.746L163.558 216.054L165.87 216.054Z' fill='%233C4145'/%3e%3cpath d='M165.87 264.51L165.87 262.203L163.558 262.203L163.558 264.51L165.87 264.51Z' fill='%233C4145'/%3e%3cpath d='M165.87 312.967L165.87 310.66L163.558 310.66L163.558 312.967L165.87 312.967Z' fill='%233C4145'/%3e%3cpath d='M165.87 360.655L165.87 358.348L163.558 358.348L163.558 360.655L165.87 360.655Z' fill='%233C4145'/%3e%3cpath d='M165.87 409.112L165.87 406.805L163.558 406.805L163.558 409.112L165.87 409.112Z' fill='%233C4145'/%3e%3cpath d='M165.87 457.569L165.87 455.261L163.558 455.261L163.558 457.569L165.87 457.569Z' fill='%233C4145'/%3e%3cpath d='M165.87 505.257L165.87 502.949L163.558 502.949L163.558 505.257L165.87 505.257Z' fill='%233C4145'/%3e%3cpath d='M165.87 553.713L165.87 551.406L163.558 551.406L163.558 553.713L165.87 553.713Z' fill='%233C4145'/%3e%3cpath d='M117.314 23.7644L117.314 21.4569L115.002 21.4569L115.002 23.7644L117.314 23.7644Z' fill='%233C4145'/%3e%3cpath d='M117.314 71.4521L117.314 69.1447L115.002 69.1447L115.002 71.4521L117.314 71.4521Z' fill='%233C4145'/%3e%3cpath d='M117.314 119.909L117.314 117.602L115.002 117.602L115.002 119.909L117.314 119.909Z' fill='%233C4145'/%3e%3cpath d='M117.314 168.366L117.314 166.058L115.002 166.058L115.002 168.366L117.314 168.366Z' fill='%233C4145'/%3e%3cpath d='M117.314 216.054L117.314 213.746L115.002 213.746L115.002 216.054L117.314 216.054Z' fill='%233C4145'/%3e%3cpath d='M117.314 264.51L117.314 262.203L115.002 262.203L115.002 264.51L117.314 264.51Z' fill='%233C4145'/%3e%3cpath d='M117.314 312.967L117.314 310.66L115.002 310.66L115.002 312.967L117.314 312.967Z' fill='%233C4145'/%3e%3cpath d='M117.314 360.655L117.314 358.348L115.002 358.348L115.002 360.655L117.314 360.655Z' fill='%233C4145'/%3e%3cpath d='M117.314 409.112L117.314 406.805L115.002 406.805L115.002 409.112L117.314 409.112Z' fill='%233C4145'/%3e%3cpath d='M117.314 457.569L117.314 455.261L115.002 455.261L115.002 457.569L117.314 457.569Z' fill='%233C4145'/%3e%3cpath d='M117.314 505.257L117.314 502.949L115.002 502.949L115.002 505.257L117.314 505.257Z' fill='%233C4145'/%3e%3cpath d='M117.314 553.713L117.314 551.406L115.002 551.406L115.002 553.713L117.314 553.713Z' fill='%233C4145'/%3e%3cpath d='M68.7598 23.7644L68.7598 21.4569L66.4476 21.4569L66.4476 23.7644L68.7598 23.7644Z' fill='%233C4145'/%3e%3cpath d='M68.7598 71.4521L68.7598 69.1447L66.4476 69.1447L66.4476 71.4521L68.7598 71.4521Z' fill='%233C4145'/%3e%3cpath d='M68.7598 119.909L68.7598 117.602L66.4476 117.602L66.4476 119.909L68.7598 119.909Z' fill='%233C4145'/%3e%3cpath d='M68.7598 168.366L68.7598 166.058L66.4476 166.058L66.4476 168.366L68.7598 168.366Z' fill='%233C4145'/%3e%3cpath d='M68.7598 216.054L68.7598 213.746L66.4476 213.746L66.4476 216.054L68.7598 216.054Z' fill='%233C4145'/%3e%3cpath d='M68.7598 264.51L68.7598 262.203L66.4476 262.203L66.4476 264.51L68.7598 264.51Z' fill='%233C4145'/%3e%3cpath d='M68.7598 312.967L68.7598 310.66L66.4476 310.66L66.4476 312.967L68.7598 312.967Z' fill='%233C4145'/%3e%3cpath d='M68.7598 360.655L68.7598 358.348L66.4476 358.348L66.4476 360.655L68.7598 360.655Z' fill='%233C4145'/%3e%3cpath d='M68.7598 409.112L68.7598 406.805L66.4476 406.805L66.4476 409.112L68.7598 409.112Z' fill='%233C4145'/%3e%3cpath d='M68.7598 457.569L68.7598 455.261L66.4476 455.261L66.4476 457.569L68.7598 457.569Z' fill='%233C4145'/%3e%3cpath d='M68.7598 505.257L68.7598 502.949L66.4476 502.949L66.4476 505.257L68.7598 505.257Z' fill='%233C4145'/%3e%3cpath d='M68.7598 553.713L68.7598 551.406L66.4476 551.406L66.4476 553.713L68.7598 553.713Z' fill='%233C4145'/%3e%3cpath d='M20.9756 23.7644L20.9756 21.4569L18.6634 21.4569L18.6634 23.7644L20.9756 23.7644Z' fill='%233C4145'/%3e%3cpath d='M20.9756 71.4521L20.9756 69.1447L18.6634 69.1447L18.6634 71.4521L20.9756 71.4521Z' fill='%233C4145'/%3e%3cpath d='M20.9756 119.909L20.9756 117.602L18.6634 117.602L18.6634 119.909L20.9756 119.909Z' fill='%233C4145'/%3e%3cpath d='M20.9756 168.366L20.9756 166.058L18.6634 166.058L18.6634 168.366L20.9756 168.366Z' fill='%233C4145'/%3e%3cpath d='M20.9756 216.054L20.9756 213.746L18.6634 213.746L18.6634 216.054L20.9756 216.054Z' fill='%233C4145'/%3e%3cpath d='M20.9756 264.51L20.9756 262.203L18.6634 262.203L18.6634 264.51L20.9756 264.51Z' fill='%233C4145'/%3e%3cpath d='M20.9756 312.967L20.9756 310.66L18.6634 310.66L18.6634 312.967L20.9756 312.967Z' fill='%233C4145'/%3e%3cpath d='M20.9756 360.655L20.9756 358.348L18.6634 358.348L18.6634 360.655L20.9756 360.655Z' fill='%233C4145'/%3e%3cpath d='M20.9756 409.112L20.9756 406.805L18.6634 406.805L18.6634 409.112L20.9756 409.112Z' fill='%233C4145'/%3e%3cpath d='M20.9756 457.569L20.9756 455.261L18.6634 455.261L18.6634 457.569L20.9756 457.569Z' fill='%233C4145'/%3e%3cpath d='M20.9756 505.257L20.9756 502.949L18.6634 502.949L18.6634 505.257L20.9756 505.257Z' fill='%233C4145'/%3e%3cpath d='M20.9756 553.713L20.9756 551.406L18.6634 551.406L18.6634 553.713L20.9756 553.713Z' fill='%233C4145'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_103_7024'%3e%3crect width='360' height='579' fill='white'/%3e%3c/clipPath%3e%3cclipPath id='clip1_103_7024'%3e%3crect width='803' height='558' fill='white' transform='translate(552 -27) rotate(90)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
  }
  .quote__body {
    margin: 0;
    padding: 0.75rem 1rem;
    flex-direction: column;
  }
  .quote__text-content {
    font-size: 1.125rem;
  }
  .quote__text-author {
    margin-top: 1.25rem;
  }
  .quote__text-author-name {
    font-size: 1.125rem;
  }
  .quote__text-author-role {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 130%;
  }
  .quote__eng {
    margin: 0;
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  .quote__eng-title {
    width: 100%;
    font-size: 1.5rem;
  }
  .quote__eng-title br {
    display: none;
  }
  .quote__eng-info-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}
.solution-block {
  margin: 5rem 0;
}
.solution-block__title {
  margin-bottom: 2.5rem;
}
.solution-block__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.solution-block__cards-item {
  padding: 2rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 25rem;
  transition: 0.3s;
}
.solution-block__cards-item.text-white {
  color: #fff;
}
.solution-block__cards-item-btn {
  margin-top: auto;
}
.solution-block__cards-item.is-orange {
  background: #FFA52F;
}
.solution-block__cards-item.is-orange:hover {
  background: #FDC266;
}
.solution-block__cards-item.is-pink {
  background: #D66788;
}
.solution-block__cards-item.is-pink:hover {
  background: #DCBBC4;
}
.solution-block__cards-item.is-blue {
  background: #519FBC;
}
.solution-block__cards-item.is-blue:hover {
  background: #87C5DE;
}
.solution-block__cards-item.is-purple {
  background: #7B4DB3;
}
.solution-block__cards-item.is-purple:hover {
  background: #A487C9;
}

.solution-hero {
  padding: 4rem 10% 3rem;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1898' height='534' viewBox='0 0 1898 534' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg opacity='0.5'%3e%3cg clip-path='url(%23clip0_106_20642)'%3e%3cpath d='M2.91699 0H-0.0830078V3H2.91699V0Z' fill='white'/%3e%3cpath d='M59.9199 0H56.9199V3H59.9199V0Z' fill='white'/%3e%3cpath d='M114.924 0H111.924V3H114.924V0Z' fill='white'/%3e%3cpath d='M171.927 0H168.927V3H171.927V0Z' fill='white'/%3e%3cpath d='M227.93 0H224.93V3H227.93V0Z' fill='white'/%3e%3cpath d='M283.934 0H280.934V3H283.934V0Z' fill='white'/%3e%3cpath d='M339.937 0H336.937V3H339.937V0Z' fill='white'/%3e%3cpath d='M396.94 0H393.94V3H396.94V0Z' fill='white'/%3e%3cpath d='M452.943 0H449.943V3H452.943V0Z' fill='white'/%3e%3cpath d='M508.946 0H505.946V3H508.946V0Z' fill='white'/%3e%3cpath d='M565.95 0H562.95V3H565.95V0Z' fill='white'/%3e%3cpath d='M620.953 0H617.953V3H620.953V0Z' fill='white'/%3e%3cpath d='M677.956 0H674.956V3H677.956V0Z' fill='white'/%3e%3cpath d='M733.96 0H730.96V3H733.96V0Z' fill='white'/%3e%3cpath d='M789.963 0H786.963V3H789.963V0Z' fill='white'/%3e%3cpath d='M846.967 0H843.967V3H846.967V0Z' fill='white'/%3e%3cpath d='M901.97 0H898.97V3H901.97V0Z' fill='white'/%3e%3cpath d='M2.91699 57H-0.0830078V60H2.91699V57Z' fill='white'/%3e%3cpath d='M59.9199 57H56.9199V60H59.9199V57Z' fill='white'/%3e%3cpath d='M114.924 57H111.924V60H114.924V57Z' fill='white'/%3e%3cpath d='M171.927 57H168.927V60H171.927V57Z' fill='white'/%3e%3cpath d='M227.93 57H224.93V60H227.93V57Z' fill='white'/%3e%3cpath d='M283.934 57H280.934V60H283.934V57Z' fill='white'/%3e%3cpath d='M339.937 57H336.937V60H339.937V57Z' fill='white'/%3e%3cpath d='M396.94 57H393.94V60H396.94V57Z' fill='white'/%3e%3cpath d='M452.943 57H449.943V60H452.943V57Z' fill='white'/%3e%3cpath d='M508.946 57H505.946V60H508.946V57Z' fill='white'/%3e%3cpath d='M565.95 57H562.95V60H565.95V57Z' fill='white'/%3e%3cpath d='M620.953 57H617.953V60H620.953V57Z' fill='white'/%3e%3cpath d='M677.956 57H674.956V60H677.956V57Z' fill='white'/%3e%3cpath d='M733.96 57H730.96V60H733.96V57Z' fill='white'/%3e%3cpath d='M789.963 57H786.963V60H789.963V57Z' fill='white'/%3e%3cpath d='M846.967 57H843.967V60H846.967V57Z' fill='white'/%3e%3cpath d='M901.97 57H898.97V60H901.97V57Z' fill='white'/%3e%3cpath d='M2.91699 112H-0.0830078V115H2.91699V112Z' fill='white'/%3e%3cpath d='M59.9199 112H56.9199V115H59.9199V112Z' fill='white'/%3e%3cpath d='M114.924 112H111.924V115H114.924V112Z' fill='white'/%3e%3cpath d='M171.927 112H168.927V115H171.927V112Z' fill='white'/%3e%3cpath d='M227.93 112H224.93V115H227.93V112Z' fill='white'/%3e%3cpath d='M283.934 112H280.934V115H283.934V112Z' fill='white'/%3e%3cpath d='M339.937 112H336.937V115H339.937V112Z' fill='white'/%3e%3cpath d='M396.94 112H393.94V115H396.94V112Z' fill='white'/%3e%3cpath d='M452.943 112H449.943V115H452.943V112Z' fill='white'/%3e%3cpath d='M508.946 112H505.946V115H508.946V112Z' fill='white'/%3e%3cpath d='M565.95 112H562.95V115H565.95V112Z' fill='white'/%3e%3cpath d='M620.953 112H617.953V115H620.953V112Z' fill='white'/%3e%3cpath d='M677.956 112H674.956V115H677.956V112Z' fill='white'/%3e%3cpath d='M733.96 112H730.96V115H733.96V112Z' fill='white'/%3e%3cpath d='M789.963 112H786.963V115H789.963V112Z' fill='white'/%3e%3cpath d='M846.967 112H843.967V115H846.967V112Z' fill='white'/%3e%3cpath d='M901.97 112H898.97V115H901.97V112Z' fill='white'/%3e%3cpath d='M2.91699 169H-0.0830078V172H2.91699V169Z' fill='white'/%3e%3cpath d='M59.9199 169H56.9199V172H59.9199V169Z' fill='white'/%3e%3cpath d='M114.924 169H111.924V172H114.924V169Z' fill='white'/%3e%3cpath d='M171.927 169H168.927V172H171.927V169Z' fill='white'/%3e%3cpath d='M227.93 169H224.93V172H227.93V169Z' fill='white'/%3e%3cpath d='M283.934 169H280.934V172H283.934V169Z' fill='white'/%3e%3cpath d='M339.937 169H336.937V172H339.937V169Z' fill='white'/%3e%3cpath d='M396.94 169H393.94V172H396.94V169Z' fill='white'/%3e%3cpath d='M452.943 169H449.943V172H452.943V169Z' fill='white'/%3e%3cpath d='M508.946 169H505.946V172H508.946V169Z' fill='white'/%3e%3cpath d='M565.95 169H562.95V172H565.95V169Z' fill='white'/%3e%3cpath d='M620.953 169H617.953V172H620.953V169Z' fill='white'/%3e%3cpath d='M677.956 169H674.956V172H677.956V169Z' fill='white'/%3e%3cpath d='M733.96 169H730.96V172H733.96V169Z' fill='white'/%3e%3cpath d='M789.963 169H786.963V172H789.963V169Z' fill='white'/%3e%3cpath d='M846.967 169H843.967V172H846.967V169Z' fill='white'/%3e%3cpath d='M901.97 169H898.97V172H901.97V169Z' fill='white'/%3e%3cpath d='M2.91699 226H-0.0830078V229H2.91699V226Z' fill='white'/%3e%3cpath d='M59.9199 226H56.9199V229H59.9199V226Z' fill='white'/%3e%3cpath d='M114.924 226H111.924V229H114.924V226Z' fill='white'/%3e%3cpath d='M171.927 226H168.927V229H171.927V226Z' fill='white'/%3e%3cpath d='M227.93 226H224.93V229H227.93V226Z' fill='white'/%3e%3cpath d='M283.934 226H280.934V229H283.934V226Z' fill='white'/%3e%3cpath d='M339.937 226H336.937V229H339.937V226Z' fill='white'/%3e%3cpath d='M396.94 226H393.94V229H396.94V226Z' fill='white'/%3e%3cpath d='M452.943 226H449.943V229H452.943V226Z' fill='white'/%3e%3cpath d='M508.946 226H505.946V229H508.946V226Z' fill='white'/%3e%3cpath d='M565.95 226H562.95V229H565.95V226Z' fill='white'/%3e%3cpath d='M620.953 226H617.953V229H620.953V226Z' fill='white'/%3e%3cpath d='M677.956 226H674.956V229H677.956V226Z' fill='white'/%3e%3cpath d='M733.96 226H730.96V229H733.96V226Z' fill='white'/%3e%3cpath d='M789.963 226H786.963V229H789.963V226Z' fill='white'/%3e%3cpath d='M846.967 226H843.967V229H846.967V226Z' fill='white'/%3e%3cpath d='M901.97 226H898.97V229H901.97V226Z' fill='white'/%3e%3cpath d='M2.91699 281H-0.0830078V284H2.91699V281Z' fill='white'/%3e%3cpath d='M59.9199 281H56.9199V284H59.9199V281Z' fill='white'/%3e%3cpath d='M114.924 281H111.924V284H114.924V281Z' fill='white'/%3e%3cpath d='M171.927 281H168.927V284H171.927V281Z' fill='white'/%3e%3cpath d='M227.93 281H224.93V284H227.93V281Z' fill='white'/%3e%3cpath d='M283.934 281H280.934V284H283.934V281Z' fill='white'/%3e%3cpath d='M339.937 281H336.937V284H339.937V281Z' fill='white'/%3e%3cpath d='M396.94 281H393.94V284H396.94V281Z' fill='white'/%3e%3cpath d='M452.943 281H449.943V284H452.943V281Z' fill='white'/%3e%3cpath d='M508.946 281H505.946V284H508.946V281Z' fill='white'/%3e%3cpath d='M565.95 281H562.95V284H565.95V281Z' fill='white'/%3e%3cpath d='M620.953 281H617.953V284H620.953V281Z' fill='white'/%3e%3cpath d='M677.956 281H674.956V284H677.956V281Z' fill='white'/%3e%3cpath d='M733.96 281H730.96V284H733.96V281Z' fill='white'/%3e%3cpath d='M789.963 281H786.963V284H789.963V281Z' fill='white'/%3e%3cpath d='M846.967 281H843.967V284H846.967V281Z' fill='white'/%3e%3cpath d='M901.97 281H898.97V284H901.97V281Z' fill='white'/%3e%3cpath d='M2.91699 338H-0.0830078V341H2.91699V338Z' fill='white'/%3e%3cpath d='M59.9199 338H56.9199V341H59.9199V338Z' fill='white'/%3e%3cpath d='M114.924 338H111.924V341H114.924V338Z' fill='white'/%3e%3cpath d='M171.927 338H168.927V341H171.927V338Z' fill='white'/%3e%3cpath d='M227.93 338H224.93V341H227.93V338Z' fill='white'/%3e%3cpath d='M283.934 338H280.934V341H283.934V338Z' fill='white'/%3e%3cpath d='M339.937 338H336.937V341H339.937V338Z' fill='white'/%3e%3cpath d='M396.94 338H393.94V341H396.94V338Z' fill='white'/%3e%3cpath d='M452.943 338H449.943V341H452.943V338Z' fill='white'/%3e%3cpath d='M508.946 338H505.946V341H508.946V338Z' fill='white'/%3e%3cpath d='M565.95 338H562.95V341H565.95V338Z' fill='white'/%3e%3cpath d='M620.953 338H617.953V341H620.953V338Z' fill='white'/%3e%3cpath d='M677.956 338H674.956V341H677.956V338Z' fill='white'/%3e%3cpath d='M733.96 338H730.96V341H733.96V338Z' fill='white'/%3e%3cpath d='M789.963 338H786.963V341H789.963V338Z' fill='white'/%3e%3cpath d='M846.967 338H843.967V341H846.967V338Z' fill='white'/%3e%3cpath d='M901.97 338H898.97V341H901.97V338Z' fill='white'/%3e%3cpath d='M2.91699 395H-0.0830078V398H2.91699V395Z' fill='white'/%3e%3cpath d='M59.9199 395H56.9199V398H59.9199V395Z' fill='white'/%3e%3cpath d='M114.924 395H111.924V398H114.924V395Z' fill='white'/%3e%3cpath d='M171.927 395H168.927V398H171.927V395Z' fill='white'/%3e%3cpath d='M227.93 395H224.93V398H227.93V395Z' fill='white'/%3e%3cpath d='M283.934 395H280.934V398H283.934V395Z' fill='white'/%3e%3cpath d='M339.937 395H336.937V398H339.937V395Z' fill='white'/%3e%3cpath d='M396.94 395H393.94V398H396.94V395Z' fill='white'/%3e%3cpath d='M452.943 395H449.943V398H452.943V395Z' fill='white'/%3e%3cpath d='M508.946 395H505.946V398H508.946V395Z' fill='white'/%3e%3cpath d='M565.95 395H562.95V398H565.95V395Z' fill='white'/%3e%3cpath d='M620.953 395H617.953V398H620.953V395Z' fill='white'/%3e%3cpath d='M677.956 395H674.956V398H677.956V395Z' fill='white'/%3e%3cpath d='M733.96 395H730.96V398H733.96V395Z' fill='white'/%3e%3cpath d='M789.963 395H786.963V398H789.963V395Z' fill='white'/%3e%3cpath d='M846.967 395H843.967V398H846.967V395Z' fill='white'/%3e%3cpath d='M901.97 395H898.97V398H901.97V395Z' fill='white'/%3e%3cpath d='M2.91699 450H-0.0830078V453H2.91699V450Z' fill='white'/%3e%3cpath d='M59.9199 450H56.9199V453H59.9199V450Z' fill='white'/%3e%3cpath d='M114.924 450H111.924V453H114.924V450Z' fill='white'/%3e%3cpath d='M171.927 450H168.927V453H171.927V450Z' fill='white'/%3e%3cpath d='M227.93 450H224.93V453H227.93V450Z' fill='white'/%3e%3cpath d='M283.934 450H280.934V453H283.934V450Z' fill='white'/%3e%3cpath d='M339.937 450H336.937V453H339.937V450Z' fill='white'/%3e%3cpath d='M396.94 450H393.94V453H396.94V450Z' fill='white'/%3e%3cpath d='M452.943 450H449.943V453H452.943V450Z' fill='white'/%3e%3cpath d='M508.946 450H505.946V453H508.946V450Z' fill='white'/%3e%3cpath d='M565.95 450H562.95V453H565.95V450Z' fill='white'/%3e%3cpath d='M620.953 450H617.953V453H620.953V450Z' fill='white'/%3e%3cpath d='M677.956 450H674.956V453H677.956V450Z' fill='white'/%3e%3cpath d='M733.96 450H730.96V453H733.96V450Z' fill='white'/%3e%3cpath d='M789.963 450H786.963V453H789.963V450Z' fill='white'/%3e%3cpath d='M846.967 450H843.967V453H846.967V450Z' fill='white'/%3e%3cpath d='M901.97 450H898.97V453H901.97V450Z' fill='white'/%3e%3cpath d='M2.91699 507H-0.0830078V510H2.91699V507Z' fill='white'/%3e%3cpath d='M59.9199 507H56.9199V510H59.9199V507Z' fill='white'/%3e%3cpath d='M114.924 507H111.924V510H114.924V507Z' fill='white'/%3e%3cpath d='M171.927 507H168.927V510H171.927V507Z' fill='white'/%3e%3cpath d='M227.93 507H224.93V510H227.93V507Z' fill='white'/%3e%3cpath d='M283.934 507H280.934V510H283.934V507Z' fill='white'/%3e%3cpath d='M339.937 507H336.937V510H339.937V507Z' fill='white'/%3e%3cpath d='M396.94 507H393.94V510H396.94V507Z' fill='white'/%3e%3cpath d='M452.943 507H449.943V510H452.943V507Z' fill='white'/%3e%3cpath d='M508.946 507H505.946V510H508.946V507Z' fill='white'/%3e%3cpath d='M565.95 507H562.95V510H565.95V507Z' fill='white'/%3e%3cpath d='M620.953 507H617.953V510H620.953V507Z' fill='white'/%3e%3cpath d='M677.956 507H674.956V510H677.956V507Z' fill='white'/%3e%3cpath d='M733.96 507H730.96V510H733.96V507Z' fill='white'/%3e%3cpath d='M789.963 507H786.963V510H789.963V507Z' fill='white'/%3e%3cpath d='M846.967 507H843.967V510H846.967V507Z' fill='white'/%3e%3cpath d='M901.97 507H898.97V510H901.97V507Z' fill='white'/%3e%3c/g%3e%3cg clip-path='url(%23clip1_106_20642)'%3e%3cpath d='M951.973 0H948.973V3H951.973V0Z' fill='white'/%3e%3cpath d='M1007.98 0H1004.98V3H1007.98V0Z' fill='white'/%3e%3cpath d='M1063.98 0H1060.98V3H1063.98V0Z' fill='white'/%3e%3cpath d='M1119.98 0H1116.98V3H1119.98V0Z' fill='white'/%3e%3cpath d='M1176.99 0H1173.99V3H1176.99V0Z' fill='white'/%3e%3cpath d='M1231.99 0H1228.99V3H1231.99V0Z' fill='white'/%3e%3cpath d='M1288.99 0H1285.99V3H1288.99V0Z' fill='white'/%3e%3cpath d='M1346 0H1343V3H1346V0Z' fill='white'/%3e%3cpath d='M1401 0H1398V3H1401V0Z' fill='white'/%3e%3cpath d='M1458 0H1455V3H1458V0Z' fill='white'/%3e%3cpath d='M1514.01 0H1511.01V3H1514.01V0Z' fill='white'/%3e%3cpath d='M1570.01 0H1567.01V3H1570.01V0Z' fill='white'/%3e%3cpath d='M1626.01 0H1623.01V3H1626.01V0Z' fill='white'/%3e%3cpath d='M1683.02 0H1680.02V3H1683.02V0Z' fill='white'/%3e%3cpath d='M1739.02 0H1736.02V3H1739.02V0Z' fill='white'/%3e%3cpath d='M1795.02 0H1792.02V3H1795.02V0Z' fill='white'/%3e%3cpath d='M1851.03 0H1848.03V3H1851.03V0Z' fill='white'/%3e%3cpath d='M951.973 57H948.973V60H951.973V57Z' fill='white'/%3e%3cpath d='M1007.98 57H1004.98V60H1007.98V57Z' fill='white'/%3e%3cpath d='M1063.98 57H1060.98V60H1063.98V57Z' fill='white'/%3e%3cpath d='M1119.98 57H1116.98V60H1119.98V57Z' fill='white'/%3e%3cpath d='M1176.99 57H1173.99V60H1176.99V57Z' fill='white'/%3e%3cpath d='M1231.99 57H1228.99V60H1231.99V57Z' fill='white'/%3e%3cpath d='M1288.99 57H1285.99V60H1288.99V57Z' fill='white'/%3e%3cpath d='M1346 57H1343V60H1346V57Z' fill='white'/%3e%3cpath d='M1401 57H1398V60H1401V57Z' fill='white'/%3e%3cpath d='M1458 57H1455V60H1458V57Z' fill='white'/%3e%3cpath d='M1514.01 57H1511.01V60H1514.01V57Z' fill='white'/%3e%3cpath d='M1570.01 57H1567.01V60H1570.01V57Z' fill='white'/%3e%3cpath d='M1626.01 57H1623.01V60H1626.01V57Z' fill='white'/%3e%3cpath d='M1683.02 57H1680.02V60H1683.02V57Z' fill='white'/%3e%3cpath d='M1739.02 57H1736.02V60H1739.02V57Z' fill='white'/%3e%3cpath d='M1795.02 57H1792.02V60H1795.02V57Z' fill='white'/%3e%3cpath d='M1851.03 57H1848.03V60H1851.03V57Z' fill='white'/%3e%3cpath d='M951.973 112H948.973V115H951.973V112Z' fill='white'/%3e%3cpath d='M1007.98 112H1004.98V115H1007.98V112Z' fill='white'/%3e%3cpath d='M1063.98 112H1060.98V115H1063.98V112Z' fill='white'/%3e%3cpath d='M1119.98 112H1116.98V115H1119.98V112Z' fill='white'/%3e%3cpath d='M1176.99 112H1173.99V115H1176.99V112Z' fill='white'/%3e%3cpath d='M1231.99 112H1228.99V115H1231.99V112Z' fill='white'/%3e%3cpath d='M1288.99 112H1285.99V115H1288.99V112Z' fill='white'/%3e%3cpath d='M1346 112H1343V115H1346V112Z' fill='white'/%3e%3cpath d='M1401 112H1398V115H1401V112Z' fill='white'/%3e%3cpath d='M1458 112H1455V115H1458V112Z' fill='white'/%3e%3cpath d='M1514.01 112H1511.01V115H1514.01V112Z' fill='white'/%3e%3cpath d='M1570.01 112H1567.01V115H1570.01V112Z' fill='white'/%3e%3cpath d='M1626.01 112H1623.01V115H1626.01V112Z' fill='white'/%3e%3cpath d='M1683.02 112H1680.02V115H1683.02V112Z' fill='white'/%3e%3cpath d='M1739.02 112H1736.02V115H1739.02V112Z' fill='white'/%3e%3cpath d='M1795.02 112H1792.02V115H1795.02V112Z' fill='white'/%3e%3cpath d='M1851.03 112H1848.03V115H1851.03V112Z' fill='white'/%3e%3cpath d='M951.973 169H948.973V172H951.973V169Z' fill='white'/%3e%3cpath d='M1007.98 169H1004.98V172H1007.98V169Z' fill='white'/%3e%3cpath d='M1063.98 169H1060.98V172H1063.98V169Z' fill='white'/%3e%3cpath d='M1119.98 169H1116.98V172H1119.98V169Z' fill='white'/%3e%3cpath d='M1176.99 169H1173.99V172H1176.99V169Z' fill='white'/%3e%3cpath d='M1231.99 169H1228.99V172H1231.99V169Z' fill='white'/%3e%3cpath d='M1288.99 169H1285.99V172H1288.99V169Z' fill='white'/%3e%3cpath d='M1346 169H1343V172H1346V169Z' fill='white'/%3e%3cpath d='M1401 169H1398V172H1401V169Z' fill='white'/%3e%3cpath d='M1458 169H1455V172H1458V169Z' fill='white'/%3e%3cpath d='M1514.01 169H1511.01V172H1514.01V169Z' fill='white'/%3e%3cpath d='M1570.01 169H1567.01V172H1570.01V169Z' fill='white'/%3e%3cpath d='M1626.01 169H1623.01V172H1626.01V169Z' fill='white'/%3e%3cpath d='M1683.02 169H1680.02V172H1683.02V169Z' fill='white'/%3e%3cpath d='M1739.02 169H1736.02V172H1739.02V169Z' fill='white'/%3e%3cpath d='M1795.02 169H1792.02V172H1795.02V169Z' fill='white'/%3e%3cpath d='M1851.03 169H1848.03V172H1851.03V169Z' fill='white'/%3e%3cpath d='M951.973 226H948.973V229H951.973V226Z' fill='white'/%3e%3cpath d='M1007.98 226H1004.98V229H1007.98V226Z' fill='white'/%3e%3cpath d='M1063.98 226H1060.98V229H1063.98V226Z' fill='white'/%3e%3cpath d='M1119.98 226H1116.98V229H1119.98V226Z' fill='white'/%3e%3cpath d='M1176.99 226H1173.99V229H1176.99V226Z' fill='white'/%3e%3cpath d='M1231.99 226H1228.99V229H1231.99V226Z' fill='white'/%3e%3cpath d='M1288.99 226H1285.99V229H1288.99V226Z' fill='white'/%3e%3cpath d='M1346 226H1343V229H1346V226Z' fill='white'/%3e%3cpath d='M1401 226H1398V229H1401V226Z' fill='white'/%3e%3cpath d='M1458 226H1455V229H1458V226Z' fill='white'/%3e%3cpath d='M1514.01 226H1511.01V229H1514.01V226Z' fill='white'/%3e%3cpath d='M1570.01 226H1567.01V229H1570.01V226Z' fill='white'/%3e%3cpath d='M1626.01 226H1623.01V229H1626.01V226Z' fill='white'/%3e%3cpath d='M1683.02 226H1680.02V229H1683.02V226Z' fill='white'/%3e%3cpath d='M1739.02 226H1736.02V229H1739.02V226Z' fill='white'/%3e%3cpath d='M1795.02 226H1792.02V229H1795.02V226Z' fill='white'/%3e%3cpath d='M1851.03 226H1848.03V229H1851.03V226Z' fill='white'/%3e%3cpath d='M951.973 281H948.973V284H951.973V281Z' fill='white'/%3e%3cpath d='M1007.98 281H1004.98V284H1007.98V281Z' fill='white'/%3e%3cpath d='M1063.98 281H1060.98V284H1063.98V281Z' fill='white'/%3e%3cpath d='M1119.98 281H1116.98V284H1119.98V281Z' fill='white'/%3e%3cpath d='M1176.99 281H1173.99V284H1176.99V281Z' fill='white'/%3e%3cpath d='M1231.99 281H1228.99V284H1231.99V281Z' fill='white'/%3e%3cpath d='M1288.99 281H1285.99V284H1288.99V281Z' fill='white'/%3e%3cpath d='M1346 281H1343V284H1346V281Z' fill='white'/%3e%3cpath d='M1401 281H1398V284H1401V281Z' fill='white'/%3e%3cpath d='M1458 281H1455V284H1458V281Z' fill='white'/%3e%3cpath d='M1514.01 281H1511.01V284H1514.01V281Z' fill='white'/%3e%3cpath d='M1570.01 281H1567.01V284H1570.01V281Z' fill='white'/%3e%3cpath d='M1626.01 281H1623.01V284H1626.01V281Z' fill='white'/%3e%3cpath d='M1683.02 281H1680.02V284H1683.02V281Z' fill='white'/%3e%3cpath d='M1739.02 281H1736.02V284H1739.02V281Z' fill='white'/%3e%3cpath d='M1795.02 281H1792.02V284H1795.02V281Z' fill='white'/%3e%3cpath d='M1851.03 281H1848.03V284H1851.03V281Z' fill='white'/%3e%3cpath d='M951.973 338H948.973V341H951.973V338Z' fill='white'/%3e%3cpath d='M1007.98 338H1004.98V341H1007.98V338Z' fill='white'/%3e%3cpath d='M1063.98 338H1060.98V341H1063.98V338Z' fill='white'/%3e%3cpath d='M1119.98 338H1116.98V341H1119.98V338Z' fill='white'/%3e%3cpath d='M1176.99 338H1173.99V341H1176.99V338Z' fill='white'/%3e%3cpath d='M1231.99 338H1228.99V341H1231.99V338Z' fill='white'/%3e%3cpath d='M1288.99 338H1285.99V341H1288.99V338Z' fill='white'/%3e%3cpath d='M1346 338H1343V341H1346V338Z' fill='white'/%3e%3cpath d='M1401 338H1398V341H1401V338Z' fill='white'/%3e%3cpath d='M1458 338H1455V341H1458V338Z' fill='white'/%3e%3cpath d='M1514.01 338H1511.01V341H1514.01V338Z' fill='white'/%3e%3cpath d='M1570.01 338H1567.01V341H1570.01V338Z' fill='white'/%3e%3cpath d='M1626.01 338H1623.01V341H1626.01V338Z' fill='white'/%3e%3cpath d='M1683.02 338H1680.02V341H1683.02V338Z' fill='white'/%3e%3cpath d='M1739.02 338H1736.02V341H1739.02V338Z' fill='white'/%3e%3cpath d='M1795.02 338H1792.02V341H1795.02V338Z' fill='white'/%3e%3cpath d='M1851.03 338H1848.03V341H1851.03V338Z' fill='white'/%3e%3cpath d='M951.973 395H948.973V398H951.973V395Z' fill='white'/%3e%3cpath d='M1007.98 395H1004.98V398H1007.98V395Z' fill='white'/%3e%3cpath d='M1063.98 395H1060.98V398H1063.98V395Z' fill='white'/%3e%3cpath d='M1119.98 395H1116.98V398H1119.98V395Z' fill='white'/%3e%3cpath d='M1176.99 395H1173.99V398H1176.99V395Z' fill='white'/%3e%3cpath d='M1231.99 395H1228.99V398H1231.99V395Z' fill='white'/%3e%3cpath d='M1288.99 395H1285.99V398H1288.99V395Z' fill='white'/%3e%3cpath d='M1346 395H1343V398H1346V395Z' fill='white'/%3e%3cpath d='M1401 395H1398V398H1401V395Z' fill='white'/%3e%3cpath d='M1458 395H1455V398H1458V395Z' fill='white'/%3e%3cpath d='M1514.01 395H1511.01V398H1514.01V395Z' fill='white'/%3e%3cpath d='M1570.01 395H1567.01V398H1570.01V395Z' fill='white'/%3e%3cpath d='M1626.01 395H1623.01V398H1626.01V395Z' fill='white'/%3e%3cpath d='M1683.02 395H1680.02V398H1683.02V395Z' fill='white'/%3e%3cpath d='M1739.02 395H1736.02V398H1739.02V395Z' fill='white'/%3e%3cpath d='M1795.02 395H1792.02V398H1795.02V395Z' fill='white'/%3e%3cpath d='M1851.03 395H1848.03V398H1851.03V395Z' fill='white'/%3e%3cpath d='M951.973 450H948.973V453H951.973V450Z' fill='white'/%3e%3cpath d='M1007.98 450H1004.98V453H1007.98V450Z' fill='white'/%3e%3cpath d='M1063.98 450H1060.98V453H1063.98V450Z' fill='white'/%3e%3cpath d='M1119.98 450H1116.98V453H1119.98V450Z' fill='white'/%3e%3cpath d='M1176.99 450H1173.99V453H1176.99V450Z' fill='white'/%3e%3cpath d='M1231.99 450H1228.99V453H1231.99V450Z' fill='white'/%3e%3cpath d='M1288.99 450H1285.99V453H1288.99V450Z' fill='white'/%3e%3cpath d='M1346 450H1343V453H1346V450Z' fill='white'/%3e%3cpath d='M1401 450H1398V453H1401V450Z' fill='white'/%3e%3cpath d='M1458 450H1455V453H1458V450Z' fill='white'/%3e%3cpath d='M1514.01 450H1511.01V453H1514.01V450Z' fill='white'/%3e%3cpath d='M1570.01 450H1567.01V453H1570.01V450Z' fill='white'/%3e%3cpath d='M1626.01 450H1623.01V453H1626.01V450Z' fill='white'/%3e%3cpath d='M1683.02 450H1680.02V453H1683.02V450Z' fill='white'/%3e%3cpath d='M1739.02 450H1736.02V453H1739.02V450Z' fill='white'/%3e%3cpath d='M1795.02 450H1792.02V453H1795.02V450Z' fill='white'/%3e%3cpath d='M1851.03 450H1848.03V453H1851.03V450Z' fill='white'/%3e%3cpath d='M951.973 507H948.973V510H951.973V507Z' fill='white'/%3e%3cpath d='M1007.98 507H1004.98V510H1007.98V507Z' fill='white'/%3e%3cpath d='M1063.98 507H1060.98V510H1063.98V507Z' fill='white'/%3e%3cpath d='M1119.98 507H1116.98V510H1119.98V507Z' fill='white'/%3e%3cpath d='M1176.99 507H1173.99V510H1176.99V507Z' fill='white'/%3e%3cpath d='M1231.99 507H1228.99V510H1231.99V507Z' fill='white'/%3e%3cpath d='M1288.99 507H1285.99V510H1288.99V507Z' fill='white'/%3e%3cpath d='M1346 507H1343V510H1346V507Z' fill='white'/%3e%3cpath d='M1401 507H1398V510H1401V507Z' fill='white'/%3e%3cpath d='M1458 507H1455V510H1458V507Z' fill='white'/%3e%3cpath d='M1514.01 507H1511.01V510H1514.01V507Z' fill='white'/%3e%3cpath d='M1570.01 507H1567.01V510H1570.01V507Z' fill='white'/%3e%3cpath d='M1626.01 507H1623.01V510H1626.01V507Z' fill='white'/%3e%3cpath d='M1683.02 507H1680.02V510H1683.02V507Z' fill='white'/%3e%3cpath d='M1739.02 507H1736.02V510H1739.02V507Z' fill='white'/%3e%3cpath d='M1795.02 507H1792.02V510H1795.02V507Z' fill='white'/%3e%3cpath d='M1851.03 507H1848.03V510H1851.03V507Z' fill='white'/%3e%3c/g%3e%3cg clip-path='url(%23clip2_106_20642)'%3e%3cpath d='M1900.03 0H1897.03V3H1900.03V0Z' fill='white'/%3e%3cpath d='M1900.03 57H1897.03V60H1900.03V57Z' fill='white'/%3e%3cpath d='M1900.03 112H1897.03V115H1900.03V112Z' fill='white'/%3e%3cpath d='M1900.03 169H1897.03V172H1900.03V169Z' fill='white'/%3e%3cpath d='M1900.03 226H1897.03V229H1900.03V226Z' fill='white'/%3e%3cpath d='M1900.03 281H1897.03V284H1900.03V281Z' fill='white'/%3e%3cpath d='M1900.03 338H1897.03V341H1900.03V338Z' fill='white'/%3e%3cpath d='M1900.03 395H1897.03V398H1900.03V395Z' fill='white'/%3e%3cpath d='M1900.03 450H1897.03V453H1900.03V450Z' fill='white'/%3e%3cpath d='M1900.03 507H1897.03V510H1900.03V507Z' fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_106_20642'%3e%3crect width='936.888' height='651' fill='white'/%3e%3c/clipPath%3e%3cclipPath id='clip1_106_20642'%3e%3crect width='936.888' height='651' fill='white' transform='translate(948.557)'/%3e%3c/clipPath%3e%3cclipPath id='clip2_106_20642'%3e%3crect width='936.888' height='651' fill='white' transform='translate(1897.11)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
  background-color: #3B4145;
}
.solution-hero.is-rose {
  background-color: #D66788;
}
.solution-hero.is-rose .solution-hero__info {
  background-color: #D66788;
}
.solution-hero.is-rose .solution-hero__title {
  color: #3C4145;
}
.solution-hero__content {
  display: grid;
  grid-template-columns: 40% 40%;
  gap: 7.5rem;
  position: relative;
}
.solution-hero__info {
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.25rem 1.5rem;
  background: #3B4145;
}
.solution-hero__title {
  color: #fff;
}
.solution-hero__btn {
  margin-top: 3.75rem;
}
.solution-hero__img {
  width: 70%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 0% 100%);
  overflow: hidden;
}
.solution-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .solution-block {
    margin: 3.75rem 0;
  }
  .solution-block__title {
    margin-bottom: 1.5rem;
  }
  .solution-block__cards {
    grid-template-columns: 1fr;
  }
  .solution-block__cards-item {
    padding: 2rem 1.25rem;
    gap: 0.75rem;
    min-height: unset;
  }
  .solution-hero {
    padding: 4rem 0 10rem;
  }
  .solution-hero__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .solution-hero__info {
    padding: 2rem 1.25rem;
  }
  .solution-hero__btn {
    margin-top: 2.5rem;
  }
  .solution-hero__img {
    display: none;
  }
}
.cta {
  margin: 8rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1898' height='380' viewBox='0 0 1898 380' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_103_6809)'%3e%3cpath d='M2.59221 0H0.034668V2.56273H2.59221V0Z' fill='%233C4145'/%3e%3cpath d='M33.3141 0H30.7566V2.56273H33.3141V0Z' fill='%233C4145'/%3e%3cpath d='M64.0356 0H61.478V2.56273H64.0356V0Z' fill='%233C4145'/%3e%3cpath d='M95.3974 0H92.8398V2.56273H95.3974V0Z' fill='%233C4145'/%3e%3cpath d='M126.119 0H123.562V2.56273H126.119V0Z' fill='%233C4145'/%3e%3cpath d='M156.841 0H154.283V2.56273H156.841V0Z' fill='%233C4145'/%3e%3cpath d='M187.562 0H185.005V2.56273H187.562V0Z' fill='%233C4145'/%3e%3cpath d='M218.924 0H216.366V2.56273H218.924V0Z' fill='%233C4145'/%3e%3cpath d='M249.006 0H246.448V2.56273H249.006V0Z' fill='%233C4145'/%3e%3cpath d='M280.367 0H277.809V2.56273H280.367V0Z' fill='%233C4145'/%3e%3cpath d='M311.089 0H308.531V2.56273H311.089V0Z' fill='%233C4145'/%3e%3cpath d='M341.81 0H339.253V2.56273H341.81V0Z' fill='%233C4145'/%3e%3cpath d='M372.532 0H369.974V2.56273H372.532V0Z' fill='%233C4145'/%3e%3cpath d='M403.893 0H401.335V2.56273H403.893V0Z' fill='%233C4145'/%3e%3cpath d='M434.615 0H432.058V2.56273H434.615V0Z' fill='%233C4145'/%3e%3cpath d='M465.336 0H462.779V2.56273H465.336V0Z' fill='%233C4145'/%3e%3cpath d='M496.058 0H493.501V2.56273H496.058V0Z' fill='%233C4145'/%3e%3cpath d='M2.59221 31.3611H0.034668V33.9238H2.59221V31.3611Z' fill='%233C4145'/%3e%3cpath d='M33.3141 31.3611H30.7566V33.9238H33.3141V31.3611Z' fill='%233C4145'/%3e%3cpath d='M64.0356 31.3611H61.478V33.9238H64.0356V31.3611Z' fill='%233C4145'/%3e%3cpath d='M95.3974 31.3611H92.8398V33.9238H95.3974V31.3611Z' fill='%233C4145'/%3e%3cpath d='M126.119 31.3611H123.562V33.9238H126.119V31.3611Z' fill='%233C4145'/%3e%3cpath d='M156.841 31.3611H154.283V33.9238H156.841V31.3611Z' fill='%233C4145'/%3e%3cpath d='M187.562 31.3611H185.005V33.9238H187.562V31.3611Z' fill='%233C4145'/%3e%3cpath d='M218.924 31.3611H216.366V33.9238H218.924V31.3611Z' fill='%233C4145'/%3e%3cpath d='M249.006 31.3611H246.448V33.9238H249.006V31.3611Z' fill='%233C4145'/%3e%3cpath d='M280.367 31.3611H277.809V33.9238H280.367V31.3611Z' fill='%233C4145'/%3e%3cpath d='M311.089 31.3611H308.531V33.9238H311.089V31.3611Z' fill='%233C4145'/%3e%3cpath d='M341.81 31.3611H339.253V33.9238H341.81V31.3611Z' fill='%233C4145'/%3e%3cpath d='M372.532 31.3611H369.974V33.9238H372.532V31.3611Z' fill='%233C4145'/%3e%3cpath d='M403.893 31.3611H401.335V33.9238H403.893V31.3611Z' fill='%233C4145'/%3e%3cpath d='M434.615 31.3611H432.058V33.9238H434.615V31.3611Z' fill='%233C4145'/%3e%3cpath d='M465.336 31.3611H462.779V33.9238H465.336V31.3611Z' fill='%233C4145'/%3e%3cpath d='M496.058 31.3611H493.501V33.9238H496.058V31.3611Z' fill='%233C4145'/%3e%3cpath d='M2.59221 61.4429H0.034668V64.0056H2.59221V61.4429Z' fill='%233C4145'/%3e%3cpath d='M33.3141 61.4429H30.7566V64.0056H33.3141V61.4429Z' fill='%233C4145'/%3e%3cpath d='M64.0356 61.4429H61.478V64.0056H64.0356V61.4429Z' fill='%233C4145'/%3e%3cpath d='M95.3974 61.4429H92.8398V64.0056H95.3974V61.4429Z' fill='%233C4145'/%3e%3cpath d='M126.119 61.4429H123.562V64.0056H126.119V61.4429Z' fill='%233C4145'/%3e%3cpath d='M156.841 61.4429H154.283V64.0056H156.841V61.4429Z' fill='%233C4145'/%3e%3cpath d='M187.562 61.4429H185.005V64.0056H187.562V61.4429Z' fill='%233C4145'/%3e%3cpath d='M218.924 61.4429H216.366V64.0056H218.924V61.4429Z' fill='%233C4145'/%3e%3cpath d='M249.006 61.4429H246.448V64.0056H249.006V61.4429Z' fill='%233C4145'/%3e%3cpath d='M280.367 61.4429H277.809V64.0056H280.367V61.4429Z' fill='%233C4145'/%3e%3cpath d='M311.089 61.4429H308.531V64.0056H311.089V61.4429Z' fill='%233C4145'/%3e%3cpath d='M341.81 61.4429H339.253V64.0056H341.81V61.4429Z' fill='%233C4145'/%3e%3cpath d='M372.532 61.4429H369.974V64.0056H372.532V61.4429Z' fill='%233C4145'/%3e%3cpath d='M403.893 61.4429H401.335V64.0056H403.893V61.4429Z' fill='%233C4145'/%3e%3cpath d='M434.615 61.4429H432.058V64.0056H434.615V61.4429Z' fill='%233C4145'/%3e%3cpath d='M465.336 61.4429H462.779V64.0056H465.336V61.4429Z' fill='%233C4145'/%3e%3cpath d='M496.058 61.4429H493.501V64.0056H496.058V61.4429Z' fill='%233C4145'/%3e%3cpath d='M2.59221 92.8047H0.034668V95.3674H2.59221V92.8047Z' fill='%233C4145'/%3e%3cpath d='M33.3141 92.8047H30.7566V95.3674H33.3141V92.8047Z' fill='%233C4145'/%3e%3cpath d='M64.0356 92.8047H61.478V95.3674H64.0356V92.8047Z' fill='%233C4145'/%3e%3cpath d='M95.3974 92.8047H92.8398V95.3674H95.3974V92.8047Z' fill='%233C4145'/%3e%3cpath d='M126.119 92.8047H123.562V95.3674H126.119V92.8047Z' fill='%233C4145'/%3e%3cpath d='M156.841 92.8047H154.283V95.3674H156.841V92.8047Z' fill='%233C4145'/%3e%3cpath d='M187.562 92.8047H185.005V95.3674H187.562V92.8047Z' fill='%233C4145'/%3e%3cpath d='M218.924 92.8047H216.366V95.3674H218.924V92.8047Z' fill='%233C4145'/%3e%3cpath d='M249.006 92.8047H246.448V95.3674H249.006V92.8047Z' fill='%233C4145'/%3e%3cpath d='M280.367 92.8047H277.809V95.3674H280.367V92.8047Z' fill='%233C4145'/%3e%3cpath d='M311.089 92.8047H308.531V95.3674H311.089V92.8047Z' fill='%233C4145'/%3e%3cpath d='M341.81 92.8047H339.253V95.3674H341.81V92.8047Z' fill='%233C4145'/%3e%3cpath d='M372.532 92.8047H369.974V95.3674H372.532V92.8047Z' fill='%233C4145'/%3e%3cpath d='M403.893 92.8047H401.335V95.3674H403.893V92.8047Z' fill='%233C4145'/%3e%3cpath d='M434.615 92.8047H432.058V95.3674H434.615V92.8047Z' fill='%233C4145'/%3e%3cpath d='M465.336 92.8047H462.779V95.3674H465.336V92.8047Z' fill='%233C4145'/%3e%3cpath d='M496.058 92.8047H493.501V95.3674H496.058V92.8047Z' fill='%233C4145'/%3e%3cpath d='M2.59221 123.526H0.034668V126.089H2.59221V123.526Z' fill='%233C4145'/%3e%3cpath d='M33.3141 123.526H30.7566V126.089H33.3141V123.526Z' fill='%233C4145'/%3e%3cpath d='M64.0356 123.526H61.478V126.089H64.0356V123.526Z' fill='%233C4145'/%3e%3cpath d='M95.3974 123.526H92.8398V126.089H95.3974V123.526Z' fill='%233C4145'/%3e%3cpath d='M126.119 123.526H123.562V126.089H126.119V123.526Z' fill='%233C4145'/%3e%3cpath d='M156.841 123.526H154.283V126.089H156.841V123.526Z' fill='%233C4145'/%3e%3cpath d='M187.562 123.526H185.005V126.089H187.562V123.526Z' fill='%233C4145'/%3e%3cpath d='M218.924 123.526H216.366V126.089H218.924V123.526Z' fill='%233C4145'/%3e%3cpath d='M249.006 123.526H246.448V126.089H249.006V123.526Z' fill='%233C4145'/%3e%3cpath d='M280.367 123.526H277.809V126.089H280.367V123.526Z' fill='%233C4145'/%3e%3cpath d='M311.089 123.526H308.531V126.089H311.089V123.526Z' fill='%233C4145'/%3e%3cpath d='M341.81 123.526H339.253V126.089H341.81V123.526Z' fill='%233C4145'/%3e%3cpath d='M372.532 123.526H369.974V126.089H372.532V123.526Z' fill='%233C4145'/%3e%3cpath d='M403.893 123.526H401.335V126.089H403.893V123.526Z' fill='%233C4145'/%3e%3cpath d='M434.615 123.526H432.058V126.089H434.615V123.526Z' fill='%233C4145'/%3e%3cpath d='M465.336 123.526H462.779V126.089H465.336V123.526Z' fill='%233C4145'/%3e%3cpath d='M496.058 123.526H493.501V126.089H496.058V123.526Z' fill='%233C4145'/%3e%3cpath d='M2.59221 154.248H0.034668V156.81H2.59221V154.248Z' fill='%233C4145'/%3e%3cpath d='M33.3141 154.248H30.7566V156.81H33.3141V154.248Z' fill='%233C4145'/%3e%3cpath d='M64.0356 154.248H61.478V156.81H64.0356V154.248Z' fill='%233C4145'/%3e%3cpath d='M95.3974 154.248H92.8398V156.81H95.3974V154.248Z' fill='%233C4145'/%3e%3cpath d='M126.119 154.248H123.562V156.81H126.119V154.248Z' fill='%233C4145'/%3e%3cpath d='M156.841 154.248H154.283V156.81H156.841V154.248Z' fill='%233C4145'/%3e%3cpath d='M187.562 154.248H185.005V156.81H187.562V154.248Z' fill='%233C4145'/%3e%3cpath d='M218.924 154.248H216.366V156.81H218.924V154.248Z' fill='%233C4145'/%3e%3cpath d='M249.006 154.248H246.448V156.81H249.006V154.248Z' fill='%233C4145'/%3e%3cpath d='M280.367 154.248H277.809V156.81H280.367V154.248Z' fill='%233C4145'/%3e%3cpath d='M311.089 154.248H308.531V156.81H311.089V154.248Z' fill='%233C4145'/%3e%3cpath d='M341.81 154.248H339.253V156.81H341.81V154.248Z' fill='%233C4145'/%3e%3cpath d='M372.532 154.248H369.974V156.81H372.532V154.248Z' fill='%233C4145'/%3e%3cpath d='M403.893 154.248H401.335V156.81H403.893V154.248Z' fill='%233C4145'/%3e%3cpath d='M434.615 154.248H432.058V156.81H434.615V154.248Z' fill='%233C4145'/%3e%3cpath d='M465.336 154.248H462.779V156.81H465.336V154.248Z' fill='%233C4145'/%3e%3cpath d='M496.058 154.248H493.501V156.81H496.058V154.248Z' fill='%233C4145'/%3e%3cpath d='M2.59221 185.61H0.034668V188.173H2.59221V185.61Z' fill='%233C4145'/%3e%3cpath d='M33.3141 185.61H30.7566V188.173H33.3141V185.61Z' fill='%233C4145'/%3e%3cpath d='M64.0356 185.61H61.478V188.173H64.0356V185.61Z' fill='%233C4145'/%3e%3cpath d='M95.3974 185.61H92.8398V188.173H95.3974V185.61Z' fill='%233C4145'/%3e%3cpath d='M126.119 185.61H123.562V188.173H126.119V185.61Z' fill='%233C4145'/%3e%3cpath d='M156.841 185.61H154.283V188.173H156.841V185.61Z' fill='%233C4145'/%3e%3cpath d='M187.562 185.61H185.005V188.173H187.562V185.61Z' fill='%233C4145'/%3e%3cpath d='M218.924 185.61H216.366V188.173H218.924V185.61Z' fill='%233C4145'/%3e%3cpath d='M249.006 185.61H246.448V188.173H249.006V185.61Z' fill='%233C4145'/%3e%3cpath d='M280.367 185.61H277.809V188.173H280.367V185.61Z' fill='%233C4145'/%3e%3cpath d='M311.089 185.61H308.531V188.173H311.089V185.61Z' fill='%233C4145'/%3e%3cpath d='M341.81 185.61H339.253V188.173H341.81V185.61Z' fill='%233C4145'/%3e%3cpath d='M372.532 185.61H369.974V188.173H372.532V185.61Z' fill='%233C4145'/%3e%3cpath d='M403.893 185.61H401.335V188.173H403.893V185.61Z' fill='%233C4145'/%3e%3cpath d='M434.615 185.61H432.058V188.173H434.615V185.61Z' fill='%233C4145'/%3e%3cpath d='M465.336 185.61H462.779V188.173H465.336V185.61Z' fill='%233C4145'/%3e%3cpath d='M496.058 185.61H493.501V188.173H496.058V185.61Z' fill='%233C4145'/%3e%3cpath d='M2.59221 216.331H0.034668V218.894H2.59221V216.331Z' fill='%233C4145'/%3e%3cpath d='M33.3141 216.331H30.7566V218.894H33.3141V216.331Z' fill='%233C4145'/%3e%3cpath d='M64.0356 216.331H61.478V218.894H64.0356V216.331Z' fill='%233C4145'/%3e%3cpath d='M95.3974 216.331H92.8398V218.894H95.3974V216.331Z' fill='%233C4145'/%3e%3cpath d='M126.119 216.331H123.562V218.894H126.119V216.331Z' fill='%233C4145'/%3e%3cpath d='M156.841 216.331H154.283V218.894H156.841V216.331Z' fill='%233C4145'/%3e%3cpath d='M187.562 216.331H185.005V218.894H187.562V216.331Z' fill='%233C4145'/%3e%3cpath d='M218.924 216.331H216.366V218.894H218.924V216.331Z' fill='%233C4145'/%3e%3cpath d='M249.006 216.331H246.448V218.894H249.006V216.331Z' fill='%233C4145'/%3e%3cpath d='M280.367 216.331H277.809V218.894H280.367V216.331Z' fill='%233C4145'/%3e%3cpath d='M311.089 216.331H308.531V218.894H311.089V216.331Z' fill='%233C4145'/%3e%3cpath d='M341.81 216.331H339.253V218.894H341.81V216.331Z' fill='%233C4145'/%3e%3cpath d='M372.532 216.331H369.974V218.894H372.532V216.331Z' fill='%233C4145'/%3e%3cpath d='M403.893 216.331H401.335V218.894H403.893V216.331Z' fill='%233C4145'/%3e%3cpath d='M434.615 216.331H432.058V218.894H434.615V216.331Z' fill='%233C4145'/%3e%3cpath d='M465.336 216.331H462.779V218.894H465.336V216.331Z' fill='%233C4145'/%3e%3cpath d='M496.058 216.331H493.501V218.894H496.058V216.331Z' fill='%233C4145'/%3e%3cpath d='M2.59221 247.053H0.034668V249.616H2.59221V247.053Z' fill='%233C4145'/%3e%3cpath d='M33.3141 247.053H30.7566V249.616H33.3141V247.053Z' fill='%233C4145'/%3e%3cpath d='M64.0356 247.053H61.478V249.616H64.0356V247.053Z' fill='%233C4145'/%3e%3cpath d='M95.3974 247.053H92.8398V249.616H95.3974V247.053Z' fill='%233C4145'/%3e%3cpath d='M126.119 247.053H123.562V249.616H126.119V247.053Z' fill='%233C4145'/%3e%3cpath d='M156.841 247.053H154.283V249.616H156.841V247.053Z' fill='%233C4145'/%3e%3cpath d='M187.562 247.053H185.005V249.616H187.562V247.053Z' fill='%233C4145'/%3e%3cpath d='M218.924 247.053H216.366V249.616H218.924V247.053Z' fill='%233C4145'/%3e%3cpath d='M249.006 247.053H246.448V249.616H249.006V247.053Z' fill='%233C4145'/%3e%3cpath d='M280.367 247.053H277.809V249.616H280.367V247.053Z' fill='%233C4145'/%3e%3cpath d='M311.089 247.053H308.531V249.616H311.089V247.053Z' fill='%233C4145'/%3e%3cpath d='M341.81 247.053H339.253V249.616H341.81V247.053Z' fill='%233C4145'/%3e%3cpath d='M372.532 247.053H369.974V249.616H372.532V247.053Z' fill='%233C4145'/%3e%3cpath d='M403.893 247.053H401.335V249.616H403.893V247.053Z' fill='%233C4145'/%3e%3cpath d='M434.615 247.053H432.058V249.616H434.615V247.053Z' fill='%233C4145'/%3e%3cpath d='M465.336 247.053H462.779V249.616H465.336V247.053Z' fill='%233C4145'/%3e%3cpath d='M496.058 247.053H493.501V249.616H496.058V247.053Z' fill='%233C4145'/%3e%3cpath d='M2.59221 278.415H0.034668V280.978H2.59221V278.415Z' fill='%233C4145'/%3e%3cpath d='M33.3141 278.415H30.7566V280.978H33.3141V278.415Z' fill='%233C4145'/%3e%3cpath d='M64.0356 278.415H61.478V280.978H64.0356V278.415Z' fill='%233C4145'/%3e%3cpath d='M95.3974 278.415H92.8398V280.978H95.3974V278.415Z' fill='%233C4145'/%3e%3cpath d='M126.119 278.415H123.562V280.978H126.119V278.415Z' fill='%233C4145'/%3e%3cpath d='M156.841 278.415H154.283V280.978H156.841V278.415Z' fill='%233C4145'/%3e%3cpath d='M187.562 278.415H185.005V280.978H187.562V278.415Z' fill='%233C4145'/%3e%3cpath d='M218.924 278.415H216.366V280.978H218.924V278.415Z' fill='%233C4145'/%3e%3cpath d='M249.006 278.415H246.448V280.978H249.006V278.415Z' fill='%233C4145'/%3e%3cpath d='M280.367 278.415H277.809V280.978H280.367V278.415Z' fill='%233C4145'/%3e%3cpath d='M311.089 278.415H308.531V280.978H311.089V278.415Z' fill='%233C4145'/%3e%3cpath d='M341.81 278.415H339.253V280.978H341.81V278.415Z' fill='%233C4145'/%3e%3cpath d='M372.532 278.415H369.974V280.978H372.532V278.415Z' fill='%233C4145'/%3e%3cpath d='M403.893 278.415H401.335V280.978H403.893V278.415Z' fill='%233C4145'/%3e%3cpath d='M434.615 278.415H432.058V280.978H434.615V278.415Z' fill='%233C4145'/%3e%3cpath d='M465.336 278.415H462.779V280.978H465.336V278.415Z' fill='%233C4145'/%3e%3cpath d='M496.058 278.415H493.501V280.978H496.058V278.415Z' fill='%233C4145'/%3e%3cpath d='M2.59221 309.136H0.034668V311.699H2.59221V309.136Z' fill='%233C4145'/%3e%3cpath d='M33.3141 309.136H30.7566V311.699H33.3141V309.136Z' fill='%233C4145'/%3e%3cpath d='M64.0356 309.136H61.478V311.699H64.0356V309.136Z' fill='%233C4145'/%3e%3cpath d='M95.3974 309.136H92.8398V311.699H95.3974V309.136Z' fill='%233C4145'/%3e%3cpath d='M126.119 309.136H123.562V311.699H126.119V309.136Z' fill='%233C4145'/%3e%3cpath d='M156.841 309.136H154.283V311.699H156.841V309.136Z' fill='%233C4145'/%3e%3cpath d='M187.562 309.136H185.005V311.699H187.562V309.136Z' fill='%233C4145'/%3e%3cpath d='M218.924 309.136H216.366V311.699H218.924V309.136Z' fill='%233C4145'/%3e%3cpath d='M249.006 309.136H246.448V311.699H249.006V309.136Z' fill='%233C4145'/%3e%3cpath d='M280.367 309.136H277.809V311.699H280.367V309.136Z' fill='%233C4145'/%3e%3cpath d='M311.089 309.136H308.531V311.699H311.089V309.136Z' fill='%233C4145'/%3e%3cpath d='M341.81 309.136H339.253V311.699H341.81V309.136Z' fill='%233C4145'/%3e%3cpath d='M372.532 309.136H369.974V311.699H372.532V309.136Z' fill='%233C4145'/%3e%3cpath d='M403.893 309.136H401.335V311.699H403.893V309.136Z' fill='%233C4145'/%3e%3cpath d='M434.615 309.136H432.058V311.699H434.615V309.136Z' fill='%233C4145'/%3e%3cpath d='M465.336 309.136H462.779V311.699H465.336V309.136Z' fill='%233C4145'/%3e%3cpath d='M496.058 309.136H493.501V311.699H496.058V309.136Z' fill='%233C4145'/%3e%3cpath d='M2.59221 339.857H0.034668V342.42H2.59221V339.857Z' fill='%233C4145'/%3e%3cpath d='M33.3141 339.857H30.7566V342.42H33.3141V339.857Z' fill='%233C4145'/%3e%3cpath d='M64.0356 339.857H61.478V342.42H64.0356V339.857Z' fill='%233C4145'/%3e%3cpath d='M95.3974 339.857H92.8398V342.42H95.3974V339.857Z' fill='%233C4145'/%3e%3cpath d='M126.119 339.857H123.562V342.42H126.119V339.857Z' fill='%233C4145'/%3e%3cpath d='M156.841 339.857H154.283V342.42H156.841V339.857Z' fill='%233C4145'/%3e%3cpath d='M187.562 339.857H185.005V342.42H187.562V339.857Z' fill='%233C4145'/%3e%3cpath d='M218.924 339.857H216.366V342.42H218.924V339.857Z' fill='%233C4145'/%3e%3cpath d='M249.006 339.857H246.448V342.42H249.006V339.857Z' fill='%233C4145'/%3e%3cpath d='M280.367 339.857H277.809V342.42H280.367V339.857Z' fill='%233C4145'/%3e%3cpath d='M311.089 339.857H308.531V342.42H311.089V339.857Z' fill='%233C4145'/%3e%3cpath d='M341.81 339.857H339.253V342.42H341.81V339.857Z' fill='%233C4145'/%3e%3cpath d='M372.532 339.857H369.974V342.42H372.532V339.857Z' fill='%233C4145'/%3e%3cpath d='M403.893 339.857H401.335V342.42H403.893V339.857Z' fill='%233C4145'/%3e%3cpath d='M434.615 339.857H432.058V342.42H434.615V339.857Z' fill='%233C4145'/%3e%3cpath d='M465.336 339.857H462.779V342.42H465.336V339.857Z' fill='%233C4145'/%3e%3cpath d='M496.058 339.857H493.501V342.42H496.058V339.857Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip1_103_6809)'%3e%3cpath d='M2.55754 340H0V342.563H2.55754V340Z' fill='%233C4145'/%3e%3cpath d='M33.2826 340H30.7251V342.562H33.2826V340Z' fill='%233C4145'/%3e%3cpath d='M64.0072 340H61.4497V342.562H64.0072V340Z' fill='%233C4145'/%3e%3cpath d='M95.3722 340H92.8147V342.562H95.3722V340Z' fill='%233C4145'/%3e%3cpath d='M126.097 340H123.54V342.562H126.097V340Z' fill='%233C4145'/%3e%3cpath d='M156.822 340H154.264V342.562H156.822V340Z' fill='%233C4145'/%3e%3cpath d='M187.547 340H184.989V342.562H187.547V340Z' fill='%233C4145'/%3e%3cpath d='M218.912 340H216.354V342.562H218.912V340Z' fill='%233C4145'/%3e%3cpath d='M248.996 340H246.439V342.562H248.996V340Z' fill='%233C4145'/%3e%3cpath d='M280.361 340H277.803V342.562H280.361V340Z' fill='%233C4145'/%3e%3cpath d='M311.086 340H308.529V342.562H311.086V340Z' fill='%233C4145'/%3e%3cpath d='M341.811 340H339.253V342.562H341.811V340Z' fill='%233C4145'/%3e%3cpath d='M372.535 340H369.978V342.562H372.535V340Z' fill='%233C4145'/%3e%3cpath d='M403.9 340H401.342V342.562H403.9V340Z' fill='%233C4145'/%3e%3cpath d='M434.625 340H432.068V342.562H434.625V340Z' fill='%233C4145'/%3e%3cpath d='M465.35 340H462.792V342.562H465.35V340Z' fill='%233C4145'/%3e%3cpath d='M496.075 340H493.517V342.562H496.075V340Z' fill='%233C4145'/%3e%3cpath d='M2.55754 371.361H0V373.924H2.55754V371.361Z' fill='%233C4145'/%3e%3cpath d='M33.2826 371.361H30.7251V373.924H33.2826V371.361Z' fill='%233C4145'/%3e%3cpath d='M64.0072 371.361H61.4497V373.924H64.0072V371.361Z' fill='%233C4145'/%3e%3cpath d='M95.3722 371.361H92.8147V373.924H95.3722V371.361Z' fill='%233C4145'/%3e%3cpath d='M126.097 371.361H123.54V373.924H126.097V371.361Z' fill='%233C4145'/%3e%3cpath d='M156.822 371.361H154.264V373.924H156.822V371.361Z' fill='%233C4145'/%3e%3cpath d='M187.547 371.361H184.989V373.924H187.547V371.361Z' fill='%233C4145'/%3e%3cpath d='M218.912 371.361H216.354V373.924H218.912V371.361Z' fill='%233C4145'/%3e%3cpath d='M248.996 371.361H246.439V373.924H248.996V371.361Z' fill='%233C4145'/%3e%3cpath d='M280.361 371.361H277.803V373.924H280.361V371.361Z' fill='%233C4145'/%3e%3cpath d='M311.086 371.361H308.529V373.924H311.086V371.361Z' fill='%233C4145'/%3e%3cpath d='M341.811 371.361H339.253V373.924H341.811V371.361Z' fill='%233C4145'/%3e%3cpath d='M372.535 371.361H369.978V373.924H372.535V371.361Z' fill='%233C4145'/%3e%3cpath d='M403.9 371.361H401.342V373.924H403.9V371.361Z' fill='%233C4145'/%3e%3cpath d='M434.625 371.361H432.068V373.924H434.625V371.361Z' fill='%233C4145'/%3e%3cpath d='M465.35 371.361H462.792V373.924H465.35V371.361Z' fill='%233C4145'/%3e%3cpath d='M496.075 371.361H493.517V373.924H496.075V371.361Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip2_103_6809)'%3e%3cpath d='M524.558 0H522V2.56273H524.558V0Z' fill='%233C4145'/%3e%3cpath d='M555.279 0H552.722V2.56273H555.279V0Z' fill='%233C4145'/%3e%3cpath d='M586.001 0H583.443V2.56273H586.001V0Z' fill='%233C4145'/%3e%3cpath d='M617.363 0H614.805V2.56273H617.363V0Z' fill='%233C4145'/%3e%3cpath d='M648.084 0H645.527V2.56273H648.084V0Z' fill='%233C4145'/%3e%3cpath d='M678.806 0H676.248V2.56273H678.806V0Z' fill='%233C4145'/%3e%3cpath d='M709.527 0H706.97V2.56273H709.527V0Z' fill='%233C4145'/%3e%3cpath d='M740.889 0H738.332V2.56273H740.889V0Z' fill='%233C4145'/%3e%3cpath d='M770.971 0H768.413V2.56273H770.971V0Z' fill='%233C4145'/%3e%3cpath d='M802.332 0H799.775V2.56273H802.332V0Z' fill='%233C4145'/%3e%3cpath d='M833.054 0H830.497V2.56273H833.054V0Z' fill='%233C4145'/%3e%3cpath d='M863.776 0H861.218V2.56273H863.776V0Z' fill='%233C4145'/%3e%3cpath d='M894.497 0H891.939V2.56273H894.497V0Z' fill='%233C4145'/%3e%3cpath d='M925.858 0H923.301V2.56273H925.858V0Z' fill='%233C4145'/%3e%3cpath d='M956.58 0H954.023V2.56273H956.58V0Z' fill='%233C4145'/%3e%3cpath d='M987.302 0H984.744V2.56273H987.302V0Z' fill='%233C4145'/%3e%3cpath d='M1018.02 0H1015.47V2.56273H1018.02V0Z' fill='%233C4145'/%3e%3cpath d='M524.558 31.3611H522V33.9238H524.558V31.3611Z' fill='%233C4145'/%3e%3cpath d='M555.279 31.3611H552.722V33.9238H555.279V31.3611Z' fill='%233C4145'/%3e%3cpath d='M586.001 31.3611H583.443V33.9238H586.001V31.3611Z' fill='%233C4145'/%3e%3cpath d='M617.363 31.3611H614.805V33.9238H617.363V31.3611Z' fill='%233C4145'/%3e%3cpath d='M648.084 31.3611H645.527V33.9238H648.084V31.3611Z' fill='%233C4145'/%3e%3cpath d='M678.806 31.3611H676.248V33.9238H678.806V31.3611Z' fill='%233C4145'/%3e%3cpath d='M709.527 31.3611H706.97V33.9238H709.527V31.3611Z' fill='%233C4145'/%3e%3cpath d='M740.889 31.3611H738.332V33.9238H740.889V31.3611Z' fill='%233C4145'/%3e%3cpath d='M770.971 31.3611H768.413V33.9238H770.971V31.3611Z' fill='%233C4145'/%3e%3cpath d='M802.332 31.3611H799.775V33.9238H802.332V31.3611Z' fill='%233C4145'/%3e%3cpath d='M833.054 31.3611H830.497V33.9238H833.054V31.3611Z' fill='%233C4145'/%3e%3cpath d='M863.776 31.3611H861.218V33.9238H863.776V31.3611Z' fill='%233C4145'/%3e%3cpath d='M894.497 31.3611H891.939V33.9238H894.497V31.3611Z' fill='%233C4145'/%3e%3cpath d='M925.858 31.3611H923.301V33.9238H925.858V31.3611Z' fill='%233C4145'/%3e%3cpath d='M956.58 31.3611H954.023V33.9238H956.58V31.3611Z' fill='%233C4145'/%3e%3cpath d='M987.302 31.3611H984.744V33.9238H987.302V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1018.02 31.3611H1015.47V33.9238H1018.02V31.3611Z' fill='%233C4145'/%3e%3cpath d='M524.558 61.4429H522V64.0056H524.558V61.4429Z' fill='%233C4145'/%3e%3cpath d='M555.279 61.4429H552.722V64.0056H555.279V61.4429Z' fill='%233C4145'/%3e%3cpath d='M586.001 61.4429H583.443V64.0056H586.001V61.4429Z' fill='%233C4145'/%3e%3cpath d='M617.363 61.4429H614.805V64.0056H617.363V61.4429Z' fill='%233C4145'/%3e%3cpath d='M648.084 61.4429H645.527V64.0056H648.084V61.4429Z' fill='%233C4145'/%3e%3cpath d='M678.806 61.4429H676.248V64.0056H678.806V61.4429Z' fill='%233C4145'/%3e%3cpath d='M709.527 61.4429H706.97V64.0056H709.527V61.4429Z' fill='%233C4145'/%3e%3cpath d='M740.889 61.4429H738.332V64.0056H740.889V61.4429Z' fill='%233C4145'/%3e%3cpath d='M770.971 61.4429H768.413V64.0056H770.971V61.4429Z' fill='%233C4145'/%3e%3cpath d='M802.332 61.4429H799.775V64.0056H802.332V61.4429Z' fill='%233C4145'/%3e%3cpath d='M833.054 61.4429H830.497V64.0056H833.054V61.4429Z' fill='%233C4145'/%3e%3cpath d='M863.776 61.4429H861.218V64.0056H863.776V61.4429Z' fill='%233C4145'/%3e%3cpath d='M894.497 61.4429H891.939V64.0056H894.497V61.4429Z' fill='%233C4145'/%3e%3cpath d='M925.858 61.4429H923.301V64.0056H925.858V61.4429Z' fill='%233C4145'/%3e%3cpath d='M956.58 61.4429H954.023V64.0056H956.58V61.4429Z' fill='%233C4145'/%3e%3cpath d='M987.302 61.4429H984.744V64.0056H987.302V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1018.02 61.4429H1015.47V64.0056H1018.02V61.4429Z' fill='%233C4145'/%3e%3cpath d='M524.558 92.8047H522V95.3674H524.558V92.8047Z' fill='%233C4145'/%3e%3cpath d='M555.279 92.8047H552.722V95.3674H555.279V92.8047Z' fill='%233C4145'/%3e%3cpath d='M586.001 92.8047H583.443V95.3674H586.001V92.8047Z' fill='%233C4145'/%3e%3cpath d='M617.363 92.8047H614.805V95.3674H617.363V92.8047Z' fill='%233C4145'/%3e%3cpath d='M648.084 92.8047H645.527V95.3674H648.084V92.8047Z' fill='%233C4145'/%3e%3cpath d='M678.806 92.8047H676.248V95.3674H678.806V92.8047Z' fill='%233C4145'/%3e%3cpath d='M709.527 92.8047H706.97V95.3674H709.527V92.8047Z' fill='%233C4145'/%3e%3cpath d='M740.889 92.8047H738.332V95.3674H740.889V92.8047Z' fill='%233C4145'/%3e%3cpath d='M770.971 92.8047H768.413V95.3674H770.971V92.8047Z' fill='%233C4145'/%3e%3cpath d='M802.332 92.8047H799.775V95.3674H802.332V92.8047Z' fill='%233C4145'/%3e%3cpath d='M833.054 92.8047H830.497V95.3674H833.054V92.8047Z' fill='%233C4145'/%3e%3cpath d='M863.776 92.8047H861.218V95.3674H863.776V92.8047Z' fill='%233C4145'/%3e%3cpath d='M894.497 92.8047H891.939V95.3674H894.497V92.8047Z' fill='%233C4145'/%3e%3cpath d='M925.858 92.8047H923.301V95.3674H925.858V92.8047Z' fill='%233C4145'/%3e%3cpath d='M956.58 92.8047H954.023V95.3674H956.58V92.8047Z' fill='%233C4145'/%3e%3cpath d='M987.302 92.8047H984.744V95.3674H987.302V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1018.02 92.8047H1015.47V95.3674H1018.02V92.8047Z' fill='%233C4145'/%3e%3cpath d='M524.558 123.526H522V126.089H524.558V123.526Z' fill='%233C4145'/%3e%3cpath d='M555.279 123.526H552.722V126.089H555.279V123.526Z' fill='%233C4145'/%3e%3cpath d='M586.001 123.526H583.443V126.089H586.001V123.526Z' fill='%233C4145'/%3e%3cpath d='M617.363 123.526H614.805V126.089H617.363V123.526Z' fill='%233C4145'/%3e%3cpath d='M648.084 123.526H645.527V126.089H648.084V123.526Z' fill='%233C4145'/%3e%3cpath d='M678.806 123.526H676.248V126.089H678.806V123.526Z' fill='%233C4145'/%3e%3cpath d='M709.527 123.526H706.97V126.089H709.527V123.526Z' fill='%233C4145'/%3e%3cpath d='M740.889 123.526H738.332V126.089H740.889V123.526Z' fill='%233C4145'/%3e%3cpath d='M770.971 123.526H768.413V126.089H770.971V123.526Z' fill='%233C4145'/%3e%3cpath d='M802.332 123.526H799.775V126.089H802.332V123.526Z' fill='%233C4145'/%3e%3cpath d='M833.054 123.526H830.497V126.089H833.054V123.526Z' fill='%233C4145'/%3e%3cpath d='M863.776 123.526H861.218V126.089H863.776V123.526Z' fill='%233C4145'/%3e%3cpath d='M894.497 123.526H891.939V126.089H894.497V123.526Z' fill='%233C4145'/%3e%3cpath d='M925.858 123.526H923.301V126.089H925.858V123.526Z' fill='%233C4145'/%3e%3cpath d='M956.58 123.526H954.023V126.089H956.58V123.526Z' fill='%233C4145'/%3e%3cpath d='M987.302 123.526H984.744V126.089H987.302V123.526Z' fill='%233C4145'/%3e%3cpath d='M1018.02 123.526H1015.47V126.089H1018.02V123.526Z' fill='%233C4145'/%3e%3cpath d='M524.558 154.248H522V156.81H524.558V154.248Z' fill='%233C4145'/%3e%3cpath d='M555.279 154.248H552.722V156.81H555.279V154.248Z' fill='%233C4145'/%3e%3cpath d='M586.001 154.248H583.443V156.81H586.001V154.248Z' fill='%233C4145'/%3e%3cpath d='M617.363 154.248H614.805V156.81H617.363V154.248Z' fill='%233C4145'/%3e%3cpath d='M648.084 154.248H645.527V156.81H648.084V154.248Z' fill='%233C4145'/%3e%3cpath d='M678.806 154.248H676.248V156.81H678.806V154.248Z' fill='%233C4145'/%3e%3cpath d='M709.527 154.248H706.97V156.81H709.527V154.248Z' fill='%233C4145'/%3e%3cpath d='M740.889 154.248H738.332V156.81H740.889V154.248Z' fill='%233C4145'/%3e%3cpath d='M770.971 154.248H768.413V156.81H770.971V154.248Z' fill='%233C4145'/%3e%3cpath d='M802.332 154.248H799.775V156.81H802.332V154.248Z' fill='%233C4145'/%3e%3cpath d='M833.054 154.248H830.497V156.81H833.054V154.248Z' fill='%233C4145'/%3e%3cpath d='M863.776 154.248H861.218V156.81H863.776V154.248Z' fill='%233C4145'/%3e%3cpath d='M894.497 154.248H891.939V156.81H894.497V154.248Z' fill='%233C4145'/%3e%3cpath d='M925.858 154.248H923.301V156.81H925.858V154.248Z' fill='%233C4145'/%3e%3cpath d='M956.58 154.248H954.023V156.81H956.58V154.248Z' fill='%233C4145'/%3e%3cpath d='M987.302 154.248H984.744V156.81H987.302V154.248Z' fill='%233C4145'/%3e%3cpath d='M1018.02 154.248H1015.47V156.81H1018.02V154.248Z' fill='%233C4145'/%3e%3cpath d='M524.558 185.61H522V188.173H524.558V185.61Z' fill='%233C4145'/%3e%3cpath d='M555.279 185.61H552.722V188.173H555.279V185.61Z' fill='%233C4145'/%3e%3cpath d='M586.001 185.61H583.443V188.173H586.001V185.61Z' fill='%233C4145'/%3e%3cpath d='M617.363 185.61H614.805V188.173H617.363V185.61Z' fill='%233C4145'/%3e%3cpath d='M648.084 185.61H645.527V188.173H648.084V185.61Z' fill='%233C4145'/%3e%3cpath d='M678.806 185.61H676.248V188.173H678.806V185.61Z' fill='%233C4145'/%3e%3cpath d='M709.527 185.61H706.97V188.173H709.527V185.61Z' fill='%233C4145'/%3e%3cpath d='M740.889 185.61H738.332V188.173H740.889V185.61Z' fill='%233C4145'/%3e%3cpath d='M770.971 185.61H768.413V188.173H770.971V185.61Z' fill='%233C4145'/%3e%3cpath d='M802.332 185.61H799.775V188.173H802.332V185.61Z' fill='%233C4145'/%3e%3cpath d='M833.054 185.61H830.497V188.173H833.054V185.61Z' fill='%233C4145'/%3e%3cpath d='M863.776 185.61H861.218V188.173H863.776V185.61Z' fill='%233C4145'/%3e%3cpath d='M894.497 185.61H891.939V188.173H894.497V185.61Z' fill='%233C4145'/%3e%3cpath d='M925.858 185.61H923.301V188.173H925.858V185.61Z' fill='%233C4145'/%3e%3cpath d='M956.58 185.61H954.023V188.173H956.58V185.61Z' fill='%233C4145'/%3e%3cpath d='M987.302 185.61H984.744V188.173H987.302V185.61Z' fill='%233C4145'/%3e%3cpath d='M1018.02 185.61H1015.47V188.173H1018.02V185.61Z' fill='%233C4145'/%3e%3cpath d='M524.558 216.331H522V218.894H524.558V216.331Z' fill='%233C4145'/%3e%3cpath d='M555.279 216.331H552.722V218.894H555.279V216.331Z' fill='%233C4145'/%3e%3cpath d='M586.001 216.331H583.443V218.894H586.001V216.331Z' fill='%233C4145'/%3e%3cpath d='M617.363 216.331H614.805V218.894H617.363V216.331Z' fill='%233C4145'/%3e%3cpath d='M648.084 216.331H645.527V218.894H648.084V216.331Z' fill='%233C4145'/%3e%3cpath d='M678.806 216.331H676.248V218.894H678.806V216.331Z' fill='%233C4145'/%3e%3cpath d='M709.527 216.331H706.97V218.894H709.527V216.331Z' fill='%233C4145'/%3e%3cpath d='M740.889 216.331H738.332V218.894H740.889V216.331Z' fill='%233C4145'/%3e%3cpath d='M770.971 216.331H768.413V218.894H770.971V216.331Z' fill='%233C4145'/%3e%3cpath d='M802.332 216.331H799.775V218.894H802.332V216.331Z' fill='%233C4145'/%3e%3cpath d='M833.054 216.331H830.497V218.894H833.054V216.331Z' fill='%233C4145'/%3e%3cpath d='M863.776 216.331H861.218V218.894H863.776V216.331Z' fill='%233C4145'/%3e%3cpath d='M894.497 216.331H891.939V218.894H894.497V216.331Z' fill='%233C4145'/%3e%3cpath d='M925.858 216.331H923.301V218.894H925.858V216.331Z' fill='%233C4145'/%3e%3cpath d='M956.58 216.331H954.023V218.894H956.58V216.331Z' fill='%233C4145'/%3e%3cpath d='M987.302 216.331H984.744V218.894H987.302V216.331Z' fill='%233C4145'/%3e%3cpath d='M1018.02 216.331H1015.47V218.894H1018.02V216.331Z' fill='%233C4145'/%3e%3cpath d='M524.558 247.053H522V249.616H524.558V247.053Z' fill='%233C4145'/%3e%3cpath d='M555.279 247.053H552.722V249.616H555.279V247.053Z' fill='%233C4145'/%3e%3cpath d='M586.001 247.053H583.443V249.616H586.001V247.053Z' fill='%233C4145'/%3e%3cpath d='M617.363 247.053H614.805V249.616H617.363V247.053Z' fill='%233C4145'/%3e%3cpath d='M648.084 247.053H645.527V249.616H648.084V247.053Z' fill='%233C4145'/%3e%3cpath d='M678.806 247.053H676.248V249.616H678.806V247.053Z' fill='%233C4145'/%3e%3cpath d='M709.527 247.053H706.97V249.616H709.527V247.053Z' fill='%233C4145'/%3e%3cpath d='M740.889 247.053H738.332V249.616H740.889V247.053Z' fill='%233C4145'/%3e%3cpath d='M770.971 247.053H768.413V249.616H770.971V247.053Z' fill='%233C4145'/%3e%3cpath d='M802.332 247.053H799.775V249.616H802.332V247.053Z' fill='%233C4145'/%3e%3cpath d='M833.054 247.053H830.497V249.616H833.054V247.053Z' fill='%233C4145'/%3e%3cpath d='M863.776 247.053H861.218V249.616H863.776V247.053Z' fill='%233C4145'/%3e%3cpath d='M894.497 247.053H891.939V249.616H894.497V247.053Z' fill='%233C4145'/%3e%3cpath d='M925.858 247.053H923.301V249.616H925.858V247.053Z' fill='%233C4145'/%3e%3cpath d='M956.58 247.053H954.023V249.616H956.58V247.053Z' fill='%233C4145'/%3e%3cpath d='M987.302 247.053H984.744V249.616H987.302V247.053Z' fill='%233C4145'/%3e%3cpath d='M1018.02 247.053H1015.47V249.616H1018.02V247.053Z' fill='%233C4145'/%3e%3cpath d='M524.558 278.415H522V280.978H524.558V278.415Z' fill='%233C4145'/%3e%3cpath d='M555.279 278.415H552.722V280.978H555.279V278.415Z' fill='%233C4145'/%3e%3cpath d='M586.001 278.415H583.443V280.978H586.001V278.415Z' fill='%233C4145'/%3e%3cpath d='M617.363 278.415H614.805V280.978H617.363V278.415Z' fill='%233C4145'/%3e%3cpath d='M648.084 278.415H645.527V280.978H648.084V278.415Z' fill='%233C4145'/%3e%3cpath d='M678.806 278.415H676.248V280.978H678.806V278.415Z' fill='%233C4145'/%3e%3cpath d='M709.527 278.415H706.97V280.978H709.527V278.415Z' fill='%233C4145'/%3e%3cpath d='M740.889 278.415H738.332V280.978H740.889V278.415Z' fill='%233C4145'/%3e%3cpath d='M770.971 278.415H768.413V280.978H770.971V278.415Z' fill='%233C4145'/%3e%3cpath d='M802.332 278.415H799.775V280.978H802.332V278.415Z' fill='%233C4145'/%3e%3cpath d='M833.054 278.415H830.497V280.978H833.054V278.415Z' fill='%233C4145'/%3e%3cpath d='M863.776 278.415H861.218V280.978H863.776V278.415Z' fill='%233C4145'/%3e%3cpath d='M894.497 278.415H891.939V280.978H894.497V278.415Z' fill='%233C4145'/%3e%3cpath d='M925.858 278.415H923.301V280.978H925.858V278.415Z' fill='%233C4145'/%3e%3cpath d='M956.58 278.415H954.023V280.978H956.58V278.415Z' fill='%233C4145'/%3e%3cpath d='M987.302 278.415H984.744V280.978H987.302V278.415Z' fill='%233C4145'/%3e%3cpath d='M1018.02 278.415H1015.47V280.978H1018.02V278.415Z' fill='%233C4145'/%3e%3cpath d='M524.558 309.136H522V311.699H524.558V309.136Z' fill='%233C4145'/%3e%3cpath d='M555.279 309.136H552.722V311.699H555.279V309.136Z' fill='%233C4145'/%3e%3cpath d='M586.001 309.136H583.443V311.699H586.001V309.136Z' fill='%233C4145'/%3e%3cpath d='M617.363 309.136H614.805V311.699H617.363V309.136Z' fill='%233C4145'/%3e%3cpath d='M648.084 309.136H645.527V311.699H648.084V309.136Z' fill='%233C4145'/%3e%3cpath d='M678.806 309.136H676.248V311.699H678.806V309.136Z' fill='%233C4145'/%3e%3cpath d='M709.527 309.136H706.97V311.699H709.527V309.136Z' fill='%233C4145'/%3e%3cpath d='M740.889 309.136H738.332V311.699H740.889V309.136Z' fill='%233C4145'/%3e%3cpath d='M770.971 309.136H768.413V311.699H770.971V309.136Z' fill='%233C4145'/%3e%3cpath d='M802.332 309.136H799.775V311.699H802.332V309.136Z' fill='%233C4145'/%3e%3cpath d='M833.054 309.136H830.497V311.699H833.054V309.136Z' fill='%233C4145'/%3e%3cpath d='M863.776 309.136H861.218V311.699H863.776V309.136Z' fill='%233C4145'/%3e%3cpath d='M894.497 309.136H891.939V311.699H894.497V309.136Z' fill='%233C4145'/%3e%3cpath d='M925.858 309.136H923.301V311.699H925.858V309.136Z' fill='%233C4145'/%3e%3cpath d='M956.58 309.136H954.023V311.699H956.58V309.136Z' fill='%233C4145'/%3e%3cpath d='M987.302 309.136H984.744V311.699H987.302V309.136Z' fill='%233C4145'/%3e%3cpath d='M1018.02 309.136H1015.47V311.699H1018.02V309.136Z' fill='%233C4145'/%3e%3cpath d='M524.558 339.857H522V342.42H524.558V339.857Z' fill='%233C4145'/%3e%3cpath d='M555.279 339.857H552.722V342.42H555.279V339.857Z' fill='%233C4145'/%3e%3cpath d='M586.001 339.857H583.443V342.42H586.001V339.857Z' fill='%233C4145'/%3e%3cpath d='M617.362 339.857H614.805V342.42H617.362V339.857Z' fill='%233C4145'/%3e%3cpath d='M648.084 339.857H645.527V342.42H648.084V339.857Z' fill='%233C4145'/%3e%3cpath d='M678.806 339.857H676.248V342.42H678.806V339.857Z' fill='%233C4145'/%3e%3cpath d='M709.527 339.857H706.97V342.42H709.527V339.857Z' fill='%233C4145'/%3e%3cpath d='M740.889 339.857H738.332V342.42H740.889V339.857Z' fill='%233C4145'/%3e%3cpath d='M770.971 339.857H768.413V342.42H770.971V339.857Z' fill='%233C4145'/%3e%3cpath d='M802.332 339.857H799.775V342.42H802.332V339.857Z' fill='%233C4145'/%3e%3cpath d='M833.054 339.857H830.497V342.42H833.054V339.857Z' fill='%233C4145'/%3e%3cpath d='M863.776 339.857H861.218V342.42H863.776V339.857Z' fill='%233C4145'/%3e%3cpath d='M894.497 339.857H891.939V342.42H894.497V339.857Z' fill='%233C4145'/%3e%3cpath d='M925.858 339.857H923.301V342.42H925.858V339.857Z' fill='%233C4145'/%3e%3cpath d='M956.58 339.857H954.023V342.42H956.58V339.857Z' fill='%233C4145'/%3e%3cpath d='M987.302 339.857H984.744V342.42H987.302V339.857Z' fill='%233C4145'/%3e%3cpath d='M1018.02 339.857H1015.47V342.42H1018.02V339.857Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip3_103_6809)'%3e%3cpath d='M524.558 340H522V342.563H524.558V340Z' fill='%233C4145'/%3e%3cpath d='M555.282 340H552.725V342.562H555.282V340Z' fill='%233C4145'/%3e%3cpath d='M586.007 340H583.449V342.562H586.007V340Z' fill='%233C4145'/%3e%3cpath d='M617.372 340H614.815V342.562H617.372V340Z' fill='%233C4145'/%3e%3cpath d='M648.097 340H645.54V342.562H648.097V340Z' fill='%233C4145'/%3e%3cpath d='M678.822 340H676.264V342.562H678.822V340Z' fill='%233C4145'/%3e%3cpath d='M709.546 340H706.989V342.562H709.546V340Z' fill='%233C4145'/%3e%3cpath d='M740.912 340H738.354V342.562H740.912V340Z' fill='%233C4145'/%3e%3cpath d='M770.996 340H768.439V342.562H770.996V340Z' fill='%233C4145'/%3e%3cpath d='M802.361 340H799.803V342.562H802.361V340Z' fill='%233C4145'/%3e%3cpath d='M833.086 340H830.528V342.562H833.086V340Z' fill='%233C4145'/%3e%3cpath d='M863.811 340H861.253V342.562H863.811V340Z' fill='%233C4145'/%3e%3cpath d='M894.535 340H891.978V342.562H894.535V340Z' fill='%233C4145'/%3e%3cpath d='M925.9 340H923.342V342.562H925.9V340Z' fill='%233C4145'/%3e%3cpath d='M956.625 340H954.067V342.562H956.625V340Z' fill='%233C4145'/%3e%3cpath d='M987.35 340H984.792V342.562H987.35V340Z' fill='%233C4145'/%3e%3cpath d='M1018.07 340H1015.52V342.562H1018.07V340Z' fill='%233C4145'/%3e%3cpath d='M524.558 371.361H522V373.924H524.558V371.361Z' fill='%233C4145'/%3e%3cpath d='M555.282 371.361H552.725V373.924H555.282V371.361Z' fill='%233C4145'/%3e%3cpath d='M586.007 371.361H583.449V373.924H586.007V371.361Z' fill='%233C4145'/%3e%3cpath d='M617.372 371.361H614.815V373.924H617.372V371.361Z' fill='%233C4145'/%3e%3cpath d='M648.097 371.361H645.54V373.924H648.097V371.361Z' fill='%233C4145'/%3e%3cpath d='M678.822 371.361H676.264V373.924H678.822V371.361Z' fill='%233C4145'/%3e%3cpath d='M709.546 371.361H706.989V373.924H709.546V371.361Z' fill='%233C4145'/%3e%3cpath d='M740.912 371.361H738.354V373.924H740.912V371.361Z' fill='%233C4145'/%3e%3cpath d='M770.996 371.361H768.439V373.924H770.996V371.361Z' fill='%233C4145'/%3e%3cpath d='M802.361 371.361H799.803V373.924H802.361V371.361Z' fill='%233C4145'/%3e%3cpath d='M833.086 371.361H830.528V373.924H833.086V371.361Z' fill='%233C4145'/%3e%3cpath d='M863.811 371.361H861.253V373.924H863.811V371.361Z' fill='%233C4145'/%3e%3cpath d='M894.535 371.361H891.978V373.924H894.535V371.361Z' fill='%233C4145'/%3e%3cpath d='M925.9 371.361H923.342V373.924H925.9V371.361Z' fill='%233C4145'/%3e%3cpath d='M956.625 371.361H954.067V373.924H956.625V371.361Z' fill='%233C4145'/%3e%3cpath d='M987.35 371.361H984.792V373.924H987.35V371.361Z' fill='%233C4145'/%3e%3cpath d='M1018.07 371.361H1015.52V373.924H1018.07V371.361Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip4_103_6809)'%3e%3cpath d='M1047.45 0H1044.9V2.56273H1047.45V0Z' fill='%233C4145'/%3e%3cpath d='M1078.17 0H1075.62V2.56273H1078.17V0Z' fill='%233C4145'/%3e%3cpath d='M1108.9 0H1106.34V2.56273H1108.9V0Z' fill='%233C4145'/%3e%3cpath d='M1140.26 0H1137.7V2.56273H1140.26V0Z' fill='%233C4145'/%3e%3cpath d='M1170.98 0H1168.42V2.56273H1170.98V0Z' fill='%233C4145'/%3e%3cpath d='M1201.7 0H1199.14V2.56273H1201.7V0Z' fill='%233C4145'/%3e%3cpath d='M1232.42 0H1229.87V2.56273H1232.42V0Z' fill='%233C4145'/%3e%3cpath d='M1263.78 0H1261.23V2.56273H1263.78V0Z' fill='%233C4145'/%3e%3cpath d='M1293.87 0H1291.31V2.56273H1293.87V0Z' fill='%233C4145'/%3e%3cpath d='M1325.23 0H1322.67V2.56273H1325.23V0Z' fill='%233C4145'/%3e%3cpath d='M1355.95 0H1353.39V2.56273H1355.95V0Z' fill='%233C4145'/%3e%3cpath d='M1386.67 0H1384.11V2.56273H1386.67V0Z' fill='%233C4145'/%3e%3cpath d='M1417.39 0H1414.83V2.56273H1417.39V0Z' fill='%233C4145'/%3e%3cpath d='M1448.75 0H1446.2V2.56273H1448.75V0Z' fill='%233C4145'/%3e%3cpath d='M1479.48 0H1476.92V2.56273H1479.48V0Z' fill='%233C4145'/%3e%3cpath d='M1510.2 0H1507.64V2.56273H1510.2V0Z' fill='%233C4145'/%3e%3cpath d='M1540.92 0H1538.36V2.56273H1540.92V0Z' fill='%233C4145'/%3e%3cpath d='M1047.45 31.3611H1044.9V33.9238H1047.45V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1078.17 31.3611H1075.62V33.9238H1078.17V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1108.9 31.3611H1106.34V33.9238H1108.9V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1140.26 31.3611H1137.7V33.9238H1140.26V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1170.98 31.3611H1168.42V33.9238H1170.98V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1201.7 31.3611H1199.14V33.9238H1201.7V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1232.42 31.3611H1229.87V33.9238H1232.42V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1263.78 31.3611H1261.23V33.9238H1263.78V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1293.87 31.3611H1291.31V33.9238H1293.87V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1325.23 31.3611H1322.67V33.9238H1325.23V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1355.95 31.3611H1353.39V33.9238H1355.95V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1386.67 31.3611H1384.11V33.9238H1386.67V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1417.39 31.3611H1414.83V33.9238H1417.39V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1448.75 31.3611H1446.2V33.9238H1448.75V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1479.48 31.3611H1476.92V33.9238H1479.48V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1510.2 31.3611H1507.64V33.9238H1510.2V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1540.92 31.3611H1538.36V33.9238H1540.92V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1047.45 61.4429H1044.9V64.0056H1047.45V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1078.17 61.4429H1075.62V64.0056H1078.17V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1108.9 61.4429H1106.34V64.0056H1108.9V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1140.26 61.4429H1137.7V64.0056H1140.26V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1170.98 61.4429H1168.42V64.0056H1170.98V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1201.7 61.4429H1199.14V64.0056H1201.7V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1232.42 61.4429H1229.87V64.0056H1232.42V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1263.78 61.4429H1261.23V64.0056H1263.78V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1293.87 61.4429H1291.31V64.0056H1293.87V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1325.23 61.4429H1322.67V64.0056H1325.23V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1355.95 61.4429H1353.39V64.0056H1355.95V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1386.67 61.4429H1384.11V64.0056H1386.67V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1417.39 61.4429H1414.83V64.0056H1417.39V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1448.75 61.4429H1446.2V64.0056H1448.75V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1479.48 61.4429H1476.92V64.0056H1479.48V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1510.2 61.4429H1507.64V64.0056H1510.2V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1540.92 61.4429H1538.36V64.0056H1540.92V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1047.45 92.8047H1044.9V95.3674H1047.45V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1078.17 92.8047H1075.62V95.3674H1078.17V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1108.9 92.8047H1106.34V95.3674H1108.9V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1140.26 92.8047H1137.7V95.3674H1140.26V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1170.98 92.8047H1168.42V95.3674H1170.98V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1201.7 92.8047H1199.14V95.3674H1201.7V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1232.42 92.8047H1229.87V95.3674H1232.42V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1263.78 92.8047H1261.23V95.3674H1263.78V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1293.87 92.8047H1291.31V95.3674H1293.87V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1325.23 92.8047H1322.67V95.3674H1325.23V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1355.95 92.8047H1353.39V95.3674H1355.95V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1386.67 92.8047H1384.11V95.3674H1386.67V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1417.39 92.8047H1414.83V95.3674H1417.39V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1448.75 92.8047H1446.2V95.3674H1448.75V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1479.48 92.8047H1476.92V95.3674H1479.48V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1510.2 92.8047H1507.64V95.3674H1510.2V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1540.92 92.8047H1538.36V95.3674H1540.92V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1047.45 123.526H1044.9V126.089H1047.45V123.526Z' fill='%233C4145'/%3e%3cpath d='M1078.17 123.526H1075.62V126.089H1078.17V123.526Z' fill='%233C4145'/%3e%3cpath d='M1108.9 123.526H1106.34V126.089H1108.9V123.526Z' fill='%233C4145'/%3e%3cpath d='M1140.26 123.526H1137.7V126.089H1140.26V123.526Z' fill='%233C4145'/%3e%3cpath d='M1170.98 123.526H1168.42V126.089H1170.98V123.526Z' fill='%233C4145'/%3e%3cpath d='M1201.7 123.526H1199.14V126.089H1201.7V123.526Z' fill='%233C4145'/%3e%3cpath d='M1232.42 123.526H1229.87V126.089H1232.42V123.526Z' fill='%233C4145'/%3e%3cpath d='M1263.78 123.526H1261.23V126.089H1263.78V123.526Z' fill='%233C4145'/%3e%3cpath d='M1293.87 123.526H1291.31V126.089H1293.87V123.526Z' fill='%233C4145'/%3e%3cpath d='M1325.23 123.526H1322.67V126.089H1325.23V123.526Z' fill='%233C4145'/%3e%3cpath d='M1355.95 123.526H1353.39V126.089H1355.95V123.526Z' fill='%233C4145'/%3e%3cpath d='M1386.67 123.526H1384.11V126.089H1386.67V123.526Z' fill='%233C4145'/%3e%3cpath d='M1417.39 123.526H1414.83V126.089H1417.39V123.526Z' fill='%233C4145'/%3e%3cpath d='M1448.75 123.526H1446.2V126.089H1448.75V123.526Z' fill='%233C4145'/%3e%3cpath d='M1479.48 123.526H1476.92V126.089H1479.48V123.526Z' fill='%233C4145'/%3e%3cpath d='M1510.2 123.526H1507.64V126.089H1510.2V123.526Z' fill='%233C4145'/%3e%3cpath d='M1540.92 123.526H1538.36V126.089H1540.92V123.526Z' fill='%233C4145'/%3e%3cpath d='M1047.45 154.248H1044.9V156.81H1047.45V154.248Z' fill='%233C4145'/%3e%3cpath d='M1078.17 154.248H1075.62V156.81H1078.17V154.248Z' fill='%233C4145'/%3e%3cpath d='M1108.9 154.248H1106.34V156.81H1108.9V154.248Z' fill='%233C4145'/%3e%3cpath d='M1140.26 154.248H1137.7V156.81H1140.26V154.248Z' fill='%233C4145'/%3e%3cpath d='M1170.98 154.248H1168.42V156.81H1170.98V154.248Z' fill='%233C4145'/%3e%3cpath d='M1201.7 154.248H1199.14V156.81H1201.7V154.248Z' fill='%233C4145'/%3e%3cpath d='M1232.42 154.248H1229.87V156.81H1232.42V154.248Z' fill='%233C4145'/%3e%3cpath d='M1263.78 154.248H1261.23V156.81H1263.78V154.248Z' fill='%233C4145'/%3e%3cpath d='M1293.87 154.248H1291.31V156.81H1293.87V154.248Z' fill='%233C4145'/%3e%3cpath d='M1325.23 154.248H1322.67V156.81H1325.23V154.248Z' fill='%233C4145'/%3e%3cpath d='M1355.95 154.248H1353.39V156.81H1355.95V154.248Z' fill='%233C4145'/%3e%3cpath d='M1386.67 154.248H1384.11V156.81H1386.67V154.248Z' fill='%233C4145'/%3e%3cpath d='M1417.39 154.248H1414.83V156.81H1417.39V154.248Z' fill='%233C4145'/%3e%3cpath d='M1448.75 154.248H1446.2V156.81H1448.75V154.248Z' fill='%233C4145'/%3e%3cpath d='M1479.48 154.248H1476.92V156.81H1479.48V154.248Z' fill='%233C4145'/%3e%3cpath d='M1510.2 154.248H1507.64V156.81H1510.2V154.248Z' fill='%233C4145'/%3e%3cpath d='M1540.92 154.248H1538.36V156.81H1540.92V154.248Z' fill='%233C4145'/%3e%3cpath d='M1047.45 185.61H1044.9V188.173H1047.45V185.61Z' fill='%233C4145'/%3e%3cpath d='M1078.17 185.61H1075.62V188.173H1078.17V185.61Z' fill='%233C4145'/%3e%3cpath d='M1108.9 185.61H1106.34V188.173H1108.9V185.61Z' fill='%233C4145'/%3e%3cpath d='M1140.26 185.61H1137.7V188.173H1140.26V185.61Z' fill='%233C4145'/%3e%3cpath d='M1170.98 185.61H1168.42V188.173H1170.98V185.61Z' fill='%233C4145'/%3e%3cpath d='M1201.7 185.61H1199.14V188.173H1201.7V185.61Z' fill='%233C4145'/%3e%3cpath d='M1232.42 185.61H1229.87V188.173H1232.42V185.61Z' fill='%233C4145'/%3e%3cpath d='M1263.78 185.61H1261.23V188.173H1263.78V185.61Z' fill='%233C4145'/%3e%3cpath d='M1293.87 185.61H1291.31V188.173H1293.87V185.61Z' fill='%233C4145'/%3e%3cpath d='M1325.23 185.61H1322.67V188.173H1325.23V185.61Z' fill='%233C4145'/%3e%3cpath d='M1355.95 185.61H1353.39V188.173H1355.95V185.61Z' fill='%233C4145'/%3e%3cpath d='M1386.67 185.61H1384.11V188.173H1386.67V185.61Z' fill='%233C4145'/%3e%3cpath d='M1417.39 185.61H1414.83V188.173H1417.39V185.61Z' fill='%233C4145'/%3e%3cpath d='M1448.75 185.61H1446.2V188.173H1448.75V185.61Z' fill='%233C4145'/%3e%3cpath d='M1479.48 185.61H1476.92V188.173H1479.48V185.61Z' fill='%233C4145'/%3e%3cpath d='M1510.2 185.61H1507.64V188.173H1510.2V185.61Z' fill='%233C4145'/%3e%3cpath d='M1540.92 185.61H1538.36V188.173H1540.92V185.61Z' fill='%233C4145'/%3e%3cpath d='M1047.45 216.331H1044.9V218.894H1047.45V216.331Z' fill='%233C4145'/%3e%3cpath d='M1078.17 216.331H1075.62V218.894H1078.17V216.331Z' fill='%233C4145'/%3e%3cpath d='M1108.9 216.331H1106.34V218.894H1108.9V216.331Z' fill='%233C4145'/%3e%3cpath d='M1140.26 216.331H1137.7V218.894H1140.26V216.331Z' fill='%233C4145'/%3e%3cpath d='M1170.98 216.331H1168.42V218.894H1170.98V216.331Z' fill='%233C4145'/%3e%3cpath d='M1201.7 216.331H1199.14V218.894H1201.7V216.331Z' fill='%233C4145'/%3e%3cpath d='M1232.42 216.331H1229.87V218.894H1232.42V216.331Z' fill='%233C4145'/%3e%3cpath d='M1263.78 216.331H1261.23V218.894H1263.78V216.331Z' fill='%233C4145'/%3e%3cpath d='M1293.87 216.331H1291.31V218.894H1293.87V216.331Z' fill='%233C4145'/%3e%3cpath d='M1325.23 216.331H1322.67V218.894H1325.23V216.331Z' fill='%233C4145'/%3e%3cpath d='M1355.95 216.331H1353.39V218.894H1355.95V216.331Z' fill='%233C4145'/%3e%3cpath d='M1386.67 216.331H1384.11V218.894H1386.67V216.331Z' fill='%233C4145'/%3e%3cpath d='M1417.39 216.331H1414.83V218.894H1417.39V216.331Z' fill='%233C4145'/%3e%3cpath d='M1448.75 216.331H1446.2V218.894H1448.75V216.331Z' fill='%233C4145'/%3e%3cpath d='M1479.48 216.331H1476.92V218.894H1479.48V216.331Z' fill='%233C4145'/%3e%3cpath d='M1510.2 216.331H1507.64V218.894H1510.2V216.331Z' fill='%233C4145'/%3e%3cpath d='M1540.92 216.331H1538.36V218.894H1540.92V216.331Z' fill='%233C4145'/%3e%3cpath d='M1047.45 247.053H1044.9V249.616H1047.45V247.053Z' fill='%233C4145'/%3e%3cpath d='M1078.17 247.053H1075.62V249.616H1078.17V247.053Z' fill='%233C4145'/%3e%3cpath d='M1108.9 247.053H1106.34V249.616H1108.9V247.053Z' fill='%233C4145'/%3e%3cpath d='M1140.26 247.053H1137.7V249.616H1140.26V247.053Z' fill='%233C4145'/%3e%3cpath d='M1170.98 247.053H1168.42V249.616H1170.98V247.053Z' fill='%233C4145'/%3e%3cpath d='M1201.7 247.053H1199.14V249.616H1201.7V247.053Z' fill='%233C4145'/%3e%3cpath d='M1232.42 247.053H1229.87V249.616H1232.42V247.053Z' fill='%233C4145'/%3e%3cpath d='M1263.78 247.053H1261.23V249.616H1263.78V247.053Z' fill='%233C4145'/%3e%3cpath d='M1293.87 247.053H1291.31V249.616H1293.87V247.053Z' fill='%233C4145'/%3e%3cpath d='M1325.23 247.053H1322.67V249.616H1325.23V247.053Z' fill='%233C4145'/%3e%3cpath d='M1355.95 247.053H1353.39V249.616H1355.95V247.053Z' fill='%233C4145'/%3e%3cpath d='M1386.67 247.053H1384.11V249.616H1386.67V247.053Z' fill='%233C4145'/%3e%3cpath d='M1417.39 247.053H1414.83V249.616H1417.39V247.053Z' fill='%233C4145'/%3e%3cpath d='M1448.75 247.053H1446.2V249.616H1448.75V247.053Z' fill='%233C4145'/%3e%3cpath d='M1479.48 247.053H1476.92V249.616H1479.48V247.053Z' fill='%233C4145'/%3e%3cpath d='M1510.2 247.053H1507.64V249.616H1510.2V247.053Z' fill='%233C4145'/%3e%3cpath d='M1540.92 247.053H1538.36V249.616H1540.92V247.053Z' fill='%233C4145'/%3e%3cpath d='M1047.45 278.415H1044.9V280.978H1047.45V278.415Z' fill='%233C4145'/%3e%3cpath d='M1078.17 278.415H1075.62V280.978H1078.17V278.415Z' fill='%233C4145'/%3e%3cpath d='M1108.9 278.415H1106.34V280.978H1108.9V278.415Z' fill='%233C4145'/%3e%3cpath d='M1140.26 278.415H1137.7V280.978H1140.26V278.415Z' fill='%233C4145'/%3e%3cpath d='M1170.98 278.415H1168.42V280.978H1170.98V278.415Z' fill='%233C4145'/%3e%3cpath d='M1201.7 278.415H1199.14V280.978H1201.7V278.415Z' fill='%233C4145'/%3e%3cpath d='M1232.42 278.415H1229.87V280.978H1232.42V278.415Z' fill='%233C4145'/%3e%3cpath d='M1263.78 278.415H1261.23V280.978H1263.78V278.415Z' fill='%233C4145'/%3e%3cpath d='M1293.87 278.415H1291.31V280.978H1293.87V278.415Z' fill='%233C4145'/%3e%3cpath d='M1325.23 278.415H1322.67V280.978H1325.23V278.415Z' fill='%233C4145'/%3e%3cpath d='M1355.95 278.415H1353.39V280.978H1355.95V278.415Z' fill='%233C4145'/%3e%3cpath d='M1386.67 278.415H1384.11V280.978H1386.67V278.415Z' fill='%233C4145'/%3e%3cpath d='M1417.39 278.415H1414.83V280.978H1417.39V278.415Z' fill='%233C4145'/%3e%3cpath d='M1448.75 278.415H1446.2V280.978H1448.75V278.415Z' fill='%233C4145'/%3e%3cpath d='M1479.48 278.415H1476.92V280.978H1479.48V278.415Z' fill='%233C4145'/%3e%3cpath d='M1510.2 278.415H1507.64V280.978H1510.2V278.415Z' fill='%233C4145'/%3e%3cpath d='M1540.92 278.415H1538.36V280.978H1540.92V278.415Z' fill='%233C4145'/%3e%3cpath d='M1047.45 309.136H1044.9V311.699H1047.45V309.136Z' fill='%233C4145'/%3e%3cpath d='M1078.17 309.136H1075.62V311.699H1078.17V309.136Z' fill='%233C4145'/%3e%3cpath d='M1108.9 309.136H1106.34V311.699H1108.9V309.136Z' fill='%233C4145'/%3e%3cpath d='M1140.26 309.136H1137.7V311.699H1140.26V309.136Z' fill='%233C4145'/%3e%3cpath d='M1170.98 309.136H1168.42V311.699H1170.98V309.136Z' fill='%233C4145'/%3e%3cpath d='M1201.7 309.136H1199.14V311.699H1201.7V309.136Z' fill='%233C4145'/%3e%3cpath d='M1232.42 309.136H1229.87V311.699H1232.42V309.136Z' fill='%233C4145'/%3e%3cpath d='M1263.78 309.136H1261.23V311.699H1263.78V309.136Z' fill='%233C4145'/%3e%3cpath d='M1293.87 309.136H1291.31V311.699H1293.87V309.136Z' fill='%233C4145'/%3e%3cpath d='M1325.23 309.136H1322.67V311.699H1325.23V309.136Z' fill='%233C4145'/%3e%3cpath d='M1355.95 309.136H1353.39V311.699H1355.95V309.136Z' fill='%233C4145'/%3e%3cpath d='M1386.67 309.136H1384.11V311.699H1386.67V309.136Z' fill='%233C4145'/%3e%3cpath d='M1417.39 309.136H1414.83V311.699H1417.39V309.136Z' fill='%233C4145'/%3e%3cpath d='M1448.75 309.136H1446.2V311.699H1448.75V309.136Z' fill='%233C4145'/%3e%3cpath d='M1479.48 309.136H1476.92V311.699H1479.48V309.136Z' fill='%233C4145'/%3e%3cpath d='M1510.2 309.136H1507.64V311.699H1510.2V309.136Z' fill='%233C4145'/%3e%3cpath d='M1540.92 309.136H1538.36V311.699H1540.92V309.136Z' fill='%233C4145'/%3e%3cpath d='M1047.45 339.857H1044.9V342.42H1047.45V339.857Z' fill='%233C4145'/%3e%3cpath d='M1078.17 339.857H1075.62V342.42H1078.17V339.857Z' fill='%233C4145'/%3e%3cpath d='M1108.9 339.857H1106.34V342.42H1108.9V339.857Z' fill='%233C4145'/%3e%3cpath d='M1140.26 339.857H1137.7V342.42H1140.26V339.857Z' fill='%233C4145'/%3e%3cpath d='M1170.98 339.857H1168.42V342.42H1170.98V339.857Z' fill='%233C4145'/%3e%3cpath d='M1201.7 339.857H1199.14V342.42H1201.7V339.857Z' fill='%233C4145'/%3e%3cpath d='M1232.42 339.857H1229.87V342.42H1232.42V339.857Z' fill='%233C4145'/%3e%3cpath d='M1263.79 339.857H1261.23V342.42H1263.79V339.857Z' fill='%233C4145'/%3e%3cpath d='M1293.87 339.857H1291.31V342.42H1293.87V339.857Z' fill='%233C4145'/%3e%3cpath d='M1325.23 339.857H1322.67V342.42H1325.23V339.857Z' fill='%233C4145'/%3e%3cpath d='M1355.95 339.857H1353.39V342.42H1355.95V339.857Z' fill='%233C4145'/%3e%3cpath d='M1386.67 339.857H1384.11V342.42H1386.67V339.857Z' fill='%233C4145'/%3e%3cpath d='M1417.39 339.857H1414.83V342.42H1417.39V339.857Z' fill='%233C4145'/%3e%3cpath d='M1448.75 339.857H1446.2V342.42H1448.75V339.857Z' fill='%233C4145'/%3e%3cpath d='M1479.48 339.857H1476.92V342.42H1479.48V339.857Z' fill='%233C4145'/%3e%3cpath d='M1510.2 339.857H1507.64V342.42H1510.2V339.857Z' fill='%233C4145'/%3e%3cpath d='M1540.92 339.857H1538.36V342.42H1540.92V339.857Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip5_103_6809)'%3e%3cpath d='M1572.45 0H1569.9V2.56273H1572.45V0Z' fill='%233C4145'/%3e%3cpath d='M1603.17 0H1600.62V2.56273H1603.17V0Z' fill='%233C4145'/%3e%3cpath d='M1633.9 0H1631.34V2.56273H1633.9V0Z' fill='%233C4145'/%3e%3cpath d='M1665.26 0H1662.7V2.56273H1665.26V0Z' fill='%233C4145'/%3e%3cpath d='M1695.98 0H1693.42V2.56273H1695.98V0Z' fill='%233C4145'/%3e%3cpath d='M1726.7 0H1724.14V2.56273H1726.7V0Z' fill='%233C4145'/%3e%3cpath d='M1757.42 0H1754.87V2.56273H1757.42V0Z' fill='%233C4145'/%3e%3cpath d='M1788.78 0H1786.23V2.56273H1788.78V0Z' fill='%233C4145'/%3e%3cpath d='M1818.87 0H1816.31V2.56273H1818.87V0Z' fill='%233C4145'/%3e%3cpath d='M1850.23 0H1847.67V2.56273H1850.23V0Z' fill='%233C4145'/%3e%3cpath d='M1880.95 0H1878.39V2.56273H1880.95V0Z' fill='%233C4145'/%3e%3cpath d='M1572.45 31.3611H1569.9V33.9238H1572.45V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1603.17 31.3611H1600.62V33.9238H1603.17V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1633.9 31.3611H1631.34V33.9238H1633.9V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1665.26 31.3611H1662.7V33.9238H1665.26V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1695.98 31.3611H1693.42V33.9238H1695.98V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1726.7 31.3611H1724.14V33.9238H1726.7V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1757.42 31.3611H1754.87V33.9238H1757.42V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1788.78 31.3611H1786.23V33.9238H1788.78V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1818.87 31.3611H1816.31V33.9238H1818.87V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1850.23 31.3611H1847.67V33.9238H1850.23V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1880.95 31.3611H1878.39V33.9238H1880.95V31.3611Z' fill='%233C4145'/%3e%3cpath d='M1572.45 61.4429H1569.9V64.0056H1572.45V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1603.17 61.4429H1600.62V64.0056H1603.17V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1633.9 61.4429H1631.34V64.0056H1633.9V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1665.26 61.4429H1662.7V64.0056H1665.26V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1695.98 61.4429H1693.42V64.0056H1695.98V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1726.7 61.4429H1724.14V64.0056H1726.7V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1757.42 61.4429H1754.87V64.0056H1757.42V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1788.78 61.4429H1786.23V64.0056H1788.78V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1818.87 61.4429H1816.31V64.0056H1818.87V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1850.23 61.4429H1847.67V64.0056H1850.23V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1880.95 61.4429H1878.39V64.0056H1880.95V61.4429Z' fill='%233C4145'/%3e%3cpath d='M1572.45 92.8047H1569.9V95.3674H1572.45V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1603.17 92.8047H1600.62V95.3674H1603.17V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1633.9 92.8047H1631.34V95.3674H1633.9V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1665.26 92.8047H1662.7V95.3674H1665.26V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1695.98 92.8047H1693.42V95.3674H1695.98V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1726.7 92.8047H1724.14V95.3674H1726.7V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1757.42 92.8047H1754.87V95.3674H1757.42V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1788.78 92.8047H1786.23V95.3674H1788.78V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1818.87 92.8047H1816.31V95.3674H1818.87V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1850.23 92.8047H1847.67V95.3674H1850.23V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1880.95 92.8047H1878.39V95.3674H1880.95V92.8047Z' fill='%233C4145'/%3e%3cpath d='M1572.45 123.526H1569.9V126.089H1572.45V123.526Z' fill='%233C4145'/%3e%3cpath d='M1603.17 123.526H1600.62V126.089H1603.17V123.526Z' fill='%233C4145'/%3e%3cpath d='M1633.9 123.526H1631.34V126.089H1633.9V123.526Z' fill='%233C4145'/%3e%3cpath d='M1665.26 123.526H1662.7V126.089H1665.26V123.526Z' fill='%233C4145'/%3e%3cpath d='M1695.98 123.526H1693.42V126.089H1695.98V123.526Z' fill='%233C4145'/%3e%3cpath d='M1726.7 123.526H1724.14V126.089H1726.7V123.526Z' fill='%233C4145'/%3e%3cpath d='M1757.42 123.526H1754.87V126.089H1757.42V123.526Z' fill='%233C4145'/%3e%3cpath d='M1788.78 123.526H1786.23V126.089H1788.78V123.526Z' fill='%233C4145'/%3e%3cpath d='M1818.87 123.526H1816.31V126.089H1818.87V123.526Z' fill='%233C4145'/%3e%3cpath d='M1850.23 123.526H1847.67V126.089H1850.23V123.526Z' fill='%233C4145'/%3e%3cpath d='M1880.95 123.526H1878.39V126.089H1880.95V123.526Z' fill='%233C4145'/%3e%3cpath d='M1572.45 154.248H1569.9V156.81H1572.45V154.248Z' fill='%233C4145'/%3e%3cpath d='M1603.17 154.248H1600.62V156.81H1603.17V154.248Z' fill='%233C4145'/%3e%3cpath d='M1633.9 154.248H1631.34V156.81H1633.9V154.248Z' fill='%233C4145'/%3e%3cpath d='M1665.26 154.248H1662.7V156.81H1665.26V154.248Z' fill='%233C4145'/%3e%3cpath d='M1695.98 154.248H1693.42V156.81H1695.98V154.248Z' fill='%233C4145'/%3e%3cpath d='M1726.7 154.248H1724.14V156.81H1726.7V154.248Z' fill='%233C4145'/%3e%3cpath d='M1757.42 154.248H1754.87V156.81H1757.42V154.248Z' fill='%233C4145'/%3e%3cpath d='M1788.78 154.248H1786.23V156.81H1788.78V154.248Z' fill='%233C4145'/%3e%3cpath d='M1818.87 154.248H1816.31V156.81H1818.87V154.248Z' fill='%233C4145'/%3e%3cpath d='M1850.23 154.248H1847.67V156.81H1850.23V154.248Z' fill='%233C4145'/%3e%3cpath d='M1880.95 154.248H1878.39V156.81H1880.95V154.248Z' fill='%233C4145'/%3e%3cpath d='M1572.45 185.61H1569.9V188.173H1572.45V185.61Z' fill='%233C4145'/%3e%3cpath d='M1603.17 185.61H1600.62V188.173H1603.17V185.61Z' fill='%233C4145'/%3e%3cpath d='M1633.9 185.61H1631.34V188.173H1633.9V185.61Z' fill='%233C4145'/%3e%3cpath d='M1665.26 185.61H1662.7V188.173H1665.26V185.61Z' fill='%233C4145'/%3e%3cpath d='M1695.98 185.61H1693.42V188.173H1695.98V185.61Z' fill='%233C4145'/%3e%3cpath d='M1726.7 185.61H1724.14V188.173H1726.7V185.61Z' fill='%233C4145'/%3e%3cpath d='M1757.42 185.61H1754.87V188.173H1757.42V185.61Z' fill='%233C4145'/%3e%3cpath d='M1788.78 185.61H1786.23V188.173H1788.78V185.61Z' fill='%233C4145'/%3e%3cpath d='M1818.87 185.61H1816.31V188.173H1818.87V185.61Z' fill='%233C4145'/%3e%3cpath d='M1850.23 185.61H1847.67V188.173H1850.23V185.61Z' fill='%233C4145'/%3e%3cpath d='M1880.95 185.61H1878.39V188.173H1880.95V185.61Z' fill='%233C4145'/%3e%3cpath d='M1572.45 216.331H1569.9V218.894H1572.45V216.331Z' fill='%233C4145'/%3e%3cpath d='M1603.17 216.331H1600.62V218.894H1603.17V216.331Z' fill='%233C4145'/%3e%3cpath d='M1633.9 216.331H1631.34V218.894H1633.9V216.331Z' fill='%233C4145'/%3e%3cpath d='M1665.26 216.331H1662.7V218.894H1665.26V216.331Z' fill='%233C4145'/%3e%3cpath d='M1695.98 216.331H1693.42V218.894H1695.98V216.331Z' fill='%233C4145'/%3e%3cpath d='M1726.7 216.331H1724.14V218.894H1726.7V216.331Z' fill='%233C4145'/%3e%3cpath d='M1757.42 216.331H1754.87V218.894H1757.42V216.331Z' fill='%233C4145'/%3e%3cpath d='M1788.78 216.331H1786.23V218.894H1788.78V216.331Z' fill='%233C4145'/%3e%3cpath d='M1818.87 216.331H1816.31V218.894H1818.87V216.331Z' fill='%233C4145'/%3e%3cpath d='M1850.23 216.331H1847.67V218.894H1850.23V216.331Z' fill='%233C4145'/%3e%3cpath d='M1880.95 216.331H1878.39V218.894H1880.95V216.331Z' fill='%233C4145'/%3e%3cpath d='M1572.45 247.053H1569.9V249.616H1572.45V247.053Z' fill='%233C4145'/%3e%3cpath d='M1603.17 247.053H1600.62V249.616H1603.17V247.053Z' fill='%233C4145'/%3e%3cpath d='M1633.9 247.053H1631.34V249.616H1633.9V247.053Z' fill='%233C4145'/%3e%3cpath d='M1665.26 247.053H1662.7V249.616H1665.26V247.053Z' fill='%233C4145'/%3e%3cpath d='M1695.98 247.053H1693.42V249.616H1695.98V247.053Z' fill='%233C4145'/%3e%3cpath d='M1726.7 247.053H1724.14V249.616H1726.7V247.053Z' fill='%233C4145'/%3e%3cpath d='M1757.42 247.053H1754.87V249.616H1757.42V247.053Z' fill='%233C4145'/%3e%3cpath d='M1788.78 247.053H1786.23V249.616H1788.78V247.053Z' fill='%233C4145'/%3e%3cpath d='M1818.87 247.053H1816.31V249.616H1818.87V247.053Z' fill='%233C4145'/%3e%3cpath d='M1850.23 247.053H1847.67V249.616H1850.23V247.053Z' fill='%233C4145'/%3e%3cpath d='M1880.95 247.053H1878.39V249.616H1880.95V247.053Z' fill='%233C4145'/%3e%3cpath d='M1572.45 278.415H1569.9V280.978H1572.45V278.415Z' fill='%233C4145'/%3e%3cpath d='M1603.17 278.415H1600.62V280.978H1603.17V278.415Z' fill='%233C4145'/%3e%3cpath d='M1633.9 278.415H1631.34V280.978H1633.9V278.415Z' fill='%233C4145'/%3e%3cpath d='M1665.26 278.415H1662.7V280.978H1665.26V278.415Z' fill='%233C4145'/%3e%3cpath d='M1695.98 278.415H1693.42V280.978H1695.98V278.415Z' fill='%233C4145'/%3e%3cpath d='M1726.7 278.415H1724.14V280.978H1726.7V278.415Z' fill='%233C4145'/%3e%3cpath d='M1757.42 278.415H1754.87V280.978H1757.42V278.415Z' fill='%233C4145'/%3e%3cpath d='M1788.78 278.415H1786.23V280.978H1788.78V278.415Z' fill='%233C4145'/%3e%3cpath d='M1818.87 278.415H1816.31V280.978H1818.87V278.415Z' fill='%233C4145'/%3e%3cpath d='M1850.23 278.415H1847.67V280.978H1850.23V278.415Z' fill='%233C4145'/%3e%3cpath d='M1880.95 278.415H1878.39V280.978H1880.95V278.415Z' fill='%233C4145'/%3e%3cpath d='M1572.45 309.136H1569.9V311.699H1572.45V309.136Z' fill='%233C4145'/%3e%3cpath d='M1603.17 309.136H1600.62V311.699H1603.17V309.136Z' fill='%233C4145'/%3e%3cpath d='M1633.9 309.136H1631.34V311.699H1633.9V309.136Z' fill='%233C4145'/%3e%3cpath d='M1665.26 309.136H1662.7V311.699H1665.26V309.136Z' fill='%233C4145'/%3e%3cpath d='M1695.98 309.136H1693.42V311.699H1695.98V309.136Z' fill='%233C4145'/%3e%3cpath d='M1726.7 309.136H1724.14V311.699H1726.7V309.136Z' fill='%233C4145'/%3e%3cpath d='M1757.42 309.136H1754.87V311.699H1757.42V309.136Z' fill='%233C4145'/%3e%3cpath d='M1788.78 309.136H1786.23V311.699H1788.78V309.136Z' fill='%233C4145'/%3e%3cpath d='M1818.87 309.136H1816.31V311.699H1818.87V309.136Z' fill='%233C4145'/%3e%3cpath d='M1850.23 309.136H1847.67V311.699H1850.23V309.136Z' fill='%233C4145'/%3e%3cpath d='M1880.95 309.136H1878.39V311.699H1880.95V309.136Z' fill='%233C4145'/%3e%3cpath d='M1572.45 339.857H1569.9V342.42H1572.45V339.857Z' fill='%233C4145'/%3e%3cpath d='M1603.17 339.857H1600.62V342.42H1603.17V339.857Z' fill='%233C4145'/%3e%3cpath d='M1633.9 339.857H1631.34V342.42H1633.9V339.857Z' fill='%233C4145'/%3e%3cpath d='M1665.26 339.857H1662.7V342.42H1665.26V339.857Z' fill='%233C4145'/%3e%3cpath d='M1695.98 339.857H1693.42V342.42H1695.98V339.857Z' fill='%233C4145'/%3e%3cpath d='M1726.7 339.857H1724.14V342.42H1726.7V339.857Z' fill='%233C4145'/%3e%3cpath d='M1757.42 339.857H1754.87V342.42H1757.42V339.857Z' fill='%233C4145'/%3e%3cpath d='M1788.79 339.857H1786.23V342.42H1788.79V339.857Z' fill='%233C4145'/%3e%3cpath d='M1818.87 339.857H1816.31V342.42H1818.87V339.857Z' fill='%233C4145'/%3e%3cpath d='M1850.23 339.857H1847.67V342.42H1850.23V339.857Z' fill='%233C4145'/%3e%3cpath d='M1880.95 339.857H1878.39V342.42H1880.95V339.857Z' fill='%233C4145'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_103_6809'%3e%3crect width='513.947' height='357.139' fill='white' transform='translate(0.034668)'/%3e%3c/clipPath%3e%3cclipPath id='clip1_103_6809'%3e%3crect width='514' height='357' fill='white' transform='translate(0 340)'/%3e%3c/clipPath%3e%3cclipPath id='clip2_103_6809'%3e%3crect width='513.947' height='357.139' fill='white' transform='translate(522)'/%3e%3c/clipPath%3e%3cclipPath id='clip3_103_6809'%3e%3crect width='514' height='357' fill='white' transform='translate(522 340)'/%3e%3c/clipPath%3e%3cclipPath id='clip4_103_6809'%3e%3crect width='513.947' height='357.139' fill='white' transform='translate(1044.9)'/%3e%3c/clipPath%3e%3cclipPath id='clip5_103_6809'%3e%3crect width='513.947' height='357.139' fill='white' transform='translate(1569.9)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
}
.cta__content {
  padding: 3.75rem 0;
}
.cta__body {
  margin: 0 auto;
  width: 46%;
  padding: 1.25rem 1.5rem;
  background: #fff;
}
.cta__body.w-60 {
  width: 60%;
}
.cta__title {
  margin-bottom: 0.5rem;
}
.cta__btn {
  width: 40%;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .cta {
    margin: 3.75rem 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='360' height='380' viewBox='0 0 360 380' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_103_7694)'%3e%3cpath d='M12.0585 0H9.50098V2.56273H12.0585V0Z' fill='%233C4145'/%3e%3cpath d='M12.0585 31.3611H9.50098V33.9238H12.0585V31.3611Z' fill='%233C4145'/%3e%3cpath d='M12.0585 61.4429H9.50098V64.0056H12.0585V61.4429Z' fill='%233C4145'/%3e%3cpath d='M12.0585 92.8047H9.50098V95.3674H12.0585V92.8047Z' fill='%233C4145'/%3e%3cpath d='M12.0585 123.526H9.50098V126.089H12.0585V123.526Z' fill='%233C4145'/%3e%3cpath d='M12.0585 154.248H9.50098V156.81H12.0585V154.248Z' fill='%233C4145'/%3e%3cpath d='M12.0585 185.61H9.50098V188.173H12.0585V185.61Z' fill='%233C4145'/%3e%3cpath d='M12.0585 216.331H9.50098V218.894H12.0585V216.331Z' fill='%233C4145'/%3e%3cpath d='M12.0585 247.053H9.50098V249.616H12.0585V247.053Z' fill='%233C4145'/%3e%3cpath d='M12.0585 278.415H9.50098V280.978H12.0585V278.415Z' fill='%233C4145'/%3e%3cpath d='M12.0585 309.136H9.50098V311.699H12.0585V309.136Z' fill='%233C4145'/%3e%3cpath d='M12.0595 339.857H9.50195V342.42H12.0595V339.857Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip1_103_7694)'%3e%3cpath d='M12.0751 340H9.51758V342.562H12.0751V340Z' fill='%233C4145'/%3e%3cpath d='M12.0751 371.361H9.51758V373.924H12.0751V371.361Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip2_103_7694)'%3e%3cpath d='M40.5575 0H38V2.56273H40.5575V0Z' fill='%233C4145'/%3e%3cpath d='M71.2792 0H68.7217V2.56273H71.2792V0Z' fill='%233C4145'/%3e%3cpath d='M102.001 0H99.4434V2.56273H102.001V0Z' fill='%233C4145'/%3e%3cpath d='M133.362 0H130.805V2.56273H133.362V0Z' fill='%233C4145'/%3e%3cpath d='M164.084 0H161.526V2.56273H164.084V0Z' fill='%233C4145'/%3e%3cpath d='M194.806 0H192.248V2.56273H194.806V0Z' fill='%233C4145'/%3e%3cpath d='M225.527 0H222.97V2.56273H225.527V0Z' fill='%233C4145'/%3e%3cpath d='M256.89 0H254.332V2.56273H256.89V0Z' fill='%233C4145'/%3e%3cpath d='M286.971 0H284.413V2.56273H286.971V0Z' fill='%233C4145'/%3e%3cpath d='M318.332 0H315.774V2.56273H318.332V0Z' fill='%233C4145'/%3e%3cpath d='M349.054 0H346.496V2.56273H349.054V0Z' fill='%233C4145'/%3e%3cpath d='M40.5575 31.3611H38V33.9238H40.5575V31.3611Z' fill='%233C4145'/%3e%3cpath d='M71.2792 31.3611H68.7217V33.9238H71.2792V31.3611Z' fill='%233C4145'/%3e%3cpath d='M102.001 31.3611H99.4434V33.9238H102.001V31.3611Z' fill='%233C4145'/%3e%3cpath d='M133.362 31.3611H130.805V33.9238H133.362V31.3611Z' fill='%233C4145'/%3e%3cpath d='M164.084 31.3611H161.526V33.9238H164.084V31.3611Z' fill='%233C4145'/%3e%3cpath d='M194.806 31.3611H192.248V33.9238H194.806V31.3611Z' fill='%233C4145'/%3e%3cpath d='M225.527 31.3611H222.97V33.9238H225.527V31.3611Z' fill='%233C4145'/%3e%3cpath d='M256.89 31.3611H254.332V33.9238H256.89V31.3611Z' fill='%233C4145'/%3e%3cpath d='M286.971 31.3611H284.413V33.9238H286.971V31.3611Z' fill='%233C4145'/%3e%3cpath d='M318.332 31.3611H315.774V33.9238H318.332V31.3611Z' fill='%233C4145'/%3e%3cpath d='M349.054 31.3611H346.496V33.9238H349.054V31.3611Z' fill='%233C4145'/%3e%3cpath d='M40.5575 61.4429H38V64.0056H40.5575V61.4429Z' fill='%233C4145'/%3e%3cpath d='M71.2792 61.4429H68.7217V64.0056H71.2792V61.4429Z' fill='%233C4145'/%3e%3cpath d='M102.001 61.4429H99.4434V64.0056H102.001V61.4429Z' fill='%233C4145'/%3e%3cpath d='M133.362 61.4429H130.805V64.0056H133.362V61.4429Z' fill='%233C4145'/%3e%3cpath d='M164.084 61.4429H161.526V64.0056H164.084V61.4429Z' fill='%233C4145'/%3e%3cpath d='M194.806 61.4429H192.248V64.0056H194.806V61.4429Z' fill='%233C4145'/%3e%3cpath d='M225.527 61.4429H222.97V64.0056H225.527V61.4429Z' fill='%233C4145'/%3e%3cpath d='M256.89 61.4429H254.332V64.0056H256.89V61.4429Z' fill='%233C4145'/%3e%3cpath d='M286.971 61.4429H284.413V64.0056H286.971V61.4429Z' fill='%233C4145'/%3e%3cpath d='M318.332 61.4429H315.774V64.0056H318.332V61.4429Z' fill='%233C4145'/%3e%3cpath d='M349.054 61.4429H346.496V64.0056H349.054V61.4429Z' fill='%233C4145'/%3e%3cpath d='M40.5575 92.8047H38V95.3674H40.5575V92.8047Z' fill='%233C4145'/%3e%3cpath d='M71.2792 92.8047H68.7217V95.3674H71.2792V92.8047Z' fill='%233C4145'/%3e%3cpath d='M102.001 92.8047H99.4434V95.3674H102.001V92.8047Z' fill='%233C4145'/%3e%3cpath d='M133.362 92.8047H130.805V95.3674H133.362V92.8047Z' fill='%233C4145'/%3e%3cpath d='M164.084 92.8047H161.526V95.3674H164.084V92.8047Z' fill='%233C4145'/%3e%3cpath d='M194.806 92.8047H192.248V95.3674H194.806V92.8047Z' fill='%233C4145'/%3e%3cpath d='M225.527 92.8047H222.97V95.3674H225.527V92.8047Z' fill='%233C4145'/%3e%3cpath d='M256.89 92.8047H254.332V95.3674H256.89V92.8047Z' fill='%233C4145'/%3e%3cpath d='M286.971 92.8047H284.413V95.3674H286.971V92.8047Z' fill='%233C4145'/%3e%3cpath d='M318.332 92.8047H315.774V95.3674H318.332V92.8047Z' fill='%233C4145'/%3e%3cpath d='M349.054 92.8047H346.496V95.3674H349.054V92.8047Z' fill='%233C4145'/%3e%3cpath d='M40.5575 123.526H38V126.089H40.5575V123.526Z' fill='%233C4145'/%3e%3cpath d='M71.2792 123.526H68.7217V126.089H71.2792V123.526Z' fill='%233C4145'/%3e%3cpath d='M102.001 123.526H99.4434V126.089H102.001V123.526Z' fill='%233C4145'/%3e%3cpath d='M133.362 123.526H130.805V126.089H133.362V123.526Z' fill='%233C4145'/%3e%3cpath d='M164.084 123.526H161.526V126.089H164.084V123.526Z' fill='%233C4145'/%3e%3cpath d='M194.806 123.526H192.248V126.089H194.806V123.526Z' fill='%233C4145'/%3e%3cpath d='M225.527 123.526H222.97V126.089H225.527V123.526Z' fill='%233C4145'/%3e%3cpath d='M256.89 123.526H254.332V126.089H256.89V123.526Z' fill='%233C4145'/%3e%3cpath d='M286.971 123.526H284.413V126.089H286.971V123.526Z' fill='%233C4145'/%3e%3cpath d='M318.332 123.526H315.774V126.089H318.332V123.526Z' fill='%233C4145'/%3e%3cpath d='M349.054 123.526H346.496V126.089H349.054V123.526Z' fill='%233C4145'/%3e%3cpath d='M40.5575 154.248H38V156.81H40.5575V154.248Z' fill='%233C4145'/%3e%3cpath d='M71.2792 154.248H68.7217V156.81H71.2792V154.248Z' fill='%233C4145'/%3e%3cpath d='M102.001 154.248H99.4434V156.81H102.001V154.248Z' fill='%233C4145'/%3e%3cpath d='M133.362 154.248H130.805V156.81H133.362V154.248Z' fill='%233C4145'/%3e%3cpath d='M164.084 154.248H161.526V156.81H164.084V154.248Z' fill='%233C4145'/%3e%3cpath d='M194.806 154.248H192.248V156.81H194.806V154.248Z' fill='%233C4145'/%3e%3cpath d='M225.527 154.248H222.97V156.81H225.527V154.248Z' fill='%233C4145'/%3e%3cpath d='M256.89 154.248H254.332V156.81H256.89V154.248Z' fill='%233C4145'/%3e%3cpath d='M286.971 154.248H284.413V156.81H286.971V154.248Z' fill='%233C4145'/%3e%3cpath d='M318.332 154.248H315.774V156.81H318.332V154.248Z' fill='%233C4145'/%3e%3cpath d='M349.054 154.248H346.496V156.81H349.054V154.248Z' fill='%233C4145'/%3e%3cpath d='M40.5575 185.61H38V188.173H40.5575V185.61Z' fill='%233C4145'/%3e%3cpath d='M71.2792 185.61H68.7217V188.173H71.2792V185.61Z' fill='%233C4145'/%3e%3cpath d='M102.001 185.61H99.4434V188.173H102.001V185.61Z' fill='%233C4145'/%3e%3cpath d='M133.362 185.61H130.805V188.173H133.362V185.61Z' fill='%233C4145'/%3e%3cpath d='M164.084 185.61H161.526V188.173H164.084V185.61Z' fill='%233C4145'/%3e%3cpath d='M194.806 185.61H192.248V188.173H194.806V185.61Z' fill='%233C4145'/%3e%3cpath d='M225.527 185.61H222.97V188.173H225.527V185.61Z' fill='%233C4145'/%3e%3cpath d='M256.89 185.61H254.332V188.173H256.89V185.61Z' fill='%233C4145'/%3e%3cpath d='M286.971 185.61H284.413V188.173H286.971V185.61Z' fill='%233C4145'/%3e%3cpath d='M318.332 185.61H315.774V188.173H318.332V185.61Z' fill='%233C4145'/%3e%3cpath d='M349.054 185.61H346.496V188.173H349.054V185.61Z' fill='%233C4145'/%3e%3cpath d='M40.5575 216.331H38V218.894H40.5575V216.331Z' fill='%233C4145'/%3e%3cpath d='M71.2792 216.331H68.7217V218.894H71.2792V216.331Z' fill='%233C4145'/%3e%3cpath d='M102.001 216.331H99.4434V218.894H102.001V216.331Z' fill='%233C4145'/%3e%3cpath d='M133.362 216.331H130.805V218.894H133.362V216.331Z' fill='%233C4145'/%3e%3cpath d='M164.084 216.331H161.526V218.894H164.084V216.331Z' fill='%233C4145'/%3e%3cpath d='M194.806 216.331H192.248V218.894H194.806V216.331Z' fill='%233C4145'/%3e%3cpath d='M225.527 216.331H222.97V218.894H225.527V216.331Z' fill='%233C4145'/%3e%3cpath d='M256.89 216.331H254.332V218.894H256.89V216.331Z' fill='%233C4145'/%3e%3cpath d='M286.971 216.331H284.413V218.894H286.971V216.331Z' fill='%233C4145'/%3e%3cpath d='M318.332 216.331H315.774V218.894H318.332V216.331Z' fill='%233C4145'/%3e%3cpath d='M349.054 216.331H346.496V218.894H349.054V216.331Z' fill='%233C4145'/%3e%3cpath d='M40.5575 247.053H38V249.616H40.5575V247.053Z' fill='%233C4145'/%3e%3cpath d='M71.2792 247.053H68.7217V249.616H71.2792V247.053Z' fill='%233C4145'/%3e%3cpath d='M102.001 247.053H99.4434V249.616H102.001V247.053Z' fill='%233C4145'/%3e%3cpath d='M133.362 247.053H130.805V249.616H133.362V247.053Z' fill='%233C4145'/%3e%3cpath d='M164.084 247.053H161.526V249.616H164.084V247.053Z' fill='%233C4145'/%3e%3cpath d='M194.806 247.053H192.248V249.616H194.806V247.053Z' fill='%233C4145'/%3e%3cpath d='M225.527 247.053H222.97V249.616H225.527V247.053Z' fill='%233C4145'/%3e%3cpath d='M256.89 247.053H254.332V249.616H256.89V247.053Z' fill='%233C4145'/%3e%3cpath d='M286.971 247.053H284.413V249.616H286.971V247.053Z' fill='%233C4145'/%3e%3cpath d='M318.332 247.053H315.774V249.616H318.332V247.053Z' fill='%233C4145'/%3e%3cpath d='M349.054 247.053H346.496V249.616H349.054V247.053Z' fill='%233C4145'/%3e%3cpath d='M40.5575 278.415H38V280.978H40.5575V278.415Z' fill='%233C4145'/%3e%3cpath d='M71.2792 278.415H68.7217V280.978H71.2792V278.415Z' fill='%233C4145'/%3e%3cpath d='M102.001 278.415H99.4434V280.978H102.001V278.415Z' fill='%233C4145'/%3e%3cpath d='M133.362 278.415H130.805V280.978H133.362V278.415Z' fill='%233C4145'/%3e%3cpath d='M164.084 278.415H161.526V280.978H164.084V278.415Z' fill='%233C4145'/%3e%3cpath d='M194.806 278.415H192.248V280.978H194.806V278.415Z' fill='%233C4145'/%3e%3cpath d='M225.527 278.415H222.97V280.978H225.527V278.415Z' fill='%233C4145'/%3e%3cpath d='M256.89 278.415H254.332V280.978H256.89V278.415Z' fill='%233C4145'/%3e%3cpath d='M286.971 278.415H284.413V280.978H286.971V278.415Z' fill='%233C4145'/%3e%3cpath d='M318.332 278.415H315.774V280.978H318.332V278.415Z' fill='%233C4145'/%3e%3cpath d='M349.054 278.415H346.496V280.978H349.054V278.415Z' fill='%233C4145'/%3e%3cpath d='M40.5575 309.136H38V311.699H40.5575V309.136Z' fill='%233C4145'/%3e%3cpath d='M71.2792 309.136H68.7217V311.699H71.2792V309.136Z' fill='%233C4145'/%3e%3cpath d='M102.001 309.136H99.4434V311.699H102.001V309.136Z' fill='%233C4145'/%3e%3cpath d='M133.362 309.136H130.805V311.699H133.362V309.136Z' fill='%233C4145'/%3e%3cpath d='M164.084 309.136H161.526V311.699H164.084V309.136Z' fill='%233C4145'/%3e%3cpath d='M194.806 309.136H192.248V311.699H194.806V309.136Z' fill='%233C4145'/%3e%3cpath d='M225.527 309.136H222.97V311.699H225.527V309.136Z' fill='%233C4145'/%3e%3cpath d='M256.89 309.136H254.332V311.699H256.89V309.136Z' fill='%233C4145'/%3e%3cpath d='M286.971 309.136H284.413V311.699H286.971V309.136Z' fill='%233C4145'/%3e%3cpath d='M318.332 309.136H315.774V311.699H318.332V309.136Z' fill='%233C4145'/%3e%3cpath d='M349.054 309.136H346.496V311.699H349.054V309.136Z' fill='%233C4145'/%3e%3cpath d='M40.5575 339.857H38V342.42H40.5575V339.857Z' fill='%233C4145'/%3e%3cpath d='M71.2792 339.857H68.7217V342.42H71.2792V339.857Z' fill='%233C4145'/%3e%3cpath d='M102.001 339.857H99.4434V342.42H102.001V339.857Z' fill='%233C4145'/%3e%3cpath d='M133.362 339.857H130.805V342.42H133.362V339.857Z' fill='%233C4145'/%3e%3cpath d='M164.085 339.857H161.527V342.42H164.085V339.857Z' fill='%233C4145'/%3e%3cpath d='M194.806 339.857H192.248V342.42H194.806V339.857Z' fill='%233C4145'/%3e%3cpath d='M225.527 339.857H222.97V342.42H225.527V339.857Z' fill='%233C4145'/%3e%3cpath d='M256.89 339.857H254.332V342.42H256.89V339.857Z' fill='%233C4145'/%3e%3cpath d='M286.971 339.857H284.413V342.42H286.971V339.857Z' fill='%233C4145'/%3e%3cpath d='M318.332 339.857H315.774V342.42H318.332V339.857Z' fill='%233C4145'/%3e%3cpath d='M349.054 339.857H346.496V342.42H349.054V339.857Z' fill='%233C4145'/%3e%3c/g%3e%3cg clip-path='url(%23clip3_103_7694)'%3e%3cpath d='M40.5575 340H38V342.563H40.5575V340Z' fill='%233C4145'/%3e%3cpath d='M71.2822 340H68.7246V342.562H71.2822V340Z' fill='%233C4145'/%3e%3cpath d='M102.007 340H99.4492V342.562H102.007V340Z' fill='%233C4145'/%3e%3cpath d='M133.372 340H130.814V342.562H133.372V340Z' fill='%233C4145'/%3e%3cpath d='M164.097 340H161.539V342.562H164.097V340Z' fill='%233C4145'/%3e%3cpath d='M194.822 340H192.265V342.562H194.822V340Z' fill='%233C4145'/%3e%3cpath d='M225.547 340H222.989V342.562H225.547V340Z' fill='%233C4145'/%3e%3cpath d='M256.911 340H254.354V342.562H256.911V340Z' fill='%233C4145'/%3e%3cpath d='M286.996 340H284.438V342.562H286.996V340Z' fill='%233C4145'/%3e%3cpath d='M318.361 340H315.804V342.562H318.361V340Z' fill='%233C4145'/%3e%3cpath d='M349.086 340H346.528V342.562H349.086V340Z' fill='%233C4145'/%3e%3cpath d='M40.5575 371.361H38V373.924H40.5575V371.361Z' fill='%233C4145'/%3e%3cpath d='M71.2822 371.361H68.7246V373.924H71.2822V371.361Z' fill='%233C4145'/%3e%3cpath d='M102.007 371.361H99.4492V373.924H102.007V371.361Z' fill='%233C4145'/%3e%3cpath d='M133.372 371.361H130.814V373.924H133.372V371.361Z' fill='%233C4145'/%3e%3cpath d='M164.097 371.361H161.539V373.924H164.097V371.361Z' fill='%233C4145'/%3e%3cpath d='M194.822 371.361H192.265V373.924H194.822V371.361Z' fill='%233C4145'/%3e%3cpath d='M225.547 371.361H222.989V373.924H225.547V371.361Z' fill='%233C4145'/%3e%3cpath d='M256.911 371.361H254.354V373.924H256.911V371.361Z' fill='%233C4145'/%3e%3cpath d='M286.996 371.361H284.438V373.924H286.996V371.361Z' fill='%233C4145'/%3e%3cpath d='M318.361 371.361H315.804V373.924H318.361V371.361Z' fill='%233C4145'/%3e%3cpath d='M349.086 371.361H346.528V373.924H349.086V371.361Z' fill='%233C4145'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_103_7694'%3e%3crect width='513.947' height='357.139' fill='white' transform='translate(-483.965)'/%3e%3c/clipPath%3e%3cclipPath id='clip1_103_7694'%3e%3crect width='514' height='357' fill='white' transform='translate(-484 340)'/%3e%3c/clipPath%3e%3cclipPath id='clip2_103_7694'%3e%3crect width='513.947' height='357.139' fill='white' transform='translate(38)'/%3e%3c/clipPath%3e%3cclipPath id='clip3_103_7694'%3e%3crect width='514' height='357' fill='white' transform='translate(38 340)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
  }
  .cta__content {
    padding: 4rem 0 5rem;
  }
  .cta__body {
    width: 100%;
    padding: 0.75rem;
  }
  .cta__body.w-60 {
    width: 100%;
  }
  .cta__title {
    margin-bottom: 0.75rem;
  }
  .cta__btn {
    width: 100%;
  }
}
.footer {
  background: #3C4145;
  color: #fff;
}
.footer__top {
  padding: 2.375rem 0 5rem;
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  display: block;
  width: 8.375rem;
  height: 4.375rem;
  aspect-ratio: 1/1;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s;
}
.footer__logo:hover img {
  /*transform: scale(1.05) rotate(-10deg);*/
}
.footer__menu-item{
  height: fit-content;
}
.footer__menu {
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: min-content;
  gap: 1.75rem 1rem;
}
.footer__menu-link {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  transition: 0.3s;
}
.footer__menu-link:hover {
  color: #EA5B0C;
}

.footer__contacts {
  display: flex;
  gap: 3.75rem;
}
.footer__contacts-mail-title {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.footer__contacts-mail-value {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 26.4px */
  transition: 0.3s;
}
.footer__contacts-mail-value:hover {
  color: #EA5B0C;
}
.footer__contacts-tel {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  transition: 0.3s;
}
.footer__contacts-tel:hover {
  color: #EA5B0C;
}
.footer__contacts-address {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.footer__contacts-solials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__contacts-solials-item {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.footer__contacts-solials-item.--tg {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3203)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0456 40 40 31.0456 40 20C40 8.9544 31.0456 0 20 0C8.9544 0 0 8.9544 0 20C0 31.0456 8.9544 40 20 40ZM28.7908 12.7776C28.9452 11.0256 27.0948 11.7472 27.0948 11.7472C25.7288 12.3128 24.32 12.8872 22.896 13.468C18.48 15.2692 13.9184 17.13 10.0324 18.9616C7.9252 19.7344 9.1588 20.5072 9.1588 20.5072L12.4992 21.538C14.0412 22.002 14.8632 21.4864 14.8632 21.4864L22.0584 16.5912C24.628 14.8392 24.0112 16.282 23.3944 16.9004L17.9984 22.0532C17.176 22.7748 17.5872 23.3932 17.9468 23.7024C18.9668 24.602 21.4748 26.248 22.5696 26.9664C22.8544 27.1532 23.0436 27.2776 23.0864 27.3096C23.3432 27.5156 24.7308 28.4432 25.656 28.2372C26.5812 28.0308 26.684 26.8456 26.684 26.8456L27.9172 18.7552C28.102 17.3508 28.3144 16.0008 28.484 14.9224C28.644 13.904 28.766 13.1284 28.7908 12.7776Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3203'%3e%3crect width='40' height='40' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.footer__contacts-solials-item.--tg:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3203)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0456 40 40 31.0456 40 20C40 8.9544 31.0456 0 20 0C8.9544 0 0 8.9544 0 20C0 31.0456 8.9544 40 20 40ZM28.7908 12.7776C28.9452 11.0256 27.0948 11.7472 27.0948 11.7472C25.7288 12.3128 24.32 12.8872 22.896 13.468C18.48 15.2692 13.9184 17.13 10.0324 18.9616C7.9252 19.7344 9.1588 20.5072 9.1588 20.5072L12.4992 21.538C14.0412 22.002 14.8632 21.4864 14.8632 21.4864L22.0584 16.5912C24.628 14.8392 24.0112 16.282 23.3944 16.9004L17.9984 22.0532C17.176 22.7748 17.5872 23.3932 17.9468 23.7024C18.9668 24.602 21.4748 26.248 22.5696 26.9664C22.8544 27.1532 23.0436 27.2776 23.0864 27.3096C23.3432 27.5156 24.7308 28.4432 25.656 28.2372C26.5812 28.0308 26.684 26.8456 26.684 26.8456L27.9172 18.7552C28.102 17.3508 28.3144 16.0008 28.484 14.9224C28.644 13.904 28.766 13.1284 28.7908 12.7776Z' fill='%23EA5B0C'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3203'%3e%3crect width='40' height='40' fill='%23EA5B0C'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.footer__contacts-solials-item.--dzen {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3205)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0457 40 40 31.0457 40 20C40 8.95432 31.0457 0 20 0C8.95432 0 0 8.95432 0 20C0 31.0457 8.95432 40 20 40ZM14.1334 11.1538C14.637 11.0308 15.0581 10.9643 16.0818 10.8461C16.3954 10.8099 16.6366 10.8049 18.1814 10.8026L19.9267 10.8L19.9131 10.9381C19.9057 11.014 19.865 11.618 19.8226 12.2803C19.6487 15.001 19.5674 15.6306 19.282 16.4671C19.163 16.8156 18.8765 17.3866 18.6891 17.6484C18.5058 17.9044 18.1358 18.292 17.8964 18.4788C17.2198 19.0067 16.3729 19.3241 15.0744 19.5362C14.0073 19.7106 13.1699 19.7856 11.4766 19.8586C11.1843 19.8712 10.9125 19.8856 10.8726 19.8908L10.8 19.9002L10.8066 18.1836L10.8132 16.4671L10.919 15.5944C11.0696 14.3509 11.1322 14.0096 11.3035 13.4967C11.543 12.7799 11.968 12.1958 12.5241 11.8191C12.9218 11.5497 13.5122 11.3056 14.1334 11.1538ZM20.223 13.0094C20.1924 12.566 20.1003 10.9372 20.1003 10.8387C20.1003 10.8022 20.1948 10.8 21.7754 10.8C23.3516 10.8 23.4643 10.8026 23.685 10.8438C23.814 10.8678 24.1138 10.9077 24.3512 10.9323C25.3232 11.0331 25.7433 11.0954 26.1348 11.1967C27.2389 11.4824 28.0373 12.0882 28.48 12.9762C28.7111 13.4397 28.8014 13.7606 28.9214 14.5449C29.0124 15.1407 29.0955 15.8349 29.1461 16.4229C29.1876 16.9046 29.2155 18.9005 29.1892 19.4966L29.173 19.8614L28.9817 19.8485C28.2036 19.796 27.7186 19.7648 27.0745 19.7261C24.9716 19.5995 24.1143 19.4772 23.3672 19.1972C22.6979 18.9463 22.0668 18.5217 21.6487 18.0411C21.2933 17.6325 20.9787 17.0894 20.7912 16.561C20.5203 15.7974 20.3359 14.6447 20.223 13.0094ZM10.8013 23.3248V20.0794L10.8733 20.0795C10.9128 20.0796 11.0996 20.0941 11.2884 20.1118C11.741 20.1542 12.0784 20.1789 13.115 20.2456C14.767 20.3518 15.5273 20.4411 16.1366 20.6005C17.6801 21.0043 18.7647 22.0181 19.2665 23.5261C19.4874 24.19 19.6274 25.0481 19.7728 26.6303C19.8176 27.1182 19.8232 27.2995 19.8205 28.1836C19.8188 28.7342 19.8116 29.1903 19.8046 29.1974C19.783 29.219 16.7977 29.1029 15.7054 29.038C15.0386 28.9984 14.6513 28.9378 13.9563 28.764C13.408 28.627 13.0853 28.5108 12.805 28.3496C12.0873 27.9368 11.5988 27.307 11.3015 26.4108C11.1445 25.9378 11.0599 25.4599 10.9011 24.149L10.8013 23.3248ZM28.3365 20.1568C28.6105 20.1385 28.8845 20.1203 28.9454 20.1165C29.0063 20.1127 29.0884 20.1077 29.128 20.1055L29.2 20.1016L29.1997 21.4327C29.1993 23.0667 29.1711 23.7311 29.0644 24.6198C28.9797 25.3252 28.8146 26.1237 28.6659 26.5476C28.3092 27.5641 27.5997 28.2715 26.579 28.6282C26.0694 28.8062 25.1811 28.9775 24.3402 29.0598C23.6204 29.1302 23.3101 29.1414 21.7664 29.1533L20.1888 29.1654V28.3385C20.1888 27.614 20.1971 27.4107 20.2555 26.697C20.3534 25.5021 20.4193 24.9513 20.5345 24.3657C20.8896 22.561 21.7846 21.3994 23.286 20.7946C24.0211 20.4985 24.8866 20.372 27.1188 20.2345C27.5146 20.2101 28.0625 20.1752 28.3365 20.1568Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3205'%3e%3crect width='40' height='40' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.footer__contacts-solials-item.--dzen:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3205)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0457 40 40 31.0457 40 20C40 8.95432 31.0457 0 20 0C8.95432 0 0 8.95432 0 20C0 31.0457 8.95432 40 20 40ZM14.1334 11.1538C14.637 11.0308 15.0581 10.9643 16.0818 10.8461C16.3954 10.8099 16.6366 10.8049 18.1814 10.8026L19.9267 10.8L19.9131 10.9381C19.9057 11.014 19.865 11.618 19.8226 12.2803C19.6487 15.001 19.5674 15.6306 19.282 16.4671C19.163 16.8156 18.8765 17.3866 18.6891 17.6484C18.5058 17.9044 18.1358 18.292 17.8964 18.4788C17.2198 19.0067 16.3729 19.3241 15.0744 19.5362C14.0073 19.7106 13.1699 19.7856 11.4766 19.8586C11.1843 19.8712 10.9125 19.8856 10.8726 19.8908L10.8 19.9002L10.8066 18.1836L10.8132 16.4671L10.919 15.5944C11.0696 14.3509 11.1322 14.0096 11.3035 13.4967C11.543 12.7799 11.968 12.1958 12.5241 11.8191C12.9218 11.5497 13.5122 11.3056 14.1334 11.1538ZM20.223 13.0094C20.1924 12.566 20.1003 10.9372 20.1003 10.8387C20.1003 10.8022 20.1948 10.8 21.7754 10.8C23.3516 10.8 23.4643 10.8026 23.685 10.8438C23.814 10.8678 24.1138 10.9077 24.3512 10.9323C25.3232 11.0331 25.7433 11.0954 26.1348 11.1967C27.2389 11.4824 28.0373 12.0882 28.48 12.9762C28.7111 13.4397 28.8014 13.7606 28.9214 14.5449C29.0124 15.1407 29.0955 15.8349 29.1461 16.4229C29.1876 16.9046 29.2155 18.9005 29.1892 19.4966L29.173 19.8614L28.9817 19.8485C28.2036 19.796 27.7186 19.7648 27.0745 19.7261C24.9716 19.5995 24.1143 19.4772 23.3672 19.1972C22.6979 18.9463 22.0668 18.5217 21.6487 18.0411C21.2933 17.6325 20.9787 17.0894 20.7912 16.561C20.5203 15.7974 20.3359 14.6447 20.223 13.0094ZM10.8013 23.3248V20.0794L10.8733 20.0795C10.9128 20.0796 11.0996 20.0941 11.2884 20.1118C11.741 20.1542 12.0784 20.1789 13.115 20.2456C14.767 20.3518 15.5273 20.4411 16.1366 20.6005C17.6801 21.0043 18.7647 22.0181 19.2665 23.5261C19.4874 24.19 19.6274 25.0481 19.7728 26.6303C19.8176 27.1182 19.8232 27.2995 19.8205 28.1836C19.8188 28.7342 19.8116 29.1903 19.8046 29.1974C19.783 29.219 16.7977 29.1029 15.7054 29.038C15.0386 28.9984 14.6513 28.9378 13.9563 28.764C13.408 28.627 13.0853 28.5108 12.805 28.3496C12.0873 27.9368 11.5988 27.307 11.3015 26.4108C11.1445 25.9378 11.0599 25.4599 10.9011 24.149L10.8013 23.3248ZM28.3365 20.1568C28.6105 20.1385 28.8845 20.1203 28.9454 20.1165C29.0063 20.1127 29.0884 20.1077 29.128 20.1055L29.2 20.1016L29.1997 21.4327C29.1993 23.0667 29.1711 23.7311 29.0644 24.6198C28.9797 25.3252 28.8146 26.1237 28.6659 26.5476C28.3092 27.5641 27.5997 28.2715 26.579 28.6282C26.0694 28.8062 25.1811 28.9775 24.3402 29.0598C23.6204 29.1302 23.3101 29.1414 21.7664 29.1533L20.1888 29.1654V28.3385C20.1888 27.614 20.1971 27.4107 20.2555 26.697C20.3534 25.5021 20.4193 24.9513 20.5345 24.3657C20.8896 22.561 21.7846 21.3994 23.286 20.7946C24.0211 20.4985 24.8866 20.372 27.1188 20.2345C27.5146 20.2101 28.0625 20.1752 28.3365 20.1568Z' fill='%23EA5B0C'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3205'%3e%3crect width='40' height='40' fill='%23EA5B0C'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.footer__bottom {
  padding: 1.5rem 0 5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #4F5559;
  gap: 1rem;
}
.footer__bottom-left {
  width: 60%;
  display: flex;
  gap: 2.5rem;
}
.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.footer__bottom-text {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
}
.footer__bottom a {
  transition: 0.3s;
}
.footer__bottom a:hover {
  opacity: 1;
  color: #EA5B0C;
}

@media (max-width: 768px) {
  .footer__top {
    position: relative;
    padding: 1.5rem 0 7rem;
    flex-wrap: wrap;
    gap: 2rem 5%;
  }
  .footer__logo {
    order: 1;
    width: 7rem;
    height: 5rem;
  }
  .footer__menu {
    height: -moz-fit-content;
    height: fit-content;
    width: 55%;
    margin-left: auto;
    order: 3;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .footer__menu-link {
    font-size: 1.125rem;
    line-height: 140%;
  }
  .footer__contacts {
    order: 2;
    width: 55%;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer__contacts-mail {
    position: absolute;
    right: 0;
    bottom: 2rem;
    width: 55%;
  }
  .footer__contacts-mail-title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  .footer__contacts-mail-value {
    font-size: 0.875rem;
  }
  .footer__contacts-tel {
    font-size: 1.125rem;
  }
  .footer__contacts-address {
    font-size: 0.875rem;
  }
  .footer__contacts-solials {
    position: absolute;
    left: 0;
    top: 8.5rem;
    width: 40%;
    margin-top: 0;
    gap: 0.5rem;
  }
  .footer__contacts-solials-item {
    width: 2.25rem;
    height: 2.25rem;
  }
  .footer__bottom {
    padding: 1.25rem 0 3rem 0;
    flex-direction: column;
    gap: 1.25rem;
  }
  .footer__bottom-left {
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
  }
  .footer__bottom-right {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.team-grid {
  margin: 5rem 0;
}
.team-grid__title {
  margin-bottom: 2.5rem;
}
.team-grid__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.team-grid__item {
  min-height: 15.5rem;
  padding: 2rem;
  transition: 0.3s;
}
.team-grid__item:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
.team-grid__item.text-white {
  color: #fff;
}
.team-grid__item-title {
  margin-bottom: 1rem;
}
.team-grid__item-text {
  width: 95%;
}
.team-grid__item.is-orange {
  background: #FDC266;
}
.team-grid__item.is-orange:hover {
  background: #FFA52F;
}
.team-grid__item.is-pink {
  background: #D66788;
}
.team-grid__item.is-pink:hover {
  background: #DCBBC4;
}
.team-grid__item.is-red {
  background: #D66788;
}
.team-grid__item.is-red:hover {
  background: #DCBBC4;
}
.team-grid__item.is-blue {
  background: #87C5DE;
}
.team-grid__item.is-blue:hover {
  background: #519FBC;
}
.team-grid__item.is-purple {
  background: #A287CA;
}
.team-grid__item.is-purple:hover {
  background: #7B4DB3;
}

@media (max-width: 768px) {
  .team-grid {
    margin: 3.75rem 0;
  }
  .team-grid__title {
    margin-bottom: 1.5rem;
  }
  .team-grid__content {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
  .team-grid__item {
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding: 2rem 1.25rem;
  }
  .team-grid__item:nth-child(2) {
    grid-column-start: unset;
    grid-column-end: unset;
    grid-row-start: unset;
    grid-row-end: unset;
  }
  .team-grid__item-title {
    margin-bottom: 0.75rem;
  }
  .team-grid__item-text {
    width: 95%;
  }
}
.map-block {
  padding: 5rem 0 3.75rem;
}
.map-block__content {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 5rem;
}
.map-block__map {
  width: 100%;
  aspect-ratio: 1/0.8;
  overflow: hidden;
}
.map-block__map .ymaps-layers-pane {
  -webkit-filter: grayscale(100%);
}
.map-block__map .ymaps-map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.map-block__title {
  margin-bottom: 0.75rem;
  color: #EA5B0C;
}
.map-block__text {
  margin-bottom: 1.25rem;
}
.map-block__address {
  margin-bottom: 0.75rem;
}
.map-block__tel {
  display: block;
  margin-bottom: 1.25rem;
  transition: 0.3s;
}
.map-block__tel:hover {
  color: #EA5B0C;
}
.map-block__mails {
  margin-bottom: 1.25rem;
}
.map-block__mails-title {
  margin-bottom: 0.75rem;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.map-block__mails-row {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
/* .map-block__mails-row a {
  font-size: 1.875rem;
  transition: 0.3s;
} */
.map-block__mails-row a:hover {
  color: #EA5B0C;
}
.map-block__socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.map-block__socials-item {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.map-block__socials-item.--tg {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3203)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0456 40 40 31.0456 40 20C40 8.9544 31.0456 0 20 0C8.9544 0 0 8.9544 0 20C0 31.0456 8.9544 40 20 40ZM28.7908 12.7776C28.9452 11.0256 27.0948 11.7472 27.0948 11.7472C25.7288 12.3128 24.32 12.8872 22.896 13.468C18.48 15.2692 13.9184 17.13 10.0324 18.9616C7.9252 19.7344 9.1588 20.5072 9.1588 20.5072L12.4992 21.538C14.0412 22.002 14.8632 21.4864 14.8632 21.4864L22.0584 16.5912C24.628 14.8392 24.0112 16.282 23.3944 16.9004L17.9984 22.0532C17.176 22.7748 17.5872 23.3932 17.9468 23.7024C18.9668 24.602 21.4748 26.248 22.5696 26.9664C22.8544 27.1532 23.0436 27.2776 23.0864 27.3096C23.3432 27.5156 24.7308 28.4432 25.656 28.2372C26.5812 28.0308 26.684 26.8456 26.684 26.8456L27.9172 18.7552C28.102 17.3508 28.3144 16.0008 28.484 14.9224C28.644 13.904 28.766 13.1284 28.7908 12.7776Z' fill='%233C4145'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3203'%3e%3crect width='40' height='40' fill='%233C4145'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.map-block__socials-item.--tg:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3203)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0456 40 40 31.0456 40 20C40 8.9544 31.0456 0 20 0C8.9544 0 0 8.9544 0 20C0 31.0456 8.9544 40 20 40ZM28.7908 12.7776C28.9452 11.0256 27.0948 11.7472 27.0948 11.7472C25.7288 12.3128 24.32 12.8872 22.896 13.468C18.48 15.2692 13.9184 17.13 10.0324 18.9616C7.9252 19.7344 9.1588 20.5072 9.1588 20.5072L12.4992 21.538C14.0412 22.002 14.8632 21.4864 14.8632 21.4864L22.0584 16.5912C24.628 14.8392 24.0112 16.282 23.3944 16.9004L17.9984 22.0532C17.176 22.7748 17.5872 23.3932 17.9468 23.7024C18.9668 24.602 21.4748 26.248 22.5696 26.9664C22.8544 27.1532 23.0436 27.2776 23.0864 27.3096C23.3432 27.5156 24.7308 28.4432 25.656 28.2372C26.5812 28.0308 26.684 26.8456 26.684 26.8456L27.9172 18.7552C28.102 17.3508 28.3144 16.0008 28.484 14.9224C28.644 13.904 28.766 13.1284 28.7908 12.7776Z' fill='%23EA5B0C'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3203'%3e%3crect width='40' height='40' fill='%23EA5B0C'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.map-block__socials-item.--dzen {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3205)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0457 40 40 31.0457 40 20C40 8.95432 31.0457 0 20 0C8.95432 0 0 8.95432 0 20C0 31.0457 8.95432 40 20 40ZM14.1334 11.1538C14.637 11.0308 15.0581 10.9643 16.0818 10.8461C16.3954 10.8099 16.6366 10.8049 18.1814 10.8026L19.9267 10.8L19.9131 10.9381C19.9057 11.014 19.865 11.618 19.8226 12.2803C19.6487 15.001 19.5674 15.6306 19.282 16.4671C19.163 16.8156 18.8765 17.3866 18.6891 17.6484C18.5058 17.9044 18.1358 18.292 17.8964 18.4788C17.2198 19.0067 16.3729 19.3241 15.0744 19.5362C14.0073 19.7106 13.1699 19.7856 11.4766 19.8586C11.1843 19.8712 10.9125 19.8856 10.8726 19.8908L10.8 19.9002L10.8066 18.1836L10.8132 16.4671L10.919 15.5944C11.0696 14.3509 11.1322 14.0096 11.3035 13.4967C11.543 12.7799 11.968 12.1958 12.5241 11.8191C12.9218 11.5497 13.5122 11.3056 14.1334 11.1538ZM20.223 13.0094C20.1924 12.566 20.1003 10.9372 20.1003 10.8387C20.1003 10.8022 20.1948 10.8 21.7754 10.8C23.3516 10.8 23.4643 10.8026 23.685 10.8438C23.814 10.8678 24.1138 10.9077 24.3512 10.9323C25.3232 11.0331 25.7433 11.0954 26.1348 11.1967C27.2389 11.4824 28.0373 12.0882 28.48 12.9762C28.7111 13.4397 28.8014 13.7606 28.9214 14.5449C29.0124 15.1407 29.0955 15.8349 29.1461 16.4229C29.1876 16.9046 29.2155 18.9005 29.1892 19.4966L29.173 19.8614L28.9817 19.8485C28.2036 19.796 27.7186 19.7648 27.0745 19.7261C24.9716 19.5995 24.1143 19.4772 23.3672 19.1972C22.6979 18.9463 22.0668 18.5217 21.6487 18.0411C21.2933 17.6325 20.9787 17.0894 20.7912 16.561C20.5203 15.7974 20.3359 14.6447 20.223 13.0094ZM10.8013 23.3248V20.0794L10.8733 20.0795C10.9128 20.0796 11.0996 20.0941 11.2884 20.1118C11.741 20.1542 12.0784 20.1789 13.115 20.2456C14.767 20.3518 15.5273 20.4411 16.1366 20.6005C17.6801 21.0043 18.7647 22.0181 19.2665 23.5261C19.4874 24.19 19.6274 25.0481 19.7728 26.6303C19.8176 27.1182 19.8232 27.2995 19.8205 28.1836C19.8188 28.7342 19.8116 29.1903 19.8046 29.1974C19.783 29.219 16.7977 29.1029 15.7054 29.038C15.0386 28.9984 14.6513 28.9378 13.9563 28.764C13.408 28.627 13.0853 28.5108 12.805 28.3496C12.0873 27.9368 11.5988 27.307 11.3015 26.4108C11.1445 25.9378 11.0599 25.4599 10.9011 24.149L10.8013 23.3248ZM28.3365 20.1568C28.6105 20.1385 28.8845 20.1203 28.9454 20.1165C29.0063 20.1127 29.0884 20.1077 29.128 20.1055L29.2 20.1016L29.1997 21.4327C29.1993 23.0667 29.1711 23.7311 29.0644 24.6198C28.9797 25.3252 28.8146 26.1237 28.6659 26.5476C28.3092 27.5641 27.5997 28.2715 26.579 28.6282C26.0694 28.8062 25.1811 28.9775 24.3402 29.0598C23.6204 29.1302 23.3101 29.1414 21.7664 29.1533L20.1888 29.1654V28.3385C20.1888 27.614 20.1971 27.4107 20.2555 26.697C20.3534 25.5021 20.4193 24.9513 20.5345 24.3657C20.8896 22.561 21.7846 21.3994 23.286 20.7946C24.0211 20.4985 24.8866 20.372 27.1188 20.2345C27.5146 20.2101 28.0625 20.1752 28.3365 20.1568Z' fill='%233C4145'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3205'%3e%3crect width='40' height='40' fill='%233C4145'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.map-block__socials-item.--dzen:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cg clip-path='url(%23clip0_45_3205)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0457 40 40 31.0457 40 20C40 8.95432 31.0457 0 20 0C8.95432 0 0 8.95432 0 20C0 31.0457 8.95432 40 20 40ZM14.1334 11.1538C14.637 11.0308 15.0581 10.9643 16.0818 10.8461C16.3954 10.8099 16.6366 10.8049 18.1814 10.8026L19.9267 10.8L19.9131 10.9381C19.9057 11.014 19.865 11.618 19.8226 12.2803C19.6487 15.001 19.5674 15.6306 19.282 16.4671C19.163 16.8156 18.8765 17.3866 18.6891 17.6484C18.5058 17.9044 18.1358 18.292 17.8964 18.4788C17.2198 19.0067 16.3729 19.3241 15.0744 19.5362C14.0073 19.7106 13.1699 19.7856 11.4766 19.8586C11.1843 19.8712 10.9125 19.8856 10.8726 19.8908L10.8 19.9002L10.8066 18.1836L10.8132 16.4671L10.919 15.5944C11.0696 14.3509 11.1322 14.0096 11.3035 13.4967C11.543 12.7799 11.968 12.1958 12.5241 11.8191C12.9218 11.5497 13.5122 11.3056 14.1334 11.1538ZM20.223 13.0094C20.1924 12.566 20.1003 10.9372 20.1003 10.8387C20.1003 10.8022 20.1948 10.8 21.7754 10.8C23.3516 10.8 23.4643 10.8026 23.685 10.8438C23.814 10.8678 24.1138 10.9077 24.3512 10.9323C25.3232 11.0331 25.7433 11.0954 26.1348 11.1967C27.2389 11.4824 28.0373 12.0882 28.48 12.9762C28.7111 13.4397 28.8014 13.7606 28.9214 14.5449C29.0124 15.1407 29.0955 15.8349 29.1461 16.4229C29.1876 16.9046 29.2155 18.9005 29.1892 19.4966L29.173 19.8614L28.9817 19.8485C28.2036 19.796 27.7186 19.7648 27.0745 19.7261C24.9716 19.5995 24.1143 19.4772 23.3672 19.1972C22.6979 18.9463 22.0668 18.5217 21.6487 18.0411C21.2933 17.6325 20.9787 17.0894 20.7912 16.561C20.5203 15.7974 20.3359 14.6447 20.223 13.0094ZM10.8013 23.3248V20.0794L10.8733 20.0795C10.9128 20.0796 11.0996 20.0941 11.2884 20.1118C11.741 20.1542 12.0784 20.1789 13.115 20.2456C14.767 20.3518 15.5273 20.4411 16.1366 20.6005C17.6801 21.0043 18.7647 22.0181 19.2665 23.5261C19.4874 24.19 19.6274 25.0481 19.7728 26.6303C19.8176 27.1182 19.8232 27.2995 19.8205 28.1836C19.8188 28.7342 19.8116 29.1903 19.8046 29.1974C19.783 29.219 16.7977 29.1029 15.7054 29.038C15.0386 28.9984 14.6513 28.9378 13.9563 28.764C13.408 28.627 13.0853 28.5108 12.805 28.3496C12.0873 27.9368 11.5988 27.307 11.3015 26.4108C11.1445 25.9378 11.0599 25.4599 10.9011 24.149L10.8013 23.3248ZM28.3365 20.1568C28.6105 20.1385 28.8845 20.1203 28.9454 20.1165C29.0063 20.1127 29.0884 20.1077 29.128 20.1055L29.2 20.1016L29.1997 21.4327C29.1993 23.0667 29.1711 23.7311 29.0644 24.6198C28.9797 25.3252 28.8146 26.1237 28.6659 26.5476C28.3092 27.5641 27.5997 28.2715 26.579 28.6282C26.0694 28.8062 25.1811 28.9775 24.3402 29.0598C23.6204 29.1302 23.3101 29.1414 21.7664 29.1533L20.1888 29.1654V28.3385C20.1888 27.614 20.1971 27.4107 20.2555 26.697C20.3534 25.5021 20.4193 24.9513 20.5345 24.3657C20.8896 22.561 21.7846 21.3994 23.286 20.7946C24.0211 20.4985 24.8866 20.372 27.1188 20.2345C27.5146 20.2101 28.0625 20.1752 28.3365 20.1568Z' fill='%23EA5B0C'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_45_3205'%3e%3crect width='40' height='40' fill='%23EA5B0C'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.map-block__cta {
  margin-top: 5rem;
  background: #FFEBCC;
}
.map-block__cta-content {
  padding: 4rem 0;
}
.map-block__cta-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.map-block__cta-title:after {
  content: "";
  width: 2.125rem;
  min-width: 2.125rem;
  height: 2.125rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='35' height='34' viewBox='0 0 35 34' fill='none'%3e%3cpath d='M5.45898 17.0002H27.4173M27.4173 17.0002L17.5007 7.0835M27.4173 17.0002L17.5007 26.9168' stroke='%233C4145' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .map-block {
    padding: 3.75rem 0;
  }
  .map-block__content {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
  .map-block__text {
    margin-bottom: 1.5rem;
  }
  .map-block__tel {
    margin-bottom: 1.5rem;
  }
  .map-block__mails {
    margin-bottom: 1.5rem;
  }
  .map-block__mails-title {
    font-size: 1.125rem;
  }
  .map-block__mails-row {
    font-size: 0.875rem;
  }
  /* .map-block__mails-row a {
    font-size: 1.125rem;
  } */
  .map-block__socials {
    gap: 0.5rem;
  }
  .map-block__socials-item {
    width: 2.75rem;
    height: 2.75rem;
  }
  .map-block__cta {
    margin-top: 3.75rem;
  }
  .map-block__cta-content {
    padding: 2.75rem 0;
  }
  .map-block__cta-title {
    margin: 0 auto;
    width: 60%;
    gap: 0.75rem;
  }
  .map-block__cta-title:after {
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 560px) {
  .map-block__map {
    aspect-ratio: 1/1.3;
  }
}
.opportunities {
  margin: 5rem 0;
}
.opportunities__title {
  margin-bottom: 2.5rem;
}
.opportunities__item {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
.opportunities__item:nth-child(even) .opportunities__item-img {
  order: 1;
}
.opportunities__item-img {
  max-height: 35rem;
  min-height: 35rem;
  width: 100%;
  height: 100%;
}
.opportunities__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.opportunities__item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 4rem 5rem 4rem;
}
.opportunities__item-btn.btn-arrow:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3e%3cpath d='M3.5 12.5H19M19 12.5L12 5.5M19 12.5L12 19.5' stroke='%23529FBD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .opportunities {
    margin: 3.75rem 0;
  }
  .opportunities__title {
    display: none;
  }
  .opportunities__item {
    grid-template-columns: 1fr;
  }
  .opportunities__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .opportunities__item:nth-child(even) .opportunities__item-img {
    order: unset;
  }
  .opportunities__item-img {
    height: 25rem;
    max-height: 25rem;
    min-height: 25rem;
  }
  .opportunities__item-info {
    gap: 0.75rem;
    padding: 1.25rem 0 0 0;
  }
  .opportunities__item-btn.btn-arrow:after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3e%3cpath d='M3.5 12.5H19M19 12.5L12 5.5M19 12.5L12 19.5' stroke='%23529FBD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  }
  .opportunities__item:first-child .opportunities__item-img img {
    -o-object-position: 35%;
       object-position: 35%;
  }
}
@media (max-width: 560px) {
  .opportunities__item-img {
    height: 15rem;
    max-height: 15rem;
    min-height: 15rem;
  }
}
.error {
  background: #ECEDED;
}
.error__content {
  padding: 1rem 0 1.375rem;
}
.error-page {
  margin: 2.5rem 0 5rem;
}
.error-page__content {
  position: relative;
}
.error-page__img {
  position: absolute;
  right: 0;
  top: 8%;
  width: 58.5%;
  height: 82%;
  max-height: 100%;
  z-index: 1;
}
.error-page__img img {
  width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.error-page__search {
  position: relative;
  z-index: 3;
  margin-bottom: 6.25rem;
}
.error-page__search-title {
  margin-bottom: 1.125rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.error-page__search-title a {
  color: #EA5B0C;
}
.error-page__search-form {
  width: 35%;
  height: 3.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.error-page__search-form-input {
  flex: 1;
  height: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  border: none;
  outline: none;
  background: rgba(217, 223, 223, 0.5);
}
.error-page__search-form-input::-moz-placeholder {
  color: #8D99A2;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.error-page__search-form-input::placeholder {
  color: #8D99A2;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.error-page__search-form-btn {
  height: 100%;
}
.error-page__contact {
  position: relative;
  z-index: 3;
}
.error-page__contact-title {
  margin-bottom: 1.875rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.error-page__contact-items {
  width: 45%;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1.25rem;
}
.error-page__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.375rem;
  border: 1.397px solid #D9DADB;
  background: var(--White, #FFF);
}
.error-page__contact-item-icon {
  margin-bottom: 2.5rem;
  width: 7rem;
  aspect-ratio: 1/1;
}
.error-page__contact-item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.error-page__contact-item-text {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 768px) {
  .error__content {
    padding: 1.25rem 0;
  }
  .error-page {
    margin: 1.25rem 0 3.75rem;
  }
  .error-page__content {
    padding-bottom: 6.75rem;
  }
  .error-page__img {
    top: unset;
    width: 100%;
    height: 8.75rem;
    max-height: 8.75rem;
    bottom: 0;
  }
  .error-page__search {
    margin-bottom: 2.5rem;
  }
  .error-page__search-title {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }
  .error-page__search-form {
    width: 100%;
    height: 2.125rem;
    gap: 0.25rem;
  }
  .error-page__search-form-input {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }
  .error-page__search-form-input::-moz-placeholder {
    font-size: 0.875rem;
  }
  .error-page__search-form-input::placeholder {
    font-size: 0.875rem;
  }
  .error-page__search-form-btn.btn-back-orange {
    padding: 0.5rem 1rem;
  }
  .error-page__contact-title {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }
  .error-page__contact-items {
    width: 100%;
    gap: 0.5rem;
  }
  .error-page__contact-item {
    padding: 1.375rem 1.125rem 1.125rem 1.125rem;
    border: 0.573px solid #D9DADB;
  }
  .error-page__contact-item-icon {
    margin-bottom: 1rem;
    width: 2.75rem;
  }
  .error-page__contact-item-text {
    font-size: 0.75rem;
  }
}
.analytics-head {
  margin-bottom: 5rem;
}
.analytics-head__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.analytics-head__title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.analytics-head__title-current {
  opacity: 0.2;
}
.analytics-head__filter {
  max-width: 50%;
}

.issledovania {
  margin: 5rem 0;
}
.issledovania__content {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1.5rem;
}
.issledovania__item {
  padding: 1.25rem;
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
  gap: 0.75rem;
}
.issledovania__item-date {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  opacity: 0.5;
}
.issledovania__item-title {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  transition: 0.3s;
}
.issledovania__item-title:hover {
  color: #EA5B0C;
}
.news {
  margin: 5rem 0;
}
.news__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.75rem 1.25rem;
}
.news__item-img {
  margin-bottom: 0.75rem;
  display: block;
  height: 22.5rem;
  width: 100%;
  overflow: hidden;
}
.news__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.news__item-img:hover img {
  transform: scale(1.05);
}
.news__item-info {
  padding: 0 1.25rem;
  display: grid;
  gap: 0.75rem;
  height: -moz-fit-content;
  height: fit-content;
}
.news__item-date {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  opacity: 0.5;
}
.news__item-date.is-orange {
  color: #EA5B0C;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  opacity: 1;
}
.news__item-date.is-gray {
  color: #9FA6AC;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
  opacity: 1;
}
.news__item-title {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  transition: 0.3s;
}
.news__item-title:hover {
  color: #EA5B0C;
}
.issledovania-detail__content {
  width: 69%;
}
.issledovania-detail__date {
  margin-bottom: 0.625rem;
  opacity: 0.5;
}
.issledovania-detail__title {
  margin-bottom: 2.5rem;
}
.issledovania-detail__info {
  display: grid;
  gap: 2.5rem;
}
.issledovania-detail__info img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-detail  {
  margin-bottom: 3rem;
}
.news-detail__content {
  display: grid;
  grid-template-columns: 60% calc(40% - 5rem);
  gap: 5rem;
}
.news-detail__img {
  position: sticky;
  top: 5rem;
  width: 100%;
  aspect-ratio: 1/1.12;
}
.news-detail__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail__date {
  margin-bottom: 0.625rem;
  opacity: 0.5;
}
.news-detail__title {
  margin-bottom: 2.5rem;
}
.news-detail__info {
  display: grid;
  gap: 2.5rem;
}
.news-detail__info img,
.news-detail__info iframe,
.news-detail__info video {
  margin: 1.5rem 0;
  width: 100%;
  height: auto;
  min-height: 37.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-detail__info iframe
{
min-height: 5.5rem !important;
}
.news-detail__info-title span {
  color: #EA5B0C;
}
.news-detail__info-sub-title {
  margin-top: 0.5rem;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.news-detail__text .mark-list {
  padding-left: 1.5rem;
}
.news-detail__text.is-colorfull {
  padding: 1.5rem;
  background: #FFEACB;
}
.news-detail__btn.btn.btn-arrow {
  width: 100%;
}
.news-detail__btn.btn.btn-arrow:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M12 15V3M12 15L7 10M12 15L17 10M21 15V19C21 19.5304 20.7893 20.0391 20.4142 20.4142C20.0391 20.7893 19.5304 21 19 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V15' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.news-detail__desk-hide {
  display: none;
}
.news-detail__body h2 {
  font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.news-detail__body p {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.news-detail__body img{
  width: 100%;
  height: 100%;
  object-fit:contain;
}
.news-detail__speaker-body {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem 1.875rem;
}
.news-detail__speaker-item {
  height: -moz-fit-content;
  height: fit-content;
}
.news-detail__speaker-item-img {
  margin-bottom: 0.75rem;
  width: 100%;
  height: 16.625rem;
}
.news-detail__speaker-item-img img {
  margin: 0;
  min-height: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail__speaker-item-info {
  display: grid;
  gap: 0.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
.news-detail__speaker-item-name {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.news-detail__speaker-item-role {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}
.news-detail__speaker-item-text {
  color: #8D99A2;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}

.news-detail__form-form {
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .analytics-head {
    margin-bottom: 2.5rem;
  }
  .analytics-head__content {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
  }
  .analytics-head__title {
    order: 1;
    gap: 1.5rem;
  }
  .analytics-head__title-main {
    font-size: 1.5rem;
  }
  .analytics-head__title-current {
    font-size: 1.5rem;
  }
  .analytics-head__filter {
    max-width: 100%;
    width: 100%;
  }
  .issledovania {
    margin: 3.75rem 0;
  }
  .issledovania__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .issledovania__item {
    padding: 0rem;
    gap: 0.5rem;
  }
  .issledovania__item-date {
    font-size: 0.875rem;
  }
  .issledovania__item-title {
    font-size: 1.125rem;
  }
  .news {
    margin: 3.75rem 0;
  }
  .news__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .news__item-img {
    height: 18.75rem;
  }
  .news__item-info {
    padding: 0;
  }
  .news__item-date {
    font-size: 0.875rem;
  }
  .news__item-date.is-orange {
    font-size: 1.125rem;
  }
  .news__item-date.is-gray {
    font-size: 1.125rem;
  }
  .news__item-title {
    font-size: 1.125rem;
  }
  .issledovania-detail__content {
    width: 100%;
  }
  .issledovania-detail__title {
    margin-bottom: 1.5rem;
  }
  .issledovania-detail__info {
    gap: 1.5rem;
  }
  .news-detail__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news-detail__img {
    display: none;
  }
  .news-detail__desk-hide {
    display: block;
    margin: -2rem 0;
  }
  .news-detail__desk-hide img {
    margin: 0;
  }
  .news-detail__title {
    margin-bottom: 2rem;
  }
  .news-detail__info {
    gap: 2.5rem;
  }
  .news-detail__info img,
  .news-detail__info iframe,
  .news-detail__info video {
    min-height: 25rem;
    max-width: 100%;
  }
  .news-detail__info-sub-title {
    font-size: 1.125rem;
  }
  .news-detail__text .mark-list {
    padding-left: 0;
  }
  .news-detail__text.is-colorfull {
    padding: 1rem;
  }
  .news-detail__btn.btn.btn-arrow {
    padding: 0.75rem 2.5rem;
  }
  .news-detail__speaker-body {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
  .news-detail__speaker-item-img img {
    min-height: unset;
  }
  .news-detail__speaker-item-name {
    font-size: 1.125rem;
  }
  .news-detail__speaker-item-role {
    font-size: 0.875rem;
  }
  .news-detail__speaker-item-text {
    font-size: 0.875rem;
  }
  .news-detail__body h2 {
    font-size: 1.25rem;
  }
  .news-detail__body p {
        font-size: 0.875rem;
        line-height: 130%;
  }
}
.legal-info {
  margin-bottom: 5rem;
}
.legal-info__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4.375rem;
}
.legal-info__item {
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  gap: 1rem;
}
.legal-info__item-title {
  transition: 0.3s;
}
.legal-info__item-title:hover {
  color: #EA5B0C;
}
.legal-info__bottom {
  margin-top: 5rem;
  width: 75%;
}

.ledal-detail {
  margin-bottom: 5rem;
}
.ledal-detail__filter {
  display: none;
}
.ledal-detail__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.25rem;
}
.ledal-detail__content.col-1 {
  grid-template-columns: 1fr;
}
.ledal-detail__body {
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  gap: 2.5rem;
}
.ledal-detail__body-title {
  width: 90%;
  margin-bottom: 2rem;
  min-height: 6.25rem;
}
.ledal-detail__body-block {
  display: grid;
  gap: 1.25rem;
}
.ledal-detail__body-block-title {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.ledal-detail__body-block-text {
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .ledal-detail__body-title {
    min-height: unset;
  }
  .legal-info {
    margin-bottom: 3.75rem;
  }
  .legal-info__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .legal-info__item-btn.btn.btn-back-orange {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .legal-info__bottom {
    margin-top: 3.75rem;
    width: 100%;
  }
  .ledal-detail {
    margin-bottom: 3.75rem;
  }
  .ledal-detail__filter {
    margin-bottom: 1.5rem;
    display: flex;
  }
  .ledal-detail__content {
    grid-template-columns: 1fr;
    gap: unset;
  }
  .ledal-detail__body {
    display: none;
    gap: 2rem;
  }
  .ledal-detail__body.is-active {
    display: grid;
  }
  .ledal-detail__body-title {
    width: 100%;
    margin-bottom: 0;
  }
  .ledal-detail__body-block-title {
    font-size: 1.125rem;
  }
  .ledal-detail__body-block-text {
    gap: 0.75rem;
  }
}
.search-page {
  margin-bottom: 5rem;
}
.search-page__title {
  margin-bottom: 2rem;
  color: #1F1917;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.5;
}
.search-page__content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.25rem;
}
.search-page__left {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 8rem;
}
.search-page__form {
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #ECEFEF;
}
.search-page__form:before {
  content: "";
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3e%3cpath d='M35 35L27.8333 27.8333M31.6667 18.3333C31.6667 25.6971 25.6971 31.6667 18.3333 31.6667C10.9695 31.6667 5 25.6971 5 18.3333C5 10.9695 10.9695 5 18.3333 5C25.6971 5 31.6667 10.9695 31.6667 18.3333Z' stroke='%23EA5B0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.search-page__form-input {
  flex: 1;
  color: rgba(31, 25, 23, 0.5);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  background: transparent;
  border: none;
  outline: none;
}
.search-page__result {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.75rem;
}
.search-page__result-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.search-page__result-item span {
  color: var(--Black, #3C4145);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.search-page__label {
  padding: 0.125rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.search-page__label.--all {
  background: rgba(60, 65, 69, 0.20);
}
.search-page__label.--solutions {
  background: #FFEACB;
}
.search-page__label.--events {
  background: #DCBBC4;
}
.search-page__label.--researches {
   background: #CBFCFF;
}
.search-page__label.--news {
   background: #DED8E4;
}
.search-page__response:not(:first-child) {
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid #E9E8E8;
}
.search-page__response-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.search-page__response-label {
  color: var(--Black, #3C4145);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.search-page__response-title {
  color: var(--Black, #1F1917);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  transition: 0.3s;
}
.search-page__response-title:hover {
  color: #EA5B0C;
}
.search-page__response-content {
  margin-top: 0.5rem;
  color: rgba(31, 25, 23, 0.5);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.fs2{
  font-size: 2.5rem;
}
@media (max-width: 480px) {
  .hero__info{
    width: 100%;
  }
}
@media (max-width: 768px) {
  .fs2{
    font-size: 1.5rem;
  }
  .search-page {
    margin-bottom: 3.75rem;
  }
  .search-page__title {
    display: none;
  }
  .search-page__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .search-page__left {
    position: static;
    top: unset;
  }
  .search-page__form {
    padding: 0.5rem 1.5rem;
    gap: 1.5rem;
  }
  .search-page__form:before {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
  }
  .search-page__form-input {
    font-size: 1.125rem;
  }
  .search-page__result {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .search-page__result-item {
    font-size: 1.125rem;
  }
  .search-page__result-item span {
    min-width: 1.375rem;
    font-size: 0.875rem;
  }
  .search-page__response-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-page__response-title {
    font-size: 1.125rem;
  }
  .search-page__response-content {
    font-size: 0.875rem;
  }
}

.ymaps-b-zoom__button{
  background-color: #ea5b0c !important;
  background-image: unset !important;
}
.ymaps-b-form-button__content{
  background-image: unset !important;
}
.ymaps-b-form-button_theme_grey-sm, .ymaps-b-form-button_theme_grey-sm .ymaps-b-form-button__left, .ymaps-b-form-button_theme_grey-sm .ymaps-b-form-button__content{
  background-image: unset !important;
}
.ymaps-b-zoom{
  transform: scale(1.1);
}
.ymaps-b-zoom__button_type_plus .ymaps-b-zoom__sprite{
  top: 3px!important;
  left: 3px!important;
  width: 18px!important;
  height: 18px!important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  transition: 0.3s !important;
  background-image: url('data:image/svg+xml,<svg width="22" height="23" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.66406 11.5003H20.3307M10.9974 2.16699V20.8337" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.ymaps-b-zoom__button_type_minus .ymaps-b-zoom__sprite{
  top: 3px!important;
  left: 3px!important;
  width: 18px!important;
  height: 18px!important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  transition: 0.3s !important;
  background-image: url('data:image/svg+xml,<svg width="16" height="2" viewBox="0 0 16 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1H15" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')!important;
}
  /* Стили для блока приближения */
.ymaps-2-1-79-zoom {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid #333 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

.ymaps-2-1-79-zoom__button {
  background: #fff !important;
  border: 1px solid #ccc !important;
  margin: 2px !important;
}

.ymaps-2-1-79-zoom__button:hover {
  background: #f0f0f0 !important;
}

.ymaps-2-1-79-zoom__plus {
  border-radius: 4px 4px 0 0 !important;
}

.ymaps-2-1-79-zoom__minus {
  border-radius: 0 0 4px 4px !important;
}

img.lozad {
  background: rgb(223, 223, 223);
  opacity: 0;
  transition: opacity 0.5s;
}
img.loaded {
  opacity: 1;
  background: none;
}
b {
    display: inline !important;
}



.issledovania-detail__info p, .issledovania-detail__info div,
.issledovania-detail__info ul, .issledovania-detail__info li{
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.issledovania-detail__info ul{
    display: grid;
    gap: .5rem;

}
.issledovania-detail__info li {
    position: relative;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.issledovania-detail__info li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: -1.75rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #ea5b0c;
    mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3e%3cpath d='M6 8.5C7.10457 8.5 8 9.39543 8 10.5C8 11.6046 7.10457 12.5 6 12.5C4.89543 12.5 4 11.6046 4 10.5C4 9.39543 4.89543 8.5 6 8.5ZM2 4.5C3.10457 4.5 4 5.39543 4 6.5C4 7.60457 3.10457 8.5 2 8.5C0.895431 8.5 0 7.60457 0 6.5C0 5.39543 0.895431 4.5 2 4.5ZM10 4.5C11.1046 4.5 12 5.39543 12 6.5C12 7.60457 11.1046 8.5 10 8.5C8.89543 8.5 8 7.60457 8 6.5C8 5.39543 8.89543 4.5 10 4.5ZM6 0.5C7.10457 0.5 8 1.39543 8 2.5C8 3.60457 7.10457 4.5 6 4.5C4.89543 4.5 4 3.60457 4 2.5C4 1.39543 4.89543 0.5 6 0.5Z' fill='%23EA5B0C'/%3e%3c/svg%3e");
    mask-size: cover;
    mask-position: center;
}
.issledovania-detail__info h2{
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.issledovania-detail__info h3{
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 140%;
}





.news-detail__info p, .news-detail__info div,
.news-detail__info ul, .news-detail__info li{
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.news-detail__info ul{
    display: grid;
    gap: .5rem;
}
.news-detail__info li {
    position: relative;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.news-detail__info li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: -1.75rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #ea5b0c;
    mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3e%3cpath d='M6 8.5C7.10457 8.5 8 9.39543 8 10.5C8 11.6046 7.10457 12.5 6 12.5C4.89543 12.5 4 11.6046 4 10.5C4 9.39543 4.89543 8.5 6 8.5ZM2 4.5C3.10457 4.5 4 5.39543 4 6.5C4 7.60457 3.10457 8.5 2 8.5C0.895431 8.5 0 7.60457 0 6.5C0 5.39543 0.895431 4.5 2 4.5ZM10 4.5C11.1046 4.5 12 5.39543 12 6.5C12 7.60457 11.1046 8.5 10 8.5C8.89543 8.5 8 7.60457 8 6.5C8 5.39543 8.89543 4.5 10 4.5ZM6 0.5C7.10457 0.5 8 1.39543 8 2.5C8 3.60457 7.10457 4.5 6 4.5C4.89543 4.5 4 3.60457 4 2.5C4 1.39543 4.89543 0.5 6 0.5Z' fill='%23EA5B0C'/%3e%3c/svg%3e");
    mask-size: cover;
    mask-position: center;
}
.news-detail__info h2{
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.news-detail__info h3{
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 140%;
}




.opportunities__content p, .opportunities__content div,
.opportunities__content ul, .opportunities__content li{
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.opportunities__content ul{
    display: grid;
    gap: .5rem;

}
.opportunities__content li {
    position: relative;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.opportunities__content li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: -1.75rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #ea5b0c;
    mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3e%3cpath d='M6 8.5C7.10457 8.5 8 9.39543 8 10.5C8 11.6046 7.10457 12.5 6 12.5C4.89543 12.5 4 11.6046 4 10.5C4 9.39543 4.89543 8.5 6 8.5ZM2 4.5C3.10457 4.5 4 5.39543 4 6.5C4 7.60457 3.10457 8.5 2 8.5C0.895431 8.5 0 7.60457 0 6.5C0 5.39543 0.895431 4.5 2 4.5ZM10 4.5C11.1046 4.5 12 5.39543 12 6.5C12 7.60457 11.1046 8.5 10 8.5C8.89543 8.5 8 7.60457 8 6.5C8 5.39543 8.89543 4.5 10 4.5ZM6 0.5C7.10457 0.5 8 1.39543 8 2.5C8 3.60457 7.10457 4.5 6 4.5C4.89543 4.5 4 3.60457 4 2.5C4 1.39543 4.89543 0.5 6 0.5Z' fill='%23EA5B0C'/%3e%3c/svg%3e");
    mask-size: cover;
    mask-position: center;
}
.opportunities__content h2{
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.opportunities__content h3{
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 140%;
}



.text-block p, .text-block div,
.text-block ul, .text-block li{
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.text-block ul{
    display: grid;
    gap: .5rem;

}
.text-block li {
    position: relative;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.text-block li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: -1.75rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #ea5b0c;
    mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3e%3cpath d='M6 8.5C7.10457 8.5 8 9.39543 8 10.5C8 11.6046 7.10457 12.5 6 12.5C4.89543 12.5 4 11.6046 4 10.5C4 9.39543 4.89543 8.5 6 8.5ZM2 4.5C3.10457 4.5 4 5.39543 4 6.5C4 7.60457 3.10457 8.5 2 8.5C0.895431 8.5 0 7.60457 0 6.5C0 5.39543 0.895431 4.5 2 4.5ZM10 4.5C11.1046 4.5 12 5.39543 12 6.5C12 7.60457 11.1046 8.5 10 8.5C8.89543 8.5 8 7.60457 8 6.5C8 5.39543 8.89543 4.5 10 4.5ZM6 0.5C7.10457 0.5 8 1.39543 8 2.5C8 3.60457 7.10457 4.5 6 4.5C4.89543 4.5 4 3.60457 4 2.5C4 1.39543 4.89543 0.5 6 0.5Z' fill='%23EA5B0C'/%3e%3c/svg%3e");
    mask-size: cover;
    mask-position: center;
}
.text-block h2{
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.text-block h3{
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 140%;
}