@charset "UTF-8";
/* #region VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap");
.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}
.absolute.top {
  top: 0;
}
.absolute.bottom {
  bottom: 0;
}
.absolute.left {
  left: 0;
}
.absolute.right {
  right: 0;
}

.flex {
  display: flex;
}
.flex.align_center {
  align-items: center;
}
.flex.align_start {
  align-items: flex-start;
}
.flex.align_end {
  align-items: flex-end;
}
.flex.justify_start {
  justify-content: flex-start;
}
.flex.justify_center {
  justify-content: center;
}
.flex.justify_end {
  justify-content: flex-end;
}
.flex.space_between {
  justify-content: space-between;
}
.flex.space_evenly {
  justify-content: space-evenly;
}

.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_column.align_center {
  align-items: center;
}
.flex_column.align_start {
  align-items: flex-start;
}
.flex_column.align_end {
  align-items: flex-end;
}
.flex_column.justify_start {
  justify-content: flex-start;
}
.flex_column.justify_center {
  justify-content: center;
}
.flex_column.justify_end {
  justify-content: flex-end;
}
.flex_column.space_between {
  justify-content: space-between;
}
.flex_column.space_evenly {
  justify-content: space-evenly;
}

.overflow {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.pointer {
  cursor: pointer;
}

a {
  color: #000000;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

button {
  border: none;
  background: transparent;
}

.line {
  display: block;
}
.line.vertical {
  width: 1px;
}
.line.vertical.strong {
  width: 2px;
}
.line.horizontal {
  height: 1px;
}
.line.horizontal.strong {
  height: 2px;
}

/* #endregion */
/* #region GLOBALS */
* {
  position: relative;
  box-sizing: border-box;
  font-family: "Teachers", sans-serif;
  font-weight: 400;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  overflow: hidden auto;
}
@media (max-width: 1500px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  body.fixed_body {
    position: fixed;
    overflow: hidden;
  }
}

h1 {
  color: #203f72;
  font-size: 5em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 3em;
  }
}

h2 {
  color: #203f72;
  font-size: 3.375em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
h2.white {
  color: #ffffff;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 2.75em;
  }
}

h3 {
  color: #203f72;
  font-size: 2.625em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
h3.white {
  color: #ffffff;
}
@media (max-width: 1200px) {
  h3 {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.75em;
  }
}

p {
  color: #203f72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
p.white {
  color: #ffffff;
}

span {
  display: block;
}

input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  border: none;
}

section.subpage {
  min-height: 100vh;
}

.fancybox-navigation .fancybox-button {
  top: calc(50vh - 50px) !important;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn span {
  text-align: center;
  text-transform: uppercase;
  z-index: 5;
}
.btn.square {
  min-width: 260px;
  padding: 1.125em;
}
.btn.square span {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
}
.btn.square span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .btn.square:hover {
    transform: scale(1.05);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .btn.square:hover span::after {
    width: 100%;
    left: 0;
  }
}
.btn.white {
  background-color: #ffffff;
}
.btn.white span {
  color: #252525;
}
.btn.white span::after {
  background-color: #252525;
}
.btn.green {
  background-color: #9acd32;
}
.btn.green span {
  color: #252525;
}
.btn.green span::after {
  background-color: #252525;
}
.btn.blue {
  background-color: #203f72;
}
.btn.blue span {
  color: #ffffff;
}
.btn.blue span::after {
  background-color: #ffffff;
}
.btn.red {
  background-color: #cc4949;
}
.btn.red span {
  color: #ffffff;
}
.btn.red span::after {
  background-color: #ffffff;
}
.btn.black {
  background-color: #252525;
}
.btn.black span {
  color: #ffffff;
}
.btn.black span::after {
  background-color: #ffffff;
}

.richText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.richText.no_flex {
  display: block;
}
.richText * {
  margin-bottom: 1em;
}
.richText *:last-child {
  margin-bottom: 0;
}
.richText.center {
  align-items: center;
}
.richText.center p {
  text-align: center;
}
.richText.start {
  align-items: flex-start;
}
.richText.start p {
  text-align: left;
}
.richText.end {
  align-items: flex-end;
}
.richText.end p {
  text-align: right;
}
.richText p strong {
  font-weight: 700;
}
.richText p blockquote {
  font-style: italic;
}
.richText ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
.richText ul li {
  color: #203f72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
.richText ul li strong {
  font-weight: 700;
}
.richText ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
.richText ol li {
  color: #203f72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
.richText ol li strong {
  font-weight: 700;
}
.richText figure {
  width: 100%;
  max-width: 1000px;
}
.richText figure img {
  width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_text {
  width: 100%;
  margin-top: 1em;
}
.recaptcha_text a {
  color: #3b61b7;
  text-decoration: underline;
}

.gdpr #gdpr_input {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.gdpr .custom_checkbox {
  height: 20px;
  width: 20px;
  border: 2px solid #203f72;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #203f72;
  transform: scale(0);
  transition: all 0.3s ease;
}
.gdpr #gdpr_input:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.gdpr label {
  width: calc(100% - 20px);
  color: #203f72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}

#email2 {
  display: none;
}

.formSuccess {
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  background-color: #9acd32;
  padding: 2.5em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 300;
  transform: translate(-50%, -50%);
}
.formSuccess p {
  font-size: 2em;
  text-align: center;
}
.formSuccess.hide {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s ease 5s;
}

/* #endregion */
.cookie {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  max-width: 750px;
  max-height: 80vh;
  background-color: #FFFFFF;
  padding: 1.25em;
  transform: scale(0) translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 500;
  opacity: 0;
  transition: all 0.3s ease;
}
.cookie.visible {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cookie .cookie_title {
  color: #1D0C12;
  font-size: 2.5em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2em;
}
.cookie .cookie_text {
  width: 100%;
  color: #1D0C12;
  font-family: "Teachers", sans-serif;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.2em;
  margin-top: 1.25em;
}
.cookie .cookie_text a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.cookie .cookie_container {
  width: 100%;
  display: none;
  overflow: scroll;
}
.cookie .cookie_container .cookie_wrapper {
  width: 100%;
  margin-top: 1.25em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line {
  width: 100%;
  border-bottom: 1px solid #1D0C12;
  padding-bottom: 1.25em;
  margin-bottom: 1.25em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .column {
  width: calc(100% - 5em);
  margin-right: auto;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .column .cookie_subtitle {
  color: #1D0C12;
  font-size: 1.5em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .column .cookie_text {
  margin-top: 0.625em;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox {
  width: 2.5em;
  height: 1.25em;
  border-radius: 0.625em;
  background-color: #e5e3df;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: #F7F0F3;
  border: 1px solid #e5e3df;
  border-radius: 0.625em;
  transition: all 0.3s ease;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox.active {
  background-color: #9ACD32;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_line .cookie_checkbox.active span {
  left: 1.25em;
  border: 1px solid #9ACD32;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5em;
}
@media (max-width: 600px) {
  .cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub {
    grid-gap: 2.5em 1.25em;
  }
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item {
  width: 100%;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox {
  width: 2.5em;
  height: 1.25em;
  border-radius: 0.625em;
  background-color: #e5e3df;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: #F7F0F3;
  border: 1px solid #e5e3df;
  border-radius: 0.625em;
  transition: all 0.3s ease;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox.active {
  background-color: #9ACD32;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_checkbox.active span {
  left: 1.25em;
  border: 1px solid #9ACD32;
}
.cookie .cookie_container .cookie_wrapper .cookie_wrapper_sub .cookie_wrapper_sub_item .cookie_text {
  text-align: center;
  margin-top: 0.625em;
}
.cookie .cookie_bottom {
  width: 100%;
  gap: 2.5em;
  flex-wrap: wrap;
  margin-top: 1.25em;
}
.cookie .cookie_bottom .cookie_more {
  font-size: 1.25em;
  font-weight: 500;
  cursor: pointer;
  margin-left: auto;
}
.cookie .cookie_bottom .cookie_deny {
  font-size: 1.25em;
  font-weight: 500;
  cursor: pointer;
}
.cookie .cookie_bottom .cookie_save {
  font-size: 1.25em;
  font-weight: 500;
  display: none;
  cursor: pointer;
}
.cookie .cookie_bottom .cookie_accept {
  min-width: 15em;
  padding: 1em;
  margin-left: 2.5em;
}
.cookie .cookie_bottom .cookie_accept span {
  font-size: 1em;
}
.cookie .cookie_bottom .cookie_accept::after {
  font-size: 1em;
}
@media (max-width: 500px) {
  .cookie .cookie_bottom .cookie_accept {
    margin-left: auto;
  }
}

.cookie_badge {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #9ACD32;
  color: #203F72;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 5px 10px;
  z-index: 500;
  display: none;
  cursor: pointer;
}
.cookie_badge.visible {
  display: flex;
}

#original_header {
  width: 100%;
  height: 11.25em;
  padding: 0 2.5em;
  z-index: 201;
}
#original_header .header_logo {
  width: 25em;
  height: 4.375em;
  margin: 0 auto 0 0;
}
#original_header .header_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#original_header .header_nav {
  height: 100%;
  gap: 2em;
}
#original_header .header_nav .header_search {
  width: 1.625em;
  height: 1.625em;
  background-image: url("../svg/search.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 1.75em 0 0;
}
#original_header .header_nav .nav_item {
  color: #203f72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
}
#original_header .header_nav .nav_item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #203f72;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  #original_header .header_nav .nav_item:hover::after {
    width: 100%;
    left: 0;
  }
}
#original_header .header_nav .header_contact {
  top: 1.25em;
  gap: 2.5em;
}
#original_header .header_nav .header_contact .contact_item {
  color: #9acd32;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
}
#original_header .header_line {
  width: 1px;
  height: 2.875em;
  background-color: #203f72;
  margin: 0 2em;
}
#original_header .header_languages {
  height: 100%;
  gap: 10px;
  overflow: hidden;
}
#original_header .header_languages .languages_item {
  color: #203f72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
  padding: 10px;
}
#original_header .header_languages .languages_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #9acd32;
  transition: all 0.3s ease;
  z-index: -1;
}
#original_header .header_languages .languages_item.active::before {
  height: 8em;
}
#original_header .header_languages .languages_item:hover::before {
  height: 8em;
}
#original_header .hamburger {
  width: 50px;
  height: 34px;
  display: none;
}
#original_header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #203f72;
  transition: all 0.3s ease;
}
#original_header .hamburger span:nth-child(1) {
  top: 0;
}
#original_header .hamburger span:nth-child(2) {
  top: 13px;
}
#original_header .hamburger span:nth-child(3) {
  top: 26px;
}
#original_header .hamburger.open span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
#original_header .hamburger.open span:nth-child(2) {
  opacity: 0;
}
#original_header .hamburger.open span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}
@media (max-width: 1350px) {
  #original_header .header_logo {
    width: 18em;
  }
}
@media (max-width: 1100px) {
  #original_header .header_nav {
    display: none;
  }
  #original_header .header_line {
    display: none;
  }
  #original_header .header_languages {
    display: none;
  }
  #original_header .hamburger {
    display: block;
  }
}
@media (max-width: 600px) {
  #original_header {
    height: 100px;
    padding: 0 10px;
  }
}

