@charset "UTF-8";
@media (min-width: 0) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 576px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

@media (min-width: 992px) {
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

@media (min-width: 1400px) {
  .hidden-xxl {
    display: none;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:where(:root) {
  line-height: 1.15;
  box-sizing: border-box;
}

:where(html) {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

:where(main) {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(a) {
  background-color: transparent;
}

:where(button, input, optgroup, select, textarea) {
  line-height: inherit;
  border: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

:where(button) {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  border-radius: 0;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  padding: 1px 6px;
  cursor: pointer;
}

:where(label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input) {
  overflow: visible;
  border-radius: 0;
}

:where(fieldset) {
  margin: 0;
  padding: 0;
  border: 1px solid currentcolor;
}

:where(legend) {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

:where(progress) {
  display: inline-block;
  vertical-align: baseline;
}

:where(select) {
  text-transform: none;
}

:where(textarea) {
  overflow: auto;
  vertical-align: top;
}

:where([type=checkbox], [type=radio]) {
  box-sizing: border-box;
  padding: 0;
}

:where([type=search]) {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  outline-offset: -2px;
}

:where([type=color]) {
  background: inherit;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
          appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

:where(hr) {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

:where(ol ol, ol ul, ol dl, ul ol, ul ul, ul dl, dl ol, dl ul, dl dl) {
  margin: 0;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(audio, video) {
  display: inline-block;
}

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

:where(img) {
  border: 0;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

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

:where(table) {
  text-indent: 0;
  border-color: inherit;
}

:where(details) {
  display: block;
}

:where(dialog) {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}
:where(dialog):not([open]) {
  display: none;
}

:where(summary) {
  display: list-item;
}

:where(canvas) {
  display: inline-block;
}

:where(template) {
  display: none;
}

:where([hidden]) {
  display: none;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* stylelint-disable */
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-semibold.woff2") format("woff2"), url("../fonts/archivo-semibold.woff") format("woff");
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: normal;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-semibolditalic.woff2") format("woff2"), url("../fonts/archivo-semibolditalic.woff") format("woff");
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: italic;
}
@font-face {
  font-family: "Roobert PRO";
  src: url("../fonts/roobertprovf.woff2") format("woff2"), url("../fonts/roobertprovf.woff") format("woff");
  font-weight: 300 400 500 900;
  font-stretch: 70% 125%;
  font-style: normal;
}
@font-face {
  font-family: "Roobert PRO";
  src: url("../fonts/roobertpro-bold.woff2") format("woff2"), url("../fonts/roobertpro-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-bold.woff2") format("woff2"), url("../fonts/archivo-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-regular.woff2") format("woff2"), url("../fonts/archivo-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-light.woff2") format("woff2"), url("../fonts/archivo-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-bolditalic.woff2") format("woff2"), url("../fonts/archivo-bolditalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-thin.woff2") format("woff2"), url("../fonts/archivo-thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-lightitalic.woff2") format("woff2"), url("../fonts/archivo-lightitalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-italic.woff2") format("woff2"), url("../fonts/archivo-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-thinitalic.woff2") format("woff2"), url("../fonts/archivo-thinitalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
html {
  min-height: 100vh;
  height: 100%;
  min-width: 320px;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  color: #000;
  color-scheme: dark light;
  scroll-behavior: smooth;
  font-variation-settings: "wght" 400;
}
@media (min-width: 1025px) {
  html {
    font-size: 20px;
  }
}

body {
  height: 100%;
  background-color: #fff;
}
body.menu-active {
  overflow: hidden;
}

a,
button {
  transition: 0.2s;
}

button {
  cursor: pointer;
}

a {
  color: currentColor;
}

svg {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

img {
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img[draggable=false] {
  pointer-events: none;
  -webkit-user-drag: none;
}

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0;
}
figure img,
picture img {
  width: 100%;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

video {
  outline: none;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
::-moz-selection {
  background-color: #004953;
  color: #a9e52f;
}
::selection {
  background-color: #004953;
  color: #a9e52f;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.main {
  flex-grow: 1;
}

.background-default {
  background-color: #fff;
  color: #000;
}

.background-muted {
  background-color: #b1b1b1;
  color: #000;
}

.background-primary {
  background-color: #a9e52f;
  color: #fff;
}

.background-secondary {
  background-color: #004953;
  color: #fff;
}

.text-default {
  color: #2d2d2d;
}

.text-muted {
  color: #b1b1b1;
}

.text-primary {
  color: #a9e52f;
}

.text-secondary {
  color: #004953;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.mt-0 {
  margin-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.full-width {
  width: 100% !important;
}

.overflow-hidden {
  overflow: hidden;
}

.clearfix {
  overflow: auto;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.visible-laptop {
  display: none;
}
@media (min-width: 1025px) {
  .visible-laptop {
    display: flex;
  }
}

.hidden-tablet {
  display: none;
}
@media (min-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}

.hidden-laptop {
  display: flex;
}
@media (min-width: 1025px) {
  .hidden-laptop {
    display: none;
  }
}

.hidden-desktop {
  display: flex;
}
@media (min-width: 1200px) {
  .hidden-desktop {
    display: none;
  }
}

.visible-desktop {
  display: none;
}
@media (min-width: 1200px) {
  .visible-desktop {
    display: flex;
  }
}

.list-none {
  list-style-type: none;
}

.link-hover {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  text-align: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .link-hover {
    justify-content: flex-start;
    font-weight: 500;
    font-size: 20px;
    background-color: transparent;
    text-align: left;
    color: #a9e52f;
  }
}
.link-hover:focus:before, .link-hover:hover:before {
  transform: translateX(0);
}
.link-hover:focus:after, .link-hover:hover:after {
  background-position: 100% 50%;
}
.link-hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  height: 2px;
  width: 100%;
  background-color: #a9e52f;
  transition: transform 0.5s;
}
.link-hover:after {
  content: "";
  flex-shrink: 0;
  transition: background-position 0.5s;
  width: 25px;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='15' fill='none'%3E%3Cpath fill='%23D62028' d='M1 6.5a1 1 0 1 0 0 2v-2Zm23.294 1.707a1 1 0 0 0 0-1.414L17.931.429a1 1 0 1 0-1.415 1.414L22.173 7.5l-5.657 5.657a1 1 0 0 0 1.414 1.414l6.364-6.364ZM1 8.5h22.587v-2H1v2Z'/%3E%3C/svg%3E");
  background-position: -10px 50%;
  background-size: 28px 16px;
}

.mt-md {
  margin-top: 90px;
}

.mt-lg {
  margin-top: 120px;
}

.mb-md {
  margin-top: 90px;
}

.mb-lg {
  margin-top: 120px;
}

.gradient-lg-top-right {
  background-repeat: no-repeat;
  background-position: 50% 100%, 50% 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='250' fill='none' viewBox='0 0 1920 250'%3E%3Cpath fill='url(%23a)' d='M0 0h1920v250H0z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='960' x2='960' y1='0' y2='250' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='1520' fill='none' viewBox='0 0 1920 1520'%3E%3Cg clip-path='url(%23a)' data-figma-skip-parse='true'%3E%3CforeignObject width='4431.15' height='4431.15' x='-2215.58' y='-2215.58' transform='matrix(-.54986 -.58987 .38203 -.44484 760.697 647.861)'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='background:conic-gradient(from 90deg,rgba(255,255,255,0) 0deg,rgba(169,229,47,.2) 80.6817deg,rgba(255,255,255,0) 360deg);height:100%25;width:100%25;opacity:1'/%3E%3C/foreignObject%3E%3C/g%3E%3Cpath d='M0 0h1920v1520H0z' data-figma-gradient-fill='%7B&quot;type&quot;:&quot;GRADIENT_ANGULAR&quot;,&quot;stops&quot;:%5B%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:0.0%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:0.66274511814117432,&quot;g&quot;:0.89803922176361084,&quot;b&quot;:0.18431372940540314,&quot;a&quot;:0.20000000298023224%7D,&quot;position&quot;:0.22411584854125977%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:1.0%7D%5D,&quot;stopsVar&quot;:%5B%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:0.0%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:0.66274511814117432,&quot;g&quot;:0.89803922176361084,&quot;b&quot;:0.18431372940540314,&quot;a&quot;:0.20000000298023224%7D,&quot;position&quot;:0.22411584854125977%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:1.0%7D%5D,&quot;transform&quot;:%7B&quot;m00&quot;:-1099.715332031250,&quot;m01&quot;:764.06896972656250,&quot;m02&quot;:928.520019531250,&quot;m10&quot;:-1179.7438964843750,&quot;m11&quot;:-889.68133544921875,&quot;m12&quot;:1682.5734863281250%7D,&quot;opacity&quot;:1.0,&quot;blendMode&quot;:&quot;NORMAL&quot;,&quot;visible&quot;:true%7D'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath d='M0 0h1920v1520H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.gradient-md-top-right {
  background-repeat: no-repeat;
  background-position: 50% 100%, 50% 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1921' height='498' fill='none' viewBox='0 0 1921 498'%3E%3Cpath fill='url(%23a)' d='M.237 0h1920v498H.237z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='960.237' x2='960.237' y1='0' y2='498' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1921' height='1520' fill='none' viewBox='0 0 1921 1520'%3E%3Cg clip-path='url(%23a)' data-figma-skip-parse='true'%3E%3CforeignObject width='3610.42' height='3610.42' x='-1805.21' y='-1805.21' transform='matrix(-.97525 -.4674 .2593 -.7424 1186.33 525.396)'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='background:conic-gradient(from 90deg,rgba(255,255,255,0) 0deg,rgba(169,229,47,.2) 80.6817deg,rgba(255,255,255,0) 360deg);height:100%25;width:100%25;opacity:1'/%3E%3C/foreignObject%3E%3C/g%3E%3Cpath d='M.237 0h1920v1520H.237z' data-figma-gradient-fill='%7B&quot;type&quot;:&quot;GRADIENT_ANGULAR&quot;,&quot;stops&quot;:%5B%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:0.0%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:0.66274511814117432,&quot;g&quot;:0.89803922176361084,&quot;b&quot;:0.18431372940540314,&quot;a&quot;:0.20000000298023224%7D,&quot;position&quot;:0.22411584854125977%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:1.0%7D%5D,&quot;stopsVar&quot;:%5B%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:0.0%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:0.66274511814117432,&quot;g&quot;:0.89803922176361084,&quot;b&quot;:0.18431372940540314,&quot;a&quot;:0.20000000298023224%7D,&quot;position&quot;:0.22411584854125977%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:1.0%7D%5D,&quot;transform&quot;:%7B&quot;m00&quot;:-1950.5008544921875,&quot;m01&quot;:518.59405517578125,&quot;m02&quot;:1902.28027343750,&quot;m10&quot;:-934.81365966796875,&quot;m11&quot;:-1484.8117675781250,&quot;m12&quot;:1735.208496093750%7D,&quot;opacity&quot;:1.0,&quot;blendMode&quot;:&quot;NORMAL&quot;,&quot;visible&quot;:true%7D'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath d='M.237 0h1920v1520H.237z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.gradient-md-top-left {
  background-repeat: no-repeat;
  background-position: 0% 100%, 50% 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='737.807' fill='none' viewBox='0 0 1920 737.807'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='960' x2='960' y1='0' y2='737.807' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M0 0h1920v737.807H0z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1921' height='1255' fill='none' viewBox='0 0 1921 1255'%3E%3Cg clip-path='url(%23a)' data-figma-skip-parse='true'%3E%3CforeignObject width='3033.68' height='3033.68' x='-1516.84' y='-1516.84' transform='matrix(1.29436 .14308 -.07923 .7167 664.763 494.079)'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='background:conic-gradient(from 90deg,rgba(255,255,255,0) 0deg,rgba(169,229,47,.2) 246.485deg,rgba(255,255,255,0) 360deg);height:100%25;width:100%25;opacity:1'/%3E%3C/foreignObject%3E%3C/g%3E%3Cpath d='M.948 0h1920v1520H.948z' data-figma-gradient-fill='%7B&quot;type&quot;:&quot;GRADIENT_ANGULAR&quot;,&quot;stops&quot;:%5B%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:0.0%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:0.66274511814117432,&quot;g&quot;:0.89803922176361084,&quot;b&quot;:0.18431372940540314,&quot;a&quot;:0.20000000298023224%7D,&quot;position&quot;:0.68468046188354492%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:1.0%7D%5D,&quot;stopsVar&quot;:%5B%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:0.0%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:0.66274511814117432,&quot;g&quot;:0.89803922176361084,&quot;b&quot;:0.18431372940540314,&quot;a&quot;:0.20000000298023224%7D,&quot;position&quot;:0.68468046188354492%7D,%7B&quot;color&quot;:%7B&quot;r&quot;:1.0,&quot;g&quot;:1.0,&quot;b&quot;:1.0,&quot;a&quot;:0.0%7D,&quot;position&quot;:1.0%7D%5D,&quot;transform&quot;:%7B&quot;m00&quot;:2588.712402343750,&quot;m01&quot;:-158.45510864257812,&quot;m02&quot;:-550.36529541015625,&quot;m10&quot;:286.16720581054688,&quot;m11&quot;:1433.4094238281250,&quot;m12&quot;:-365.70916748046875%7D,&quot;opacity&quot;:1.0,&quot;blendMode&quot;:&quot;NORMAL&quot;,&quot;visible&quot;:true%7D'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath d='M.948 0h1920v1520H.948z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin-top: 0;
  word-break: break-word;
  color: inherit;
}

h1,
.h1 {
  font-size: 38px;
  line-height: 1.26;
  letter-spacing: -1.6px;
  color: #2d2d2d;
  font-weight: 400;
}
h1 span,
.h1 span {
  color: #a9e52f;
  font-weight: 700;
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}

h2,
.h2 {
  font-size: 28px;
  color: #16535e;
  letter-spacing: -1.3px;
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}

h3,
.h3 {
  font-size: 20px;
  font-weight: 700;
  color: #16535e;
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}

.h4 {
  font-size: 12px;
  color: #004953;
}
@media (min-width: 1200px) {
  .h4 {
    font-size: 24px;
  }
}

.h5 {
  font-size: 10px;
}
@media (min-width: 1200px) {
  .h5 {
    font-size: 20px;
  }
}

.h6 {
  font-size: 8px;
}
@media (min-width: 1200px) {
  .h6 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.7;
}
@media (min-width: 1200px) {
  p {
    font-size: 20px;
  }
}

[data-scrollspy] {
  opacity: 1;
}

.page-loaded .animate__animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}
.page-loaded .animate__animated[data-scrollspy=animate__fadeInDownBefore]::before {
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 75%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownMoon {
  from {
    opacity: 0;
    transform: translate3d(0, -15%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes displayIn {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: block;
    opacity: 1;
  }
}
.animate__displayIn {
  animation-name: displayIn;
  animation-duration: 0s;
}

@keyframes fadeInSplash {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.animate__fadeInSplash {
  animation-name: fadeInSplash;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-20px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(20px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}

.animate__fadeInDownBefore:before {
  animation-name: fadeInDownMoon;
}

[data-scrollspy=animate__fadeInDownBefore]::before {
  opacity: 0;
}

@keyframes accordionOpen {
  from {
    max-width: 160px;
  }
  to {
    max-width: 920px;
  }
}
@keyframes accordionClose {
  from {
    max-width: 920px;
  }
  to {
    max-width: 160px;
  }
}
@keyframes accordionShowContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1025px) {
  .accordion-list {
    flex-direction: row;
  }
}

.accordion__toggle {
  width: 100%;
  height: 48px;
  background-color: #F0FAF0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px;
  justify-content: space-between;
  transition: border-radius 0.3s ease;
}
@media (min-width: 768px) {
  .accordion__toggle {
    height: 96px;
    padding: 20px 30px;
    border-radius: 15px;
  }
}

.accordion__toggle h3 {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  margin-top: 0;
  text-align: left;
  font-size: 12px;
}
@media (min-width: 768px) {
  .accordion__toggle h3 {
    font-size: 24px;
  }
}

@media (min-width: 1025px) {
  .accordion__toggle {
    padding: 28px 50px;
  }
}
.accordion__content-vertical {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, border-radius 0.3s ease;
  background-color: #F0FAF0;
  border-radius: 0 0 0 0;
  padding: 0 50px;
  margin-top: -15px;
  margin-bottom: 40px;
}

.accordion__content-vertical ul {
  display: none;
}

@media (min-width: 1200px) {
  .accordion__content-vertical {
    margin-bottom: 45px;
  }
}
.accordion-vertical.is-open .accordion__content-vertical {
  max-height: 100%;
  padding: 0 50px 31px 10px;
  border-radius: 0 0 15px 15px;
  margin-bottom: 25px;
}

.accordion-vertical.is-open .accordion__content-vertical ul {
  display: block;
  min-width: 200px;
  max-width: 800px;
}

@media (max-width: 470px) {
  .accordion-vertical.is-open .accordion__content-vertical {
    padding: 0 20px 31px 0px;
  }
}
.accordion__toggle[aria-expanded=true] {
  border-radius: 15px 15px 0px 0px;
}

.accordion__toggle-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: transform 0.4s ease;
  transform-origin: center;
  color: #ff9841;
}
@media (min-width: 768px) {
  .accordion__toggle-icon {
    width: 32px;
    height: 32px;
  }
}

.accordion__toggle[aria-expanded=true] .accordion__toggle-icon {
  transform: rotate(180deg);
}

@media (min-width: 1025px) {
  .accordion {
    overflow: hidden;
    height: 470px;
    max-width: 160px;
    width: auto;
    display: flex;
    flex-wrap: wrap;
  }
}

.accordion__summary {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #a9e52f;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .accordion__summary {
    border-radius: 15px;
    width: 120px;
    min-height: 470px;
    padding: 52px 30px 40px;
  }
}

.accordion[open] {
  background-color: #F0FAF0;
  border-radius: 15px;
}
@media (min-width: 1025px) {
  .accordion[open] {
    max-width: calc(100% - 280px);
  }
}

.accordion[open] .accordion__summary {
  width: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
  flex-direction: row;
  padding: 0;
  background-color: #a9e52f;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__summary {
    background-color: #F0FAF0;
    border-radius: 0;
  }
}

.accordion[open] .accordion__header {
  flex-direction: row;
  align-items: center;
  padding: 20px 22px;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__header {
    align-items: flex-start;
    padding: 52px 40px;
  }
}
@media (min-width: 1200px) {
  .accordion[open] .accordion__header {
    padding: 52px 80px 70px 80px;
  }
}

.accordion__title {
  margin-top: 15px;
  margin-bottom: 0;
  letter-spacing: -0.9px;
}

.accordion__title--vertical {
  font-size: 24px;
  margin-top: 0;
}
@media (min-width: 1025px) {
  .accordion__title--vertical {
    writing-mode: vertical-rl;
    transform: none;
    font-size: 30px;
    transform: rotate(180deg);
  }
}

@media (min-width: 1025px) {
  .accordion[open] .accordion__title--vertical {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 32px;
    letter-spacing: -1px;
  }
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
  padding: 20px 22px;
}
@media (min-width: 1025px) {
  .accordion__header {
    padding: 0;
    flex-direction: column-reverse;
  }
}

.accordion__icons {
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .accordion__icons {
    margin: -15px 10px 0 0;
  }
}

.accordion__icons svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
@media (min-width: 1025px) {
  .accordion__icons svg {
    width: 36px;
    height: 36px;
  }
}

.accordion[open] .accordion__icons svg {
  color: #fff;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__icons svg {
    color: #ff9841;
  }
}

.accordion:not([open]) .accordion__content {
  animation: accordionClose 0.3s both;
}

.accordion__content .link__more {
  margin-top: 22px;
}
@media (min-width: 1025px) {
  .accordion__content .link__more {
    order: 1;
    width: 100%;
    margin-top: 16px;
  }
}
@media (min-width: 1200px) {
  .accordion__content .link__more {
    margin-top: 46px;
  }
}

@media (min-width: 1200px) {
  .accordion__content .link__more-title {
    font-size: 18px;
  }
}

.accordion__content p {
  max-width: 100%;
}
@media (min-width: 1025px) {
  .accordion__content p {
    width: calc(76% - 10px);
    padding-right: 10px;
  }
}

.accordion[open] .accordion__content {
  animation: accordionOpen 0.3s both;
}

.accordion__text {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 22px 30px 22px;
  opacity: 0;
}
@media (min-width: 1025px) {
  .accordion__text {
    padding: 0 40px 30px 40px;
  }
}
@media (min-width: 1200px) {
  .accordion__text {
    padding: 0 90px 70px 80px;
  }
}

.accordion[open] .accordion__text {
  animation: accordionShowContent 0.3s both;
  animation-delay: 0.3s;
}

.accordion__text p {
  margin-top: 30px;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .accordion__text p {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .accordion__text p {
    font-size: 18px;
    margin-top: 12px;
  }
}

.accordion__image {
  order: 1;
  margin-left: auto;
  max-width: 67px;
}
@media (min-width: 1025px) {
  .accordion__image {
    width: 17%;
    max-width: 120px;
  }
}
@media (min-width: 1200px) {
  .accordion__image {
    max-width: 210px;
  }
}

.accordion__icon-opened {
  display: none;
}

.accordion[open] .accordion__icon-opened,
.accordion:first-child .accordion__icon-opened,
.accordion:nth-child(2) .accordion__icon-opened,
.accordion[open]:last-child .accordion__icon-closed,
.accordion[open]:first-child + .accordion .accordion__icon-closed {
  display: none;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__icon-opened,
  .accordion:first-child .accordion__icon-opened,
  .accordion:nth-child(2) .accordion__icon-opened,
  .accordion[open]:last-child .accordion__icon-closed,
  .accordion[open]:first-child + .accordion .accordion__icon-closed {
    display: inline;
  }
}

.accordion[open] .accordion__icon-opened,
.accordion:last-child .accordion__icon-opened {
  display: inline;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__icon-opened,
  .accordion:last-child .accordion__icon-opened {
    display: none;
  }
}

.accordion[open] .accordion__icon-closed,
.accordion:first-child .accordion__icon-closed,
.accordion:nth-child(2) .accordion__icon-closed,
.accordion[open]:last-child .accordion__icon-opened,
.accordion[open]:first-child + .accordion .accordion__icon-opened {
  display: inline;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__icon-closed,
  .accordion:first-child .accordion__icon-closed,
  .accordion:nth-child(2) .accordion__icon-closed,
  .accordion[open]:last-child .accordion__icon-opened,
  .accordion[open]:first-child + .accordion .accordion__icon-opened {
    display: none;
  }
}

.accordion[open] .accordion__icon-closed,
.accordion:last-child .accordion__icon-closed {
  display: none;
}
@media (min-width: 1025px) {
  .accordion[open] .accordion__icon-closed,
  .accordion:last-child .accordion__icon-closed {
    display: inline;
  }
}

.vertical-primary .accordion__header-vertical {
  position: relative;
  z-index: 2;
}

.vertical-primary .accordion__toggle {
  background-color: #a9e52f;
  width: 100%;
  height: 68px;
  padding: 18px 28px 18px 22px;
}

.vertical-primary .accordion__toggle[aria-expanded=true] {
  border-radius: 15px;
}

.vertical-primary .accordion__toggle-icon {
  width: 18px;
  height: 18px;
}

.vertical-primary .accordion__toggle-icon svg {
  width: inherit;
  height: inherit;
  color: #fff;
}

.vertical-primary .accordion__title {
  font-size: 24px;
}

.vertical-primary .accordion-vertical.is-open .accordion__content-vertical {
  padding: 44px 24px 32px 24px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 22px;
}

.vertical-primary .accordion-vertical.is-open .accordion__content-vertical p {
  display: block;
  margin-top: 0;
}

.vertical-primary .accordion-vertical.is-open .accordion__content-vertical div {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 13px;
}

.vertical-primary .accordion-vertical.is-open .accordion__content-vertical a {
  min-width: 104px;
}

.vertical-primary .accordion-vertical.is-open .accordion__content-vertical img {
  height: 65px;
}

@media (min-width: 1024px) {
  .vertical-primary .accordion-vertical.is-open .accordion__content-vertical img {
    height: 100px;
  }
}
.vertical-primary .accordion__content-vertical {
  opacity: 0;
  transform: translateY(-10px);
  margin-bottom: 35px;
}

.vertical-primary .accordion__content-vertical p,
.vertical-primary .accordion__content-vertical div {
  display: none;
}

.vertical-primary.accordion-list__item:nth-of-type(3) .accordion__content-vertical img {
  height: 40px;
}

.article {
  font-size: 16px;
}
.article p {
  font-size: inherit;
}
@media (min-width: 1200px) {
  .article {
    font-size: 20px;
  }
}
.article ul {
  list-style-position: outside;
}
.article li {
  margin-bottom: 0;
}

article p {
  margin-bottom: 0;
  margin-top: 34px;
  line-height: 1.7;
  font-size: 16px;
}
@media (min-width: 1200px) {
  article p {
    font-size: 20px;
  }
}

article p:first-child {
  margin-top: 0;
}

article span {
  font-size: 16px;
  line-height: 1.7;
  display: inline-block;
}
@media (min-width: 1200px) {
  article span {
    font-size: 20px;
  }
}

article ul {
  list-style-type: disc;
  padding-left: 16px;
}

article li {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.7;
}
article li span {
  font-weight: 700;
}
@media (min-width: 1200px) {
  article li {
    font-size: 20px;
  }
}

article h3 {
  margin-top: 0;
}

article ol {
  list-style-type: decimal;
  font-weight: 700;
}

article ol,
article ul {
  padding-left: 30px;
}

article ol b {
  font-weight: 700;
}

article ol p {
  font-weight: 400;
  margin-top: 0;
}

article ol li {
  margin-top: 34px;
}

.article .article-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article .article-links a {
  display: flex;
  align-items: center;
  flex-direction: row;
  text-decoration: none;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  color: #2d2d2d;
}
.article .article-links a:last-child {
  color: #004953;
  font-weight: 700;
  text-decoration: underline;
}

.button,
a.button {
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 40px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: auto;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  text-align: center;
  background-color: #a9e52f;
  color: #004953;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .button,
  a.button {
    border-radius: 15px;
    font-size: 20px;
    padding: 14px 38px;
  }
}
.button:focus, .button:hover, .button:active,
a.button:focus,
a.button:hover,
a.button:active {
  background-color: #ff9841;
  border-color: #000;
  color: #fff;
}
.button:focus .button__icon, .button:hover .button__icon, .button:active .button__icon,
a.button:focus .button__icon,
a.button:hover .button__icon,
a.button:active .button__icon {
  fill: currentColor;
}
.button[disabled],
a.button[disabled] {
  opacity: 0.3;
  pointer-events: none;
}
.button--secondary,
a.button--secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(42, 44, 81, 0.35);
  background: rgb(24, 9, 1);
  color: white;
}
.button--secondary:focus, .button--secondary:hover, .button--secondary:active,
a.button--secondary:focus,
a.button--secondary:hover,
a.button--secondary:active {
  background-color: #a9e52f;
  border-color: #a9e52f;
  color: #000;
}
.button__icon,
a.button__icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.card {
  max-width: 405px;
  padding: 25px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.0784313725);
  background-color: #fff;
}
@media (min-width: 1200px) {
  .card {
    padding: 50px;
  }
}
.card h3 {
  font-weight: 500;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 40px;
}
.card p {
  font-size: 15px;
}
@media (min-width: 1025px) {
  .card p {
    font-size: 20px;
  }
}

.card--contact {
  background-color: #a9e52f;
  color: #fff;
}
@media (min-width: 1200px) {
  .card--contact {
    margin-right: 0 !important;
  }
}

.card--contact h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .card--contact h3 {
    font-size: 30px;
  }
}

.card--contact p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 300;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
}
@media (min-width: 1200px) {
  .card--contact p {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .card--contact p {
    font-size: 20px;
  }
}

.card--contact b {
  font-weight: 300;
  font-size: 18px;
}
@media (min-width: 1200px) {
  .card--contact b {
    font-size: 24px;
  }
}

.card--contact__section {
  margin-top: 50px;
}

.card--contact__section a {
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.card--contact__section a:focus, .card--contact__section a:hover {
  border-bottom: 1px solid transparent;
}

.card__body {
  padding: 24px 40px;
}

.card__footer {
  padding-top: 42px;
}
@media (min-width: 768px) {
  .card__footer {
    padding: 34px 0;
  }
}

.card-aside {
  max-width: 480px;
  padding: 52px;
}
@media (min-width: 768px) {
  .card-aside {
    padding: 25px;
  }
}
@media (min-width: 1025px) {
  .card-aside {
    padding: 52px;
  }
}

.card-contact {
  z-index: 4;
  width: 334px;
  padding: 35px;
  box-shadow: 0px 4px 46.7px 0px rgba(214, 32, 40, 0.3019607843);
}
@media (min-width: 768px) {
  .card-contact {
    padding: 35px;
  }
}
@media (min-width: 1025px) {
  .card-contact {
    width: auto;
  }
}
@media (min-width: 1800px) {
  .card-contact {
    padding: 70px 70px 40px;
  }
}
.card-contact h3 {
  font-weight: 500;
}
.card-contact .card__footer {
  padding-right: 0;
  padding-left: 0;
}

.card.card--service {
  display: block;
  background-color: #fff;
  padding: 0;
  text-decoration: none;
  box-shadow: 0px 4px 46.7px 10px rgba(0, 0, 0, 0.1);
}
.card.card--service:focus .card__body, .card.card--service:hover .card__body {
  background-color: #a9e52f;
  color: #fff;
}
.card.card--service:focus h3, .card.card--service:hover h3 {
  color: #fff;
}
.card.card--service h3 {
  font-size: 20px;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  margin-bottom: 0;
  color: #a9e52f;
  transition: color 0.2s;
}
@media (min-width: 1200px) {
  .card.card--service h3 {
    font-size: 28px;
  }
}
.card.card--service p {
  font-weight: 300;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  transition: color 0.2s;
}

.card.card--service .card__body {
  background-color: #fff;
  transition: background-color 0.2s;
}

.checkbox {
  display: flex;
}

.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.checkbox-input:focus ~ .checkbox-box:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.checkbox-input ~ .checkbox-box {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.checkbox-input ~ .checkbox-box:before {
  content: "";
  position: relative;
  top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #000;
}

.checkbox-input:checked ~ .checkbox-box:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #000;
}

.container {
  width: 100%;
  margin-inline: auto;
  max-width: 1920px;
  padding-inline: 40px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 80px;
  }
}
@media (min-width: 1600px) {
  .container {
    padding-inline: 120px;
  }
}

@media (min-width: 1600px) {
  .container-md {
    padding-inline: 240px;
  }
}

.container-sm {
  max-width: 1680px;
}
@media (min-width: 1600px) {
  .container-sm {
    padding-inline: 240px;
  }
}

.container--fluid {
  max-width: 100%;
}

.footer {
  flex-shrink: 0;
}

.footer .container {
  position: relative;
}
@media (min-width: 1200px) {
  .footer .container {
    padding-left: 80px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1480px) {
  .footer__inner {
    flex-direction: row;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #a9e52f;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 1025px) {
  .footer__info {
    justify-content: flex-start;
    flex-direction: row;
    padding-top: 70px;
    padding-bottom: 70px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: 0;
    width: calc(100% - 260px);
  }
}
@media (min-width: 1200px) {
  .footer__info {
    width: calc(100% - 300px);
    max-width: 1120px;
    margin-right: 0;
    padding-top: 80px;
  }
}
@media (min-width: 1600px) {
  .footer__info {
    width: calc(100% - 350px);
  }
}
@media (min-width: 1920px) {
  .footer__info {
    width: calc(100% - 390px);
  }
}

.footer__info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1025px) {
  .footer__info-item {
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 20px;
  }
}
.footer__info-item a {
  text-decoration: none;
}

@media (min-width: 1025px) {
  .footer__info-item:nth-child(1) {
    width: 30%;
  }
}
@media (min-width: 1600px) {
  .footer__info-item:nth-child(1) {
    width: 28%;
  }
}
@media (min-width: 1920px) {
  .footer__info-item:nth-child(1) {
    width: 21%;
  }
}

@media (min-width: 1025px) {
  .footer__info-item:nth-child(2) {
    width: 40%;
  }
}
@media (min-width: 1600px) {
  .footer__info-item:nth-child(2) {
    width: 37%;
  }
}
@media (min-width: 1920px) {
  .footer__info-item:nth-child(2) {
    width: 31%;
  }
}

.footer__info-item:nth-child(2) .footer__logo {
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 1025px) {
  .footer__info-item:nth-child(2) .footer__logo {
    margin: 0;
    margin-bottom: 16px;
    min-height: 46px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .footer__info-item:nth-child(2) .footer__logo {
    min-height: 57px;
    margin-bottom: 66px;
  }
}

@media (min-width: 1025px) {
  .footer__info-item:nth-child(3) {
    width: 30%;
  }
}
@media (min-width: 1600px) {
  .footer__info-item:nth-child(3) {
    width: 35%;
  }
}

.footer__info-item:nth-child(4) {
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
}
.footer__info-item:nth-child(4) img {
  width: 80px;
  height: 22px;
}
.footer__info-item:nth-child(4) a.footer__logo {
  margin-bottom: 22px;
}
.footer__info-item:nth-child(4) .footer_text {
  font-size: 14px;
  margin-bottom: 16px;
}
.footer__info-item:nth-child(4) svg {
  width: 34px;
  height: 34px;
}

a.footer__logo {
  position: relative;
  transition: none;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  width: 80px;
}
a.footer__logo:after {
  display: none !important;
}
@media (min-width: 1025px) {
  a.footer__logo {
    width: 160px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1600px) {
  a.footer__logo {
    width: 200px;
    margin-bottom: 50px !important;
  }
}

.footer__info-item a,
.footer__info-item p {
  font-size: 14px;
  color: #b1b1b1;
  margin: 4px 0;
  line-height: 1.7;
}
@media (min-width: 1025px) {
  .footer__info-item a,
  .footer__info-item p {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .footer__info-item a,
  .footer__info-item p {
    margin: 9px 0;
  }
}

.footer__info-item a {
  position: relative;
}
.footer__info-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #a9e52f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.footer__info-item a:hover::after, .footer__info-item a:focus::after, .footer__info-item a.active::after {
  transform: scaleX(1);
}

.footer__info-item div:last-child {
  margin-bottom: 0;
}

.footer__social {
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .footer__social {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1600px) {
  .footer__social {
    margin-bottom: 50px;
  }
}

.footer__social-list {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 15px;
}
@media (min-width: 1600px) {
  .footer__social-list {
    gap: 20px;
    margin: 6px 0;
  }
}

.footer__social-item {
  margin-top: 0;
}
.footer__social-item a {
  display: inline-block;
  margin: 0;
  transition: color 0.2s;
  color: #ff9841;
}
.footer__social-item a:after {
  display: none;
}
.footer__social-item a:focus, .footer__social-item a:hover, .footer__social-item a:active {
  color: #a9e52f;
}
.footer__social-item svg {
  width: 34px;
  height: 34px;
}
@media (min-width: 1025px) {
  .footer__social-item svg {
    width: 47px;
    height: 47px;
  }
}

@media (min-width: 1025px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
  }
}

.footer__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1025px) {
  .footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
  }
}
@media (min-width: 1600px) {
  .footer__nav-list {
    flex-direction: column;
  }
}

.footer__nav-item {
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .footer__nav-item {
    margin-bottom: 0;
  }
}
.footer__nav-item a {
  text-decoration: none;
  color: #004953;
  font-size: 20px;
  display: inline-block;
}
@media (min-width: 1025px) {
  .footer__nav-item a {
    margin: 0;
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .footer__nav-item a {
    font-size: 20px;
  }
}

.footer__nav-item:last-child {
  margin-bottom: 0;
}

.footer__contact {
  padding: 50px 60px;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  width: calc(100% + 80px);
  margin-left: -40px;
  display: flex;
  flex-direction: column;
  background-color: #f0faf0;
  border-radius: 30px 30px 0 0;
  position: relative;
  color: #2d2d2d;
}
@media (min-width: 1025px) {
  .footer__contact {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    margin-left: 0;
    border-top-right-radius: 0;
  }
}
@media (min-width: 1600px) {
  .footer__contact {
    width: 560px;
    padding: 120px;
  }
}
@media (min-width: 1920px) {
  .footer__contact {
    width: 610px;
  }
}

.footer__contact h3 {
  font-size: 30px;
  font-weight: 400;
  color: #2d2d2d;
  line-height: 1.3;
  margin-bottom: 24px;
}
.footer__contact h3 span {
  color: #a9e52f;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .footer__contact h3 {
    font-size: 32px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: -0.65px;
    line-height: 1.3;
  }
}
@media (min-width: 1600px) {
  .footer__contact h3 {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 50px;
  }
}

.footer__contact-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 130px;
}
@media (min-width: 1600px) {
  .footer__contact-logo {
    width: 200px;
    height: 200px;
  }
}

.form-control {
  display: inline-block;
  position: relative;
  width: 100%;
}
.form-control input,
.form-control textarea {
  width: 100%;
}
.form-control.icon-left .form-icon {
  left: 0;
}
.form-control.icon-left .input {
  padding-left: 62px;
}
.form-control.icon-right .form-icon {
  right: 0;
}
.form-control.icon-right .input {
  padding-right: 62px;
}

.form-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.form-group .label {
  display: block;
  width: 100%;
}

.form-icon {
  position: absolute;
  top: 0;
  width: 32px;
  height: 100%;
  background: none;
  border: 0;
}

.form--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  .form--contact {
    row-gap: 36px;
  }
}
@media (min-width: 1600px) {
  .form--contact {
    row-gap: 10px;
  }
}
.form--contact .button {
  padding-right: 62px;
  padding-left: 62px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1025px) {
  .form--contact .button {
    margin-left: 0;
  }
}
.form--contact .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .form--contact .form-group {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1025px) {
  .form--contact .form-group {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .form--contact .form-group {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media (min-width: 768px) {
  .form--contact .form-group .form-control {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .form--contact .form-group .form-control {
    width: calc(50% - 40px);
  }
}
.form--contact + .card--contact {
  margin: 80px auto 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

@media (min-width: 0) {
  .col {
    flex: 1 0 0%;
  }
  .col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-1 {
    margin-left: 8.3333333333%;
  }
  .offset-2 {
    margin-left: 16.6666666667%;
  }
  .offset-3 {
    margin-left: 25%;
  }
  .offset-4 {
    margin-left: 33.3333333333%;
  }
  .offset-5 {
    margin-left: 41.6666666667%;
  }
  .offset-6 {
    margin-left: 50%;
  }
  .offset-7 {
    margin-left: 58.3333333333%;
  }
  .offset-8 {
    margin-left: 66.6666666667%;
  }
  .offset-9 {
    margin-left: 75%;
  }
  .offset-10 {
    margin-left: 83.3333333333%;
  }
  .offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: transparent;
  z-index: 100;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 41px;
  padding-bottom: 22px;
}
@media (min-width: 1200px) {
  .header__inner {
    padding-top: 59px;
    padding-bottom: 22px;
  }
}

.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  transition: none;
  width: 160px;
  height: auto;
  gap: 15px;
  flex-direction: column;
  align-items: flex-start;
}
.header__logo > img:first-child {
  width: 116px;
}
@media (min-width: 768px) {
  .header__logo > img:first-child {
    width: 135px;
  }
}
.header__logo > img:last-child {
  margin-top: 0;
  margin-left: 0;
}
@media (min-width: 1400px) {
  .header__logo {
    flex-direction: row;
    align-items: center;
    width: 354px;
  }
  .header__logo > img:last-child {
    margin-top: 6px;
    margin-left: 16px;
  }
}

.header__menu-toggle {
  z-index: 10;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1025px) {
  .header__menu-toggle {
    display: none;
  }
}

@media (min-width: 1025px) {
  .header__menu {
    min-width: 64%;
    height: 80px;
  }
}

.input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px 19px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  border-radius: 10px;
  background-color: #F0FAF0;
  color: #000;
  transition-property: border-color;
  transition-duration: 0.2s;
  width: 100%;
}
@media (min-width: 1200px) {
  .input {
    padding: 14px 30px;
  }
}
.input:focus, .input:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}
.input:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.input:active {
  border-color: rgba(255, 255, 255, 0.5);
}
.input[disabled] {
  opacity: 0.3;
  pointer-events: none;
}
.input::-moz-placeholder {
  font-weight: 300;
  -moz-transition: 0.2s;
  transition: 0.2s;
  color: #000;
}
.input::placeholder {
  font-weight: 300;
  transition: 0.2s;
  color: #000;
}

.input--default {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.input--default:focus, .input--default:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}
.input--default::-moz-placeholder {
  color: #fff;
}
.input--default::placeholder {
  color: #fff;
}

.label {
  display: block;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 17px;
}
@media (min-width: 1200px) {
  .label {
    font-size: 20px;
  }
}

.link {
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 20px;
       column-gap: 20px;
  color: currentColor;
}
.link span {
  text-decoration: underline;
  text-underline-position: under;
}
.link__icon-right {
  width: 12px;
  height: 12px;
}
.link--small {
  font-size: 14px;
  line-height: 16px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (min-width: 1200px) {
  .link--small {
    font-size: 18px;
    line-height: 18px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.link--small:focus svg, .link--small:hover svg {
  transform: translate(6px);
}
.link--small svg {
  transition: all 0.25s ease-in-out;
}
.link--secondary {
  color: #004953;
}
.link--primary {
  color: #a9e52f;
}
.link--all-news {
  margin-top: 8px;
  margin-left: auto;
  order: -1;
}

.link__more {
  color: #004953;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.link__more svg {
  margin-left: 8px;
  color: #ff9841;
  width: 13px;
  height: 13px;
}
@media (min-width: 1200px) {
  .link__more svg {
    width: 16px;
    height: 16px;
  }
}

.link__more-title {
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.15em;
  transition: text-decoration-color 0.3s ease;
  font-size: 16px;
  letter-spacing: 0;
}
@media (min-width: 1025px) {
  .link__more-title {
    font-size: 20px;
  }
}
.link__more-title:focus, .link__more-title:hover, .link__more-title:active {
  text-decoration: underline;
  text-decoration-color: #ff9841;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.15em;
}

.list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  font-size: 20px;
}

.list.list--services {
  gap: 30px;
  line-height: 1;
  font-size: 15px;
}
@media (min-width: 1025px) {
  .list.list--services {
    font-size: 20px;
    line-height: normal;
    gap: 66px;
  }
}

.list.list--services li {
  font-weight: 400;
}
@media (min-width: 1025px) {
  .list.list--services li {
    font-weight: 600;
  }
}

.list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 200;
}
.list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8.5px 14px;
  border-color: transparent transparent #a9e52f;
  transform: rotate(90deg);
}
.background-primary .list li::before {
  border-color: transparent transparent #fff;
}

.menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  width: inherit;
  height: inherit;
  padding: 0;
  background: none;
  border: 0;
  width: 40px;
}
.menu-toggle:focus, .menu-toggle:focus-visible {
  outline: none;
}
.menu-active .menu-toggle {
  z-index: 10;
  position: relative;
  display: flex;
}

.menu-icon {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.menu-icon:focus .menu-icon__line:nth-child(3), .menu-icon:active .menu-icon__line:nth-child(3) {
  width: 21px;
}

.menu-toggle:not(.active) .menu-icon {
  height: 40px;
}

.menu-icon .menu-icon__line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #a9e52f;
  border-radius: 50px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}

.menu-icon .menu-icon__line:nth-child(1) {
  top: 0;
  width: 31px;
  right: 0;
  left: 0;
  margin-inline: auto;
}

.menu-icon .menu-icon__line:nth-child(2) {
  top: 13px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 26px;
}

.menu-icon .menu-icon__line:nth-child(3) {
  top: 26px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 40px;
}

.menu-toggle.active {
  top: 28px;
  right: 40px;
}
@media (min-width: 768px) {
  .menu-toggle.active {
    right: 0;
  }
}

.menu-toggle.active .menu-icon__line:nth-child(1) {
  top: 20px;
  transform: rotate(135deg);
}

.menu-toggle.active .menu-icon__line:nth-child(2) {
  display: none;
  opacity: 0;
}

.menu-toggle.active .menu-icon__line:nth-child(3) {
  top: 20px;
  left: 0;
  right: 0;
  margin-inline: auto;
  transform: rotate(-135deg);
  width: 31px;
}

.menu-toggle > .menu-toggle__text {
  display: block;
}

.menu-toggle > .menu-toggle__text + .menu-toggle__text {
  display: none;
}

.menu-toggle.active > .menu-toggle__text {
  display: none;
}

.menu-toggle.active > .menu-toggle__text + .menu-toggle__text {
  display: block;
}

.menu-toggle__text {
  color: #000;
  display: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
}

.menu-toggle__text-active {
  display: block;
}

.menu {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  height: 100%;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding: 40px;
  background: #fff;
}
.menu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 17.23deg at 20.92% 50.81%, rgba(255, 255, 255, 0) 0deg, rgba(169, 229, 47, 0.2) 80.68deg, rgba(203, 239, 130, 0.12053) 178.63deg, rgba(212, 242, 150, 0.100991) 206.7deg, rgba(255, 255, 255, 0) 360deg);
}
@media (min-width: 1025px) {
  .menu:before {
    display: none;
  }
}
@media (min-width: 1025px) {
  .menu {
    padding: 0;
    top: 145px;
    max-height: calc(100% - 145px);
    background: none;
    position: static;
    padding: 0;
    transform: translateX(0);
    max-height: 100%;
  }
}
@media (min-width: 1200px) {
  .menu {
    flex-direction: row;
    align-items: center;
    position: static;
    transform: translateX(0);
    transition: none;
    justify-content: center;
    overflow: visible;
    background: none;
  }
}

.menu__nav {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #f0faf0;
}
@media (min-width: 1025px) {
  .menu__nav {
    padding: 0;
    background-color: transparent;
  }
}

.menu--closed {
  position: fixed;
  transform: translateX(-100%);
  height: 100%;
  width: 100%;
  color: #000;
}

.menu__logo {
  display: none;
  position: absolute;
  top: 40px;
  left: 40px;
}
.menu--open .menu__logo {
  display: block;
}

.menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 30px;
  text-align: center;
  width: 100%;
  margin: auto;
  overflow-y: auto;
  height: -moz-fit-content;
  height: fit-content;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .menu__list {
    gap: 20px;
    margin: 0;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .menu__list {
    gap: 30px;
  }
}
.menu-active .menu__list {
  display: flex;
  width: 100%;
}
@media (min-width: 1025px) {
  .menu-active .menu__list {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 200px;
         column-gap: 200px;
    padding: 0 208px;
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .menu-active .menu__list {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.menu__link {
  z-index: 1;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  background: none;
  border: 0;
  padding: 0;
  transition: color 0.3s ease;
  color: #004953;
}
@media (min-width: 1025px) {
  .menu__link {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .menu__link {
    font-size: 20px;
  }
}
.menu__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #a9e52f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.menu__link:hover::after, .menu__link:focus::after, .menu__link.active::after {
  transform: scaleX(1);
}
.menu__link:hover, .menu__link:focus, .menu__link:active, .menu__link.active {
  color: #004953;
}
.menu__link.active {
  font-variation-settings: "wght" 700;
}
.menu__link.no-underline::after {
  display: none !important;
}

.menu__item--submenu > a.menu__link {
  display: none;
}
@media (min-width: 1025px) {
  .menu__item--submenu > a.menu__link {
    display: block;
  }
}

@media (min-width: 1025px) {
  .menu__item--submenu button.menu__link {
    display: none;
  }
}

.menu.menu--open {
  position: fixed;
  transform: translateX(0);
  transition-property: all;
  transition-duration: 0.4s;
}
@media (min-width: 1025px) {
  .menu.menu--open {
    transition: none;
  }
}

.menu__item {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1025px) {
  .menu__item {
    display: flex;
    align-items: center;
  }
}

.menu__item--contact {
  background: transparent;
  padding: 0;
  border-radius: 15px;
  color: #2d2d2d;
  text-decoration: none;
  transition: all 0.2s;
}
.menu__item--contact .menu__link {
  color: #2d2d2d;
}
.menu__item--contact:hover {
  color: #fff;
  background: #ff9841;
  cursor: pointer;
}
.menu__item--contact:hover .menu__link {
  color: #fff;
}
.menu__item--contact:hover svg {
  opacity: 1;
  fill: currentColor;
}
.menu__item--contact svg {
  opacity: 0;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  transition-property: opacity;
  transition-duration: 0.2s;
}
@media (min-width: 1025px) {
  .menu__item--contact {
    border-radius: 15px;
    padding: 19px 32px;
    background: #a9e52f;
    color: #004953;
  }
  .menu__item--contact .menu__link {
    color: #004953;
  }
}
.menu__item--contact .menu__link {
  line-height: 18px;
  border-bottom: none;
}

.menu__logo-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 109px;
}
@media (min-width: 1025px) {
  .menu__logo-bottom {
    display: none;
  }
}

.navbar__link {
  font-weight: 600;
  text-decoration: none;
}
.navbar__link:focus, .navbar__link:hover, .navbar__link:active {
  color: #a9e52f;
}
.navbar__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  gap: 32px;
}
@media (min-width: 1025px) {
  .navbar__list {
    flex-direction: row;
  }
}

.page-header {
  padding-inline: 80px;
}
.page-header h1 {
  font-variation-settings: "wght" 400;
  color: #2d2d2d;
}
.page-header h1 span {
  font-variation-settings: "wght" 700;
  color: #a9e52f;
}

.page-header__inner {
  display: flex;
}

.page-header__text {
  max-width: 560px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
@media (min-width: 1200px) {
  .pagination {
    padding: 82px 0;
  }
}

.pagination--current {
  color: #000;
}

.pagination__link {
  display: block;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}
.pagination__link:focus, .pagination__link:hover, .pagination__link:active {
  color: #a9e52f;
}

.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style-type: none;
}
.pagination__list a {
  text-decoration: none;
}

.pagination__next:focus, .pagination__next:hover, .pagination__next:active,
.pagination__prev:focus,
.pagination__prev:hover,
.pagination__prev:active {
  color: #a9e52f;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 18px;
       column-gap: 18px;
  margin-bottom: 28px;
}
@media (min-width: 1025px) {
  .section-title {
    margin-bottom: 18px;
  }
}
.section-title h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media (min-width: 1025px) {
  .section-title h2 {
    font-size: 14px;
    letter-spacing: 7px;
  }
}
.section-title:before {
  content: "";
  width: 20px;
  height: 2px;
  margin-top: -3px;
  background-color: rgb(231, 42, 51);
}
@media (min-width: 1025px) {
  .section-title:before {
    width: 40px;
  }
}

.section-info-block {
  padding-block: 44px 56px;
}
@media (min-width: 1025px) {
  .section-info-block {
    padding-block: 88px;
  }
}
@media (min-width: 1200px) {
  .section-info-block {
    padding-block: 100px 55px;
  }
}

.section-offer-block {
  padding: 0 0 62px;
}
@media (min-width: 1025px) {
  .section-offer-block {
    padding-block: 88px;
  }
}
@media (min-width: 1200px) {
  .section-offer-block {
    padding-block: 55px 114px;
  }
}

.textarea {
  font-size: 16px;
  font-weight: 300;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: #F0FAF0;
  color: #000;
  transition-property: border-color;
  transition-duration: 0.2s;
  resize: none;
  width: 100%;
  height: 125px;
}
@media (min-width: 1200px) {
  .textarea {
    padding: 17px 30px;
    height: 110px;
  }
}
.textarea:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.textarea:focus, .textarea:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}
.textarea[disabled] {
  opacity: 0.3;
  pointer-events: none;
}
.textarea::-moz-placeholder {
  font-weight: 300;
  -moz-transition: 0.2s;
  transition: 0.2s;
  color: #000;
}
.textarea::placeholder {
  font-weight: 300;
  transition: 0.2s;
  color: #000;
}

.textarea--default {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.textarea--default:focus, .textarea--default:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}
.textarea--default::-moz-placeholder {
  color: #fff;
}
.textarea--default::placeholder {
  color: #fff;
}

.tabs-main {
  margin-top: 28px;
}
@media (min-width: 1200px) {
  .tabs-main {
    margin-top: 73px;
  }
}
.tabs-main svg {
  top: 17px;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #ff9841;
}
@media (min-width: 1200px) {
  .tabs-main svg {
    top: 26.5px;
    width: 53px;
    height: 53px;
  }
}
.tabs-main h2 {
  text-align: center;
  color: #004953;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
}
@media (min-width: 1200px) {
  .tabs-main h2 {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: -10px;
  }
}
@media (min-width: 1200px) {
  .tabs-main h3 {
    font-size: 40px;
    color: #004953;
    font-weight: 700;
    margin-top: 0;
    letter-spacing: -1px;
    margin-bottom: 32px;
  }
}
.tabs-main img.hidden-desktop {
  height: 106px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 27px;
}

.tabs-container {
  width: 100%;
  border-radius: 30px;
  background-color: #F0FAF0;
  padding: 0;
}

.tab-content__centered {
  display: none;
}
@media (min-width: 1200px) {
  .tab-content__centered {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 20%;
    margin: 0 auto;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .tab-content__centered::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: calc(100% - 130px);
    width: 1px;
    bottom: 60px;
    margin: auto;
    background-color: #a9e52f;
  }
}
@media (min-width: 1200px) {
  .tab-content__centered img {
    position: absolute;
    top: 135px;
    padding-bottom: 20px;
    background-color: #F0FAF0;
  }
}

.tabs {
  width: 100%;
  gap: 0;
}

.tab-button {
  width: 50%;
  background-color: #f2f2f2;
  padding: 20px 20px;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #b1b1b1;
}
.tab-button[aria-expanded=true] {
  background-color: #a9e52f;
  color: #004953;
}
@media (max-width: 470px) {
  .tab-button {
    font-size: 19px;
  }
}

.tab-button:first-child {
  border-radius: 30px 0px 0px 0px;
}

.tab-button:last-child {
  border-radius: 0px 30px 0px 0px;
}

.tab-content-laptop {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 32px 40px;
}
@media (min-width: 1200px) {
  .tab-content-laptop {
    display: flex;
    justify-content: space-between;
    padding: 40px 80px;
  }
}
@media (min-width: 1600px) {
  .tab-content-laptop {
    padding: 85px 140px;
  }
}

.tab-content-laptop .tab-content__item {
  max-width: 100%;
  display: none;
}
@media (min-width: 1200px) {
  .tab-content-laptop .tab-content__item {
    display: block;
  }
}
.tab-content-laptop .tab-content__item[aria-expanded=true] {
  display: block;
}
.tab-content-laptop .tab-content__item h3 {
  font-size: 28px;
  margin-top: 8px;
  margin-bottom: 30px;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .tab-content-laptop .tab-content__item h3 {
    font-size: 40px;
  }
}

.section-tabs-team {
  padding-top: 54px;
  padding-bottom: 34px;
}
@media (min-width: 1200px) {
  .section-tabs-team {
    padding-top: 54px;
    padding-bottom: 203px;
  }
}

.tabs-team {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  justify-content: space-between;
}

.tabs__team-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.tabs__team-title h2 {
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.tabs__team-title svg {
  width: 34px;
  height: 34px;
  color: #ff9841;
  top: 0;
}
@media (min-width: 1200px) {
  .tabs__team-title {
    position: absolute;
    top: 10px;
    left: calc(50% - 75px);
    z-index: 5;
  }
  .tabs__team-title svg {
    width: 53px;
    height: 53px;
    position: absolute;
    top: 36px;
    left: calc(50% - 26.5px);
  }
  .tabs__team-title h2 {
    text-align: center;
    color: #004953;
    margin-bottom: 40px;
    font-weight: 700;
  }
}

.tabs__team-toggle {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  z-index: 3;
}
@media (min-width: 1200px) {
  .tabs__team-toggle:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 409px;
    background-color: #F0FAF0;
    border-radius: 30px;
    z-index: -11;
    top: 70px;
  }
}

.tabs__toggle-img {
  position: relative;
  width: 122px;
  height: 122px;
}
.tabs__toggle-img img {
  width: 122px;
  height: 122px;
  border: 5px solid transparent;
  border-radius: 50%;
  transition: border 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1025px) {
  .tabs__toggle-img {
    width: 240px;
    height: 240px;
  }
  .tabs__toggle-img img {
    width: 240px;
    height: 240px;
  }
}
@media (min-width: 1200px) {
  .tabs__toggle-img {
    width: 360px;
    height: 550px;
  }
  .tabs__toggle-img img {
    width: 360px;
    height: 550px;
    border-radius: 0;
  }
}

.tabs__toggle-img {
  background-color: transparent;
}

@media (min-width: 1200px) {
  .tabs__toggle-img--left {
    margin-left: -60px;
  }
}

@media (min-width: 1200px) {
  .tabs__toggle-img--right {
    margin-right: -60px;
  }
}

.tab-content__text {
  display: none;
  margin-top: -60px;
}
.tab-content__text[aria-expanded=true] {
  display: block;
}
@media (min-width: 1025px) {
  .tab-content__text {
    margin-top: -120px;
  }
}
@media (min-width: 1200px) {
  .tab-content__text {
    display: block;
    width: 46%;
    margin-top: 70px;
  }
  .tab-content__text h3 {
    letter-spacing: -0.8px;
  }
}
.tab-content__text h3 {
  font-size: 30px;
  margin-bottom: 22px;
}
@media (min-width: 1025px) {
  .tab-content__text h3 {
    margin-bottom: 55px;
  }
}
.tab-content__text div {
  margin-top: 45px;
}
.tab-content__text img {
  display: none;
  width: 32px;
  margin: 0px 10px 0px 0px;
}
@media (min-width: 768px) {
  .tab-content__text img {
    display: block;
  }
}

.tab-content__item {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .tab-content__item {
    width: 32.5%;
  }
}
@media (min-width: 1600px) {
  .tab-content__item {
    width: 34%;
  }
}

.tabs__team-name {
  position: absolute;
  display: flex;
  flex-direction: row;
  z-index: 4;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.tabs__team-name .svg-wrapper {
  width: 57px;
  height: 50px;
  background-color: transparent;
}
@media (min-width: 1025px) {
  .tabs__team-name .svg-wrapper {
    width: 105px;
    height: 110px;
  }
}
@media (min-width: 1200px) {
  .tabs__team-name .svg-wrapper {
    width: 165px;
    height: 150px;
  }
}
.tabs__team-name svg {
  height: 47px;
  transition: color 0.3s ease;
  color: #b1b1b1;
}
@media (min-width: 1025px) {
  .tabs__team-name svg {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .tabs__team-name svg {
    width: 150px;
    height: 132px;
    color: #a9e52f;
  }
}
.tabs__team-name span {
  position: absolute;
  color: #b1b1b1;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media (min-width: 1025px) {
  .tabs__team-name span {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .tabs__team-name span {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #a9e52f;
  }
}
@media (min-width: 1200px) {
  .tabs__team-name {
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
  }
}

.tabs__team-name--left {
  top: 185px;
  left: clamp(80px, 27%, 390px);
}
.tabs__team-name--left span {
  top: 37px;
  left: -70px;
}
.tabs__team-name--left svg {
  transform: scaleY(-1) rotate(-138deg);
  transform-origin: center center;
}
@media (min-width: 1025px) {
  .tabs__team-name--left {
    top: 260px;
    left: clamp(200px, 34%, 390px);
  }
  .tabs__team-name--left svg {
    transform: scaleY(-1) rotate(-90deg);
    transform-origin: center center;
  }
  .tabs__team-name--left span {
    top: 83px;
    left: -55px;
  }
}
@media (min-width: 1200px) {
  .tabs__team-name--left {
    top: 110px;
    left: clamp(320px, 33%, 490px);
  }
  .tabs__team-name--left svg {
    transform: scaleY(1) rotate(0deg);
  }
  .tabs__team-name--left span {
    top: 0;
    left: 0;
    margin-bottom: 20px;
  }
}

.tabs__team-name--right {
  top: 190px;
  right: clamp(70px, 25%, 390px);
}
.tabs__team-name--right svg {
  transform: scaleY(-1) rotate(130deg);
  transform-origin: center center;
}
.tabs__team-name--right span {
  top: 65px;
  right: -15px;
}
@media (min-width: 1025px) {
  .tabs__team-name--right {
    top: 288px;
    right: clamp(200px, 28%, 390px);
  }
  .tabs__team-name--right svg {
    transform: scaleY(-1) rotate(130deg);
    transform-origin: center center;
  }
  .tabs__team-name--right span {
    top: 105px;
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .tabs__team-name--right {
    top: 320px;
    right: clamp(350px, 33%, 520px);
  }
  .tabs__team-name--right span {
    margin-top: -29px;
    margin-right: -28px;
    top: 0;
    left: 0;
  }
  .tabs__team-name--right svg {
    transform: scaleY(1) rotate(0deg);
  }
}

.tab-img,
.tab-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
}

.tab-img-hover {
  opacity: 0;
}

@media (min-width: 1200px) {
  .tabs__toggle-img:hover .tab-img-hover {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .tabs__toggle-img:hover .tab-img {
    opacity: 0;
  }
}

.tabs__team-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .tabs__team-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.tab-content__text[aria-expanded=true] {
  background-color: #F0FAF0;
  border-radius: 30px;
  padding: 170px 40px 40px 40px;
}
@media (min-width: 1025px) {
  .tab-content__text[aria-expanded=true] {
    padding: 260px 40px 40px 40px;
  }
}
@media (min-width: 1200px) {
  .tab-content__text[aria-expanded=true] {
    padding: 0px;
    background-color: transparent;
  }
}

.tabs__toggle-img[aria-expanded=true] img {
  border: 5px solid #a9e52f;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .tabs__toggle-img[aria-expanded=true] img {
    border: none;
    border-radius: 0;
  }
}

.tabs__team-name.active svg {
  fill: #a9e52f;
}
.tabs__team-name.active span {
  color: #a9e52f;
}

.info-block {
  display: flex;
  flex-direction: column-reverse;
  gap: 44px;
}
@media (min-width: 1200px) {
  .info-block {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 80px;
  }
}
.info-block h2 {
  margin-top: 0;
  letter-spacing: -0.8px;
}
@media (min-width: 1200px) {
  .info-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    letter-spacing: -1.3px;
  }
}
.info-block img {
  width: 100%;
}
@media (min-width: 1200px) {
  .info-block img {
    width: 50%;
  }
}

.info-block__text {
  width: 100%;
}
@media (min-width: 1200px) {
  .info-block__text {
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  .info-block__text h2 {
    margin-bottom: 24px;
  }
}
.info-block__text p {
  margin-block: 21px 28px;
}
@media (min-width: 1200px) {
  .info-block__text p {
    font-size: 18px;
    margin-block: 20px;
  }
}
@media (min-width: 1200px) {
  .info-block__text .button {
    font-size: 18px;
  }
}

.offer-block > p {
  margin-bottom: 40px;
  max-width: 910px;
}
@media (min-width: 1200px) {
  .offer-block > p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.offer-block h2 {
  letter-spacing: -0.8px;
}
@media (min-width: 1200px) {
  .offer-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    letter-spacing: -1.3px;
  }
}

@media (min-width: 1600px) {
  .header .container {
    padding-inline: 240px;
  }
}

@media (min-width: 1600px) {
  .footer .container {
    padding-inline: 240px;
  }
}

@media (min-width: 1600px) {
  a.footer__logo {
    width: 165px;
    margin-bottom: 60px !important;
  }
}

@media (min-width: 1600px) {
  .footer__info-item a,
  .footer__info-item p {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  .footer__info-item:nth-child(2) .footer__logo {
    width: 220px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1600px) {
  .footer__nav-list {
    gap: 28px;
  }
}

.menu__link {
  font-size: 18px;
  letter-spacing: 0;
}

.hero__top {
  width: 100%;
  background-color: #F0FAF0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .hero__top {
    padding-block: 98px 53px;
    margin-top: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 58px 40px 190px;
}
@media (min-width: 1025px) {
  .hero__content {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 360px;
  }
}
@media (min-width: 1200px) {
  .hero__content {
    max-width: 1200px;
    margin-inline: auto;
  }
}
.hero__content h1 {
  margin-bottom: 14px;
  letter-spacing: -1.2px;
}
@media (min-width: 1200px) {
  .hero__content h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 36px;
  }
}
.hero__content p {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .hero__content p {
    font-size: 20px;
    margin: 0;
    line-height: 1.6;
  }
}
.hero__content a {
  margin-top: 8px;
}
@media (min-width: 1200px) {
  .hero__content a {
    margin-top: 40px;
  }
}

.hero__right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero__right img {
  width: 216px;
  height: 216px;
}
@media (min-width: 768px) {
  .hero__right img {
    width: 324px;
    height: 324px;
  }
}
@media (min-width: 1025px) {
  .hero__right img {
    width: 432px;
    height: 432px;
  }
}
@media (min-width: 1200px) {
  .hero__right img {
    max-width: 538px;
    width: 100%;
    height: 100%;
  }
}

.hero__link .link__more-title > span:first-child {
  display: inline;
}

.hero__link .link__more-title > span:last-child {
  display: none;
}

@media (min-width: 1025px) {
  .hero__link .link__more-title {
    font-size: 18px;
  }
}
.hero__link .link__more-title:focus > span:first-child, .hero__link .link__more-title:hover > span:first-child, .hero__link .link__more-title:active > span:first-child {
  display: none;
}
.hero__link .link__more-title:focus > span:last-child, .hero__link .link__more-title:hover > span:last-child, .hero__link .link__more-title:active > span:last-child {
  display: inline;
}

.visible-1420 {
  display: flex;
}
@media (max-width: 1420px) {
  .visible-1420 {
    display: none;
  }
}

.hidden-1420 {
  display: none;
}
@media (max-width: 1420px) {
  .hidden-1420 {
    display: flex;
  }
}

.page-header {
  margin-top: 18px;
  padding: 0;
}
@media (min-width: 1200px) {
  .page-header {
    margin-top: 100px;
    padding: 0px 80px;
  }
}

.page-header__inner {
  flex-direction: column;
}
@media (min-width: 1200px) {
  .page-header__inner {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}

.page-header__text {
  max-width: 100%;
}

.page-header__text h1 {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .page-header__text h1 {
    margin-bottom: 24px;
  }
}

.page-header__text p {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .page-header__text p {
    width: 77%;
  }
}

.page-header__image {
  max-width: 100%;
  width: 100%;
  margin-top: 26px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (min-width: 1200px) {
  .page-header__image {
    width: 50%;
    height: 380px;
    margin-top: 0;
  }
}

.contact {
  margin-bottom: 65px;
  margin-top: 34px;
}
@media (min-width: 1025px) {
  .contact {
    margin-top: 90px;
    margin-bottom: 140px;
  }
}

.contact__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .contact__inner {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}

.contact__text {
  width: 100%;
}
@media (min-width: 1200px) {
  .contact__text {
    width: 390px;
  }
}
.contact__text h1 {
  letter-spacing: -1px;
}
@media (min-width: 1200px) {
  .contact__text h1 {
    letter-spacing: -1.6px;
    margin-bottom: 32px;
  }
}
.contact__text p {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .contact__text p {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 48px;
  }
}

.contact .link__more {
  flex-direction: row;
  width: 100%;
  justify-content: flex-start;
  font-size: 16px;
  font-family: "Roobert PRO", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-variation-settings: "wght" 700;
}
@media (min-width: 1200px) {
  .contact .link__more {
    font-size: 20px;
  }
}
.contact .link__more svg {
  margin-left: 0;
  margin-right: 10px;
  display: block;
  color: #ff9841;
  width: 13px;
  height: 13px;
}
.contact .link__more span {
  text-decoration: underline;
  color: #ff9841;
}

.contact__form {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  gap: 32px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1200px) {
  .contact__form {
    margin-top: 41px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 45px;
    margin-top: 10px;
    width: 55.7%;
  }
}
.contact__form .form-group {
  flex-direction: column;
}
.contact__form .form-group:nth-child(3) {
  grid-column: span 2;
  margin-bottom: 10px;
}
.contact__form .button {
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1200px) {
  .contact__form .button {
    margin-top: 0;
  }
}

.growth .page-header__inner {
  justify-content: space-between;
  gap: 0;
}
@media (min-width: 1200px) {
  .growth .page-header__inner {
    justify-content: space-between;
    gap: 30px;
  }
}

.growth .page-header__text {
  min-width: 100%;
}
@media (min-width: 1025px) {
  .growth .page-header__text {
    min-width: 313px;
  }
}

.page-header__subtext {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .page-header__subtext {
    width: 68.6%;
    margin-top: -5px;
  }
}

.section-growth {
  margin-top: 290px;
}
@media (min-width: 1025px) {
  .section-growth {
    margin-top: 355px;
  }
}
@media (min-width: 1200px) {
  .section-growth {
    margin-top: 124px;
  }
}

.section-growth .container {
  position: relative;
}

.section-growth__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -56%);
  background-color: #fff;
  padding: 0 10px;
}

.section-growth__img {
  position: absolute;
  right: 52%;
  width: 150px;
  transform: translate(54%, -268px);
}
@media (min-width: 1025px) {
  .section-growth__img {
    right: 50%;
    width: 200px;
    transform: translate(54%, -355px);
  }
}
@media (min-width: 1200px) {
  .section-growth__img {
    right: 9.5%;
    width: 400px;
    transform: translate(0px, -48px);
  }
}

.section-growth__content {
  width: 100%;
  border: 1px solid #a9e52f;
  border-radius: 30px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 41px 42px;
}
@media (min-width: 1025px) {
  .section-growth__content {
    padding: 50px 120px 120px 120px;
  }
}

.section-growth__text {
  margin-right: 0;
}
.section-growth__text h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.8px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1200px) {
  .section-growth__text {
    margin-right: 390px;
  }
}

.section-growth__accordion {
  list-style-type: none;
  margin-right: 0;
  margin-top: 23px;
}
@media (min-width: 1200px) {
  .section-growth__accordion {
    margin-top: 48px;
    margin-right: 380px;
  }
}

.growth__tabs {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
}
.growth__tabs.is-active {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .growth__tabs.is-active {
    height: 1180px;
  }
}
@media (min-width: 1401px) {
  .growth__tabs.is-active {
    height: 1030px;
  }
}

.section-growth__tabs-title {
  margin-top: 48px;
  margin-bottom: 33px;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  letter-spacing: 0;
}
@media (min-width: 1025px) {
  .section-growth__tabs-title {
    margin-top: 146px;
    margin-bottom: 70px;
    margin-left: 0;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 40px;
  }
}

.growth__tabs-nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  gap: 1%;
  justify-content: space-around;
  border-bottom: 2px solid #a9e52f;
}
@media (max-width: 450px) {
  .growth__tabs-nav {
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .growth__tabs-nav {
    justify-content: space-between;
    border-bottom: 1px solid transparent;
  }
}

.growth__nav-item {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
  border-radius: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background-color 0.5s;
}
.growth__nav-item.is-active {
  background-color: transparent;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .growth__nav-item {
    height: 346px;
  }
  .growth__nav-item p {
    font-size: 12px;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .growth__nav-item {
    width: 15%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 1200px) {
  .growth__nav-item {
    width: 100%;
    height: 446px;
    background-color: #F0FAF0;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.5s;
  }
  .growth__nav-item.is-active {
    background-color: #a9e52f;
  }
}

.growth__nav-circle {
  width: 40px;
  height: 40px;
  color: #cacaca;
}
@media (min-width: 1025px) {
  .growth__nav-circle {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    color: #a9e52f;
  }
}
@media (min-width: 1200px) {
  .growth__nav-circle {
    width: 70px;
    height: 72px;
  }
}

.growth__nav-title {
  color: #16535e;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  flex-direction: column;
}
.growth__nav-title span {
  font-weight: 700;
  color: #a9e52f;
}

.growth__nav-subtitle {
  color: #16535e;
  margin-top: 6px;
  text-align: center;
}

.growth__nav-arrow,
.growth__content-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  color: #ff9841;
  cursor: pointer;
}

.growth__tabs-content {
  position: relative;
  width: 100%;
}
@media (min-width: 1200px) {
  .growth__tabs-content {
    position: absolute;
    width: 100%;
    top: 375px;
    left: 0;
  }
}

.growth__content-item {
  display: none;
}
.growth__content-item.is-visible {
  padding-top: 20px;
  display: block;
  position: relative;
}
@media (min-width: 1200px) {
  .growth__content-item.is-visible {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #F0FAF0;
    border: 3px solid #a9e52f;
    border-radius: 0px 0px 15px 15px;
    padding: 62px 173px 45px 75px;
    z-index: 5;
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  .growth__content-item.is-visible {
    padding: 62px 75px 45px 75px;
  }
}

.growth__content-title {
  color: #16535e;
  margin-bottom: 9px;
  font-size: 20px;
  letter-spacing: -1.3px;
}
.growth__content-title span {
  color: #a9e52f;
}
@media (min-width: 1200px) {
  .growth__content-title {
    font-size: 34px;
    margin-bottom: 18px;
  }
}

.growth__content-subtitle {
  color: #16535e;
  margin-top: 0;
  margin-bottom: 17px;
}
@media (min-width: 1200px) {
  .growth__content-subtitle {
    margin-bottom: 45px;
  }
}

.growth__content-article {
  border-top: 1px solid #a9e52f;
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 146px;
       column-gap: 146px;
  padding-top: 16px;
}
.growth__content-article span {
  font-weight: 700;
  color: #2d2d2d;
  margin-top: 13px;
}
.growth__content-article ul {
  margin-bottom: 20px;
}
@media (max-width: 1919px) {
  .growth__content-article {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 1200px) {
  .growth__content-article {
    padding-top: 45px;
    -moz-columns: 2;
         columns: 2;
  }
}

.growth__content-link {
  margin-top: 30px;
}

.growth-toggle__triangle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: 6px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 13px solid #a9e52f;
  transition: all 0.5s;
  opacity: 0;
}
@media (min-width: 1025px) {
  .growth-toggle__triangle::after {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid #a9e52f;
  }
}

.growth__nav-item.is-active .growth__nav-circle {
  color: #a9e52f;
}

.growth__nav-item.is-active .growth-toggle__triangle::after {
  opacity: 1;
}

.contact-block.growth {
  margin-top: 35px;
  margin-bottom: 80px;
}
.contact-block.growth .wave-short {
  display: none;
}
@media (max-width: 1880px) {
  .contact-block.growth .wave-short {
    display: block;
  }
}
.contact-block.growth .wave-long {
  display: none;
}
@media (min-width: 1880px) {
  .contact-block.growth .wave-long {
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1880px) {
  .contact-block.growth {
    margin-top: 100px;
  }
  .contact-block.growth .container {
    width: 800px;
  }
  .contact-block.growth .contact-block__item .svg-wrapper {
    width: 130px;
    height: 90px;
  }
  .contact-block.growth .contact-block__item svg {
    width: 130px;
    height: 90px;
  }
  .contact-block.growth .contact-block__item:first-child .svg-wrapper {
    left: 0;
  }
  .contact-block.growth .contact-block__item:first-child .svg-wrapper svg {
    transform: scaleY(1) rotate(40deg);
  }
  .contact-block.growth .contact-block__item:first-child img {
    margin-top: -50px;
  }
  .contact-block.growth .contact-block__item:last-child .svg-wrapper {
    bottom: 100px;
    right: 50px;
  }
  .contact-block.growth .contact-block__item:last-child img {
    margin-top: 50px;
  }
}
@media (min-width: 1880px) {
  .contact-block.growth {
    margin-top: 0;
  }
  .contact-block.growth .contact-block__item .svg-wrapper {
    width: 230px;
    height: 55px;
  }
  .contact-block.growth .contact-block__item svg {
    width: 230px;
    height: 55px;
  }
  .contact-block.growth .contact-block__item:first-child {
    left: 120px;
  }
  .contact-block.growth .contact-block__item:last-child {
    right: 90px;
  }
}

.section-growth__accordion .article li {
  font-size: 12px;
}
@media (min-width: 768px) {
  .section-growth__accordion .article li {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .section-growth__accordion .article ul {
    padding-left: 40px;
    text-indent: 0 !important;
    margin-left: 30px;
  }
}

.section-growth__accordion .accordion__content-vertical {
  margin-top: 0;
}

.section-growth__accordion .accordion__content-vertical {
  margin-bottom: 24px;
}

@media (min-width: 1200px) {
  .contact-block.interim {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact-block {
  padding: 35px 0;
  max-width: 640px;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .contact-block {
    padding: 54px 60px;
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .contact-block {
    max-width: 1920px;
  }
}

.contact-block__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  margin-inline: auto;
}
@media (min-width: 1600px) {
  .contact-block__inner {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}

@media (min-width: 1600px) {
  .contact-block.contact-block--growth {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact-block__item {
  display: flex;
  flex-direction: column;
  height: 130px;
  width: 100px;
  position: absolute;
}
.contact-block__item .svg-wrapper {
  position: absolute;
  width: 210px;
  height: 60px;
  overflow: hidden;
}
.contact-block__item svg {
  width: 100px;
  height: 60px;
  transform: scaleY(1) rotate(10deg);
  transform-origin: center center;
  color: #a9e52f;
}
@media (min-width: 1600px) {
  .contact-block__item svg {
    transform: scaleY(1) rotate(0deg);
  }
}
.contact-block__item img {
  width: 42px;
  height: 42px;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .contact-block__item img {
    width: 70px;
    height: 70px;
    margin-top: 10px;
  }
}
@media (min-width: 1600px) {
  .contact-block__item img {
    width: 70px;
    height: 70px;
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .contact-block__item {
    flex-direction: row;
  }
}
@media (min-width: 1600px) {
  .contact-block__item {
    flex-direction: row;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.contact-block__item:first-child {
  top: 5px;
  left: 40px;
}
.contact-block__item:first-child img {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .contact-block__item:first-child img {
    width: 78px;
    height: 79px;
    margin-top: 10px;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:first-child img {
    width: 78px;
    height: 79px;
    margin-top: 15px;
  }
}
.contact-block__item:first-child .svg-wrapper {
  width: 80px;
  height: 45px;
  overflow: hidden;
  left: -8px;
  top: 45px;
}
@media (min-width: 1200px) {
  .contact-block__item:first-child .svg-wrapper {
    width: 160px;
    height: 48px;
    bottom: 65px;
    left: 120px;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:first-child .svg-wrapper {
    width: 309px;
    height: 58px;
    left: 120px;
  }
}
.contact-block__item:first-child svg {
  width: 80px;
  height: 45px;
  transform: scaleY(1) rotate(10deg);
  transform-origin: center center;
  color: #a9e52f;
}
@media (min-width: 1200px) {
  .contact-block__item:first-child svg {
    width: 160px;
    height: 48px;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:first-child svg {
    width: 309px;
    height: 58px;
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:first-child {
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 13px;
    left: 100px;
  }
}
@media (min-width: 1800px) {
  .contact-block__item:first-child {
    left: 180px;
  }
}

.contact-block__item:last-child {
  justify-content: flex-end;
  bottom: 30px;
  right: 30px;
}
.contact-block__item:last-child img {
  width: 50px;
  height: 44px;
  margin-left: 40%;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .contact-block__item:last-child img {
    width: 86px;
    height: 76px;
    margin-top: 10px;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:last-child img {
    margin-left: 0;
    margin-bottom: 0;
    width: 86px;
    height: 76px;
  }
}
.contact-block__item:last-child .svg-wrapper {
  width: 80px;
  height: 45px;
  overflow: hidden;
  bottom: 65px;
  right: 2px;
}
@media (min-width: 1200px) {
  .contact-block__item:last-child .svg-wrapper {
    width: 160px;
    height: 48px;
    bottom: 65px;
    right: 130px;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:last-child .svg-wrapper {
    width: 309px;
    height: 58px;
    right: 50px;
    top: 20px;
    position: relative;
  }
}
.contact-block__item:last-child svg {
  width: 80px;
  height: 45px;
  transform: scaleY(-1) rotate(-15deg);
  transform-origin: center center;
}
@media (min-width: 1200px) {
  .contact-block__item:last-child svg {
    width: 160px;
    height: 48px;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:last-child svg {
    width: 309px;
    height: 58px;
  }
}
@media (min-width: 1600px) {
  .contact-block__item:last-child {
    top: 13px;
    right: 60px;
  }
}
@media (min-width: 1800px) {
  .contact-block__item:last-child {
    right: 140px;
  }
}

.contact-block__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  max-width: 200px;
}
@media (min-width: 1200px) {
  .contact-block__title {
    max-width: 353px;
    justify-content: center;
  }
}
@media (min-width: 1600px) {
  .contact-block__title {
    max-width: 550px;
    justify-content: center;
  }
}

.contact-block__title h2 {
  color: #2d2d2d;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
  font-size: 22px;
  width: 160px;
  letter-spacing: -0.7px;
}
.contact-block__title h2 span {
  color: #a9e52f;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .contact-block__title h2 {
    font-size: 36px;
    letter-spacing: -0.4px;
    line-height: 1.3;
    letter-spacing: -1.3px;
    width: 400px;
  }
}
@media (min-width: 1800px) {
  .contact-block__title h2 {
    font-size: 49px;
    letter-spacing: -0.4px;
    line-height: 1.3;
    letter-spacing: -1.3px;
    width: -moz-fit-content;
    width: fit-content;
  }
}

a.contact-block__phone {
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  color: #004953;
  font-size: 16px;
  width: 160px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.5;
}
a.contact-block__phone span:first-child {
  color: #ff9841;
  text-decoration: underline;
}
a.contact-block__phone span {
  color: #ff9841;
}
a.contact-block__phone svg {
  display: none;
}
@media (min-width: 1600px) {
  a.contact-block__phone svg {
    margin-left: 8px;
    color: #ff9841;
    width: 13px;
    height: 13px;
    display: block;
  }
}
@media (min-width: 1200px) {
  a.contact-block__phone {
    width: 460px;
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  a.contact-block__phone {
    font-size: 20px;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: flex-start;
  }
}

.wave-short {
  display: block;
}
@media (min-width: 1200px) {
  .wave-short {
    display: none;
  }
}

.wave-long {
  display: none;
}
@media (min-width: 1200px) {
  .wave-long {
    display: block;
  }
}