@import "../themes/partner_logistic/assets/icons/parlog-style.css";
@font-face {
  font-family: "Geologica";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  src: url("../themes/partner_logistic/assets/fonts/Geologica-Variant.woff2") format("woff2"), url("../themes/partner_logistic/assets/fonts/Geologica-Variant.ttf") format("truetype");
}
.button-component {
  display: flex;
  width: max-content;
  min-width: min-content;
}
.button-component__wrap {
  transition: all 0.2s ease 0s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  min-width: 200px;
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  border: 1px solid transparent;
  outline: 1px solid transparent;
  background: #F9A01B;
  cursor: pointer;
}
.button-component__wrap:hover {
  transition: all 0.15s ease 0s;
  border: 1px solid transparent;
  background: #FFC74E;
}
.button-component__wrap:hover .button-component__text {
  transition: all 0.15s ease 0s;
  color: #FFFFFF;
}
.button-component__wrap:hover path {
  transition: all 0.15s ease 0s;
  stroke: #FFFFFF;
}
.button-component__wrap:active, .button-component__wrap:focus {
  transition: all 0.15s ease 0s;
  color: #FFFFFF;
  border: 1px solid transparent;
  background: #FFC74E;
}
.button-component__wrap:active path, .button-component__wrap:focus path {
  transition: all 0.15s ease 0s;
  stroke: #FFFFFF;
}
.button-component__wrap:focus-visible {
  background: #FFC74E;
  outline: 1px solid transparent;
  border-radius: 0;
  outline-offset: 3px;
}
.button-component__wrap:focus-visible path {
  stroke: #FFC74E;
}
.button-component__control {
  position: absolute;
  top: -1px;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  opacity: 0;
  cursor: pointer;
}
.button-component__control[type="file"] {
  width: 0;
  height: 0;
}
.button-component__icon {
  transition: all 0.2s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.button-component__text {
  transition: all 0.2s ease 0s;
  display: block;
  color: #FFFFFF;
  user-select: none;
}
.button-component path {
  transition: all 0.2s ease 0s;
}
.button-component__loader {
  transition: all 0.2s ease 0s;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button-component--loading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-component--loading .button-component__wrap {
  background: #A9B5AD;
  cursor: not-allowed;
}
.button-component--loading .button-component__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.button-component--loading .button-component__loader span {
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  animation: balls 1.5s infinite;
  background: #FFFFFF;
}
.button-component--loading .button-component__loader span:nth-child(1) {
  animation-delay: 0.3s;
}
.button-component--loading .button-component__loader span:nth-child(2) {
  animation-delay: 0.6s;
}
.button-component--loading .button-component__loader span:nth-child(3) {
  animation-delay: 0.9s;
}
@keyframes balls {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.button-component--loading .button-component__text {
  display: none;
}
.button-component--line .button-component__wrap {
  border: 1px solid #146E38;
  background: transparent;
}
.button-component--line .button-component__wrap:hover, .button-component--line .button-component__wrap:focus-visible {
  border: 1px solid #219850;
}
.button-component--line .button-component__wrap:hover .button-component__text, .button-component--line .button-component__wrap:focus-visible .button-component__text {
  color: #219850;
}
.button-component--line .button-component__text {
  color: #219850;
}
.button-component--disabled .button-component__wrap {
  border: 1px solid transparent;
  background: #A9B5AD;
  cursor: not-allowed;
}
.button-component--disabled .button-component__wrap path {
  stroke: #A9B5AD;
}
.button-component--disabled .button-component__control {
  display: none;
}
.input-component {
  display: flex;
}
.input-component label {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.input-component label textarea {
  resize: none;
}
.input-component label input, .input-component label textarea {
  transition: all 0.2s ease 0s;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding: 20px 16px 20px 16px;
  border-radius: 3px;
  border: 1px solid #595959;
  outline: 1px solid transparent;
  background: #FFFFFF;
}
.input-component label input::placeholder, .input-component label textarea::placeholder {
  transition: all 0.2s ease 0s;
  color: #595959;
}
.input-component label input:hover:not([disabled]), .input-component label input:active:not([disabled]), .input-component label input:focus:not([disabled]), .input-component label textarea:hover:not([disabled]), .input-component label textarea:active:not([disabled]), .input-component label textarea:focus:not([disabled]) {
  transition: all 0.15s ease 0s;
  border: 1px solid #146E38;
  outline-offset: 3px;
}
.input-component label input:hover:not([disabled]) + .input-component__icon, .input-component label input:active:not([disabled]) + .input-component__icon, .input-component label input:focus:not([disabled]) + .input-component__icon, .input-component label textarea:hover:not([disabled]) + .input-component__icon, .input-component label textarea:active:not([disabled]) + .input-component__icon, .input-component label textarea:focus:not([disabled]) + .input-component__icon {
  color: #146E38;
}
.input-component label input:active:not([disabled]), .input-component label input:focus:not([disabled]), .input-component label textarea:active:not([disabled]), .input-component label textarea:focus:not([disabled]) {
  border: 1px solid #FFFFFF !important;
  background: #F2F8F4;
}
.input-component label input:active:not([disabled])::placeholder, .input-component label input:focus:not([disabled])::placeholder, .input-component label textarea:active:not([disabled])::placeholder, .input-component label textarea:focus:not([disabled])::placeholder {
  transition: all 0.15s ease 0s;
  color: transparent;
}
.input-component label input:active:not([disabled]) + .input-component__info, .input-component label input:focus:not([disabled]) + .input-component__info, .input-component label textarea:active:not([disabled]) + .input-component__info, .input-component label textarea:focus:not([disabled]) + .input-component__info {
  opacity: 0;
}
.input-component label input:disabled, .input-component label textarea:disabled {
  color: #F2F8F4;
  border: 1px solid transparent;
  background: #A9B5AD;
  cursor: not-allowed;
}
.input-component label input:disabled::placeholder, .input-component label textarea:disabled::placeholder {
  color: #F2F8F4;
}
.input-component label input:disabled + .input-component__info, .input-component label textarea:disabled + .input-component__info {
  opacity: 0;
}
.input-component label input[date]:not([disabled]), .input-component label textarea[date]:not([disabled]) {
  cursor: pointer;
}
.input-component label input::-webkit-outer-spin-button, .input-component label input::-webkit-inner-spin-button, .input-component label textarea::-webkit-outer-spin-button, .input-component label textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-component label input[type="search"]::-webkit-search-decoration, .input-component label input[type="search"]::-webkit-search-cancel-button, .input-component label input[type="search"]::-webkit-search-results-button, .input-component label input[type="search"]::-webkit-search-results-decoration, .input-component label textarea[type="search"]::-webkit-search-decoration, .input-component label textarea[type="search"]::-webkit-search-cancel-button, .input-component label textarea[type="search"]::-webkit-search-results-button, .input-component label textarea[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.input-component label input[type="search"]::-ms-clear, .input-component label input[type="search"]::-ms-reveal, .input-component label textarea[type="search"]::-ms-clear, .input-component label textarea[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.input-component label:placeholder-shown {
  text-overflow: ellipsis;
}
.input-component__info {
  transition: all 0.2s ease 0s;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 20px 16px 20px 16px;
  font-size: 14px;
  color: #ff3737;
  border-radius: 3px;
  border: 2px solid #595959;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
}
.input-component__icon {
  transition: all 0.2s ease 0s;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 50px;
  max-width: 50px;
  min-width: min-content;
  height: 100%;
  padding-right: 16px;
  cursor: pointer;
  color: #595959;
}
.input-component__icon--password-hide {
  position: absolute;
  opacity: 1;
}
.input-component__icon--password-show {
  position: absolute;
  opacity: 0;
}
.input-component--error input:not([disabled]), .input-component--error textarea:not([disabled]) {
  border: 1px solid #ff3737 !important;
  background: #FFFFFF !important;
}
.input-component--error .input-component__info {
  color: #ff3737;
  opacity: 1;
  visibility: visible;
  border: 2px solid #ff3737 !important;
}
.input-component--dark-bg input:active:not([disabled]), .input-component--dark-bg input:focus:not([disabled]), .input-component--dark-bg textarea:active:not([disabled]), .input-component--dark-bg textarea:focus:not([disabled]) {
  color: #FFFFFF !important;
  background: transparent !important;
}
.air-datepicker {
  --adp-font-family: Geologica, -apple-system, BlinkMacSystemFont, Open Sans, sans-serif;
  --adp-color: #000000;
  --adp-color-secondary: #F9A01B;
  --adp-accent-color: #F9A01B;
  --adp-border-radius: 0;
  --adp-day-name-color: #F9A01B;
  --adp-cell-border-radius: 0;
  --adp-cell-background-color-selected: #F9A01B;
  --adp-cell-background-color-selected-hover: #F9A01B;
  user-select: none;
}
.uploader-component {
  transition: all 0.2s ease 0s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 30px 30px 30px;
  background: #146E38;
}
.uploader-component--active {
  transition: all 0.15s ease 0s;
  background: #219850;
}
.uploader-component__title {
  color: #FFFFFF;
  user-select: none;
  margin-bottom: 40px;
  max-width: 450px;
}
.uploader-component__info {
  color: #FFFFFF;
  user-select: none;
  margin-bottom: 40px;
}
.uploader-component__input {
  display: flex;
  gap: 20px;
}
.uploader-component__input .button-component label {
  width: 61px;
  height: 61px;
  overflow: hidden;
}
.uploader-component__input .button-component__wrap {
  width: 61px;
  height: 61px;
  min-width: 61px;
  border: 1px solid #595959;
  border-radius: 1px;
  background: transparent;
  overflow: hidden;
}
.uploader-component__input .button-component__wrap:hover, .uploader-component__input .button-component__wrap:focus, .uploader-component__input .button-component__wrap:focus-visible {
  background: transparent;
  border: 1px solid #146E38;
}
.uploader-component__input .button-component__wrap:hover .button-component__icon, .uploader-component__input .button-component__wrap:focus .button-component__icon, .uploader-component__input .button-component__wrap:focus-visible .button-component__icon {
  background: transparent;
}
.uploader-component__input .button-component__wrap:hover .button-component__icon span .path2::before, .uploader-component__input .button-component__wrap:focus .button-component__icon span .path2::before, .uploader-component__input .button-component__wrap:focus-visible .button-component__icon span .path2::before {
  color: #FFC74E;
}
.uploader-component__input .button-component__icon {
  margin: 0;
}
.uploader-component__input .button-component__icon .icon-11 {
  font-size: 60px;
}
.uploader-component__input .input-component {
  width: 100%;
  border-radius: 1px;
}
.uploader-component__input .input-component input {
  max-height: 60px;
}
.uploader-component__files {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.uploader-component__file--default {
  display: none;
}
.uploader-component__file {
  display: flex;
  align-items: end;
  gap: 8px;
}
.uploader-component__file--icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 40px;
  user-select: none;
}
.uploader-component__file--icon .icon-12 span::before {
  font-size: 42px;
}
.uploader-component__file--icon .icon-12 .path1::before {
  color: transparent;
}
.uploader-component__file--icon-text {
  position: absolute;
  bottom: 0;
  height: 50%;
  max-height: 50%;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: #F9A01B;
}
.uploader-component__file--name {
  color: #FFFFFF;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.uploader-component__file--size {
  color: #A9B5AD;
  text-wrap: nowrap;
}
.uploader-component__file--remove {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  color: #A9B5AD;
  cursor: pointer;
  user-select: none;
  margin-left: 5px;
  transform: translateY(-4px);
}
.uploader-component__file--remove svg {
  transform: scale(1.3);
}
.uploader-component__file:nth-child(2) {
  margin-top: 40px;
}
.uploader-component button {
  max-width: 200px;
}
.uploader-component input {
  max-width: 100%;
}
.uploader-component .checkbox__text {
  color: #FFFFFF;
}
.tabs .tabs-slider {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  user-select: none;
  z-index: 1;
}
@media screen and (max-width: 744px) {
  .tabs .tabs-slider {
    margin-bottom: 40px;
  }
}
.tabs .tabs-slider .swiper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding-right: 100px;
  overflow-x: hidden;
}
.tabs .tabs-slider .swiper::before, .tabs .tabs-slider .swiper::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  background: #FFFFFF;
  mask-image: linear-gradient(to left, black 90%, rgba(0, 0, 0, 0));
  z-index: 2;
}
.tabs .tabs-slider .swiper::after {
  display: none;
}
.tabs .tabs-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}
.tabs .tabs-slider .swiper-slide {
  margin-right: 20px;
}
.tabs .tabs-slider .swiper-slide:last-child {
  margin-right: 0;
}
.tabs .tabs-slider .swiper-button-prev, .tabs .tabs-slider .swiper-button-next {
  transition: all 0.2s ease 0s;
  position: absolute;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: #F9A01B;
  transform: translateY(3px);
  outline: none;
}
.tabs .tabs-slider .swiper-button-prev::after, .tabs .tabs-slider .swiper-button-next::after {
  transition: all 0.2s ease 0s;
  color: #FFFFFF;
  font-size: 12px;
  transform-origin: 50%;
}
.tabs .tabs-slider .swiper-button-prev:hover, .tabs .tabs-slider .swiper-button-prev:focus, .tabs .tabs-slider .swiper-button-prev:focus-visible, .tabs .tabs-slider .swiper-button-next:hover, .tabs .tabs-slider .swiper-button-next:focus, .tabs .tabs-slider .swiper-button-next:focus-visible {
  transition: all 0.15s ease 0s;
  background: #FFC74E;
}
.tabs .tabs-slider .swiper-button-prev {
  right: 50px;
  left: auto;
}
.tabs .tabs-slider .swiper-button-next {
  right: 0px;
}
.tabs .tabs-slider .swiper-button--inline {
  border: 1px solid #F9A01B;
  background: transparent;
}
.tabs .tabs-slider .swiper-button--inline::after {
  color: #F9A01B;
}
.tabs .tabs-slider .swiper-button--inline:hover {
  border: 1px solid #FFC74E;
  background: transparent;
}
.tabs .tabs-slider .swiper-button--inline:hover::after {
  color: #FFC74E;
}
.tabs .tabs-slider .swiper-notification {
  display: none;
}
.tabs .tabs-slider .swiper-button-disabled {
  opacity: 0.9;
  background: #D9D9D9;
}
.tabs .tabs-slider .swiper-button-disabled::after {
  color: #595959;
}
.tabs .tabs-slider .swiper-button-disabled:hover, .tabs .tabs-slider .swiper-button-disabled:focus, .tabs .tabs-slider .swiper-button-disabled:focus-visible {
  background: #D9D9D9;
}
.tabs .tab {
  transition: all 0.2s ease 0s;
  display: flex;
  position: relative;
  width: auto;
  height: 32px;
  color: #595959;
  cursor: pointer;
  user-select: none;
}
.tabs .tab::after {
  transition: all 0.2s ease 0s;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
}
.tabs .tab:hover {
  transition: all 0.15s ease 0s;
  color: #F9A01B;
}
.tabs .tab-active {
  color: #F9A01B;
}
.tabs .tab-active::after {
  transition: all 0.15s ease 0s;
  background-color: #F9A01B;
}
.tabs__item {
  display: none !important;
}
.tabs .item-active {
  display: flex !important;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
a {
  transition: all 0.2s ease 0s;
  text-decoration: none;
  color: #000000;
}
a:active {
  outline: none;
}
a:focus-visible {
  transition: all 0.15s ease 0s;
  position: relative;
  outline: 1px solid #219850;
  outline-offset: 3px;
  border-radius: 3px;
  color: #A9B5AD;
}
button {
  background: transparent;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6, p, input, textarea {
  margin: 0;
}
img {
  width: 100%;
  height: 100%;
  display: block;
}
input:not([type="checkbox"]), textarea {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  outline: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F2F8F4;
}
::-webkit-scrollbar-thumb {
  background: #146E38;
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
body {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #000000;
  margin: 0;
  padding: 0;
  background: #F2F8F4;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.h1 {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
@media screen and (max-width: 1440px) {
  .h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .h1 {
    font-size: 30px;
  }
}
.h2, .h2-regular {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
@media screen and (max-width: 1440px) {
  .h2, .h2-regular {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .h2, .h2-regular {
    font-size: 30px;
  }
}
.h2-regular {
  font-weight: 400;
}
.h3 {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.h4 {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.h5 {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.h6 {
  font-family: "Geologica", -apple-system, BlinkMacSystemFont, "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.bold {
  font-weight: 700;
}
.semi-bold {
  font-weight: 600;
}
.mt-5 {
  margin-top: 5px;
}
.mb-5 {
  margin-bottom: 5px;
}
.ml-5 {
  margin-left: 5px;
}
.mr-5 {
  margin-right: 5px;
}
.pt-5 {
  padding-top: 5px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pl-5 {
  padding-left: 5px;
}
.pr-5 {
  padding-right: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mb-15 {
  margin-bottom: 15px;
}
.ml-15 {
  margin-left: 15px;
}
.mr-15 {
  margin-right: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-15 {
  padding-right: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.ml-20 {
  margin-left: 20px;
}
.mr-20 {
  margin-right: 20px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mb-25 {
  margin-bottom: 25px;
}
.ml-25 {
  margin-left: 25px;
}
.mr-25 {
  margin-right: 25px;
}
.pt-25 {
  padding-top: 25px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pl-25 {
  padding-left: 25px;
}
.pr-25 {
  padding-right: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.ml-30 {
  margin-left: 30px;
}
.mr-30 {
  margin-right: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pl-30 {
  padding-left: 30px;
}
.pr-30 {
  padding-right: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mb-35 {
  margin-bottom: 35px;
}
.ml-35 {
  margin-left: 35px;
}
.mr-35 {
  margin-right: 35px;
}
.pt-35 {
  padding-top: 35px;
}
.pb-35 {
  padding-bottom: 35px;
}
.pl-35 {
  padding-left: 35px;
}
.pr-35 {
  padding-right: 35px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.ml-40 {
  margin-left: 40px;
}
.mr-40 {
  margin-right: 40px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pl-40 {
  padding-left: 40px;
}
.pr-40 {
  padding-right: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.mb-45 {
  margin-bottom: 45px;
}
.ml-45 {
  margin-left: 45px;
}
.mr-45 {
  margin-right: 45px;
}
.pt-45 {
  padding-top: 45px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pl-45 {
  padding-left: 45px;
}
.pr-45 {
  padding-right: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-50 {
  margin-left: 50px;
}
.mr-50 {
  margin-right: 50px;
}
.pt-50 {
  padding-top: 50px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pl-50 {
  padding-left: 50px;
}
.pr-50 {
  padding-right: 50px;
}
.mt-55 {
  margin-top: 55px;
}
.mb-55 {
  margin-bottom: 55px;
}
.ml-55 {
  margin-left: 55px;
}
.mr-55 {
  margin-right: 55px;
}
.pt-55 {
  padding-top: 55px;
}
.pb-55 {
  padding-bottom: 55px;
}
.pl-55 {
  padding-left: 55px;
}
.pr-55 {
  padding-right: 55px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.ml-60 {
  margin-left: 60px;
}
.mr-60 {
  margin-right: 60px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pl-60 {
  padding-left: 60px;
}
.pr-60 {
  padding-right: 60px;
}
.mt-65 {
  margin-top: 65px;
}
.mb-65 {
  margin-bottom: 65px;
}
.ml-65 {
  margin-left: 65px;
}
.mr-65 {
  margin-right: 65px;
}
.pt-65 {
  padding-top: 65px;
}
.pb-65 {
  padding-bottom: 65px;
}
.pl-65 {
  padding-left: 65px;
}
.pr-65 {
  padding-right: 65px;
}
.mt-70 {
  margin-top: 70px;
}
.mb-70 {
  margin-bottom: 70px;
}
.ml-70 {
  margin-left: 70px;
}
.mr-70 {
  margin-right: 70px;
}
.pt-70 {
  padding-top: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pl-70 {
  padding-left: 70px;
}
.pr-70 {
  padding-right: 70px;
}
.mt-75 {
  margin-top: 75px;
}
.mb-75 {
  margin-bottom: 75px;
}
.ml-75 {
  margin-left: 75px;
}
.mr-75 {
  margin-right: 75px;
}
.pt-75 {
  padding-top: 75px;
}
.pb-75 {
  padding-bottom: 75px;
}
.pl-75 {
  padding-left: 75px;
}
.pr-75 {
  padding-right: 75px;
}
.mt-80 {
  margin-top: 80px;
}
.mb-80 {
  margin-bottom: 80px;
}
.ml-80 {
  margin-left: 80px;
}
.mr-80 {
  margin-right: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.mt-85 {
  margin-top: 85px;
}
.mb-85 {
  margin-bottom: 85px;
}
.ml-85 {
  margin-left: 85px;
}
.mr-85 {
  margin-right: 85px;
}
.pt-85 {
  padding-top: 85px;
}
.pb-85 {
  padding-bottom: 85px;
}
.pl-85 {
  padding-left: 85px;
}
.pr-85 {
  padding-right: 85px;
}
.mt-90 {
  margin-top: 90px;
}
.mb-90 {
  margin-bottom: 90px;
}
.ml-90 {
  margin-left: 90px;
}
.mr-90 {
  margin-right: 90px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pl-90 {
  padding-left: 90px;
}
.pr-90 {
  padding-right: 90px;
}
.mt-95 {
  margin-top: 95px;
}
.mb-95 {
  margin-bottom: 95px;
}
.ml-95 {
  margin-left: 95px;
}
.mr-95 {
  margin-right: 95px;
}
.pt-95 {
  padding-top: 95px;
}
.pb-95 {
  padding-bottom: 95px;
}
.pl-95 {
  padding-left: 95px;
}
.pr-95 {
  padding-right: 95px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.ml-100 {
  margin-left: 100px;
}
.mr-100 {
  margin-right: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pl-100 {
  padding-left: 100px;
}
.pr-100 {
  padding-right: 100px;
}
.mt-105 {
  margin-top: 105px;
}
.mb-105 {
  margin-bottom: 105px;
}
.ml-105 {
  margin-left: 105px;
}
.mr-105 {
  margin-right: 105px;
}
.pt-105 {
  padding-top: 105px;
}
.pb-105 {
  padding-bottom: 105px;
}
.pl-105 {
  padding-left: 105px;
}
.pr-105 {
  padding-right: 105px;
}
.mt-110 {
  margin-top: 110px;
}
.mb-110 {
  margin-bottom: 110px;
}
.ml-110 {
  margin-left: 110px;
}
.mr-110 {
  margin-right: 110px;
}
.pt-110 {
  padding-top: 110px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pl-110 {
  padding-left: 110px;
}
.pr-110 {
  padding-right: 110px;
}
.mt-115 {
  margin-top: 115px;
}
.mb-115 {
  margin-bottom: 115px;
}
.ml-115 {
  margin-left: 115px;
}
.mr-115 {
  margin-right: 115px;
}
.pt-115 {
  padding-top: 115px;
}
.pb-115 {
  padding-bottom: 115px;
}
.pl-115 {
  padding-left: 115px;
}
.pr-115 {
  padding-right: 115px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-120 {
  margin-bottom: 120px;
}
.ml-120 {
  margin-left: 120px;
}
.mr-120 {
  margin-right: 120px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pl-120 {
  padding-left: 120px;
}
.pr-120 {
  padding-right: 120px;
}
.container {
  position: relative;
  width: 100%;
  max-width: calc(1320px + (80px * 2));
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: calc(1180px + (80px * 2));
    padding: 0 100px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: calc(944px + (40px * 2));
    padding: 0 40px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: calc(664px + (40px * 2));
    padding: 0 40px;
  }
}
@media screen and (max-width: 414px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.partners {
  display: flex;
  flex-wrap: wrap;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 258px;
  height: 258px;
  max-width: 258px;
  max-height: 258px;
  padding: 30px;
  background: #FFFFFF;
}
@media screen and (max-width: 1300px) {
  .partners__item {
    width: 218px;
    height: 218px;
    max-width: 218px;
    max-height: 218px;
  }
}
@media screen and (max-width: 576px) {
  .partners__item {
    padding: calc(1vw * 3);
  }
}
.partners__item img {
  object-fit: contain;
}
.choose {
  display: flex;
  flex-wrap: wrap;
}
.choose__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 428px;
  height: 300px;
  padding: 20px;
  margin: -1px -1px 0 0;
  border: 1px solid #b1b1b1;
  background: #FFFFFF;
}
.choose__item--icon {
  color: #FFFFFF;
}
@media screen and (max-width: 576px) {
  .choose__item {
    width: 380px;
  }
}
.link, .link--underline, .link--light {
  transition: all 0.2s ease 0s;
  color: #000000;
}
.link:hover, .link--underline:hover, .link--light:hover {
  transition: all 0.15s ease 0s;
  color: #F9A01B;
}
.link:focus, .link--underline:focus, .link--light:focus {
  transition: all 0.15s ease 0s;
  color: #A9B5AD;
}
.link--underline {
  text-decoration: underline;
}
.link--light {
  color: #FFFFFF;
}
.tile-button, .tile-arrow {
  transition: all 0.2s ease 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 260px;
  height: 250px;
  padding: 20px;
  background: #FFFFFF;
  cursor: default;
  border: 1px solid #E3E3E3;
}
.tile-button:focus-visible, .tile-arrow:focus-visible {
  border: 1px solid #219850;
  outline: none;
}
@media screen and (max-width: 1440px) {
  .tile-button, .tile-arrow {
    width: 230px;
    height: 210px;
  }
}
@media screen and (max-width: 1276px) {
  .tile-button, .tile-arrow {
    width: 100%;
    height: 190px;
  }
}
@media screen and (max-width: 670px) {
  .tile-button, .tile-arrow {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 66px;
  }
}
.tile-button .h4, .tile-button .h5, .tile-arrow .h4, .tile-arrow .h5 {
  transition: all 0.2s ease 0s;
}
.tile-button .h4, .tile-arrow .h4 {
  font-weight: 700;
  color: #F9A01B;
}
@media screen and (max-width: 670px) {
  .tile-button .h5, .tile-arrow .h5 {
    display: none;
  }
}
.tile-button .button-component, .tile-arrow .button-component {
  margin-top: 20px;
}
.tile-button:hover, .tile-arrow:hover {
  transition: all 0.15s ease 0s;
  background: #F9A01B;
  border: 1px solid transparent;
}
.tile-button:hover .h4, .tile-button:hover .h5, .tile-arrow:hover .h4, .tile-arrow:hover .h5 {
  transition: all 0.15s ease 0s;
  color: #FFFFFF;
}
.tile-button:hover .button-component__wrap, .tile-arrow:hover .button-component__wrap {
  border: 1px solid #FFFFFF;
}
.tile-button:hover .button-component__wrap:hover .button-component__text, .tile-arrow:hover .button-component__wrap:hover .button-component__text {
  color: #FFFFFF;
}
.tile-button:hover .button-component__text, .tile-arrow:hover .button-component__text {
  color: #FFFFFF;
}
.tile-arrow {
  cursor: pointer;
}
.tile-arrow__long {
  transition: all 0.2s ease 0s;
  display: flex;
  align-items: end;
  margin-top: auto;
  transform: translateX(0);
}
.tile-arrow__long .icon::before {
  color: #146E38;
}
.tile-arrow__short {
  transition: all 0.2s ease 0s;
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  margin-top: auto;
  opacity: 0;
  transform: translateX(-20px);
}
.tile-arrow:hover .tile-arrow__long {
  transition: all 0.15s ease 0s;
  position: absolute;
  bottom: 20px;
  opacity: 0;
  transform: translateX(20px) scaleX(0.2);
}
.tile-arrow:hover .tile-arrow__short {
  transition: all 0.15s ease 0s;
  position: initial;
  opacity: 1;
  transform: translateX(0);
}
.tile-date {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 430px;
  min-height: 300px;
  padding: 40px;
  color: #FFFFFF;
  background: #146E38;
}
.tile-date .h4 {
  font-size: 24px;
  font-weight: 400;
}
.breadcrumbs {
  width: 100%;
  padding-top: 30px;
}
.breadcrumbs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  transform: unset;
  gap: 0px;
}
.breadcrumbs__item {
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  color: #5D645D;
}
.breadcrumbs__item::after {
  content: "";
  width: 2px;
  height: 94%;
  display: inline-block;
  margin-left: 5px;
  margin-right: 7px;
  background: #F9A01B;
}
.breadcrumbs__item:first-child {
  margin: 0px;
}
.breadcrumbs__item:last-child::after {
  display: none;
}
.breadcrumbs__link {
  margin: 0px;
}
.breadcrumbs__link:first-child {
  margin: 0px;
}
.breadcrumbs__link:focus-visible {
  border-radius: 10px;
}
.checkbox__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  width: fit-content;
  margin-top: 40px;
  cursor: pointer;
}
.checkbox__input {
  grid-area: checkbox;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  margin-right: 6px;
  border: none;
  background: #FFFFFF;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 576px) {
  .checkbox__input {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
}
.checkbox__input::before {
  transition: all 0.2s ease 0s;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #A9B5AD;
  border-radius: 3px;
  background: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center center;
  outline: 1px solid transparent;
  outline-offset: 3px;
  box-sizing: border-box;
  transform: translateY(-2px);
}
@media screen and (max-width: 576px) {
  .checkbox__input::before {
    width: 30px;
    height: 30px;
  }
}
.checkbox__input:checked::before {
  border: 1px solid #146E38;
  background-image: url('data:image/svg+xml,<svg width="18" height="14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m3.5 7 4 4 7-8" stroke="%23146E38" stroke-width="4" stroke-linecap="square"/></svg>');
}
.checkbox__input:focus-visible::before {
  transition: all 0.15s ease 0s;
  border: 1px solid #146E38;
  outline: 1px solid #219850;
}
.checkbox__input:disabled {
  cursor: not-allowed;
}
.checkbox__input:disabled::before {
  border: 1px solid #A9B5AD;
  background: #A9B5AD;
  cursor: not-allowed;
}
.checkbox__text {
  user-select: none;
}
@media screen and (max-width: 576px) {
  .checkbox__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 343px) {
  .checkbox__text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 576px) {
  .checkbox__text a {
    font-size: 14px;
  }
}
.checkbox__captcha--wrap {
  display: none;
  width: 100%;
  margin-top: 40px;
}
.checkbox__captcha--wrap .captcha {
  display: flex;
  align-items: center;
  min-height: 78px;
  max-height: 78px;
}
.checkbox__captcha--wrap .captcha iframe {
  transition: all 0.2s ease 0s;
  border: 2px solid transparent;
}
.checkbox__captcha--wrap .captcha-error iframe {
  transition: all 0.15s ease 0s;
  border: 2px solid #F61818;
}
.checkbox__captcha--error {
  height: 20px;
  min-height: 20px;
  color: #F61818;
}
.checkbox-approve .checkbox__button {
  grid-area: button;
  margin-top: 40px;
}
.checkbox-approve--disabled * {
  cursor: not-allowed;
}
.checkbox-approve--disabled *:hover {
  color: currentColor;
}
.checkbox-approve--error .checkbox__input::before {
  border-color: #ff3737;
  border-width: 2px;
}
.icon {
  position: relative;
}
.icon::before, .icon span::before {
  transition: all 0.2s ease 0s;
  font-size: 70px;
}
.icon span:nth-child(n):not(:first-child) {
  position: absolute;
  left: 0;
  bottom: -3px;
}
.icon:hover span::before {
  transition: all 0.15s ease 0s;
}
.icon-short-arrow-right::before, .icon-long-arrow-right::before {
  font-size: 21px;
}
.icon-telegram::before, .icon-whatsapp::before {
  font-size: 27px;
}
.swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.swiper-button-prev, .swiper-button-next {
  transition: all 0.2s ease 0s;
  position: initial;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: #F9A01B;
  outline: none;
}
.swiper-button-prev::after, .swiper-button-next::after {
  transition: all 0.2s ease 0s;
  color: #FFFFFF;
  font-size: 12px;
  transform-origin: 50%;
}
.swiper-button-prev:hover, .swiper-button-prev:focus, .swiper-button-prev:focus-visible, .swiper-button-next:hover, .swiper-button-next:focus, .swiper-button-next:focus-visible {
  transition: all 0.15s ease 0s;
  background: #FFC74E;
}
.swiper-button--inline {
  border: 1px solid #F9A01B;
  background: transparent;
}
.swiper-button--inline::after {
  color: #F9A01B;
}
.swiper-button--inline:hover {
  border: 1px solid #FFC74E;
  background: transparent;
}
.swiper-button--inline:hover::after {
  color: #FFC74E;
}
.swiper-notification {
  display: none;
}
.swiper-button-disabled {
  opacity: 0.9 !important;
  background: #D9D9D9;
}
.swiper-button-disabled::after {
  color: #595959;
}
.swiper-button-disabled:hover, .swiper-button-disabled:focus, .swiper-button-disabled:focus-visible {
  background: #D9D9D9;
}
.cases__item--modal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 900px;
  margin-top: 50px;
}
@media screen and (max-width: 744px) {
  .cases__item--modal {
    margin-bottom: 50px;
  }
}
.cases__item--modal .h4 {
  max-width: 350px;
  font-size: 24px;
  font-weight: 400;
}
.cases__item--swiper {
  max-height: 470px;
  aspect-ratio: 1.4;
}
.cases__item--swiper .swiper {
  margin: 0;
}
.cases__item--swiper .swiper-button-prev, .cases__item--swiper .swiper-button-next {
  position: absolute;
}
.cases__item--swiper .swiper-button-prev {
  left: 0;
}
.cases__item--swiper .swiper-button-next {
  right: 0;
}
.cases__item--swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal {
  padding: 30px 40px;
}
@media screen and (max-width: 576px) {
  .modal {
    padding: 20px;
  }
}
.modal .fancybox-button {
  padding: 0;
  top: 20px;
  right: 20px;
}
.modal .fancybox-button svg path {
  transform: scale(1.1);
  transform-origin: 50%;
}
.fancybox-bg {
  opacity: 1;
  background: rgba(30, 30, 30, 0.25);
}
.about {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #146E38;
}
@media screen and (max-width: 744px) {
  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.about--wrap {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}
.about--wrap > div {
  display: flex;
}
@media screen and (max-width: 744px) {
  .about--wrap > div {
    flex-direction: column;
  }
}
.about__title {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 744px) {
  .about__title {
    margin-bottom: 40px;
  }
}
.about__left {
  display: flex;
  gap: 40px;
  flex: 1 1 auto;
  max-width: 430px;
  margin-right: 40px;
}
@media screen and (max-width: 744px) {
  .about__left {
    flex-direction: column;
    font-size: 18px;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.about__left::after {
  content: "";
  display: block;
  width: 2px;
  min-width: 2px;
  height: 100%;
  background: #F9A01B;
}
@media screen and (max-width: 744px) {
  .about__left::after {
    width: 100%;
    height: 2px;
  }
}
.about__right {
  flex: 1 1.2 auto;
  max-width: 530px;
}
@media screen and (max-width: 744px) {
  .about__right {
    max-width: 100%;
  }
}
.about svg {
  color: #146E38;
}
.logo-bg {
  position: relative;
  height: 600px;
  max-height: 600px;
}
@media screen and (max-width: 744px) {
  .logo-bg {
    height: 450px;
    max-height: 450px;
  }
}
.logo-bg__text {
  font-size: 40px;
  line-height: 130%;
  bottom: calc(104px + 60px);
  color: #FFFFFF;
  text-align: end;
}
@media screen and (max-width: 1440px) {
  .logo-bg__text {
    font-size: 36px;
    bottom: calc(104px + 100px);
  }
}
@media screen and (max-width: 764px) {
  .logo-bg__text {
    font-size: 30px;
    bottom: calc(78px + 40px);
  }
}
@media screen and (max-width: 585px) {
  .logo-bg__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .logo-bg__text {
    bottom: calc(92px + 40px);
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .logo-bg__text {
    bottom: calc(124px + 40px);
  }
}
.logo-bg__text .break:nth-of-type(1) {
  display: none;
}
@media screen and (max-width: 576px) {
  .logo-bg__text .break:nth-of-type(1) {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .logo-bg__text .break:nth-of-type(2) {
    display: none;
  }
}
.logo-bg__text .break:nth-of-type(3) {
  display: none;
}
@media screen and (max-width: 576px) {
  .logo-bg__text .break:nth-of-type(3) {
    display: block;
  }
}
.logo-bg__text .break:nth-of-type(4) {
  display: none;
}
@media screen and (max-width: 360px) {
  .logo-bg__text .break:nth-of-type(4) {
    display: block;
  }
}
.logo-bg__text span {
  text-wrap: nowrap;
}
.logo-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.logo-bg img {
  object-fit: cover;
}
.why {
  position: relative;
  display: flex;
  height: 700px;
}
@media screen and (max-width: 992px) {
  .why {
    height: 630px;
  }
}
@media screen and (max-width: 744px) {
  .why {
    flex-direction: column;
    height: 700px;
  }
}
.why__left {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 744px) {
  .why__left {
    order: 2;
    max-width: 100%;
    height: 480px;
  }
}
.why__left img {
  object-fit: cover;
}
.why__right {
  width: 100%;
  max-width: 50%;
  background: #FFFFFF;
}
@media screen and (max-width: 744px) {
  .why__right {
    order: 1;
    max-width: 100%;
  }
}
.why__right--title {
  margin-top: 100px;
  margin-left: 120px;
}
@media screen and (max-width: 992px) {
  .why__right--title {
    margin-top: 40px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 744px) {
  .why__right--title {
    margin-top: 80px;
    margin-left: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 414px) {
  .why__right--title {
    margin-left: 20px;
  }
}
.why__slider {
  position: absolute;
  top: 254px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .why__slider {
    top: 174px;
  }
}
@media screen and (max-width: 744px) {
  .why__slider {
    top: 284px;
  }
}
.why__slider .swiper {
  width: calc(100vw - ((100vw - 100%) / 2));
  max-width: 1712px;
  padding-bottom: 70px;
  margin-left: 0;
}
.why__slider .swiper-wrapper {
  padding-top: 1px;
}
.why__slider .swiper-button-prev, .why__slider .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  margin-top: 0;
}
.why__slider .swiper-button-next {
  left: 50px;
}
.why__slider .swiper .swiper-button-lock {
  display: flex;
}
.cargo {
  position: relative;
  background: #F2F8F4;
}
.cargo--wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .cargo--wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 744px) {
  .cargo--wrap {
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    padding-bottom: calc(80px + 202px);
  }
}
@media screen and (max-width: 415px) {
  .cargo--wrap {
    padding-bottom: calc(80px + 240px);
  }
}
.cargo__left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 430px;
}
.cargo__left .icon-custom {
  color: #F2F8F4;
}
.cargo__left .icon .path1::before {
  color: #F2F8F4;
}
.cargo__left span.h2, .cargo__left span.h2-regular {
  color: #F9A01B;
}
.cargo__left .item-numbers--wrap {
  position: relative;
}
.cargo__left .item-numbers--text {
  position: absolute;
  left: 166px;
}
@media screen and (max-width: 1440px) {
  .cargo__left .item-numbers--text {
    left: 150px;
  }
}
@media screen and (max-width: 576px) {
  .cargo__left .item-numbers--text {
    left: 130px;
  }
}
@media screen and (max-width: 744px) {
  .cargo__left--button {
    position: absolute;
    bottom: 80px;
  }
}
@media screen and (max-width: 576px) {
  .cargo__left--button {
    width: calc(100vw - 40px * 2);
  }
}
@media screen and (max-width: 414px) {
  .cargo__left--button {
    width: calc(100vw - 20px * 2);
  }
}
@media screen and (max-width: 576px) {
  .cargo__left--button label {
    width: 100%;
  }
}
@media screen and (max-width: 744px) {
  .cargo__left--text {
    position: absolute;
    bottom: calc(80px + 60px);
    max-width: 430px;
  }
}
@media screen and (max-width: 576px) {
  .cargo__left--text {
    max-width: calc(100vw - 40px * 2);
    min-width: 240px;
  }
}
@media screen and (max-width: 414px) {
  .cargo__left--text {
    max-width: calc(100vw - 20px * 2);
  }
}
.cargo__right {
  width: 100%;
  max-width: 765px;
  min-width: min-content;
}
.cargo__right--block {
  display: flex;
  gap: 60px;
  padding: 20px;
  background: #FFFFFF;
}
@media screen and (max-width: 992px) {
  .cargo__right--block {
    gap: 40px;
  }
}
@media screen and (max-width: 576px) {
  .cargo__right--block {
    flex-direction: column;
    gap: 20px;
  }
}
.cargo__right--block > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: calc(50% - 60px / 2);
}
@media screen and (max-width: 992px) {
  .cargo__right--block > div {
    min-width: calc(50% - 40px / 2);
  }
}
.cargo svg {
  color: #F2F8F4;
}
.cases {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .cases {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.cases > .h2, .cases > .h2-regular {
  width: 100%;
}
.cases .tabs {
  width: 100%;
}
.cases .tabs .item-active {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .cases .tabs .item-active {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 744px) {
  .cases .tabs .item-active {
    grid-template-columns: 1fr;
  }
}
.cases__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
@media screen and (max-width: 744px) {
  .cases__item.mobile-hidden {
    display: none;
  }
}
.cases__item--content {
  transition: all 0.2s ease 0s;
  position: absolute;
  content: "";
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  color: #FFFFFF;
  opacity: 0;
  background: #146E38;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .cases__item--content {
    gap: 10px;
    padding: 20px;
  }
}
@media screen and (max-width: 992px) {
  .cases__item--content {
    gap: 20px;
  }
}
@media screen and (max-width: 744px) {
  .cases__item--content {
    position: initial;
    gap: 10px;
    padding: 0;
    margin-bottom: 40px;
    color: initial;
    opacity: 1;
    background: transparent;
    z-index: 0;
  }
}
.cases__item--content .h4 {
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 744px) {
  .cases__item--content .h4 {
    font-size: 20px;
    font-weight: 600;
  }
}
@media screen and (max-width: 1024px) {
  .cases__item--content .h5 {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .cases__item--content .h5 {
    display: initial;
  }
}
@media screen and (max-width: 744px) {
  .cases__item--content .h5 {
    display: none;
  }
}
.cases__item .modal {
  display: none;
}
.cases__item::after {
  transition: all 0.1s ease 0s;
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, #146E38 90%);
  z-index: 1;
}
.cases__item:hover .cases__item--content {
  opacity: 1;
  z-index: 0;
  animation: fadeIn 0.25s ease forwards;
}
@media screen and (max-width: 744px) {
  .cases__item:hover .cases__item--content {
    opacity: 1;
    z-index: 0;
    animation: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 0;
  }
}
.cases__item:hover::after {
  opacity: 1;
  animation: fadeInAfter 0.15s ease forwards;
}
@media screen and (max-width: 744px) {
  .cases__item:hover::after {
    opacity: 0;
    animation: none;
  }
}
@keyframes fadeInAfter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  .cases .button-component {
    width: calc(100vw - 40px * 2);
  }
}
@media screen and (max-width: 414px) {
  .cases .button-component {
    width: calc(100vw - 20px * 2);
  }
}
@media screen and (max-width: 576px) {
  .cases .button-component label {
    width: 100%;
  }
}
.partners {
  align-items: end;
  background: #F2F8F4;
}
.partners--wrap {
  position: relative;
  display: flex;
  justify-content: end;
  gap: 120px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .partners--wrap {
    gap: 100px;
  }
}
@media screen and (max-width: 992px) {
  .partners--wrap {
    flex-direction: column;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.partners__left {
  display: flex;
  justify-content: end;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .partners__left {
    order: 2;
  }
}
.partners__left--wrap {
  height: calc(258px * 2 + 10px + 70px);
  width: calc((100% - 12px + calc((100vw - (100% + 80px + 80px)) / 2) + 80px) - 425px - 120px);
  max-width: 1062px;
  user-select: none;
}
@media screen and (max-width: 1930px) {
  .partners__left--wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .partners__left--wrap {
    width: 794px;
  }
}
@media screen and (max-width: 1300px) {
  .partners__left--wrap {
    width: 902px;
    height: calc(218px * 2 + 10px + 70px);
  }
}
@media screen and (max-width: 1120px) {
  .partners__left--wrap {
    width: 674px;
  }
}
@media screen and (max-width: 992px) {
  .partners__left--wrap {
    width: 902px;
    max-width: 902px;
  }
}
@media screen and (max-width: 500px) {
  .partners__left--wrap {
    width: calc(100vw - 40px);
    height: calc(calc((100vw - 40px - 10px) / 2) * 2 + 10px + 70px);
  }
}
.partners__left .swiper {
  width: 100%;
  height: 100%;
}
.partners__left .swiper-slide {
  height: 48%;
  max-width: 258px;
}
@media screen and (max-width: 500px) {
  .partners__left .swiper-slide {
    max-width: calc((100vw - 40px - 10px) / 2);
    max-height: calc((100vw - 40px - 10px) / 2);
  }
}
.partners__left .swiper-button-prev, .partners__left .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}
.partners__left .swiper-button-prev {
  right: 50px;
}
.partners__left .swiper .swiper-button-lock {
  display: flex;
}
.partners__right {
  display: flex;
  flex-direction: column;
  max-width: 425px;
  min-width: 425px;
}
@media screen and (max-width: 1300px) {
  .partners__right {
    max-width: 355px;
    min-width: 355px;
  }
}
@media screen and (max-width: 992px) {
  .partners__right {
    order: 1;
    width: 100%;
    max-width: 550px;
  }
}
@media screen and (max-width: 414px) {
  .partners__right {
    min-width: 100%;
  }
}
.partners__right .icon-custom {
  color: #F2F8F4;
}
.partners__right .item-numbers {
  color: #F9A01B;
}
.partners__right .icon .path1:before {
  color: #F2F8F4;
}
.partners__right .h2:nth-of-type(2), .partners__right .h2-regular:nth-of-type(2) {
  color: #F9A01B;
}
@media screen and (max-width: 520px) {
  .partners__right .h4 .break {
    display: none;
  }
}
.partners svg {
  color: #F2F8F4;
}
.info {
  background: #146E38;
}
.info--wrap {
  display: flex;
  gap: 0 120px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .info--wrap {
    gap: 0 60px;
  }
}
@media screen and (max-width: 992px) {
  .info--wrap {
    gap: 0 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 744px) {
  .info--wrap {
    flex-direction: column;
    align-items: start;
    gap: 40px 40px;
  }
}
.info .icon-custom {
  width: 210px;
  height: 186px;
  color: #FFFFFF;
  overflow: visible;
}
@media screen and (max-width: 744px) {
  .info .icon-custom {
    height: 110px;
  }
}
.info .icon-custom path {
  transform-origin: 0 0;
}
@media screen and (max-width: 744px) {
  .info .icon-custom path {
    transform: scale(0.6);
  }
}
.info .icon:before, .info .icon span::before {
  font-size: 186px;
}
@media screen and (max-width: 744px) {
  .info .icon:before, .info .icon span::before {
    font-size: 110px;
  }
}
@media screen and (max-width: 576px) {
  .info .icon:before, .info .icon span::before {
    font-size: 75px;
  }
}
.info__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #FFFFFF;
}
.info__text--sections {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .info__text--sections {
    flex-direction: column;
  }
}
.info__text--sections span:nth-of-type(1) {
  max-width: 335px;
}
@media screen and (max-width: 992px) {
  .info__text--sections span:nth-of-type(1) {
    max-width: 100%;
  }
}
.info__text--sections span:nth-of-type(2) {
  display: flex;
  max-width: 535px;
}
@media screen and (max-width: 992px) {
  .info__text--sections span:nth-of-type(2) {
    flex-direction: column;
    max-width: 100%;
  }
}
.info__text--sections span:nth-of-type(2)::before {
  content: "";
  display: block;
  width: 2px;
  min-width: 2px;
  height: 100%;
  margin-right: 40px;
  background: #F9A01B;
}
@media screen and (max-width: 992px) {
  .info__text--sections span:nth-of-type(2)::before {
    margin-right: 0;
    margin-bottom: 40px;
    width: 100%;
    height: 2px;
    min-height: 2px;
  }
}
.info__text > span {
  max-width: 680px;
}
@media screen and (max-width: 576px) {
  .info__text .button-component {
    width: calc(100vw - 40px * 2 - 10px);
  }
}
@media screen and (max-width: 414px) {
  .info__text .button-component {
    width: calc(100vw - 20px * 2 - 10px);
  }
}
@media screen and (max-width: 576px) {
  .info__text .button-component label {
    width: 100%;
  }
}
.info svg {
  color: #146E38;
}
.icon-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: inherit;
}
.hidden-more {
  display: none;
}
.hidden-more--desktop {
  display: none;
}
@media screen and (max-width: 744px) {
  .hidden-more--desktop {
    display: block;
  }
}
header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
  z-index: 100;
}
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  height: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 100;
}
@media screen and (max-width: 1440px) {
  .header {
    gap: 25px;
  }
}
@media screen and (max-width: 576px) {
  .header {
    height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__logo {
  z-index: 99;
}
.header__logo--default {
  display: block;
  min-width: 320px;
}
@media screen and (max-width: 1440px) {
  .header__logo--default {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .header__logo--default {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .header__logo--default {
    display: none;
  }
}
.header__logo--small {
  display: none;
  min-width: 150px;
}
@media screen and (max-width: 1440px) {
  .header__logo--small {
    display: block;
  }
}
@media screen and (max-width: 1300px) {
  .header__logo--small {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .header__logo--small {
    display: block;
  }
}
.header__items {
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 99;
}
@media screen and (max-width: 1300px) {
  .header__items {
    transition: all 0.2s ease 0s;
    position: absolute;
    top: 100%;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 380px;
    min-width: 320px;
    height: calc(100vh - (100% - 30px));
    min-height: fit-content;
    padding: 30px;
    background: #FFFFFF;
    transform: translateX(-30px);
    animation: fadeOut 0.55s ease both alternate;
    overflow-y: auto;
  }
}
@media screen and (max-width: 576px) {
  .header__items {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .header__items {
    gap: 20px;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.header__items a {
  text-wrap: nowrap;
}
.header__items .items--services {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
@media screen and (max-width: 1300px) {
  .header__items .items--services {
    display: none;
  }
}
.header__items .items--services-dropdown {
  position: absolute;
  top: 100%;
  display: none;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  background: #146E38;
  animation: fadeIn 0.25s ease forwards;
}
@media screen and (max-width: 1300px) {
  .header__items .items--services-dropdown {
    position: initial;
    display: flex;
    padding: 0;
    background: transparent;
    animation: none;
  }
}
@media screen and (max-width: 992px) {
  .header__items .items--services-dropdown {
    gap: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header__items .items--services-dropdown .link--light {
    color: #000000;
  }
}
@keyframes fadeIn {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__items .show {
  display: flex !important;
}
.header__items .arrow {
  transform: scale(0.625) translateY(1px);
  transform-origin: 50%;
}
.header .preload {
  animation-duration: 0s;
}
.header__contacts {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .header__contacts {
    gap: 25px;
  }
}
@media screen and (max-width: 1300px) {
  .header__contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .header__contacts {
    gap: 20px;
  }
}
.header__contacts--first, .header__contacts--second {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__contacts--first a, .header__contacts--second a {
  position: relative;
  padding-left: 30px;
  text-wrap: nowrap;
}
.header__contacts--first .icon, .header__contacts--second .icon {
  position: absolute;
  top: 1px;
  left: 0;
}
.header__contacts--first .icon::before, .header__contacts--second .icon::before {
  font-size: 20px;
}
.header__contacts--second .h5 {
  font-weight: 700;
}
.header__contacts::before {
  content: "";
  display: none;
  width: 100%;
  height: 2px;
  background: #F9A01B;
}
.header__menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .header__menu {
    display: flex;
  }
}
.header__menu span {
  transition: all 0.2s ease 0s;
  width: 28px;
  height: 3px;
  background: #146E38;
}
.header__menu--active .header__items {
  z-index: 100;
}
@media screen and (max-width: 1300px) {
  .header__menu--active .header__items .header__contacts::before {
    display: block;
  }
}
@media screen and (max-width: 1300px) {
  .header__menu--active .header__items {
    animation: fadeIn 0.25s ease forwards;
  }
}
@keyframes fadeIn {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__menu--active .header__menu span:nth-child(1) {
  transition: all 0.15s ease 0s;
  transform: rotate(45deg) scaleX(1.1);
  transform-origin: 0;
}
.header__menu--active .header__menu span:nth-child(2) {
  transition: all 0.15s ease 0s;
  opacity: 0;
  transform-origin: 50% 50%;
  transform: scaleX(0);
}
.header__menu--active .header__menu span:nth-child(3) {
  transition: all 0.15s ease 0s;
  transform: rotate(-45deg) scaleX(1.1);
  transform-origin: 0;
}
.header__menu--active .header__bg {
  transition: all 0.15s ease 0s;
  position: fixed;
  top: 100px;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.25);
  z-index: -1;
}
@media screen and (max-width: 576px) {
  .header__menu--active .header__bg {
    top: 80px;
  }
}
.header__menu:hover span, .header__menu:focus span, .header__menu:focus-visible span {
  transition: all 0.15s ease 0s;
  background: #219850;
}
.header__bg {
  transition: all 0.2s ease 0s;
  position: fixed;
}
footer {
  background: #146E38;
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #FFFFFF;
}
@media screen and (max-width: 744px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1180px) {
  .footer__top {
    flex-direction: column;
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  gap: 20px;
  max-width: 340px;
}
.footer__contacts--title {
  margin-bottom: 20px;
}
.footer__contacts > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contacts > div:nth-of-type(2) {
  flex-direction: row;
}
.footer__contacts--document {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contacts--document .icon::before {
  font-size: 35px;
}
.footer__form {
  display: flex;
  flex-direction: column;
  flex: 1 2 auto;
  gap: 40px;
  width: fit-content;
  max-width: 760px;
}
@media screen and (max-width: 1180px) {
  .footer__form {
    max-width: 100%;
  }
}
.footer__form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__form form .input-component:nth-child(1) {
  flex: 1 1 100%;
}
.footer__form form .input-component:nth-child(2) {
  flex: 1 1 calc(50% - 20px / 2);
}
@media screen and (max-width: 576px) {
  .footer__form form .input-component:nth-child(2) {
    flex: 1 1 100%;
  }
}
.footer__form form .input-component:nth-child(3) {
  flex: 1 1 calc(50% - 20px / 2);
}
.footer__form form .input-component:nth-child(4) {
  flex: 1 1 100%;
  height: 180px;
}
@media screen and (max-width: 576px) {
  .footer__form form .checkbox-approve {
    width: 100%;
  }
}
.footer__form form .checkbox-approve > label {
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .footer__form form .checkbox-approve .button-component {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .footer__form form .checkbox-approve .button-component label {
    width: 100%;
  }
}
.footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
@media screen and (max-width: 1180px) {
  .footer__bottom {
    flex-direction: column;
  }
}
.footer__bottom--first {
  display: flex;
  gap: 60px;
  padding-top: 60px;
}
@media screen and (max-width: 1270px) {
  .footer__bottom--first {
    gap: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .footer__bottom--first {
    justify-content: space-between;
    gap: 60px;
  }
}
@media screen and (max-width: 650px) {
  .footer__bottom--first {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom--first {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer__bottom--first {
    gap: 20px;
  }
}
.footer__bottom--first > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .footer__bottom--first > div {
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer__bottom--first > div {
    gap: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .footer__bottom--first > div:nth-child(1) {
    min-width: 210px;
  }
}
.footer__bottom--first .link, .footer__bottom--first .link--underline, .footer__bottom--first .link--light {
  text-wrap: nowrap;
}
.footer__bottom--second {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 540px;
  padding-top: 60px;
}
@media screen and (max-width: 1270px) {
  .footer__bottom--second {
    gap: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .footer__bottom--second {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom--second {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
  }
}
.footer__bottom--second > div {
  display: flex;
  flex-direction: column;
}
.footer__bottom--second > div:nth-of-type(1) {
  gap: 20px;
}
.footer__bottom--second > div:nth-of-type(2) {
  width: 284px;
}
.footer__bottom--second > div:nth-of-type(2) .link, .footer__bottom--second > div:nth-of-type(2) .link--underline, .footer__bottom--second > div:nth-of-type(2) .link--light {
  text-wrap: nowrap;
  margin-top: 40px;
  margin-bottom: 10px;
}
.footer__bottom--second span {
  text-wrap: nowrap;
}
.footer__bottom--second .ati {
  display: flex;
  justify-content: end;
  width: 240px;
  height: 52px;
}
@media screen and (max-width: 1180px) {
  .footer__bottom--second .ati {
    justify-content: start;
  }
}
.footer__bottom--second .ati iframe {
  transform: translateY(-10px);
}
.footer__bottom--second .yandex {
  display: flex;
  justify-content: end;
  width: 240px;
}
@media screen and (max-width: 1180px) {
  .footer__bottom--second .yandex {
    justify-content: start;
  }
}
.footer__bottom--second img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin-bottom: 60px;
  background: #FFFFFF;
}
.modal {
  display: none;
}
.modal-team {
  width: 740px;
  color: #FFFFFF;
  background: #146E38;
}
@media screen and (max-width: 576px) {
  .modal-team form {
    padding: 40px 0;
  }
}
.modal-cert {
  background: #FFFFFF;
}
.modal-cert__content {
  width: 600px;
  max-width: 80vw;
  max-height: 80vh;
  padding: 30px;
}
.modal-cert img {
  object-fit: contain;
}
.modal-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 20px 0;
  background: #F2F8F4;
  z-index: 999;
}
.modal-cookies__content {
  display: flex;
  align-items: center;
  gap: 10px 40px;
}
@media screen and (max-width: 576px) {
  .modal-cookies__content {
    flex-direction: column;
  }
}
.modal-cookies__content span:nth-of-type(1) {
  color: #146E38;
}
.modal-cookies__content span:nth-of-type(2) {
  max-width: 500px;
}
.modal-cookies__text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.modal-cookies__button {
  align-self: end;
  margin-left: auto;
}
@media screen and (max-width: 576px) {
  .modal-cookies__button {
    width: 100%;
  }
  .modal-cookies__button label {
    width: 100%;
  }
}
.modal-footer {
  width: 740px;
  color: #FFFFFF;
  background: #146E38;
}
.modal-footer__content {
  padding: 30px;
  max-width: 440px;
}
.ui {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.ui .section-title {
  display: flex;
  width: 100%;
  color: #A9B5AD;
  margin-bottom: 20px;
}
.ui__background-green {
  padding: 20px;
  background: #146E38;
}
.ui section:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ui section:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ui section:nth-child(3) form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.ui section:nth-child(3) form .button-component {
  margin-top: 20px;
}
.ui section:nth-child(5) {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ui section:nth-child(7) {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ui section:nth-child(8) {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ui section:nth-child(9) {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ui-icons-bg {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #146E38;
}
.ui-logo img {
  max-width: 320px;
}
.error-page {
  display: flex;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
.error-page--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  margin: 120px 20px;
}
@media screen and (max-width: 576px) {
  .error-page--wrap {
    gap: 20px;
    margin: 80px 20px;
  }
}
.error-page__logo {
  display: flex;
  gap: 20px;
  height: 100px;
  max-height: 100px;
  user-select: none;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .error-page__logo {
    gap: 10px;
  }
}
@media screen and (max-width: 360px) {
  .error-page__logo {
    gap: 5px;
  }
}
.error-page__logo > span:nth-of-type(1), .error-page__logo > span:nth-of-type(3) {
  font-size: 144px;
  font-weight: 700;
  line-height: 100px;
  color: #146E38;
}
.error-page__logo > span:nth-of-type(3) {
  color: #F9A01B;
}
.error-page__logo .icon-favicon .path1::before {
  color: transparent;
}
.error-page__logo .icon-favicon span {
  transform: translateY(6px);
}
.error-page__logo .icon-favicon span::before {
  font-size: 118px;
}
.error-page__title {
  text-align: center;
  max-width: 580px;
}
.error-page__text {
  text-align: center;
  max-width: 500px;
}
.home {
  background: #FFFFFF;
  overflow: hidden;
}
.home .top__title {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .home .top__title {
    gap: 30px;
  }
}
@media screen and (max-width: 1276px) {
  .home .top__title {
    align-items: start;
    justify-content: start;
    height: 465px;
  }
}
@media screen and (max-width: 576px) {
  .home .top__title {
    gap: 15px;
    height: 272px;
  }
}
@media screen and (max-width: 414px) {
  .home .top__title {
    gap: 10px;
  }
}
@media screen and (max-width: 360px) {
  .home .top__title {
    gap: 20px 10px;
    flex-direction: column;
  }
}
.home .top__title--icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 118px;
  height: 88px;
}
@media screen and (max-width: 1440px) {
  .home .top__title--icon {
    width: 100px;
    height: 76px;
  }
}
@media screen and (max-width: 670px) {
  .home .top__title--icon {
    width: 74px;
    height: 56px;
  }
}
.home .top__title--icon svg rect:nth-of-type(2) {
  animation: move 8s linear infinite both;
}
@keyframes move {
  0% {
    y: 77px;
    height: 60px;
  }
  37.5% {
    y: 77px;
    height: 60px;
  }
  42.5% {
    y: 77px;
    height: 18px;
  }
  45% {
    y: 77px;
    height: 18px;
  }
  50% {
    y: 35px;
    height: 60px;
  }
  87.5% {
    y: 35px;
    height: 60px;
  }
  92.5% {
    y: 77px;
    height: 18px;
  }
  95% {
    y: 77px;
    height: 18px;
  }
  100% {
    y: 77px;
    height: 60px;
  }
}
.home .top__title--text {
  font-size: 40px;
  font-weight: 700;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .home .top__title--text {
    font-size: 36px;
  }
}
@media screen and (max-width: 1276px) {
  .home .top__title--text {
    transform: translateY(-14px);
  }
}
@media screen and (max-width: 670px) {
  .home .top__title--text {
    display: none;
  }
}
.home .top__title--text-additional {
  display: none;
  font-size: 30px;
}
@media screen and (max-width: 1276px) {
  .home .top__title--text-additional {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 670px) {
  .home .top__title--text-additional {
    display: block;
  }
}
.home .top__title--tiles {
  position: absolute;
  top: 40px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  z-index: 1;
}
@media screen and (max-width: 1276px) {
  .home .top__title--tiles {
    top: 184px;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 100px * 2);
  }
}
@media screen and (max-width: 992px) {
  .home .top__title--tiles {
    width: calc(100% - 40px * 2);
  }
}
@media screen and (max-width: 670px) {
  .home .top__title--tiles {
    top: 140px;
    grid-template-columns: 1fr;
  }
  .home .top__title--tiles .tile-arrow__long {
    position: initial;
  }
}
@media screen and (max-width: 414px) {
  .home .top__title--tiles {
    width: calc(100% - 20px * 2);
  }
}
@media screen and (max-width: 360px) {
  .home .top__title--tiles {
    top: 194px;
  }
}
.home .numbers {
  display: flex;
  gap: 10px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .home .numbers {
    justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .home .numbers {
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 744px) {
  .home .numbers {
    padding-bottom: 0;
  }
}
.home .numbers__tiles {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  gap: 60px 20px;
}
@media screen and (max-width: 1440px) {
  .home .numbers__tiles {
    grid-template-columns: repeat(2, 240px);
  }
}
@media screen and (max-width: 1200px) {
  .home .numbers__tiles {
    order: 2;
    gap: 40px;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .home .numbers__tiles {
    grid-template-columns: repeat(2, 168px);
  }
}
@media screen and (max-width: 414px) {
  .home .numbers__tiles {
    grid-template-columns: repeat(2, auto);
    gap: 20px;
  }
}
.home .numbers__tiles--item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home .numbers__tiles--item .item-icon {
  display: flex;
  color: #FFFFFF;
  max-height: min-content;
}
.home .numbers__tiles--item .item-numbers {
  color: #F9A01B;
}
.home .numbers__tiles--item .item-numbers--wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.home .numbers__tiles--item .item-numbers--text {
  position: absolute;
  left: 84px;
}
@media screen and (max-width: 1440px) {
  .home .numbers__tiles--item .item-numbers--text {
    left: 77px;
  }
}
@media screen and (max-width: 576px) {
  .home .numbers__tiles--item .item-numbers--text {
    left: 66px;
  }
}
.home .numbers__info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 545px;
}
@media screen and (max-width: 1200px) {
  .home .numbers__info {
    order: 1;
    gap: 40px;
    max-width: 100%;
  }
}
.home .numbers__info .tabs-slider {
  gap: 20px;
}
.home .numbers__info .swiper {
  display: flex;
  align-items: center;
  max-width: 420px;
  height: 52px;
  padding-right: 50px;
  padding-left: 50px;
}
.home .numbers__info .swiper::before {
  width: 50px;
  left: 0;
  right: auto;
  mask-image: linear-gradient(to right, black 90%, rgba(0, 0, 0, 0));
}
.home .numbers__info .swiper::after {
  display: initial;
  width: 50px;
  right: 0;
  left: auto;
  z-index: 1;
}
.home .numbers__info .swiper-slide {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: 0;
}
.home .numbers__info .swiper-slide::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  left: auto;
  display: block;
  width: 1px;
  height: 22px;
  background: #5D645D;
}
.home .numbers__info .swiper-slide:last-child {
  padding-right: 5px;
}
.home .numbers__info .swiper-slide:last-child::after {
  display: none;
}
.home .numbers__info .swiper-button-prev, .home .numbers__info .swiper-button-next {
  background: #FFFFFF !important;
  z-index: 2;
}
.home .numbers__info .swiper-button-prev {
  left: 0;
  right: auto;
}
.home .numbers__info .swiper-button-disabled, .home .numbers__info .swiper-button-lock {
  display: flex;
  background: transparent;
  cursor: pointer;
  pointer-events: all;
}
.home .numbers__info .swiper-button-disabled::after, .home .numbers__info .swiper-button-lock::after {
  color: #F9A01B;
}
.home .numbers__info .swiper-button-disabled:hover, .home .numbers__info .swiper-button-disabled:focus, .home .numbers__info .swiper-button-disabled:focus-visible, .home .numbers__info .swiper-button-lock:hover, .home .numbers__info .swiper-button-lock:focus, .home .numbers__info .swiper-button-lock:focus-visible {
  background: transparent;
}
.home .numbers__info .swiper .tab {
  transition: all 0.2s ease 0s;
  display: flex;
  align-items: center;
  height: 100%;
}
.home .numbers__info .swiper .tab-active {
  transition: all 0.15s ease 0s;
  color: #146E38;
  font-size: 40px;
  font-weight: 600;
  transform-origin: 50%;
}
.home .team {
  background: #146E38;
}
.home .team--wrap {
  display: flex;
  align-items: center;
  gap: 0 120px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .home .team--wrap {
    gap: 0 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 744px) {
  .home .team--wrap {
    flex-direction: column;
    align-items: start;
    gap: 40px 40px;
  }
}
.home .team--wrap .icon-custom {
  width: 236px;
  height: 186px;
  color: #FFFFFF;
  overflow: visible;
}
@media screen and (max-width: 744px) {
  .home .team--wrap .icon-custom {
    height: 110px;
  }
}
.home .team--wrap .icon-custom path {
  transform-origin: 0 0;
}
@media screen and (max-width: 744px) {
  .home .team--wrap .icon-custom path {
    transform: scale(0.6);
  }
}
.home .team .icon {
  transform: translateY(10px);
}
.home .team .icon span:before {
  font-size: 186px;
}
@media screen and (max-width: 744px) {
  .home .team .icon span:before {
    font-size: 110px;
  }
}
@media screen and (max-width: 576px) {
  .home .team .icon span:before {
    font-size: 75px;
  }
}
.home .team__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #FFFFFF;
}
@media screen and (max-width: 576px) {
  .home .team__left .button-component {
    width: calc(100vw - 40px * 2);
  }
}
@media screen and (max-width: 414px) {
  .home .team__left .button-component {
    width: calc(100vw - 20px * 2);
  }
}
@media screen and (max-width: 576px) {
  .home .team__left .button-component label {
    width: 100%;
  }
}
.direction {
  background: #FFFFFF;
}
.direction .logo-bg__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  bottom: calc(100% - 120px);
  text-align: start;
}
@media screen and (max-width: 744px) {
  .direction .logo-bg__text {
    bottom: calc(100% - 60px);
  }
}
.direction .logo-bg__text .h5 {
  max-width: 500px;
  max-height: 120px;
  text-wrap: wrap;
  overflow: hidden;
}
.direction .logo-bg__text .break:nth-of-type(1) {
  display: none;
}
@media screen and (max-width: 640px) {
  .direction .logo-bg__text .break:nth-of-type(1) {
    display: block;
  }
}
.direction .logo-bg__text .break:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 744px) {
  .direction .logo-bg__text .break:nth-of-type(2) {
    display: block;
  }
}
.direction .logo-bg__text .break:nth-of-type(3) {
  display: block;
}
@media screen and (max-width: 744px) {
  .direction .logo-bg__text .break:nth-of-type(3) {
    display: none;
  }
}
.direction .logo-bg__text .break:nth-of-type(4) {
  display: none;
}
@media screen and (max-width: 744px) {
  .direction .logo-bg__text .break:nth-of-type(4) {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .direction .logo-bg__text .break:nth-of-type(4) {
    display: block;
  }
}
.direction .logo-bg__text .break:nth-of-type(5) {
  display: none;
}
@media screen and (max-width: 744px) {
  .direction .logo-bg__text .break:nth-of-type(5) {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .direction .logo-bg__text .break:nth-of-type(5) {
    display: none;
  }
}
.direction .logo-bg__text .break:nth-of-type(6) {
  display: none;
}
@media screen and (max-width: 640px) {
  .direction .logo-bg__text .break:nth-of-type(6) {
    display: block;
  }
}
.direction .cert {
  min-height: 690px;
  padding-top: 30px;
  padding-bottom: 120px;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .direction .cert {
    padding-bottom: 80px;
  }
}
.direction .cert--wrap {
  display: flex;
  column-gap: 150px;
}
@media screen and (max-width: 1200px) {
  .direction .cert--wrap {
    column-gap: 80px;
  }
}
@media screen and (max-width: 992px) {
  .direction .cert--wrap {
    column-gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .direction .cert--wrap {
    flex-direction: column;
    row-gap: 60px;
  }
}
.direction .cert__left {
  display: flex;
  flex-direction: column;
  flex: 1 2 auto;
  gap: 40px;
  width: 100%;
  max-width: 620px;
}
.direction .cert__left > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.direction .cert__left > div .icon .path1::before {
  color: transparent;
}
.direction .cert__left > div .h2, .direction .cert__left > div .h2-regular {
  color: #F9A01B;
}
.direction .cert__left .item-icon {
  display: flex;
  max-height: min-content;
}
.direction .cert__left .item-numbers--wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.direction .cert__left .item-numbers--text {
  position: absolute;
  top: 0;
  left: 55px;
}
@media screen and (max-width: 1440px) {
  .direction .cert__left .item-numbers--text {
    left: 48px;
  }
}
@media screen and (max-width: 576px) {
  .direction .cert__left .item-numbers--text {
    left: 37px;
  }
}
.direction .cert__right {
  display: flex;
  align-items: start;
  flex: 2 1 max-content;
}
@media screen and (max-width: 768px) {
  .direction .cert__right {
    justify-content: center;
  }
}
.direction .cert__right--img {
  cursor: pointer;
}
.direction .cert__right img {
  max-height: 570px;
  object-fit: contain;
}
.direction .cert svg {
  color: #FFFFFF;
}
.direction .info-two-section {
  display: flex;
  justify-content: center;
  background: #F2F8F4;
}
.direction .info-two-section--wrap {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 670px;
  min-height: 670px;
}
@media screen and (max-width: 768px) {
  .direction .info-two-section--wrap {
    flex-direction: column;
    max-height: max-content;
  }
}
.direction .info-two-section__left {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .direction .info-two-section__left {
    max-width: 100%;
  }
}
.direction .info-two-section__left img {
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .direction .info-two-section__left img {
    max-height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .direction .info-two-section__left img {
    max-height: 210px;
  }
}
.direction .info-two-section__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 100px;
  width: 100%;
  max-width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .direction .info-two-section__right {
    padding: 30px 60px;
  }
}
@media screen and (max-width: 992px) {
  .direction .info-two-section__right {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 768px) {
  .direction .info-two-section__right {
    max-width: 100%;
    padding: 80px 40px;
  }
}
@media screen and (max-width: 414px) {
  .direction .info-two-section__right {
    padding: 80px 20px;
  }
}
.direction .info-two-section__right > * {
  max-width: 530px;
}
@media screen and (max-width: 768px) {
  .direction .info-two-section__right > * {
    max-width: 100%;
  }
}
.direction .info-two-section__right > div {
  display: flex;
  flex-direction: column;
  color: #F2F8F4;
}
.direction .info-two-section__right .item-numbers {
  color: #F9A01B;
}
.direction .info-two-section__right .item-numbers--wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.direction .info-two-section__right .item-numbers--text {
  position: absolute;
  left: 135px;
}
@media screen and (max-width: 1440px) {
  .direction .info-two-section__right .item-numbers--text {
    left: 123px;
  }
}
@media screen and (max-width: 576px) {
  .direction .info-two-section__right .item-numbers--text {
    left: 106px;
  }
}
.direction .info-two-section__right .icon-23 .path1:before {
  color: transparent;
}
.direction .info-two-section svg {
  color: #F2F8F4;
}
.direction .info .icon-24 .path2:before, .direction .info .icon-24 .path4:before, .direction .info .icon-24 .path6:before, .direction .info .icon-24 .path8:before {
  color: #146E38;
}
.direction .info .icon-25:before {
  color: #FFFFFF;
}