#new_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1rem, -0.053rem + 4.211vw, 5rem);
  padding-top: clamp(1rem, 0.342rem + 2.632vw, 3.5rem);
  z-index: 201;
}
#new_header .text-green {
  color: #9acd32 !important;
}
#new_header .logo-link img {
  width: clamp(10.625rem, 9.803rem + 3.289vw, 13.75rem);
  height: auto;
  aspect-ratio: 220/59;
}
#new_header .links-container {
  display: none;
  gap: 1rem;
  align-items: center;
  gap: 3.0625rem;
}
@media (min-width: 1280px) {
  #new_header .links-container {
    display: flex;
  }
}
#new_header .links-container .nav-link {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.5rem;
  position: relative;
  font-weight: 600;
  color: white;
}
#new_header .links-container .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  #new_header .links-container .nav-link:hover::after {
    width: 100%;
    left: 0;
  }
}
#new_header .nav-link:has(.chevron) {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  color: #9acd32;
}
#new_header .nav-link:has(.chevron)::after {
  background-color: #9acd32;
}
#new_header .chevron {
  transition: transform 200ms;
  will-change: transform;
  transform-origin: center center;
  display: grid;
  place-content: center;
}
#new_header .chevron.rotate {
  transform: scaleY(-1);
}
#new_header .dropdown-container {
  position: relative;
}
#new_header .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition-property: transform, opacity;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(var(--ease-in-out-cubic));
  opacity: 0;
  transform: translateY(-10px);
  margin-top: 10px;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  background-color: #9acd32;
}
#new_header .dropdown-content li {
  width: 100%;
  text-align: center;
}
#new_header .dropdown-content a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  color: white;
  font-size: clamp(1.125rem, 1.092rem + 0.132vw, 1.25rem);
  position: relative;
  font-weight: 600 !important;
}
#new_header .dropdown-content a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 1px;
  transition: all 0.3s ease;
  background-color: white;
}
#new_header .dropdown-content a:first-child {
  padding-bottom: 0.625rem;
}
#new_header .dropdown-content a:last-child {
  padding-top: 0.625rem;
}
#new_header .dropdown-content a:hover::after {
  width: 100%;
  left: 0;
}
#new_header .opened {
  transform: translateY(0%) !important;
  opacity: 1 !important;
}
#new_header .languages {
  display: flex;
  gap: 1.25rem;
}
#new_header .language-button {
  font-size: 1.5rem;
  position: relative;
  color: white;
  font-weight: 600;
  display: none;
}
#new_header .language-button:hover .tooltip {
  opacity: 1;
}
@media (min-width: 1280px) {
  #new_header .language-button {
    display: block;
  }
}
#new_header .tooltip {
  background-color: #9acd32;
  position: absolute;
  bottom: -3rem;
  right: -50%;
  transform: translateX(25%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  width: -moz-max-content;
  width: max-content;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
#new_header .hamburger {
  width: 50px;
  height: 34px;
  display: block;
  cursor: pointer;
}
@media (min-width: 1280px) {
  #new_header .hamburger {
    display: none;
  }
}
#new_header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: white;
  transition: all 0.3s ease;
}
#new_header .hamburger span:nth-child(1) {
  top: 0;
}
#new_header .hamburger span:nth-child(2) {
  top: 13px;
}
#new_header .hamburger span:nth-child(3) {
  top: 26px;
}
#new_header .hamburger.open span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
#new_header .hamburger.open span:nth-child(2) {
  opacity: 0;
}
#new_header .hamburger.open span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

.menu {
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: #9ACD32;
  transition: all 0.5s ease;
  padding: 10px;
  z-index: 200;
}
.menu.open {
  transform: translateX(0%);
}
.menu .menu_nav {
  gap: 1.5em;
}
.menu .menu_nav .nav_item {
  color: #203F72;
  font-size: 1.75em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
}
.menu .menu_nav .contact_item {
  color: #203F72;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
}
.menu .menu_line {
  width: 250px;
  height: 1px;
  background-color: #203F72;
  margin: 2em 0;
}
.menu .menu_languages {
  gap: 10px;
  overflow: hidden;
}
.menu .menu_languages .languages_item {
  color: #203F72;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
  padding: 10px;
}

footer {
  width: 100%;
  background-color: #203f72;
  background-image: url("../svg/footer_pattern.svg");
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 6.25em 2.5em 2em 2.5em;
}
footer .footer_container {
  width: 100%;
  flex-wrap: wrap;
  gap: 5em;
}
footer .footer_container .footer_column {
  max-width: 250px;
}
footer .footer_container .footer_column.social_column {
  gap: 2.5em;
}
footer .footer_container .footer_column .footer_nav {
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
footer .footer_container .footer_column .footer_nav:last-child {
  margin: 0;
}
footer .footer_container .footer_column .footer_nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  footer .footer_container .footer_column .footer_nav:hover::after {
    width: 100%;
    left: 0;
  }
}
footer .footer_container .footer_column .footer_text {
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
footer .footer_container .footer_column .footer_link {
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
footer .footer_container .footer_column .footer_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  footer .footer_container .footer_column .footer_link:hover::after {
    width: 100%;
    left: 0;
  }
}
footer .footer_container .footer_column .footer_social {
  width: 3.5em;
  height: 3.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer_container .footer_column .footer_social.instagram {
  background-image: url("../svg/instagram.svg");
}
footer .footer_container .footer_column .footer_social.facebook {
  background-image: url("../svg/facebook.svg");
}
footer .footer_container .footer_column .footer_social.youtube {
  background-image: url("../svg/youtube.svg");
}
footer .footer_bottom {
  width: 100%;
  border-top: 1px solid #9acd32;
  padding: 2em 0 0 0;
  margin: 2.5em 0 0 0;
}
footer .footer_bottom span {
  color: #9acd32;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-align: center;
}
footer .footer_bottom span a {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
@media (max-width: 600px) {
  footer {
    background-image: none;
    padding: 5em 10px 2em 10px;
  }
}

footer.new {
  background-image: none;
}
footer.new .footer_bottom span,
footer.new .footer_bottom a {
  color: #9acd32;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-align: center;
}

.index_header {
  width: 100%;
  height: 92vh;
  padding: 0 2.5em;
}
.index_header .index_header_swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_header .index_header_swiper .swiper-slide {
  height: 100%;
}
.index_header .index_header_swiper .swiper-slide .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_header .index_header_swiper .swiper-slide .pattern {
  width: 100%;
  height: 100%;
  background-image: url("../svg/slider_pattern.svg");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}
.index_header .index_header_swiper .swiper-slide .column {
  width: 100%;
  max-width: 1200px;
  padding: 3.75em 5em;
}
.index_header .index_header_swiper .swiper-slide .column .title {
  color: #FFFFFF;
  font-size: 5.625em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1em;
}
.index_header .index_header_swiper .swiper-slide .column .text {
  margin-top: 1em;
}
@media (max-width: 1400px) {
  .index_header {
    height: 60vh;
  }
  .index_header .index_header_swiper .swiper-slide .pattern {
    display: none;
  }
  .index_header .index_header_swiper .swiper-slide .column {
    max-width: 100%;
    padding: 2.5em;
  }
  .index_header .index_header_swiper .swiper-slide .column .title {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  .index_header {
    height: 50vh;
    padding: 0 10px;
  }
  .index_header .index_header_swiper .swiper-slide .column {
    max-width: 100%;
    padding: 2.5em 10px;
  }
  .index_header .index_header_swiper .swiper-slide .column .title {
    font-size: 3em;
  }
}

.index_category {
  width: 100%;
  background-image: url("../svg/categories_pattern.svg");
  background-size: calc(69% - 5em);
  background-position: top right 2.5em;
  background-repeat: no-repeat;
  padding: 8.75em 2.5em 1.25em 2.5em;
}
.index_category .index_category_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 3.75em;
  padding: 0 2.5em;
  margin-top: 2.5em;
}
.index_category .index_category_grid .category_grid_item {
  width: 100%;
}
.index_category .index_category_grid .category_grid_item .image {
  width: 100%;
}
.index_category .index_category_grid .category_grid_item .image img {
  width: 100%;
}
.index_category .index_category_grid .category_grid_item .text {
  margin: 1.25em 0 2.5em 0;
}
.index_category .index_category_grid .category_grid_item .btn {
  align-self: flex-end;
}
@media (max-width: 950px) {
  .index_category .index_category_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
}
@media (max-width: 600px) {
  .index_category {
    background-image: none;
    padding: 5em 10px 0 10px;
  }
  .index_category .index_category_grid {
    grid-template-columns: 100%;
  }
  .index_category .index_category_grid .category_grid_item .text {
    display: none;
  }
  .index_category .index_category_grid .category_grid_item .btn {
    width: 100%;
    margin-top: 1.25em;
  }
}

.index_products {
  width: 100%;
  background-image: url("../svg/products_pattern.svg");
  background-size: calc(100% - 5em);
  background-position: top center;
  background-repeat: no-repeat;
  padding: 8.75em 2.5em;
}
.index_products .index_products_text {
  max-width: 1140px;
  font-size: 2em;
  text-align: center;
  margin: 1.25em 0;
}
.index_products .index_products_grid {
  width: 100%;
  margin-top: 5em;
}
.index_products .index_products_grid .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em;
}
.index_products .index_products_grid .grid_item {
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 1.25em;
  background-color: #FFFFFF;
  padding: 1.25em;
}
.index_products .index_products_grid .grid_item .image {
  width: 100%;
  margin-bottom: 0.625em;
}
.index_products .index_products_grid .grid_item .image img {
  width: 100%;
}
.index_products .index_products_grid .grid_item .tag {
  top: 2em;
  min-width: 4.375em;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: lowercase;
  text-align: center;
  padding: 1em 5px;
}
.index_products .index_products_grid .grid_item .title {
  color: #203F72;
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  margin-bottom: auto;
}
.index_products .index_products_grid .grid_item .price_wrapper {
  width: 100%;
  margin-top: 2.5em;
}
.index_products .index_products_grid .grid_item .price_wrapper .column .price {
  color: #203F72;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.index_products .index_products_grid .grid_item .price_wrapper .column .priceNoTax {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.index_products .index_products_grid .grid_item .price_wrapper .column.inactive {
  margin-right: 1.25em;
}
.index_products .index_products_grid .grid_item .price_wrapper .column.inactive .price {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-decoration: line-through;
}
.index_products .index_products_grid .grid_item .price_wrapper .column.inactive .priceNoTax {
  color: #BDBDBD;
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-decoration: line-through;
}
.index_products .index_products_grid .grid_item .arrow {
  bottom: 1.25em;
  right: 1.25em;
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_products .index_products_nav {
  width: -moz-fit-content;
  width: fit-content;
  display: none;
  gap: 8em;
  margin: 2.5em 0;
}
.index_products .index_products_nav .index_products_prev {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_blue_left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.index_products .index_products_nav .index_products_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index_products .index_products_nav .index_products_next {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.index_products .index_products_nav .index_products_next.swiper-button-disabled {
  opacity: 0.5;
}
.index_products .grid_banner {
  width: 100%;
  grid-column: 1/3;
  grid-row: 3/4;
  border-radius: 1.25em;
  background-color: #FFFFFF;
  padding: 2.5em;
  overflow: hidden;
}
.index_products .grid_banner.mobile {
  display: none;
}
.index_products .grid_banner .image {
  width: 100%;
  height: 100%;
}
.index_products .grid_banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_products .grid_banner .title {
  color: #FFFFFF;
  font-size: 8em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
}
.index_products .grid_banner .text {
  color: #FFFFFF;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1em;
}
.index_products .grid_banner .arrow {
  bottom: 2.5em;
  right: 2.5em;
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_white_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1400px) {
  .index_products .index_products_grid .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .index_products .index_products_grid .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .index_products .index_products_grid .grid_item .price_wrapper .column .price {
    font-size: 2em;
  }
  .index_products .index_products_grid .grid_item .price_wrapper .column .priceNoTax {
    font-size: 1.25em;
  }
  .index_products .index_products_grid .grid_item .price_wrapper .column.inactive .price {
    font-size: 1.25em;
  }
  .index_products .grid_banner .title {
    font-size: 3em;
  }
  .index_products .grid_banner .text {
    font-size: 1.5em;
  }
}
@media (max-width: 600px) {
  .index_products {
    background-image: none;
    padding: 5em 10px;
    overflow: hidden;
  }
  .index_products .index_products_grid .swiper-wrapper {
    display: flex;
    grid-gap: 0;
  }
  .index_products .index_products_nav {
    display: flex;
  }
  .index_products .grid_banner.mobile {
    display: flex;
  }
  .index_products .grid_banner.desktop {
    display: none;
  }
}

.index_about {
  width: 100%;
  gap: 5em;
  background-color: #F6F6F6;
  padding: 9.375em 2.5em;
}
.index_about .about_logo {
  width: calc(35% - 5em);
}
.index_about .about_logo img {
  width: 100%;
}
.index_about .about_column {
  width: calc(37% - 5em);
}
.index_about .about_column .richText {
  margin: 2.5em 0;
}
.index_about .about_column .btn {
  align-self: flex-end;
}
.index_about .about_video {
  width: 28%;
  align-self: stretch;
  border-radius: 1.25em;
  overflow: hidden;
}
.index_about .about_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_about .about_video .play {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.index_about .about_video .play .arrow {
  width: 3.75em;
  height: 3.75em;
  background-image: url("../svg/play.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1400px) {
  .index_about {
    flex-wrap: wrap;
  }
  .index_about .about_logo {
    width: calc(50% - 5em);
  }
  .index_about .about_column {
    width: 50%;
  }
  .index_about .about_video {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .index_about {
    padding: 6em 10px;
    justify-content: center;
    gap: 2.5em;
  }
  .index_about .about_logo {
    width: 100%;
    max-width: 250px;
  }
  .index_about .about_column {
    width: 100%;
  }
}

.index_benefits {
  width: 100%;
  background-image: url("../png/benefits_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8.75em 2.5em;
  overflow: hidden;
}
.index_benefits .index_benefits_bg {
  width: 100%;
  height: 100%;
  background-image: url("../svg/benefits_pattern.svg");
  background-size: calc(100% - 5em);
  background-position: top center;
  background-repeat: no-repeat;
}
.index_benefits .index_benefits_wrapper {
  width: 100%;
  gap: 2.5em;
  margin-top: 5em;
}
.index_benefits .index_benefits_wrapper .column {
  width: calc(50% - 1.25em);
  align-self: stretch;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper {
  width: calc(50% - 1.25em);
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .swiper-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5em 2.5em;
  opacity: 0;
  transition: all 0.5s ease;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .swiper-slide .benefit_item {
  width: 100%;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .swiper-slide .benefit_item h3 {
  margin-bottom: 0.5em;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .swiper-slide.swiper-slide-next {
  opacity: 1;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.5em 0 0 auto;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav .index_benefits_prev {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_white_left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav .index_benefits_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav .index_benefits_pagination {
  color: #FFFFFF;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  text-align: center;
  margin: 0 3.75em;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav .index_benefits_pagination span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav .index_benefits_next {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_white_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.index_benefits .index_benefits_wrapper .index_benefits_swiper .index_benefits_nav .index_benefits_next.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 1400px) {
  .index_benefits .index_benefits_wrapper {
    flex-direction: column-reverse;
    gap: 5em;
  }
  .index_benefits .index_benefits_wrapper .column {
    width: 100%;
  }
  .index_benefits .index_benefits_wrapper .index_benefits_swiper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .index_benefits {
    padding: 5em 10px;
  }
  .index_benefits .index_benefits_bg {
    background-image: none;
  }
  .index_benefits .column .btn {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .index_benefits .index_benefits_wrapper .index_benefits_swiper .swiper-slide {
    grid-template-columns: 100%;
    grid-gap: 2.5em;
  }
}

.index_references {
  width: 100%;
  padding: 8.25em 2.5em 6.75em 2.5em;
}
.index_references .index_references_header {
  width: 100%;
}
.index_references .index_references_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em;
  margin-top: 3.75em;
}
.index_references .index_references_grid .references_grid_item {
  width: 100%;
  border-radius: 1.25em;
  overflow: hidden;
}
.index_references .index_references_grid .references_grid_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.index_references .index_references_grid .references_grid_item .title {
  bottom: 1.25em;
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.4em;
  background-color: #FFFFFF;
  padding: 0.5em 1em;
  z-index: 5;
}
.index_references .index_references_grid .references_grid_item:hover img {
  transform: scale(1.1);
}
.index_references .index_references_grid .references_grid_item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
.index_references .btn.mobile {
  display: none;
  margin-top: 20px;
  align-self: center;
}
@media (max-width: 1500px) {
  .index_references .index_references_grid {
    grid-gap: 20px;
  }
}
@media (max-width: 1200px) {
  .index_references .index_references_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 850px) {
  .index_references .index_references_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .index_references {
    padding: 5em 10px 2.5em 10px;
  }
  .index_references .index_references_grid {
    gap: 10px;
  }
  .index_references .index_references_grid .references_grid_item .title {
    bottom: 0;
    width: 100%;
    font-size: 1em;
    padding: 5px 10px;
  }
  .index_references .index_references_grid .references_grid_item:nth-child(1) .title {
    bottom: 10px;
    width: auto;
    font-size: 1.25em;
  }
  .index_references .btn {
    display: none;
  }
  .index_references .btn.mobile {
    display: flex;
  }
}
@media (max-width: 350px) {
  .index_references .index_references_grid {
    grid-template-columns: 100%;
  }
  .index_references .index_references_grid .references_grid_item .title {
    bottom: 10px;
    width: auto;
    font-size: 1.25em;
  }
  .index_references .index_references_grid .references_grid_item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.index_news {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 2.5em;
  padding: 2.5em 2.5em 0 2.5em;
}
.index_news .index_news_item {
  width: 100%;
}
.index_news .index_news_item .image {
  width: 100%;
}
.index_news .index_news_item .column {
  left: 1.25em;
  bottom: 2.5em;
  width: calc(100% - 2.5em);
  padding: 0 5em 0 0;
}
.index_news .index_news_item .column h2 {
  width: 100%;
  max-width: 620px;
}
.index_news .index_news_item .column p {
  width: 100%;
  max-width: 620px;
  margin-top: 1em;
}
.index_news .index_news_item .column .arrow {
  bottom: 0;
  right: 0;
  width: 2.5em;
  height: 5em;
  background-image: url("../svg/arrow_white_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_news .index_news_item:nth-child(3) {
  grid-column: 1/3;
}
.index_news .index_news_item:nth-child(3) .column h2 {
  max-width: 100%;
}
.index_news .index_news_item:nth-child(3) .column p {
  max-width: 100%;
}
@media (min-width: 1400px) {
  .index_news .index_news_item:nth-child(3) {
    grid-column: 1/3;
  }
  .index_news .index_news_item:nth-child(3) .image {
    max-height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .index_news .index_news_item:nth-child(3) .column {
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 940px;
    padding: 0;
  }
  .index_news .index_news_item:nth-child(3) .column h2 {
    max-width: 100%;
    font-size: 6.25em;
    text-align: centerázok;
  }
  .index_news .index_news_item:nth-child(3) .column p {
    max-width: 430px;
    align-self: flex-end;
    padding: 0 1em 0 0;
  }
  .index_news .index_news_item:nth-child(3) .column .arrow {
    right: -3.25em;
  }
}
@media (max-width: 950px) {
  .index_news {
    grid-template-columns: 100%;
  }
  .index_news .index_news_item {
    width: 100%;
  }
  .index_news .index_news_item .column h2 {
    max-width: 100%;
  }
  .index_news .index_news_item .column p {
    max-width: 100%;
  }
  .index_news .index_news_item:nth-child(3) {
    grid-column: 1/2;
  }
}
@media (max-width: 600px) {
  .index_news {
    padding: 2.5em 10px;
  }
  .index_news .index_news_item .column {
    left: 10px;
    bottom: 20px;
    padding: 0 2.5em 0 0;
  }
  .index_news .index_news_item .column h2 {
    font-size: 2.5em;
  }
  .index_news .index_news_item .column .arrow {
    width: 1.25em;
    height: 2.5em;
  }
}
@media (max-width: 500px) {
  .index_news {
    padding: 2.5em 10px;
  }
  .index_news .index_news_item .column p {
    display: none;
  }
}

.index_review {
  width: 100%;
  background-color: #F6F6F6;
  padding: 0 2.5em 6.25em 2.5em;
  margin: 8.25em 0 0 0;
}
.index_review .index_review_header {
  width: 100%;
  gap: 3.75em;
  margin: -2.5em 0 5em 0;
}
.index_review .index_review_header .letter {
  width: 26.25em;
  height: 24.375em;
  background-image: url("../png/about_logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_review .index_review_swiper {
  width: 100%;
  overflow: hidden;
}
.index_review .index_review_swiper .swiper-slide {
  gap: 1.25em;
}
.index_review .index_review_swiper .swiper-slide .stars_wrapper {
  gap: 5px;
}
.index_review .index_review_swiper .swiper-slide .stars_wrapper .star {
  width: 1.75em;
  height: 1.75em;
  background-image: url("../svg/star.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_review .index_review_swiper .swiper-slide .text {
  width: 100%;
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.4em;
}
.index_review .index_review_swiper .swiper-slide .review_item_wrapper {
  gap: 10px;
}
.index_review .index_review_swiper .swiper-slide .review_item_wrapper .image {
  width: 3.75em;
  height: 3.75em;
  border-radius: 50%;
  overflow: hidden;
}
.index_review .index_review_swiper .swiper-slide .review_item_wrapper .column .name {
  color: #203F72;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.4em;
}
.index_review .index_review_swiper .swiper-slide .review_item_wrapper .column .date {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.4em;
}
.index_review .index_review_nav {
  width: 100%;
  margin-top: 3.75em;
}
.index_review .index_review_nav .index_review_prev {
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s ease;
}
.index_review .index_review_nav .index_review_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index_review .index_review_nav .index_review_next {
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s ease;
}
.index_review .index_review_nav .index_review_next.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 800px) {
  .index_review .index_review_header .letter {
    width: 30vw;
    height: 30vw;
  }
}
@media (max-width: 600px) {
  .index_review {
    padding: 0 10px 2.5em 10px;
    margin: 5em 0 0 0;
  }
  .index_review .index_review_header {
    gap: 20px;
  }
}

.index_catalogues {
  width: 100%;
  padding: 8.75em 2.5em 0 2.5em;
  overflow: hidden;
}
.index_catalogues .index_catalogues_swiper {
  width: 100%;
  margin-top: 5em;
}
.index_catalogues .index_catalogues_swiper .swiper-slide .image {
  width: 100%;
  margin-bottom: 2em;
}
.index_catalogues .index_catalogues_swiper .swiper-slide .title_h3 {
  font-size: 1.73em;
  text-transform: uppercase;
}
.index_catalogues .index_catalogues_swiper .swiper-slide .arrow {
  width: 3.125em;
  height: 3.125em;
  background-image: url("../svg/arrow_blue_down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  align-self: flex-end;
  margin-top: 10px;
}
.index_catalogues .index_catalogues_nav {
  width: -moz-fit-content;
  width: fit-content;
  gap: 8em;
  margin: 2.5em 0 0 auto;
}
.index_catalogues .index_catalogues_nav .index_catalogues_prev {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_blue_left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.index_catalogues .index_catalogues_nav .index_catalogues_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index_catalogues .index_catalogues_nav .index_catalogues_next {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.index_catalogues .index_catalogues_nav .index_catalogues_next.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 600px) {
  .index_catalogues {
    padding: 5em 10px 0 10px;
  }
  .index_catalogues .index_catalogues_swiper {
    margin-top: 2.5em;
  }
}

.index_newsletter {
  width: 100%;
  background-image: url("../svg/newsletter_pattern.svg");
  background-size: 57%;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 13.75em 2.5em 8.75em 2.5em;
}
.index_newsletter .index_newsletter_form {
  width: 100%;
  max-width: 900px;
  background-color: #9ACD32;
  padding: 2.5em;
  margin-top: 2.5em;
}
.index_newsletter .index_newsletter_form .input_row {
  width: 100%;
  gap: 2.5em;
  margin: 2.5em 0 1.25em 0;
}
.index_newsletter .index_newsletter_form .input_row input {
  width: calc(100% - 13.75em);
  height: 3.75em;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
}
.index_newsletter .index_newsletter_form .input_row input::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.index_newsletter .index_newsletter_form .input_row input::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.index_newsletter .index_newsletter_form .input_row .btn {
  min-width: 11.25em;
}
@media (max-width: 600px) {
  .index_newsletter {
    background-image: none;
    padding: 7.5em 10px 5em 10px;
  }
  .index_newsletter .index_newsletter_form {
    padding: 20px 10px;
  }
  .index_newsletter .index_newsletter_form .input_row {
    gap: 20px;
    flex-direction: column;
  }
  .index_newsletter .index_newsletter_form .input_row input {
    width: 100%;
  }
  .index_newsletter .index_newsletter_form .input_row .btn {
    align-self: flex-end;
    min-width: 11.25em;
  }
}

img {
  display: block;
  max-width: 100%;
}

body {
  width: initial;
  display: block;
  flex-direction: unset;
  align-items: unset;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.loading-overlay {
  background-color: #213e74;
  position: fixed;
  inset: 0;
  z-index: 202;
  display: grid;
  place-items: center;
  overflow: hidden;
  --exit-time: 1s;
  --exit-delay: 1.75s;
  animation: overlay-exit var(--exit-time) cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: var(--exit-delay);
}
.loading-overlay svg {
  width: min(300px, 70vw);
  height: auto;
  display: block;
}
.loading-overlay .white {
  z-index: -1;
  filter: brightness(100);
}

@keyframes overlay-exit {
  to {
    transform: translateY(100%);
  }
}
.btn span {
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem) !important;
}

.btn.green span {
  color: white;
}
.btn.green span::after {
  background-color: white;
}

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

.swiper-wrapper {
  width: auto;
}

.pattern,
.background,
video {
  max-width: 100%;
}

#newHomepage .btn {
  color: white !important;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
  font-weight: 600;
  padding-block: 0.6875rem;
  padding-inline: clamp(1.875rem, 1.354rem + 2.083vw, 2.6875rem);
  min-width: -moz-max-content;
  min-width: max-content;
}
#newHomepage .heading {
  font-weight: 700;
  font-size: clamp(2.5rem, 2.105rem + 1.579vw, 4rem);
  margin-bottom: 3.125rem;
  color: #213e74;
}
#newHomepage .heading.white {
  color: white;
}
#newHomepage #hero {
  padding-top: clamp(11.9375rem, 10.03rem + 7.632vw, 19.1875rem);
  padding-bottom: clamp(6.25rem, 4.753rem + 5.987vw, 11.9375rem);
  margin-bottom: clamp(3.125rem, 1.974rem + 4.605vw, 7.5rem);
  position: relative;
  overflow-x: hidden;
}
#newHomepage #hero .section-content {
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
}
#newHomepage #hero .text-content {
  max-width: 51.75rem;
  width: 100%;
}
#newHomepage #hero .text-content h1 {
  color: white !important;
  font-size: clamp(2.8125rem, 1.579rem + 4.934vw, 7.5rem);
  font-weight: 700;
}
#newHomepage #hero .text-content p {
  color: white !important;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
}
#newHomepage #hero .buttons-container {
  margin-top: clamp(3.75rem, 3.092rem + 2.632vw, 6.25rem);
  display: flex;
  align-items: center;
  justify-content: end;
  gap: clamp(1.25rem, 0.757rem + 1.974vw, 3.125rem);
  flex-wrap: wrap;
  justify-content: start;
}
@media (min-width: 1024px) {
  #newHomepage #hero .buttons-container {
    justify-content: end;
  }
}
#newHomepage #hero img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
}
@media (min-width: 768px) {
  #newHomepage #hero img {
    width: 100%;
  }
}
#newHomepage #hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transform: scaleX(-1);
}
#newHomepage #hero .external-hero-poster {
  z-index: -3;
}
#newHomepage #hero .pattern {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #hero .pattern {
    display: block;
  }
}
#newHomepage #top_products {
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  margin-bottom: clamp(7.5rem, 7.5rem + 0vw, 7.5rem) !important;
  max-width: 120rem;
  margin: 0 auto;
  padding-top: clamp(0rem, -2.303rem + 9.211vw, 8.75rem);
}
#newHomepage #top_products .pattern {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #top_products .pattern {
    display: block;
  }
}
#newHomepage #top_products .heading {
  width: 100%;
  text-align: center;
}
#newHomepage #top_products .swiper-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline: auto;
  width: calc(100vw - 2rem);
  position: relative;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  #newHomepage #top_products .swiper-container {
    margin-bottom: 4.6875rem;
    width: 100%;
  }
}
#newHomepage #top_products .product-content {
  height: -moz-max-content;
  height: max-content;
}
#newHomepage #top_products .swiper {
  width: 100%;
}
#newHomepage #top_products .swiper-wrapper {
  width: clamp(37.5rem, -0.865rem + 43.846vw, 51.75rem);
}
#newHomepage #top_products .button-prev,
#newHomepage #top_products .button-next {
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: -5.75rem;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #top_products .button-prev,
  #newHomepage #top_products .button-next {
    display: block;
    position: static;
  }
}
#newHomepage #top_products .button-prev img,
#newHomepage #top_products .button-next img {
  aspect-ratio: 30/60;
  width: 1.25rem;
  height: auto;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #newHomepage #top_products .button-prev img,
  #newHomepage #top_products .button-next img {
    width: 1.875rem;
  }
}
#newHomepage #top_products .button-prev {
  left: 25%;
}
#newHomepage #top_products .button-next {
  right: 25%;
}
#newHomepage #top_products .swiper-pagination {
  bottom: -50px;
}
#newHomepage #top_products .swiper-pagination-bullet {
  width: clamp(0.75rem, 0.125rem + 3.125vw, 1.625rem);
  height: 0.3125rem;
  display: inline-block;
  border-radius: 0;
  background: #d1d1d1;
  opacity: 1;
}
#newHomepage #top_products .swiper-pagination-bullet-active {
  background: #213e74;
}
@media (min-width: 768px) {
  #newHomepage #top_products .swiper-pagination:has(.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #top_products .swiper-pagination-bullet-active + .swiper-pagination-bullet {
    background: #213e74;
  }
}
@media (min-width: 1024px) {
  #newHomepage #top_products .swiper-pagination:has(.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #top_products .swiper-pagination:has(.swiper-pagination-bullet:nth-last-child(2).swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #top_products .swiper-pagination-bullet-active + .swiper-pagination-bullet,
  #newHomepage #top_products .swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet {
    background: #213e74;
  }
}
@media (min-width: 1280px) {
  #newHomepage #top_products .swiper-pagination:has(.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #top_products .swiper-pagination:has(.swiper-pagination-bullet:nth-last-child(2).swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #top_products .swiper-pagination:has(.swiper-pagination-bullet:nth-last-child(3).swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #top_products .swiper-pagination-bullet-active + .swiper-pagination-bullet,
  #newHomepage #top_products .swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet + .swiper-pagination-bullet {
    background: #213e74;
  }
}
#newHomepage #top_products .product-card {
  background-color: white;
  border: 2px solid #d1d1d1;
  padding-top: 8.1875rem;
  padding-inline: clamp(1rem, 0.589rem + 1.645vw, 2.5625rem);
  padding-bottom: 1.8125rem;
  font-weight: 600;
  font-size: 2rem;
}
#newHomepage #top_products .product-card:hover .price-link-row img {
  transform: translateX(8px);
}
#newHomepage #top_products .product-card .sale-tag {
  color: white;
  background-color: #cd494a;
  padding-block: 0.6875rem;
  padding-inline: 1.75rem;
  position: absolute;
  top: 1.8125rem;
  right: 0;
  font-size: clamp(1.5rem, 1.368rem + 0.526vw, 2rem);
}
#newHomepage #top_products .product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 2.625rem;
}
#newHomepage #top_products .product-card .info-row {
  margin-bottom: 2.25rem;
}
#newHomepage #top_products .product-card .title {
  font-weight: 400;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
  color: #213e74;
}
#newHomepage #top_products .product-card .title strong {
  font-size: clamp(1.5rem, 1.368rem + 0.526vw, 2rem);
  font-weight: 600;
}
#newHomepage #top_products .product-card .type {
  font-size: clamp(1.5rem, 1.368rem + 0.526vw, 2rem);
  color: #9acd32;
}
#newHomepage #top_products .product-card .price-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
#newHomepage #top_products .product-card .price-link-row img {
  aspect-ratio: 30/60;
  width: clamp(1.25rem, 1.086rem + 0.658vw, 1.875rem);
  height: auto;
  margin-bottom: 0;
  transition: transform 200ms ease-in-out;
}
#newHomepage #top_products .product-card .old-price {
  font-size: clamp(1.25rem, -0.25rem + 1.875vw, 2rem) !important;
  font-weight: 600;
  color: #d9d9d9;
  text-decoration: line-through;
}
#newHomepage #top_products .product-card .new-price {
  font-size: clamp(1.25rem, -0.25rem + 1.875vw, 2rem) !important;
  font-weight: 600;
  color: #213e74;
}
@media (min-width: 1280px) {
  #newHomepage #top_products .text-content {
    margin-top: 11.5625rem;
  }
}
#newHomepage #top_products .text-content .content > * {
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
  margin-bottom: 1em;
}
#newHomepage #top_products .buttons-container {
  margin-top: clamp(3.75rem, 3.092rem + 2.632vw, 6.25rem);
  display: flex;
  align-items: center;
  justify-content: end;
  gap: clamp(1.25rem, 0.757rem + 1.974vw, 3.125rem);
  flex-wrap: wrap;
  justify-content: start;
}
@media (min-width: 1024px) {
  #newHomepage #top_products .buttons-container {
    justify-content: end;
  }
}
#newHomepage #data_grid {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  margin-bottom: clamp(3.75rem, 2.763rem + 3.947vw, 7.5rem);
}
#newHomepage #data_grid ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 1.086rem + 0.658vw, 1.875rem);
}
@media (min-width: 768px) {
  #newHomepage #data_grid ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  #newHomepage #data_grid ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
#newHomepage #data_grid li {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid #d1d1d1;
  padding: clamp(1rem, 0.934rem + 0.263vw, 1.25rem);
}
#newHomepage #data_grid li img {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#newHomepage #data_grid li b {
  color: #213e74;
  font-size: clamp(1.25rem, 1.053rem + 0.789vw, 2rem);
}
#newHomepage #data_grid li p {
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
}
#newHomepage #why_us {
  display: grid;
  grid-template-rows: max-content;
  margin-bottom: clamp(3.75rem, 0.938rem + 11.25vw, 14.4375rem);
}
@media (min-width: 1400px) {
  #newHomepage #why_us {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}
#newHomepage #why_us .section-content {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  padding-block: clamp(3.75rem, 2.763rem + 3.947vw, 7.5rem);
  order: -1;
}
@media (min-width: 1400px) {
  #newHomepage #why_us .section-content {
    order: 0;
  }
}
#newHomepage #why_us .wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4.6875rem;
}
@media (min-width: 900px) {
  #newHomepage #why_us .wrapper {
    flex-direction: row;
  }
}
#newHomepage #why_us .text-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 3.125rem;
  max-width: 80ch;
}
@media (min-width: 900px) {
  #newHomepage #why_us .text-column {
    max-width: none;
    width: 23.125rem;
  }
}
#newHomepage #why_us .text-block h3 {
  color: #9acd32;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.368rem + 0.526vw, 2rem);
}
#newHomepage #why_us .text-block p {
  color: white;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
}
#newHomepage #why_us .btn {
  display: block;
  margin-left: auto;
}
#newHomepage #why_us video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
#newHomepage #why_us .pattern {
  position: absolute;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  bottom: auto;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #why_us .pattern {
    display: block;
  }
}
#newHomepage #projects {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  margin-bottom: clamp(3.75rem, 2.763rem + 3.947vw, 7.5rem);
}
#newHomepage #projects .heading-button-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 3.125rem;
}
#newHomepage #projects h2 {
  margin-bottom: 0;
}
#newHomepage #projects .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  #newHomepage #projects .content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  #newHomepage #projects .content {
    grid-template-columns: repeat(4, 1fr);
  }
}
#newHomepage #projects .project-item {
  position: relative;
  aspect-ratio: 403/302;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#newHomepage #projects .project-item:first-child {
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}
#newHomepage #projects .project-item:first-child .text {
  bottom: 1rem;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 768px) {
  #newHomepage #projects .project-item:first-child .text {
    bottom: 2rem;
  }
}
#newHomepage #projects .project-item:hover img {
  transform: scale(1.2);
}
#newHomepage #projects .project-item .text {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  background-color: white;
  z-index: 2;
  padding-block: 0.625rem;
  padding-inline: 0.625rem;
  width: 100%;
}
@media (min-width: 768px) {
  #newHomepage #projects .project-item .text {
    padding-inline: clamp(0.625rem, 0.461rem + 0.658vw, 1.25rem);
    width: -moz-max-content;
    width: max-content;
    bottom: 2rem;
  }
}
#newHomepage #projects .project-item .text p,
#newHomepage #projects .project-item .text time {
  font-size: clamp(0.75rem, 0.618rem + 0.526vw, 1.25rem);
  color: #213e74;
  font-weight: 500;
}
#newHomepage #projects .project-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 400ms ease-in-out;
}
#newHomepage #reviews {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  margin-bottom: clamp(6.25rem, 5.329rem + 3.684vw, 9.75rem);
}
#newHomepage #reviews .heading {
  text-align: center;
}
#newHomepage #reviews .swiper-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline: auto;
  width: calc(100vw - 2rem);
  position: relative;
  margin-bottom: 3.125rem;
}
@media (min-width: 768px) {
  #newHomepage #reviews .swiper-container {
    margin-bottom: 4.6875rem;
    width: 100%;
  }
}
#newHomepage #reviews .product-content {
  height: -moz-max-content;
  height: max-content;
}
#newHomepage #reviews .swiper {
  width: 100%;
}
#newHomepage #reviews .swiper-wrapper {
  width: clamp(37.5rem, -0.865rem + 43.846vw, 51.75rem);
}
#newHomepage #reviews .button-prev,
#newHomepage #reviews .button-next {
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: -5.75rem;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #reviews .button-prev,
  #newHomepage #reviews .button-next {
    position: static;
  }
}
#newHomepage #reviews .button-prev img,
#newHomepage #reviews .button-next img {
  aspect-ratio: 30/60;
  width: 1.25rem;
  height: auto;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #newHomepage #reviews .button-prev img,
  #newHomepage #reviews .button-next img {
    width: 1.875rem;
  }
}
#newHomepage #reviews .button-prev {
  left: 25%;
}
#newHomepage #reviews .button-next {
  right: 25%;
}
#newHomepage #reviews .swiper-pagination {
  bottom: calc(clamp(1.875rem, 1.711rem + 0.658vw, 2.5rem) * -1);
}
#newHomepage #reviews .swiper-pagination-bullet {
  width: clamp(0.75rem, 0.125rem + 3.125vw, 1.625rem);
  height: 0.3125rem;
  display: inline-block;
  border-radius: 0;
  background: #d1d1d1;
  opacity: 1;
}
#newHomepage #reviews .swiper-pagination-bullet-active {
  background: #213e74;
}
@media (min-width: 768px) {
  #newHomepage #reviews .swiper-pagination:has(.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #reviews .swiper-pagination-bullet-active + .swiper-pagination-bullet {
    background: #213e74;
  }
}
@media (min-width: 1280px) {
  #newHomepage #reviews .swiper-pagination:has(.swiper-pagination-bullet:nth-last-child(2).swiper-pagination-bullet-active) .swiper-pagination-bullet:first-child {
    background: #213e74;
  }
  #newHomepage #reviews .swiper-pagination:has(.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active) .swiper-pagination-bullet:nth-child(2) {
    background: #213e74;
  }
  #newHomepage #reviews .swiper-pagination-bullet-active + .swiper-pagination-bullet {
    background: #213e74;
  }
  #newHomepage #reviews .swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet {
    background: #213e74;
  }
}
#newHomepage #reviews .review-card {
  border: 1px solid #d1d1d1;
  padding: clamp(1rem, 0.77rem + 0.921vw, 1.875rem);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: clamp(18.75rem, 17.072rem + 6.711vw, 25.125rem);
}
#newHomepage #reviews .review-card header {
  margin-bottom: 3.125rem;
}
#newHomepage #reviews .review-card > * {
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
  color: #213e74;
}
#newHomepage #reviews .review-card .name {
  font-size: clamp(1.5rem, 1.368rem + 0.526vw, 2rem);
  color: #9acd32;
  font-weight: 700;
}
#newHomepage #reviews .review-card .origin {
  font-weight: 600;
}
#newHomepage #reviews .review-card .content {
  font-weight: 500;
  font-style: italic;
}
#newHomepage #reviews .review-card .stars {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.625rem;
}
#newHomepage #reviews .review-card .stars p {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
  letter-spacing: -3px;
}
#newHomepage #news {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  margin-bottom: clamp(3.75rem, 2.763rem + 3.947vw, 7.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  #newHomepage #news {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
#newHomepage #news .news-card {
  display: grid;
  grid-template-columns: 1fr max-content;
  min-height: clamp(25rem, 21.349rem + 14.605vw, 38.875rem);
  overflow: hidden;
  padding-inline: clamp(1rem, 0.539rem + 1.842vw, 2.75rem);
  padding-block: clamp(1rem, 0.786rem + 0.855vw, 1.8125rem);
  overflow: hidden;
}
#newHomepage #news .news-card:hover .arrow-container img {
  transform: translateX(10px);
}
#newHomepage #news .news-card:hover .background {
  transform: scale(1.1);
}
#newHomepage #news .news-card:first-child {
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}
#newHomepage #news .news-card:first-child .text {
  max-width: 58.75rem;
  justify-self: start;
}
#newHomepage #news .news-card:first-child .text strong {
  text-wrap-style: pretty;
  font-size: clamp(1.875rem, 0.724rem + 4.605vw, 6.25rem);
}
#newHomepage #news .news-card .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 38.75rem;
  justify-self: center;
  align-self: end;
}
#newHomepage #news .news-card .text > * {
  color: white;
  font-weight: 500;
}
#newHomepage #news .news-card strong {
  font-size: clamp(1.875rem, 1.48rem + 1.579vw, 3.375rem);
  margin-bottom: 1.25rem;
}
#newHomepage #news .news-card p {
  font-size: clamp(0.9375rem, 0.855rem + 0.329vw, 1.25rem);
}
#newHomepage #news .news-card .arrow-container {
  position: relative;
  z-index: 2;
  padding-left: clamp(1rem, 0.539rem + 1.842vw, 2.75rem);
  display: flex;
  align-items: end;
}
#newHomepage #news .news-card .arrow-container img {
  aspect-ratio: 30/60;
  width: clamp(1.25rem, 1.086rem + 0.658vw, 1.875rem);
  height: auto;
  transition: transform 200ms ease-in-out;
}
#newHomepage #news .news-card .background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 400ms ease-in-out;
}
#newHomepage #news .news-card .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#newHomepage #cta {
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.711rem + 6.842vw, 7.5rem);
  margin-bottom: clamp(3.75rem, 2.763rem + 3.947vw, 7.5rem);
  position: relative;
}
#newHomepage #cta h2 {
  text-align: center;
}
#newHomepage #cta #contact_form {
  background: #9acd32;
  padding: clamp(1rem, 0.77rem + 0.921vw, 1.875rem);
  display: flex;
  flex-direction: column;
  gap: 1.84375rem;
  margin: 0 auto;
  width: 100%;
  color: #213e74;
}
#newHomepage #cta #contact_form > * {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
}
#newHomepage #cta #contact_form .text-inputs-container {
  display: flex;
  flex-direction: column;
  gap: 1.84375rem;
}
@media (min-width: 1024px) {
  #newHomepage #cta #contact_form .text-inputs-container {
    width: 50%;
  }
}
#newHomepage #cta #contact_form .inputs-container {
  display: flex;
  gap: 1.84375rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #newHomepage #cta #contact_form .inputs-container {
    flex-direction: row;
  }
  #newHomepage #cta #contact_form .inputs-container textarea {
    width: 50%;
  }
}
#newHomepage #cta #contact_form input,
#newHomepage #cta #contact_form textarea {
  padding-block: 0.5625rem;
  padding-inline: 0.8125rem;
  border: 2px solid #213e74;
  width: 100%;
  resize: none;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem);
  line-height: 1.2;
  font-weight: 500;
  color: inherit;
}
#newHomepage #cta #contact_form input::-moz-placeholder, #newHomepage #cta #contact_form textarea::-moz-placeholder {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
#newHomepage #cta #contact_form input::placeholder,
#newHomepage #cta #contact_form textarea::placeholder {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
#newHomepage #cta #contact_form textarea {
  min-height: 8.6875rem;
}
#newHomepage #cta #contact_form .checkbox-label {
  display: flex;
  gap: 0.8125rem;
  color: inherit;
  font-weight: inherit;
}
#newHomepage #cta #contact_form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  aspect-ratio: 1;
  padding: 0;
  position: relative;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #213e74;
  background-color: transparent;
}
#newHomepage #cta #contact_form input[type=checkbox]:hover {
  background-color: rgba(255, 255, 255, 0.3137254902);
}
#newHomepage #cta #contact_form input[type=checkbox]:checked {
  background-color: #213e74;
  border-color: #213e74;
}
#newHomepage #cta #contact_form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
#newHomepage #cta #contact_form button[type=submit] {
  background: #213e74;
  color: white;
  display: block;
  margin-left: auto;
  width: -moz-max-content;
  width: max-content;
  min-width: 13.125rem;
  font-size: clamp(1.25rem, 1.184rem + 0.263vw, 1.5rem) !important;
}
#newHomepage #cta .pattern-l {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #cta .pattern-l {
    display: block;
  }
}
#newHomepage #cta .pattern-r {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
  display: none;
}
@media (min-width: 768px) {
  #newHomepage #cta .pattern-r {
    display: block;
  }
}

.productList {
  width: 100%;
  border-top: 1px solid #cccccc;
  padding: 2.5em 2.5em 8.75em 2.5em;
}
.productList .productList_header {
  width: 100%;
  flex-wrap: wrap;
  gap: 2.5em;
}
.productList .productList_header .text {
  max-width: 890px;
}
.productList .productList_filter {
  width: 100%;
  border-top: 1px solid #203F72;
  gap: 5em;
  padding: 1.25em 0 2.5em 0;
  margin: 2.5em 0 0 0;
}
.productList .productList_filter .filter_item {
  max-width: 600px;
  flex-wrap: wrap;
  gap: 1.25em;
}
.productList .productList_filter .filter_item .title {
  color: #9ACD32;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
.productList .productList_filter .filter_item .checkbox {
  flex-wrap: nowrap;
}
.productList .productList_filter .filter_item .checkbox input {
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.productList .productList_filter .filter_item .checkbox .custom_checkbox {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #203F72;
}
.productList .productList_filter .filter_item .checkbox .custom_checkbox::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 10px;
  background-image: url("../svg/checkbox_inside.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}
.productList .productList_filter .filter_item .checkbox input:checked ~ .custom_checkbox::after {
  opacity: 1;
}
.productList .productList_filter .filter_item .checkbox label {
  color: #203F72;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.2em;
  cursor: pointer;
  margin-left: 0.4em;
}
.productList .productList_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em;
}
.productList .productList_grid .grid_item {
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 1.25em;
  background-color: #FFFFFF;
  padding: 1.25em;
}
.productList .productList_grid .grid_item .image {
  width: 100%;
  margin-bottom: 0.625em;
}
.productList .productList_grid .grid_item .image img {
  width: 100%;
}
.productList .productList_grid .grid_item .tag {
  top: 2em;
  min-width: 4.375em;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: lowercase;
  text-align: center;
  padding: 1em 5px;
}
.productList .productList_grid .grid_item .title {
  color: #203F72;
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  margin-bottom: auto;
}
.productList .productList_grid .grid_item .price_wrapper {
  width: 100%;
  margin-top: 2.5em;
}
.productList .productList_grid .grid_item .price_wrapper .column .price {
  color: #203F72;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.productList .productList_grid .grid_item .price_wrapper .column .priceNoTax {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.productList .productList_grid .grid_item .price_wrapper .column.inactive {
  margin-right: 1.25em;
}
.productList .productList_grid .grid_item .price_wrapper .column.inactive .price {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-decoration: line-through;
}
.productList .productList_grid .grid_item .price_wrapper .column.inactive .priceNoTax {
  color: #BDBDBD;
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-decoration: line-through;
}
.productList .productList_grid .grid_item .arrow {
  bottom: 1.25em;
  right: 1.25em;
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1400px) {
  .productList .productList_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .productList .productList_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .productList .productList_grid .grid_item .price_wrapper .column .price {
    font-size: 2em;
  }
  .productList .productList_grid .grid_item .price_wrapper .column .priceNoTax {
    font-size: 1.25em;
  }
  .productList .productList_grid .grid_item .price_wrapper .column.inactive .price {
    font-size: 1.25em;
  }
}
@media (max-width: 600px) {
  .productList {
    padding: 2.5em 10px 7.5em 10px;
  }
  .productList .productList_grid {
    grid-gap: 20px;
  }
  .productList .productList_grid .grid_item .title {
    font-size: 1.5em;
  }
  .productList .productList_grid .grid_item .price_wrapper {
    margin-top: 20px;
  }
  .productList .productList_grid .grid_item .price_wrapper .column {
    padding: 0 20px 0 0;
  }
  .productList .productList_grid .grid_item .price_wrapper .column .price {
    color: #203F72;
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.25em;
  }
  .productList .productList_grid .grid_item .price_wrapper .column .priceNoTax {
    color: #BDBDBD;
    font-size: 1.25em;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.25em;
  }
  .productList .productList_grid .grid_item .price_wrapper .column.inactive {
    display: none;
  }
}
@media (max-width: 400px) {
  .productList .productList_grid {
    grid-gap: 10px;
  }
}

.product {
  width: 100%;
  border-top: 1px solid #cccccc;
  padding: 0 2.5em 8.75em 2.5em;
}
.product .product_header {
  width: 100%;
  padding: 1em 0;
}
.product .product_header .linkTree a {
  display: inline-block;
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
@media (min-width: 1200px) {
  .product .product_header .linkTree a:hover {
    text-decoration: underline;
  }
}
.product .product_header .linkTree span {
  display: inline-block;
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
.product .product_header .back_btn::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2em;
  background-image: url("../svg/arrow_blue_left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product .product_header .back_btn span {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  text-transform: uppercase;
  margin-left: 10px;
}
.product .product_wrapper {
  width: 100%;
  gap: 2.5em;
  border-bottom: 1px solid #203F72;
  padding: 0 0 2.5em 0;
  margin: 0 0 2.5em 0;
}
.product .product_wrapper .left_column {
  width: calc(50% - 1.25em);
}
.product .product_wrapper .left_column .image {
  width: 100%;
}
.product .product_wrapper .left_column .image img {
  width: 100%;
}
.product .product_wrapper .left_column .images_wiper {
  width: 100%;
  padding: 0 33% 0 0;
  overflow: hidden;
}
.product .product_wrapper .left_column .images_wiper .swiper-slide img {
  width: 100%;
}
.product .product_wrapper .left_column .images_wiper .images_swiper_nav {
  width: 33%;
  height: 100%;
  background-color: #FFFFFF;
  gap: 10px;
  z-index: 10;
}
.product .product_wrapper .left_column .images_wiper .images_swiper_nav .images_swiper_nav_next {
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.product .product_wrapper .left_column .images_wiper .images_swiper_nav .images_swiper_nav_next.swiper-button-disabled {
  opacity: 0.5;
}
.product .product_wrapper .left_column .images_wiper .images_swiper_nav .images_swiper_nav_prev {
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s ease;
}
.product .product_wrapper .left_column .images_wiper .images_swiper_nav .images_swiper_nav_prev.swiper-button-disabled {
  opacity: 0.5;
}
.product .product_wrapper .right_column {
  width: calc(50% - 1.25em);
}
.product .product_wrapper .right_column .title {
  font-size: 2.5em;
}
.product .product_wrapper .right_column .subtitle {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
.product .product_wrapper .right_column .richText {
  margin: 2.5em 0;
}
.product .product_wrapper .right_column .table tr td {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 5px 0 5px 0;
}
.product .product_wrapper .right_column .table tr td:first-child {
  padding: 5px 1em 5px 0;
}
.product .product_wrapper .right_column .line {
  width: 100%;
  height: 1px;
  background-color: #D8D8D8;
  margin: 2.5em 0;
}
.product .product_wrapper .right_column .mountPrice {
  width: 100%;
  gap: 0.625em;
  margin-bottom: 2.5em;
}
.product .product_wrapper .right_column .mountPrice .checkbox #checkbox_mountPrice {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.product .product_wrapper .right_column .mountPrice .checkbox .custom_checkbox {
  height: 20px;
  width: 20px;
  border: 2px solid #203F72;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .product_wrapper .right_column .mountPrice .checkbox .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #203F72;
  transform: scale(0);
  transition: all 0.3s ease;
}
.product .product_wrapper .right_column .mountPrice .checkbox #checkbox_mountPrice:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.product .product_wrapper .right_column .mountPrice .checkbox label {
  width: calc(100% - 20px);
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}
.product .product_wrapper .right_column .mountPrice .text {
  width: 50%;
  color: #203F72;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 14px;
}
.product .product_wrapper .right_column .price_wrapper {
  width: 100%;
  flex-wrap: wrap;
  gap: 2.5em;
}
.product .product_wrapper .right_column .price_wrapper .column .oldPrice {
  color: #BDBDBD;
  font-size: 2.75em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  text-decoration: line-through;
}
.product .product_wrapper .right_column .price_wrapper .column .oldPrice_noTax {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  text-decoration: line-through;
}
.product .product_wrapper .right_column .price_wrapper .column .price {
  color: #203F72;
  font-size: 4em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
}
.product .product_wrapper .right_column .price_wrapper .column .price_noTax {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
}
.product .product_wrapper .right_column .price_wrapper .amount {
  width: 13.75em;
  border: 1px solid #D8D8D8;
  gap: 1.25em;
  padding: 1.6em;
}
.product .product_wrapper .right_column .price_wrapper .amount .minus {
  width: 1.75em;
  height: 1.75em;
  background-image: url("../svg/minus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product .product_wrapper .right_column .price_wrapper .amount input {
  width: 2em;
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  text-align: center;
}
.product .product_wrapper .right_column .price_wrapper .amount .plus {
  width: 1.75em;
  height: 1.75em;
  background-image: url("../svg/plus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product .product_wrapper .right_column .price_wrapper .btn {
  margin: 0 0 0 auto;
}
@media (max-width: 900px) {
  .product .product_wrapper {
    flex-direction: column;
  }
  .product .product_wrapper .left_column {
    width: 100%;
  }
  .product .product_wrapper .right_column {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .product .product_wrapper .right_column .mountPrice {
    flex-wrap: wrap;
  }
  .product .product_wrapper .right_column .mountPrice .text {
    width: 100%;
  }
  .product .product_wrapper .right_column .price_wrapper {
    gap: 1.25em;
  }
  .product .product_wrapper .right_column .price_wrapper .column .oldPrice {
    font-size: 2.5em;
  }
  .product .product_wrapper .right_column .price_wrapper .column .oldPrice_noTax {
    font-size: 1.25em;
  }
  .product .product_wrapper .right_column .price_wrapper .column .price {
    font-size: 3em;
  }
  .product .product_wrapper .right_column .price_wrapper .column .price_noTax {
    font-size: 1.25em;
  }
  .product .product_wrapper .right_column .price_wrapper .amount {
    width: 7.5em;
    gap: 10px;
    padding: 1em;
  }
  .product .product_wrapper .right_column .price_wrapper .amount .minus {
    width: 1.5em;
    height: 1.5em;
  }
  .product .product_wrapper .right_column .price_wrapper .amount input {
    width: 2em;
    color: #203F72;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4em;
    text-align: center;
  }
  .product .product_wrapper .right_column .price_wrapper .amount .plus {
    width: 1.5em;
    height: 1.5em;
  }
  .product .product_wrapper .right_column .price_wrapper .btn {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .product {
    padding: 0 10px 5em 10px;
  }
}

.product_popup {
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  max-height: 100vh;
  background-color: #9ACD32;
  padding: 2.5em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 300;
  overflow: scroll;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.product_popup.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.product_popup .close {
  top: 0.5em;
  right: 0.5em;
  width: 1.5em;
  height: 1.5em;
  background-image: url("../svg/close_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.product_popup .product_form {
  width: 100%;
  gap: 1.25em;
}
.product_popup .product_form .input {
  width: 100%;
  height: 3.75em;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
  resize: none;
}
.product_popup .product_form .input::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.product_popup .product_form .input::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.product_popup .product_form textarea {
  width: 100%;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
  resize: none;
}
.product_popup .product_form textarea::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.product_popup .product_form textarea::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.product_popup .product_form .btn {
  width: 100%;
}
@media (max-width: 600px) {
  .product_popup {
    padding: 40px 10px 60px 10px;
  }
}

.productSelector {
  width: 100%;
  background-image: url("../svg/categories_pattern.svg");
  background-size: calc(69% - 5em);
  background-position: top right 2.5em;
  background-repeat: no-repeat;
  border-top: 1px solid #cccccc;
  padding: 3.75em 2.5em 8.75em 2.5em;
}
.productSelector h1 {
  margin-bottom: 0.25em;
}
.productSelector .index_category_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 3.75em;
  padding: 0 2.5em;
  margin-top: 2.5em;
}
.productSelector .index_category_grid .category_grid_item {
  width: 100%;
}
.productSelector .index_category_grid .category_grid_item .image {
  width: 100%;
}
.productSelector .index_category_grid .category_grid_item .image img {
  width: 100%;
}
.productSelector .index_category_grid .category_grid_item .text {
  margin: 1.25em 0 2.5em 0;
}
.productSelector .index_category_grid .category_grid_item .btn {
  align-self: flex-end;
}
@media (max-width: 950px) {
  .productSelector .index_category_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
}
@media (max-width: 600px) {
  .productSelector {
    background-image: none;
    padding: 2.5em 10px 0 10px;
  }
  .productSelector .index_category_grid {
    grid-template-columns: 100%;
  }
  .productSelector .index_category_grid .category_grid_item .text {
    display: none;
  }
  .productSelector .index_category_grid .category_grid_item .btn {
    width: 100%;
    margin-top: 1.25em;
  }
}

.referencesPage {
  width: 100%;
  border-top: 1px solid #cccccc;
  padding: 3.75em 2.5em 8.75em 2.5em;
}
@media (max-width: 600px) {
  .referencesPage {
    padding: 2.5em 10px 5em 10px;
  }
}
.referencesPage .referencesPage_filter {
  top: 5.5em;
  right: 2.5em;
  gap: 2.5em;
  flex-wrap: wrap;
}
.referencesPage .referencesPage_filter .filter_item {
  gap: 0.625em;
  border-radius: 1.875em;
  border: 2px solid #203F72;
  padding: 1em 1.5em 1em 1em;
}
.referencesPage .referencesPage_filter .filter_item .radio {
  width: 1.75em;
  height: 1.75em;
  border: 3px solid #203F72;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.referencesPage .referencesPage_filter .filter_item .radio:after {
  content: "";
  position: absolute;
  width: 0.875em;
  height: 0.875em;
  background-color: #9ACD32;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}
.referencesPage .referencesPage_filter .filter_item .title {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.referencesPage .referencesPage_filter .filter_item:hover {
  border: 2px solid #9ACD32;
}
.referencesPage .referencesPage_filter .filter_item:hover .radio {
  border: 3px solid #9ACD32;
}
.referencesPage .referencesPage_filter .filter_item:hover .radio:after {
  transform: scale(1);
  opacity: 1;
}
.referencesPage .referencesPage_filter .filter_item:hover .title {
  color: #9ACD32;
}
.referencesPage .referencesPage_filter .filter_item.active {
  border: 2px solid #9ACD32;
}
.referencesPage .referencesPage_filter .filter_item.active .radio {
  border: 3px solid #9ACD32;
}
.referencesPage .referencesPage_filter .filter_item.active .radio:after {
  transform: scale(1);
  opacity: 1;
}
.referencesPage .referencesPage_filter .filter_item.active .title {
  color: #9ACD32;
}
.referencesPage .referencesPage_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em;
  margin-top: 2.5em;
}
.referencesPage .referencesPage_grid .references_grid_item {
  width: 100%;
  border-radius: 1.25em;
  overflow: hidden;
}
.referencesPage .referencesPage_grid .references_grid_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.referencesPage .referencesPage_grid .references_grid_item .title {
  bottom: 1.25em;
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.4em;
  background-color: #FFFFFF;
  padding: 0.5em 1em;
  z-index: 5;
}
.referencesPage .referencesPage_grid .references_grid_item:hover img {
  transform: scale(1.1);
}
.referencesPage .referencesPage_grid .references_grid_item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
.referencesPage .referencesPage_grid .references_grid_item:nth-child(6) {
  grid-column: 1/3;
  grid-row: 3/5;
}
@media (max-width: 1200px) {
  .referencesPage .referencesPage_grid .references_grid_item:nth-child(6) {
    grid-column: 2/4;
  }
}
@media (max-width: 850px) {
  .referencesPage .referencesPage_grid .references_grid_item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}
.referencesPage .referencesPage_grid .references_grid_item:nth-child(7) {
  grid-column: 3/5;
  grid-row: 3/5;
}
@media (max-width: 1200px) {
  .referencesPage .referencesPage_grid .references_grid_item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }
}
.referencesPage .referencesPage_grid .references_grid_item:nth-child(10) {
  grid-column: 3/5;
  grid-row: 5/7;
}
@media (max-width: 1200px) {
  .referencesPage .referencesPage_grid .references_grid_item:nth-child(10) {
    grid-column: 2/4;
  }
}
@media (max-width: 850px) {
  .referencesPage .referencesPage_grid .references_grid_item:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }
}
.referencesPage .referencesPage_grid .references_grid_item:nth-child(10) {
  grid-column: 1/3;
  grid-row: 8/10;
}
@media (max-width: 1200px) {
  .referencesPage .referencesPage_grid .references_grid_item:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 1500px) {
  .referencesPage .referencesPage_grid {
    grid-gap: 20px;
  }
}
@media (max-width: 1200px) {
  .referencesPage .referencesPage_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1000px) {
  .referencesPage .referencesPage_filter {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 2.5em;
  }
}
@media (max-width: 850px) {
  .referencesPage .referencesPage_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .referencesPage {
    padding: 5em 10px 2.5em 10px;
  }
  .referencesPage .referencesPage_filter {
    gap: 20px;
  }
  .referencesPage .referencesPage_grid {
    gap: 10px;
  }
  .referencesPage .referencesPage_grid .references_grid_item .title {
    bottom: 10px;
    width: auto;
    font-size: 1em;
  }
}
@media (max-width: 350px) {
  .referencesPage .referencesPage_grid {
    grid-template-columns: 100%;
  }
  .referencesPage .referencesPage_grid .references_grid_item .title {
    font-size: 1.25em;
  }
}

.contact {
  width: 100%;
  border-top: 1px solid #cccccc;
  background-image: url("../svg/contact_pattern.svg");
  background-size: calc(100% - 5em);
  background-position: top center;
  background-repeat: no-repeat;
  padding: 3.75em 2.5em 8.75em 2.5em;
}
.contact .contact_wrapper {
  width: 100%;
  gap: 2.5em;
  margin-bottom: 5em;
}
.contact .contact_wrapper .column {
  width: calc(35% - 2.5em);
}
.contact .contact_wrapper .column h1 {
  margin-bottom: 0.5em;
}
.contact .contact_wrapper .column .contact_link {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
}
.contact .contact_wrapper .column .contact_social {
  gap: 2.5em;
  margin-top: 2.5em;
}
.contact .contact_wrapper .column .contact_social a {
  width: 3.5em;
  height: 3.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.contact .contact_wrapper .column .contact_social a.instagram {
  background-image: url("../svg/instagram.svg");
}
.contact .contact_wrapper .column .contact_social a.facebook {
  background-image: url("../svg/facebook.svg");
}
.contact .contact_wrapper .column .contact_social a.youtube {
  background-image: url("../svg/youtube.svg");
}
.contact .contact_wrapper .map {
  width: 65%;
}
.contact .contact_wrapper .map img {
  width: 100%;
}
@media (max-width: 750px) {
  .contact .contact_wrapper {
    flex-direction: column;
  }
  .contact .contact_wrapper .column {
    width: 100%;
  }
  .contact .contact_wrapper .map {
    width: 100%;
  }
}
.contact .contact_form {
  width: 100%;
  background-color: #9ACD32;
  gap: 2.5em;
  border-radius: 1.25em;
  padding: 2em 2.5em;
}
.contact .contact_form .column {
  width: 30.625em;
}
.contact .contact_form .column h2 {
  font-size: 5em;
}
@media (max-width: 1200px) {
  .contact .contact_form .column h2 {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  .contact .contact_form .column h2 {
    font-size: 3em;
  }
}
.contact .contact_form .column .small {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  margin-top: 2em;
}
.contact .contact_form .column .phone {
  color: #203F72;
  font-size: 3.375em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
@media (max-width: 1200px) {
  .contact .contact_form .column .phone {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  .contact .contact_form .column .phone {
    font-size: 2.75em;
  }
}
.contact .contact_form .form {
  width: calc(100% - 33.125em);
  gap: 1.25em;
}
.contact .contact_form .form .form_column {
  width: calc(50% - 0.625em);
  gap: 0.625em;
}
.contact .contact_form .form .form_column .input {
  width: 100%;
  height: 3.75em;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
  resize: none;
}
.contact .contact_form .form .form_column .input::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.contact .contact_form .form .form_column .input::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.contact .contact_form .form .form_column textarea {
  width: 100%;
  height: 12.5em;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
  resize: none;
}
.contact .contact_form .form .form_column textarea::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.contact .contact_form .form .form_column textarea::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.contact .contact_form .form .form_column .btn {
  align-self: flex-end;
}
@media (max-width: 1100px) {
  .contact .contact_form {
    flex-direction: column;
  }
  .contact .contact_form .column {
    width: 100%;
  }
  .contact .contact_form .form {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact .contact_form {
    padding: 2em 10px;
  }
  .contact .contact_form .form {
    flex-direction: column;
    gap: 0.625em;
  }
  .contact .contact_form .form .form_column {
    width: 100%;
  }
  .contact .contact_form .form .form_column .btn {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact {
    background-image: none;
    padding: 2.5em 10px 5em 10px;
  }
}

.faq {
  width: 100%;
  border-top: 1px solid #cccccc;
  padding: 3.75em 2.5em 8.75em 2.5em;
}
.faq h1 {
  margin-bottom: 0.5em;
}
@media (max-width: 600px) {
  .faq {
    padding: 2.5em 10px 5em 10px;
  }
}
.faq .faqMatrix {
  width: 100%;
  gap: 3.75em;
}
.faq .faqMatrix .faq_item {
  width: 100%;
}
.faq .faqMatrix .faq_item .question {
  width: 100%;
  gap: 3.75em;
}
.faq .faqMatrix .faq_item .question .question_title {
  width: calc(100% - 2.25em);
  color: #9ACD32;
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25em;
}
.faq .faqMatrix .faq_item .question .arrow {
  width: 1.875em;
  height: 3.75em;
  background-image: url("../svg/arrow_green_down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.faq .faqMatrix .faq_item .question .arrow.rotate {
  transform: rotateX(180deg);
}
.faq .faqMatrix .faq_item .answer {
  width: 100%;
  display: none;
  padding: 3.75em 0 0 0;
  overflow: hidden;
}
.faq .faqMatrix .faq_item .answer .richText {
  width: 100%;
}
@media (max-width: 1400px) {
  .faq .faqMatrix .faq_item .question {
    gap: 20px;
  }
  .faq .faqMatrix .faq_item .question .question_title {
    width: calc(100% - 0.75em - 20px);
  }
}
@media (max-width: 1000px) {
  .faq .faqMatrix .faq_item .question .question_title {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  .faq .faqMatrix .faq_item .question {
    gap: 10px;
  }
  .faq .faqMatrix .faq_item .question .question_title {
    width: calc(100% - 0.75em - 10px);
  }
}

.universalPage {
  width: 100%;
  border-top: 1px solid #cccccc;
  padding: 3.75em 2.5em 8.75em 2.5em;
}
.universalPage h1 {
  margin-bottom: 0.25em;
}
@media (max-width: 600px) {
  .universalPage {
    padding: 2.5em 10px 5em 10px;
  }
}

.universalMatrix {
  width: 100%;
}
.universalMatrix .richText p, .universalMatrix .richText ul, .universalMatrix .richText ol {
  margin-bottom: 1em;
}
.universalMatrix .richText p:last-child, .universalMatrix .richText ul:last-child, .universalMatrix .richText ol:last-child {
  margin-bottom: 0;
}
.universalMatrix .universalMatrix_elem {
  width: 100%;
  margin-bottom: 5em;
}
.universalMatrix .universalMatrix_elem:last-child {
  margin-bottom: 0;
}
.universalMatrix .universalMatrix_elem.header {
  margin-bottom: 1.25em;
}
.universalMatrix .universalMatrix_elem.textImage {
  gap: 2.5em;
}
.universalMatrix .universalMatrix_elem.textImage .richText {
  width: calc(50% - 1.25em);
}
.universalMatrix .universalMatrix_elem.textImage .image {
  width: calc(50% - 1.25em);
  border-radius: 1.25em;
}
.universalMatrix .universalMatrix_elem.textImage.left {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  .universalMatrix .universalMatrix_elem.textImage {
    flex-direction: column !important;
  }
  .universalMatrix .universalMatrix_elem.textImage .richText {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.textImage .image {
    width: 100%;
  }
}
.universalMatrix .universalMatrix_elem.tableImage {
  gap: 2.5em;
}
.universalMatrix .universalMatrix_elem.tableImage table {
  width: calc(50% - 1.25em);
}
.universalMatrix .universalMatrix_elem.tableImage table tr td {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  background-color: #F1F1F1;
  padding: 0.6em;
}
.universalMatrix .universalMatrix_elem.tableImage table tr:nth-child(even) td {
  background-color: #F8F8F9;
}
.universalMatrix .universalMatrix_elem.tableImage .image {
  width: calc(50% - 1.25em);
  border-radius: 1.25em;
}
.universalMatrix .universalMatrix_elem.tableImage.left {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  .universalMatrix .universalMatrix_elem.tableImage {
    flex-direction: column !important;
  }
  .universalMatrix .universalMatrix_elem.tableImage table {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.tableImage .image {
    width: 100%;
  }
}
.universalMatrix .universalMatrix_elem.image img {
  width: 100%;
  border-radius: 1.25em;
}
.universalMatrix .universalMatrix_elem.table table {
  width: 100%;
}
.universalMatrix .universalMatrix_elem.table table tr td {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  background-color: #F1F1F1;
  padding: 0.6em;
}
@media (min-width: 1800px) {
  .universalMatrix .universalMatrix_elem.table table tr td {
    padding: 0.6em 0.6em 0.6em 6em;
  }
}
.universalMatrix .universalMatrix_elem.table table tr:nth-child(even) td {
  background-color: #F8F8F9;
}
.universalMatrix .universalMatrix_elem.table.column_4 {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.universalMatrix .universalMatrix_elem.table.column_4::-webkit-scrollbar {
  display: none;
}
.universalMatrix .universalMatrix_elem.table.column_4 table {
  min-width: 600px;
  align-self: flex-start;
}
.universalMatrix .universalMatrix_elem.video {
  max-width: 980px;
}
.universalMatrix .universalMatrix_elem.video video {
  width: 100%;
}
.universalMatrix .universalMatrix_elem.video .layer {
  width: 100%;
  height: 100%;
}
.universalMatrix .universalMatrix_elem.video .layer .arrow {
  width: 3.75em;
  height: 3.75em;
  background-image: url("../svg/play.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.universalMatrix .universalMatrix_elem.products .products_swiper {
  width: 100vw;
  overflow: hidden;
  padding: 0 2.5em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item {
  border: 1px solid #CCCCCC;
  border-radius: 1.25em;
  background-color: #FFFFFF;
  padding: 1.25em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .image {
  width: 100%;
  margin-bottom: 0.625em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .image img {
  width: 100%;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .tag {
  top: 2em;
  min-width: 4.375em;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: lowercase;
  text-align: center;
  padding: 1em 5px;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .title {
  color: #203F72;
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2em;
  margin-bottom: auto;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .price_wrapper {
  width: 100%;
  margin-top: 2.5em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .price_wrapper .column .price {
  color: #203F72;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .price_wrapper .column .priceNoTax {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .price_wrapper .column.inactive {
  margin-right: 1.25em;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .price_wrapper .column.inactive .price {
  color: #BDBDBD;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-decoration: line-through;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .price_wrapper .column.inactive .priceNoTax {
  color: #BDBDBD;
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-decoration: line-through;
}
.universalMatrix .universalMatrix_elem.products .products_swiper .products_item .arrow {
  bottom: 1.25em;
  right: 1.25em;
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_blue_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .universalMatrix .universalMatrix_elem.products .products_swiper {
    padding: 0 10px;
  }
}
.universalMatrix .universalMatrix_elem.downloads h2 {
  margin-bottom: 0.5em;
}
.universalMatrix .universalMatrix_elem.downloads .downloads_item {
  width: 100%;
  max-width: 1060px;
  gap: 2.5em;
}
.universalMatrix .universalMatrix_elem.downloads .downloads_item .icon {
  width: 2.875em;
  height: 3em;
  background-image: url("../svg/pdf.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.universalMatrix .universalMatrix_elem.downloads .downloads_item .title {
  width: calc(100% - 12em);
  color: #203F72;
  font-size: 1.75em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
}
.universalMatrix .universalMatrix_elem.downloads .downloads_item .btn {
  width: 13.125em;
  height: 3.125em;
  border: 4px solid #203F72;
  padding: 0.5em 1em;
}
.universalMatrix .universalMatrix_elem.downloads .downloads_item .btn span {
  color: #203F72;
  font-size: 1.75em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .universalMatrix .universalMatrix_elem.downloads .downloads_item {
    gap: 10px;
  }
  .universalMatrix .universalMatrix_elem.downloads .downloads_item .title {
    width: calc(100% - 9.2em - 20px);
    font-size: 1.5em;
  }
}
@media (max-width: 400px) {
  .universalMatrix .universalMatrix_elem.downloads .downloads_item .title {
    width: calc(100% - 2em - 20px);
  }
  .universalMatrix .universalMatrix_elem.downloads .downloads_item .btn {
    display: none;
  }
}
.universalMatrix .universalMatrix_elem.form {
  background-color: #9ACD32;
  gap: 2.5em;
  border-radius: 1.25em;
  padding: 2em 2.5em;
}
.universalMatrix .universalMatrix_elem.form .column {
  width: 30.625em;
}
.universalMatrix .universalMatrix_elem.form .column h2 {
  font-size: 5em;
}
@media (max-width: 1200px) {
  .universalMatrix .universalMatrix_elem.form .column h2 {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  .universalMatrix .universalMatrix_elem.form .column h2 {
    font-size: 3em;
  }
}
.universalMatrix .universalMatrix_elem.form .column .small {
  color: #203F72;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  margin-top: 2em;
}
.universalMatrix .universalMatrix_elem.form .column .phone {
  color: #203F72;
  font-size: 3.375em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
}
@media (max-width: 1200px) {
  .universalMatrix .universalMatrix_elem.form .column .phone {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  .universalMatrix .universalMatrix_elem.form .column .phone {
    font-size: 2.75em;
  }
}
.universalMatrix .universalMatrix_elem.form .form {
  width: calc(100% - 33.125em);
  gap: 1.25em;
}
.universalMatrix .universalMatrix_elem.form .form .form_column {
  width: calc(50% - 0.625em);
  gap: 0.625em;
}
.universalMatrix .universalMatrix_elem.form .form .form_column .input {
  width: 100%;
  height: 3.75em;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
  resize: none;
}
.universalMatrix .universalMatrix_elem.form .form .form_column .input::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.universalMatrix .universalMatrix_elem.form .form .form_column .input::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.universalMatrix .universalMatrix_elem.form .form .form_column textarea {
  width: 100%;
  height: 12.5em;
  border: 2px solid #203F72;
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  padding: 10px 1em;
  resize: none;
}
.universalMatrix .universalMatrix_elem.form .form .form_column textarea::-moz-placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.universalMatrix .universalMatrix_elem.form .form .form_column textarea::placeholder {
  color: #203F72;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4em;
  opacity: 0.5;
}
.universalMatrix .universalMatrix_elem.form .form .form_column .btn {
  align-self: flex-end;
}
@media (max-width: 1100px) {
  .universalMatrix .universalMatrix_elem.form {
    flex-direction: column;
  }
  .universalMatrix .universalMatrix_elem.form .column {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.form .form {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .universalMatrix .universalMatrix_elem.form {
    padding: 2em 10px;
  }
  .universalMatrix .universalMatrix_elem.form .form {
    flex-direction: column;
    gap: 0.625em;
  }
  .universalMatrix .universalMatrix_elem.form .form .form_column {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.form .form .form_column .btn {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */