/* #region VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=SUSE:wght@100..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: "SUSE", 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;
  background-color: #f1f2f3;
  background-image: url("../svg/pool_pattern.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
  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 {
    position: fixed;
    overflow: hidden;
  }
}

h1.title_h1 {
  color: #123659;
  font-size: 5em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h1.title_h1 {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  h1.title_h1 {
    font-size: 3em;
  }
}
h1.subpage_h1 {
  color: #123659;
  font-size: 3.75em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h1.subpage_h1 {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  h1.subpage_h1 {
    font-size: 2.75em;
  }
}

h2.title_h2 {
  color: #123659;
  font-size: 5em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h2.title_h2 {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  h2.title_h2 {
    font-size: 3em;
  }
}
h2.subpage_h2 {
  color: #123659;
  font-size: 3.75em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h2.subpage_h2 {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  h2.subpage_h2 {
    font-size: 2.75em;
  }
}
h2 strong {
  font-weight: 500;
}

h3.title_h3 {
  color: #123659;
  font-size: 2.375em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h3.title_h3 {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  h3.title_h3 {
    font-size: 1.75em;
  }
}

p {
  color: #123659;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
}

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: fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.3em 1.4em;
  min-width: 125px;
}
.btn span {
  text-align: center;
  text-transform: uppercase;
  z-index: 5;
}
.btn.oval {
  min-width: 200px;
  height: 5.9em;
  border-radius: 3em;
  padding: 1.25em;
}
.btn.oval span {
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  text-align: center;
}
.btn.oval.small {
  height: 4.375em;
}
.btn.blue {
  background-color: #005EB7;
}
.btn.blue span {
  color: #ffffff;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

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

.gdpr #gdprInput {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.gdpr .custom_checkbox {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #005EB7;
  border-radius: 4px;
  background-color: #FFFFFF;
}
.gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #005EB7;
  transform: scale(0);
  transition: all 0.3s ease;
}
.gdpr #gdprInput:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.gdpr label {
  width: calc(100% - 20px) !important;
  color: #005EB7 !important;
  font-size: 1em !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.2em !important;
  padding: 0 0 0 10px !important;
}
.gdpr label a {
  color: #005EB7;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  text-decoration: underline;
}

.swal2-confirm {
  background-color: #005EB7 !important;
}

#email2 {
  display: none;
}

/* #endregion */
header {
  width: 100%;
  padding: 1.25em 5em;
  z-index: 150;
}
header.blue {
  background-color: rgba(0, 94, 183, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
header .header_logo {
  width: 7.5em;
}
header .header_logo img {
  width: 100%;
}
header .header_nav {
  gap: 1.25em;
  margin: 0 0 0 auto;
}
header .header_nav .nav_item {
  color: #FFFFFF;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
header .header_nav .nav_item.arrow {
  cursor: pointer;
}
header .header_nav .nav_item.arrow::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  width: 20px;
  height: 10px;
  background-image: url("../svg/arrow_down_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
header .header_nav .nav_item.arrow.open::after {
  transform: rotateX(180deg);
}
header .hamburger {
  width: 30px;
  height: 25px;
  margin: 0 0 0 auto;
}
@media (min-width: 751px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
header .hamburger span:nth-child(1) {
  top: 0;
  transition: top 0.3s ease 0.3s, transform 0.3s ease;
}
header .hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s ease;
}
header .hamburger span:nth-child(3) {
  top: 16px;
  transition: top 0.3s ease 0.3s, transform 0.3s ease;
}
header .hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
header .hamburger.open span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}
header .hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
@media (max-width: 1600px) {
  header {
    padding: 1.25em 2.5em;
  }
}
@media (max-width: 750px) {
  header .header_logo {
    width: 80px;
  }
  header .header_nav {
    display: none;
  }
}
@media (max-width: 600px) {
  header {
    padding: 10px;
  }
  header .header_logo {
    width: 60px;
  }
}

.header_dropdown {
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 94, 183, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding-top: 10em;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.5s ease 0.3s;
  z-index: 149;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.header_dropdown.top_offset {
  top: 10em;
  padding-top: 0;
}
.header_dropdown .header_dropdown_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 2.5em;
  padding: 2.5em 5em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header_dropdown .header_dropdown_grid .grid_item {
  width: 100%;
  gap: 20px;
}
.header_dropdown .header_dropdown_grid .grid_item .image {
  width: 100%;
}
.header_dropdown .header_dropdown_grid .grid_item .title {
  color: #FFFFFF;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
.header_dropdown.open {
  transform: scaleY(1);
  transition: all 0.5s ease;
}
.header_dropdown.open .header_dropdown_grid {
  opacity: 1;
  transition: opacity 0.3s ease 0.5s;
}
@media (max-width: 1600px) {
  .header_dropdown .header_dropdown_grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 2.5em;
  }
}
@media (max-width: 1100px) {
  .header_dropdown .header_dropdown_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 20px;
  }
}
@media (max-width: 750px) {
  .header_dropdown {
    display: none;
  }
}

.menu {
  top: calc(80px + 2.5em);
  width: 100%;
  height: calc(100vh - (80px + 2.5em));
  transform: translateX(-100%);
  background-color: #fff;
  transition: all 0.5s ease;
  padding: 10px;
  z-index: 200;
  overflow: hidden;
}
.menu.open {
  transform: translateX(0%);
}
.menu .nav .nav_item {
  color: #005EB7;
  font-size: 1.75em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  margin: 1em 0;
}
.menu .nav .nav_item:last-child {
  margin-bottom: 0;
}
.menu .nav .nav_item.arrow {
  cursor: pointer;
}
.menu .nav .nav_item.arrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url("../svg/arrow_down_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  margin: 0 0 0 10px;
}
.menu .nav .nav_item.arrow.open::after {
  transform: rotateX(180deg);
}
.menu .submenu_dropdown {
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  padding: 10px 20px;
  transform: translateX(100%);
  transition: all 0.5s ease 0.3s;
  z-index: 10;
}
.menu .submenu_dropdown .submenu_close {
  color: #005EB7;
  font-size: 1.75em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  margin: 1em 0;
  cursor: pointer;
}
.menu .submenu_dropdown .submenu_close::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url("../svg/arrow_down_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  margin: 0 10px 0 0;
}
.menu .submenu_dropdown .nav_item {
  color: #005EB7;
  font-size: 1.5em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  text-align: center;
  margin: 0.75em 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu .submenu_dropdown .nav_item:last-child {
  margin-bottom: 0;
}
.menu .submenu_dropdown.open {
  transform: translateX(0);
  transition: all 0.5s ease;
}
.menu .submenu_dropdown.open .nav_item {
  opacity: 1;
  transition: opacity 0.3s ease 0.5s;
}
@media (max-width: 600px) {
  .menu {
    top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
  }
}

footer {
  width: 100%;
  background-color: #FFFFFF;
  padding: 0 5em;
}
footer .footer_logo {
  width: 7.5em;
}
footer .footer_logo img {
  width: 100%;
}
footer .footer_wrapper {
  width: 100%;
  gap: 2.5em;
  margin: 3.75em 0;
}
footer .footer_wrapper .footer_column {
  max-width: 320px;
}
footer .footer_wrapper .footer_column .footer_title {
  color: #123659;
  font-size: 2em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  margin-bottom: 0.625em;
}
footer .footer_wrapper .footer_column .footer_nav {
  color: #123659;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.3em;
  text-transform: uppercase;
  margin-bottom: 0.625em;
}
footer .footer_wrapper .footer_column .footer_nav:last-child {
  margin: 0;
}
footer .footer_wrapper .footer_column .footer_social {
  gap: 1.25em;
}
footer .footer_wrapper .footer_column .footer_social a {
  width: 34px;
  height: 34px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer_wrapper .footer_column .footer_social a.facebook {
  background-image: url("../svg/facebook.svg");
}
footer .footer_wrapper .footer_column .footer_social a.instagram {
  background-image: url("../svg/instagram.svg");
}
footer .footer_wrapper .footer_column .footer_social a.youtube {
  background-image: url("../svg/youtube.svg");
}
footer .footer_bottom {
  width: 100%;
  border-top: 1px solid #123659;
  padding: 1.875em 0;
}
footer .footer_bottom span {
  color: #123659;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.25em;
}
footer .footer_bottom span a {
  color: #123659;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.25em;
}
@media (max-width: 1600px) {
  footer {
    padding: 0 2.5em;
  }
}
@media (max-width: 750px) {
  footer .footer_logo {
    width: 80px;
  }
  footer .footer_wrapper {
    flex-wrap: wrap;
  }
  footer .footer_wrapper .footer_column {
    width: calc(50% - 1.25em);
    max-width: unset;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  footer .footer_logo {
    align-self: center;
  }
  footer .footer_wrapper {
    gap: 20px;
  }
  footer .footer_wrapper .footer_column {
    width: 100%;
  }
  footer .footer_bottom {
    flex-direction: column;
    gap: 10px;
  }
  footer .footer_bottom span {
    text-align: center;
  }
}

.universalContentMatrix {
  width: 100%;
  gap: 2.5em;
}
.universalContentMatrix .universalBlock {
  width: 100%;
}
.universalContentMatrix .universalBlock.text .redactor {
  width: 100%;
}
.universalContentMatrix .universalBlock.image img {
  width: 100%;
  border-radius: 0 0 0 5em;
}
.universalContentMatrix .universalBlock.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 1.25em;
}
.universalContentMatrix .universalBlock.gallery .image {
  width: 100%;
  overflow: hidden;
}
.universalContentMatrix .universalBlock.gallery .image img {
  width: 100%;
}
.universalContentMatrix .universalBlock.gallery .image:nth-child(1) {
  border-radius: 2.5em 0 0 0;
}
.universalContentMatrix .universalBlock.gallery .image:nth-child(2) {
  border-radius: 0 0 0 2.5em;
}
.universalContentMatrix .universalBlock.gallery .image:nth-child(3) {
  border-radius: 0 2.5em 0 0;
}
.universalContentMatrix .universalBlock.gallery .image:nth-child(4) {
  border-radius: 0 0 2.5em 0;
}
.universalContentMatrix .universalBlock.gallery .image .more {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 94, 183, 0.8);
  color: #FFFFFF;
  font-size: 3.75em;
  letter-spacing: 0;
  line-height: 1.25em;
}
@media (max-width: 600px) {
  .universalContentMatrix .universalBlock.gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.index_header {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index_header .index_header_video {
  width: 100%;
  height: 100%;
}
.index_header .index_header_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_header .index_header_swiper {
  width: 100%;
  height: 100%;
}
.index_header .index_header_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_header .index_header_gradient {
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #ffffff 100%);
  z-index: 5;
}
.index_header .index_header_wrapper {
  gap: 5px;
  z-index: 6;
}
.index_header .index_header_wrapper .intro {
  color: #FFFFFF;
  font-size: min(3em, 3.4vw);
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  padding: 0 0 0 min(48px, 2.5vw);
  transform: translateY(160%);
  opacity: 0;
}
.index_header .index_header_wrapper .text {
  width: 100%;
  padding: 0 min(48px, 2.5vw);
  opacity: 0;
}
.index_header .index_header_wrapper .text .text_image {
  width: 100%;
}
@media (max-width: 1000px) {
  .index_header {
    height: 60vh;
  }
}
@media (max-width: 600px) {
  .index_header .index_header_wrapper {
    bottom: 50%;
    transform: translateY(50%);
    padding: 0;
  }
}

.index_pool {
  width: 100%;
  max-width: 1920px;
  padding: 5em 5em 0 5em;
  margin-bottom: 7.5em;
}
.index_pool .index_pool_gradient {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.index_pool .title_h2 {
  width: 100%;
  max-width: 1310px;
}
.index_pool .image {
  width: 100%;
  border-radius: 0 0 0 15em;
  overflow: hidden;
  margin: 5em 0 1.25em 0;
}
.index_pool .image img {
  width: 100%;
}
.index_pool .image .image_title {
  right: 10px;
  bottom: -0.28em;
  color: #F1F2F3;
  font-size: 6.25em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
  transform: translate(0, 0);
}
.index_pool .redactor {
  width: 100%;
  max-width: 900px;
  align-self: flex-end;
}
@media (max-width: 1600px) {
  .index_pool {
    padding: 5em 2.5em 0 2.5em;
  }
  .index_pool .image {
    margin: 2.5em 0 1.25em 0;
  }
}
@media (max-width: 900px) {
  .index_pool {
    margin-bottom: 5em;
  }
  .index_pool .image {
    border-radius: 0 0 0 10em;
    margin: 20px 0 10px 0;
  }
  .index_pool .image .image_title {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  .index_pool {
    padding: 2.5em 10px 0 10px;
  }
  .index_pool .image {
    border-radius: 0 0 0 5em;
  }
  .index_pool .image .image_title {
    font-size: 2.5em;
  }
}

.index_products {
  width: 100%;
  max-width: 1920px;
  gap: 3.75em;
  padding: 0 5em;
  margin-bottom: 7.5em;
}
.index_products .index_products_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em 3.75em;
}
.index_products .index_products_grid .grid_item {
  width: 100%;
  gap: 1.25em;
}
.index_products .index_products_grid .grid_item .image {
  width: 100%;
  overflow: hidden;
}
.index_products .index_products_grid .grid_item .hover {
  width: 100%;
  height: 100%;
  border-radius: 0 0 8.75em 0;
  background-color: rgba(0, 94, 183, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.index_products .index_products_grid .grid_item .hover span {
  color: #FFFFFF;
  font-size: 2.375em;
  letter-spacing: 0;
  line-height: 1.25em;
  gap: 20px;
}
.index_products .index_products_grid .grid_item .hover span::after {
  content: "";
  display: inline-block;
  width: 0.526em;
  height: 1.052em;
  background-image: url("../svg/arrow_right_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_products .index_products_grid .grid_item:hover .hover {
  opacity: 1;
}
.index_products .index_products_grid .grid_item:nth-child(1) .image {
  border-radius: 0 2.5em 0 0;
}
.index_products .index_products_grid .grid_item:nth-child(2) .image {
  border-radius: 0 0 0 2.5em;
}
.index_products .index_products_grid .grid_item:nth-child(3) .image {
  border-radius: 2.5em 0 0 0;
}
.index_products .index_products_grid .grid_item:nth-child(4) .image {
  border-radius: 0 0 2.5em 0;
}
.index_products .index_products_grid .grid_item:nth-child(5) .image {
  border-radius: 0 2.5em 0 0;
}
.index_products .index_products_grid .grid_item:nth-child(6) .image {
  border-radius: 0 0 0 2.5em;
}
.index_products .index_products_grid .grid_item:nth-child(7) .image {
  border-radius: 2.5em 0 0 0;
}
.index_products .index_products_grid .grid_item:nth-child(8) .image {
  border-radius: 0 2.5em 0 0;
}
@media (max-width: 1600px) {
  .index_products {
    padding: 0 2.5em;
  }
  .index_products .index_products_grid {
    grid-gap: 2.5em;
  }
}
@media (max-width: 1000px) {
  .index_products .index_products_grid {
    grid-gap: 10px;
  }
}
@media (max-width: 900px) {
  .index_products {
    gap: 20px;
    margin-bottom: 5em;
  }
  .index_products .index_products_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .index_products {
    padding: 0 10px;
  }
  .index_products .index_products_grid {
    grid-gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 450px) {
  .index_products .index_products_grid .grid_item .title_h3 {
    font-size: 1.5em !important;
  }
}

.index_services {
  width: 100%;
  max-width: 1920px;
  gap: 2.5em;
  padding: 0 5em;
  margin-bottom: 7.5em;
}
.index_services .index_services_wrapper {
  width: 100%;
}
.index_services .index_services_wrapper .index_services_grid {
  width: 100%;
  gap: 2.5em;
}
.index_services .index_services_wrapper .index_services_grid .services_item {
  width: calc(25% - 1.875em);
}
.index_services .index_services_wrapper .index_services_grid .services_item .image {
  margin-bottom: 10px;
}
.index_services .index_services_wrapper .index_services_grid .services_item .image svg {
  height: min(380px, 19.8vw);
  width: 100%;
  object-fit: contain;
}
.index_services .index_services_wrapper .index_services_grid .services_item .image svg:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}
.index_services .index_services_wrapper .index_services_grid .services_item .image .cropped_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.index_services .index_services_wrapper .index_services_grid .services_item .image .cropped_image.cropped_image_1 {
  clip-path: url(#clip-shape-p);
  -webkit-clip-path: url(#clip-shape-p);
}
.index_services .index_services_wrapper .index_services_grid .services_item .image .cropped_image.cropped_image_2 {
  clip-path: url(#clip-shape-s);
  -webkit-clip-path: url(#clip-shape-s);
}
.index_services .index_services_wrapper .index_services_grid .services_item .image .cropped_image.cropped_image_3 {
  clip-path: url(#clip-shape-n);
  -webkit-clip-path: url(#clip-shape-n);
}
.index_services .index_services_wrapper .index_services_grid .services_item .image .cropped_image.cropped_image_4 {
  clip-path: url(#clip-shape-u);
  -webkit-clip-path: url(#clip-shape-u);
}
.index_services .index_services_wrapper .index_services_grid .services_item .text {
  width: 100%;
  margin-top: 1em;
}
.index_services .index_services_wrapper .index_services_grid .services_item:nth-child(2) {
  margin-top: 10.36vw;
}
.index_services .index_services_wrapper .index_services_grid .services_item:nth-child(3) {
  margin-top: 4.16vw;
}
.index_services .index_services_wrapper .index_services_grid .services_item:nth-child(4) {
  margin-top: -6.2vw;
}
.index_services .index_services_wrapper .index_services_animation {
  top: 0;
  left: 0;
  width: 100%;
}
.index_services .index_services_wrapper .index_services_animation #animation_path {
  left: 6.5%;
  width: 81%;
  height: auto;
  opacity: 0;
}
.index_services .index_services_wrapper .index_services_animation #animation_line {
  top: 3%;
  left: 6.5%;
  width: 81%;
  height: auto;
}
.index_services .index_services_wrapper .index_services_animation #animation_circle {
  top: calc(14% - 100px);
  left: calc(87.5% - 100px);
  width: 200px;
  height: auto;
  transform-origin: center;
  animation: rotate infinite 8s linear;
}
.index_services .index_services_wrapper .index_services_animation .dot {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.index_services .index_services_wrapper .index_services_animation .dot::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 94, 183, 0.6);
  border-radius: 50%;
  animation: pulsation infinite 2s ease-in;
  z-index: 3;
}
.index_services .index_services_wrapper .index_services_animation .dot::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: rgba(0, 94, 183, 0.6);
  border-radius: 50%;
  animation: pulsation infinite 2s ease-in;
  z-index: 4;
}
.index_services .index_services_wrapper .index_services_animation .dot span {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: rgba(0, 94, 183, 0.6);
  border-radius: 50%;
  z-index: 5;
}
.index_services .index_services_wrapper .index_services_animation .dot#dot_1 {
  top: calc(23% - 20px);
  left: calc(6.5% - 20px);
}
.index_services .index_services_wrapper .index_services_animation .dot#dot_2 {
  top: calc(88% - 20px);
  left: calc(34.4% - 20px);
}
.index_services .index_services_wrapper .index_services_animation .dot#dot_3 {
  top: calc(64.5% - 20px);
  left: calc(55.4% - 20px);
}
.index_services .index_services_wrapper .index_services_animation .dot#dot_4 {
  top: calc(14.6% - 20px);
  left: calc(87.4% - 20px);
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes pulsation {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (max-width: 1600px) {
  .index_services {
    padding: 0 2.5em;
  }
}
@media (max-width: 1400px) {
  .index_services .index_services_wrapper .index_services_animation {
    display: none;
  }
}
@media (max-width: 900px) {
  .index_services {
    gap: 20px;
    margin-bottom: 5em;
  }
  .index_services .index_services_wrapper .index_services_grid {
    gap: 20px;
  }
  .index_services .index_services_wrapper .index_services_grid .services_item {
    width: calc(25% - 15px);
    margin: 0 !important;
  }
  .index_services .index_services_wrapper .index_services_grid .services_item .text {
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  .index_services .index_services_wrapper .index_services_grid {
    flex-wrap: wrap;
  }
  .index_services .index_services_wrapper .index_services_grid .services_item {
    width: calc(50% - 10px);
  }
  .index_services .index_services_wrapper .index_services_grid .services_item .image svg {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 600px) {
  .index_services {
    padding: 0 10px;
  }
}

.index_about {
  width: 100%;
  max-width: 1920px;
  gap: 2.5em;
  padding: 0 5em;
  margin-bottom: 7.5em;
}
.index_about .index_about_column {
  width: calc(50% - 1.25em);
  gap: 3.75em;
}
.index_about .index_about_swiper {
  width: calc(50% - 1.25em);
  border-radius: 5em 0 0 0;
  overflow: hidden;
}
.index_about .index_about_swiper .swiper-slide img {
  width: 100%;
}
.index_about .index_about_swiper .index_about_nav {
  bottom: 1.25em;
  right: 1.25em;
  gap: 1.25em;
  z-index: 10;
}
.index_about .index_about_swiper .index_about_nav .about_nav_next {
  width: 3.75em;
  height: 3.75em;
  background-color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.index_about .index_about_swiper .index_about_nav .about_nav_next::after {
  content: "";
  position: absolute;
  width: 0.8125em;
  height: 1.625em;
  background-image: url("../svg/arrow_right_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_about .index_about_swiper .index_about_nav .about_nav_prev {
  width: 3.75em;
  height: 3.75em;
  background-color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.index_about .index_about_swiper .index_about_nav .about_nav_prev::after {
  content: "";
  position: absolute;
  width: 0.8125em;
  height: 1.625em;
  background-image: url("../svg/arrow_left_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .index_about {
    padding: 0 2.5em;
  }
}
@media (max-width: 900px) {
  .index_about {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 5em;
  }
  .index_about .index_about_column {
    width: 100%;
    gap: 20px;
  }
  .index_about .index_about_swiper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .index_about {
    padding: 0 10px;
  }
}

.index_contact {
  width: 100%;
  max-width: 1920px;
  gap: 2.5em;
  padding: 0 5em 7.5em 5em;
}
.index_contact .index_contact_gradient {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  align-self: center;
}
.index_contact .redactor {
  width: 100%;
  max-width: 1310px;
}
.index_contact .index_contact_wrapper {
  width: 100%;
  gap: 2.5em;
}
.index_contact .index_contact_wrapper .column {
  width: 21%;
  gap: 1.875em;
  align-self: stretch;
  border-right: 1px solid #123659;
  padding: 0 2.5em 0 0;
}
.index_contact .index_contact_wrapper .column .btn {
  width: 100%;
}
.index_contact .index_contact_wrapper .column .social {
  width: 100%;
  gap: 1.25em;
  margin-top: auto;
}
.index_contact .index_contact_wrapper .column .social .title {
  max-width: 5em;
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0 auto 0 0;
}
.index_contact .index_contact_wrapper .column .social a {
  width: 34px;
  height: 34px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index_contact .index_contact_wrapper .column .social a.facebook {
  background-image: url("../svg/facebook_blue.svg");
}
.index_contact .index_contact_wrapper .column .social a.instagram {
  background-image: url("../svg/instagram_blue.svg");
}
.index_contact .index_contact_wrapper .column .social a.youtube {
  background-image: url("../svg/youtube_blue.svg");
}
.index_contact .index_contact_wrapper .form {
  width: calc(79% - 2.5em);
  gap: 1.25em;
}
.index_contact .index_contact_wrapper .form .form_column {
  width: calc(50% - 140px - 0.625em);
  align-self: stretch;
}
.index_contact .index_contact_wrapper .form .form_column label {
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  padding: 0 0 0 1.5em;
}
.index_contact .index_contact_wrapper .form .form_column input {
  width: 100%;
  border: 1px solid #005EB7;
  border-radius: 1.75em;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.index_contact .index_contact_wrapper .form .form_column input:last-child {
  margin: 0;
}
.index_contact .index_contact_wrapper .form .form_column input::placeholder {
  opacity: 0.5;
}
.index_contact .index_contact_wrapper .form .form_column textarea {
  width: 100%;
  height: -webkit-fill-available;
  border: 1px solid #005EB7;
  border-radius: 1.75em;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  resize: none;
}
.index_contact .index_contact_wrapper .form .form_column textarea::placeholder {
  opacity: 0.5;
}
.index_contact .index_contact_wrapper .form .form_action {
  width: 280px;
  align-self: flex-end;
  gap: 1.25em;
}
.index_contact .index_contact_wrapper .form .form_action .btn {
  width: 100%;
}
@media (max-width: 1600px) {
  .index_contact {
    padding: 0 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 1400px) {
  .index_contact .index_contact_wrapper {
    flex-direction: column;
  }
  .index_contact .index_contact_wrapper .column {
    width: 100%;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
  }
  .index_contact .index_contact_wrapper .column .btn {
    max-width: 280px;
  }
  .index_contact .index_contact_wrapper .column .social {
    max-width: 280px;
    margin: 0;
  }
  .index_contact .index_contact_wrapper .form {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .index_contact .index_contact_wrapper .column {
    flex-wrap: wrap;
  }
  .index_contact .index_contact_wrapper .form {
    flex-wrap: wrap;
  }
  .index_contact .index_contact_wrapper .form .form_column {
    width: calc(50% - 0.625em);
  }
  .index_contact .index_contact_wrapper .form .form_action {
    widtH: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .index_contact .index_contact_wrapper .form .form_action .btn {
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  .index_contact {
    padding: 0 10px 5em 10px;
  }
  .index_contact .index_contact_wrapper .form {
    flex-wrap: wrap;
  }
  .index_contact .index_contact_wrapper .form .form_column {
    width: 100%;
  }
  .index_contact .index_contact_wrapper .form .form_column textarea {
    height: 150px;
  }
  .index_contact .index_contact_wrapper .form .form_action {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .index_contact .index_contact_wrapper .form .form_action .btn {
    max-width: 300px;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 500px) {
  .index_contact .index_contact_wrapper .column {
    width: 100%;
  }
  .index_contact .index_contact_wrapper .column .btn {
    max-width: 100%;
  }
  .index_contact .index_contact_wrapper .column .social {
    max-width: 100%;
  }
  .index_contact .index_contact_wrapper .form .form_action .btn {
    max-width: 100%;
    margin: 0;
  }
}

.technology {
  width: 100%;
}
.technology .technology_header {
  width: 100%;
  overflow: hidden;
}
.technology .technology_header .technology_swiper {
  width: 100%;
}
.technology .technology_header .technology_swiper .swiper-slide img {
  width: 100%;
}
.technology .technology_header .technology_header_gradient {
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  z-index: 5;
}
.technology .technology_header .technology_prev {
  left: 5em;
  width: 6.25em;
  height: 6.25em;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
}
.technology .technology_header .technology_prev::after {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_left_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.technology .technology_header .technology_next {
  right: 5em;
  width: 6.25em;
  height: 6.25em;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
}
.technology .technology_header .technology_next::after {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 2.5em;
  background-image: url("../svg/arrow_right_blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .technology .technology_header .technology_prev {
    left: 2.5em;
  }
  .technology .technology_header .technology_next {
    right: 2.5em;
  }
}
@media (max-width: 800px) {
  .technology .technology_header .technology_swiper .swiper-slide img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  .technology .technology_header .technology_prev {
    left: 10px;
    bottom: 80px;
    width: 5em;
    height: 5em;
  }
  .technology .technology_header .technology_next {
    right: 10px;
    bottom: 80px;
    width: 5em;
    height: 5em;
  }
}
.technology .technology_description {
  width: 100%;
  max-width: 1920px;
  padding: 2.5em 5em 0 5em;
  margin-bottom: 7.5em;
  z-index: 10;
}
.technology .technology_description .description_gradient {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #F1F2F3 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.technology .technology_description .title_h1 {
  top: -1.25em;
}
.technology .technology_description .redactor {
  width: 100%;
  max-width: 860px;
}
@media (max-width: 1600px) {
  .technology .technology_description {
    padding: 2.5em 2.5em 0 2.5em;
  }
}
@media (max-width: 600px) {
  .technology .technology_description {
    padding: 20px 10px 0 10px;
    margin-bottom: 5em;
  }
}
.technology .technology_pool_types {
  width: 100%;
  max-width: 1040px;
  gap: 2.5em;
  padding: 5em 2.5em;
  margin-bottom: 7.5em;
  z-index: 11;
}
.technology .technology_pool_types .pool {
  top: 0;
  width: 40%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.technology .technology_pool_types .pool.pool_oval {
  left: 0;
  background-image: url("../svg/oval.svg");
  background-position: center left;
}
.technology .technology_pool_types .pool.pool_square {
  right: 0;
  background-image: url("../svg/rectangle.svg");
  background-position: center right;
}
.technology .technology_pool_types .subpage_h2 {
  width: 100%;
  text-align: center;
}
.technology .technology_pool_types .redactor {
  width: 100%;
}
.technology .technology_pool_types .redactor * {
  text-align: center;
}
@media (max-width: 1300px) {
  .technology .technology_pool_types .pool.pool_oval {
    left: 10%;
  }
  .technology .technology_pool_types .pool.pool_square {
    right: 10%;
  }
}
@media (max-width: 600px) {
  .technology .technology_pool_types {
    padding: 0 10px;
    margin-bottom: 5em;
  }
  .technology .technology_pool_types .pool {
    display: none;
  }
  .technology .technology_pool_types .subpage_h2 {
    text-align: left;
  }
  .technology .technology_pool_types .redactor * {
    text-align: left;
  }
}
.technology .technology_content_wrapper {
  width: 100%;
  max-width: 1520px;
  gap: 2.5em;
  padding: 0 2.5em;
  margin-bottom: 7.5em;
}
.technology .technology_content_wrapper.reverse {
  flex-direction: row-reverse;
}
.technology .technology_content_wrapper .pool {
  top: 0;
  width: 27.5em;
  height: 27.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.technology .technology_content_wrapper .pool.square {
  left: 25%;
  background-image: url("../svg/rectangle.svg");
  transform: rotate(-20deg);
}
.technology .technology_content_wrapper .pool.oval {
  right: 25%;
  background-image: url("../svg/oval.svg");
  transform: rotate(20deg);
}
.technology .technology_content_wrapper .redactor {
  width: calc(50% - 1.25em);
}
.technology .technology_content_wrapper .redactor .subpage_h2 {
  margin: 0 0 0.66em 0;
}
.technology .technology_content_wrapper .image {
  width: calc(50% - 1.25em);
  overflow: hidden;
}
.technology .technology_content_wrapper .image.border_1 {
  border-radius: 0 0 0 5em;
}
.technology .technology_content_wrapper .image.border_2 {
  border-radius: 0 5em 0 0;
}
.technology .technology_content_wrapper .image img {
  width: 100%;
}
@media (max-width: 750px) {
  .technology .technology_content_wrapper {
    flex-direction: column !important;
  }
  .technology .technology_content_wrapper .redactor {
    width: 100%;
  }
  .technology .technology_content_wrapper .image {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .technology .technology_content_wrapper {
    padding: 0 10px;
    margin-bottom: 5em;
    overflow: hidden;
  }
}
.technology .technology_products {
  width: 100%;
  max-width: 1920px;
  gap: 3.75em;
  padding: 0 5em;
  margin-bottom: 7.5em;
}
.technology .technology_products .products_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em 3.75em;
}
.technology .technology_products .products_grid .grid_item {
  width: 100%;
  gap: 1.25em;
}
.technology .technology_products .products_grid .grid_item .image {
  width: 100%;
  overflow: hidden;
}
.technology .technology_products .products_grid .grid_item .title_h3 {
  font-size: 2.125em;
}
.technology .technology_products .products_grid .grid_item .hover {
  width: 100%;
  height: 100%;
  border-radius: 0 0 8.75em 0;
  background-color: rgba(0, 94, 183, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.technology .technology_products .products_grid .grid_item .hover span {
  color: #FFFFFF;
  font-size: 2.375em;
  letter-spacing: 0;
  line-height: 1.25em;
  gap: 20px;
}
.technology .technology_products .products_grid .grid_item .hover span::after {
  content: "";
  display: inline-block;
  width: 0.526em;
  height: 1.052em;
  background-image: url("../svg/arrow_right_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.technology .technology_products .products_grid .grid_item:hover .hover {
  opacity: 1;
}
.technology .technology_products .products_grid .grid_item:nth-child(1) .image {
  border-radius: 0 2.5em 0 0;
}
.technology .technology_products .products_grid .grid_item:nth-child(2) .image {
  border-radius: 0 0 0 2.5em;
}
.technology .technology_products .products_grid .grid_item:nth-child(3) .image {
  border-radius: 2.5em 0 0 0;
}
.technology .technology_products .products_grid .grid_item:nth-child(4) .image {
  border-radius: 0 0 2.5em 0;
}
.technology .technology_products .products_grid .grid_item:nth-child(5) .image {
  border-radius: 0 2.5em 0 0;
}
.technology .technology_products .products_grid .grid_item:nth-child(6) .image {
  border-radius: 0 0 0 2.5em;
}
.technology .technology_products .products_grid .grid_item:nth-child(7) .image {
  border-radius: 2.5em 0 0 0;
}
.technology .technology_products .products_grid .grid_item:nth-child(8) .image {
  border-radius: 0 2.5em 0 0;
}
@media (max-width: 1600px) {
  .technology .technology_products {
    padding: 0 2.5em;
  }
  .technology .technology_products .products_grid {
    grid-gap: 2.5em;
  }
}
@media (max-width: 1000px) {
  .technology .technology_products .products_grid {
    grid-gap: 10px;
  }
}
@media (max-width: 900px) {
  .technology .technology_products {
    gap: 20px;
    margin-bottom: 5em;
  }
  .technology .technology_products .products_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .technology .technology_products {
    padding: 0 10px;
  }
  .technology .technology_products .products_grid {
    grid-gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 450px) {
  .technology .technology_products .products_grid .grid_item .title_h3 {
    font-size: 1.5em !important;
  }
}
.technology .technology_contact {
  width: 100%;
  max-width: 1920px;
  padding: 0 5em 7.5em 5em;
}
.technology .technology_contact .technology_contact_gradient {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  align-self: center;
}
.technology .technology_contact .technology_contact_wrapper {
  width: 100%;
  gap: 2.5em;
  background-color: #FFFFFF;
  border-radius: 9.375vw 0 9.375vw 0;
  padding: 8.25em 2.5em;
}
.technology .technology_contact .technology_contact_wrapper .subpage_h2 {
  width: 100%;
  max-width: 940px;
  text-align: center;
}
.technology .technology_contact .technology_contact_wrapper .redactor {
  width: 100%;
  max-width: 940px;
}
.technology .technology_contact .technology_contact_wrapper .btn {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 1600px) {
  .technology .technology_contact {
    padding: 0 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .technology .technology_contact {
    padding: 0 10px 5em 10px;
  }
  .technology .technology_contact .technology_contact_wrapper {
    padding: 5em 10px;
  }
}

.product {
  width: 100%;
}
.product .product_header {
  width: 100%;
  overflow: hidden;
}
.product .product_header .product_image {
  width: 100%;
}
.product .product_header .product_image img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.product .product_header .product_header_gradient {
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  z-index: 5;
}
@media (max-width: 800px) {
  .product .product_header .product_image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
}
.product .product_wrapper {
  width: 100%;
  max-width: 1020px;
  gap: 2.5em;
  padding: 0 2.5em 7.5em 2.5em;
  z-index: 10;
}
.product .product_wrapper .product_gradient_top {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #F1F2F3 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.product .product_wrapper .product_gradient_bottom {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  align-self: center;
}
.product .product_wrapper .product_contact {
  width: 100%;
  gap: 2.5em;
  padding: 8.75em 0;
}
.product .product_wrapper .product_contact .background {
  width: 90%;
  height: 100%;
  background-image: url("../svg/oval.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product .product_wrapper .product_contact h2 {
  text-align: center;
}
@media (max-width: 600px) {
  .product .product_wrapper {
    padding: 0 10px 5em 10px;
  }
}

.servicesList {
  width: 100%;
}
.servicesList .servicesList_header {
  width: 100%;
  overflow: hidden;
}
.servicesList .servicesList_header .servicesList_image {
  width: 100%;
}
.servicesList .servicesList_header .servicesList_image img {
  width: 100%;
}
.servicesList .servicesList_header .servicesList_header_gradient {
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  z-index: 5;
}
.servicesList .servicesList_header .title_h1 {
  left: 1em;
  bottom: 0.5em;
  z-index: 20;
}
@media (max-width: 1600px) {
  .servicesList .servicesList_header .title_h1 {
    left: 0.5em;
  }
}
@media (max-width: 800px) {
  .servicesList .servicesList_header .servicesList_image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  .servicesList .servicesList_header .title_h1 {
    left: 10px;
  }
}
.servicesList .servicesList_wrapper {
  width: 100%;
  max-width: 1920px;
  gap: 7.5em;
  padding: 2.5em 5em 7.5em 5em;
  z-index: 10;
}
.servicesList .servicesList_wrapper .servicesList_gradient_top {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #F1F2F3 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.servicesList .servicesList_wrapper .servicesList_gradient_bottom {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  align-self: center;
}
.servicesList .servicesList_wrapper .servicesList_item {
  width: 100%;
  align-items: stretch;
}
.servicesList .servicesList_wrapper .servicesList_item .image {
  width: 49%;
  border-radius: 0 0 5em 0;
  overflow: hidden;
}
.servicesList .servicesList_wrapper .servicesList_item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.servicesList .servicesList_wrapper .servicesList_item .column {
  width: 51%;
  background-color: #FFFFFF;
  gap: 1.875em;
  padding: 1.25em 2.5em;
}
.servicesList .servicesList_wrapper .servicesList_item .column .icon {
  top: 0;
  left: -7.5em;
  width: 7.5em;
  height: 7.5em;
  background-color: #FFFFFF;
  border-radius: 3.75em 0 0 3.75em;
}
.servicesList .servicesList_wrapper .servicesList_item .column .icon img {
  width: 3.75em;
  height: 3.75em;
  object-fit: contain;
}
.servicesList .servicesList_wrapper .servicesList_item .column .redactor {
  width: 100%;
}
.servicesList .servicesList_wrapper .servicesList_item .column .redactor * {
  margin: 0;
}
.servicesList .servicesList_wrapper .servicesList_item .column .redactor.blue * {
  color: #005EB7;
  text-transform: uppercase;
}
.servicesList .servicesList_wrapper .servicesList_item .column .bottom_wrapper {
  width: 100%;
  gap: 2.5em;
}
.servicesList .servicesList_wrapper .servicesList_item .column .bottom_wrapper .btn {
  min-width: 18.75em;
}
.servicesList .servicesList_wrapper .servicesList_item .column .bottom_wrapper .redactor {
  width: calc(100% - 18.75em - 2.5em);
}
.servicesList .servicesList_wrapper .servicesList_item:nth-child(even) {
  flex-direction: row-reverse;
}
.servicesList .servicesList_wrapper .servicesList_item:nth-child(even) .image {
  border-radius: 0 0 0 5em;
}
.servicesList .servicesList_wrapper .servicesList_item:nth-child(even) .column .icon {
  left: auto;
  right: -7.5em;
  border-radius: 0 3.75em 3.75em 0;
}
@media (max-width: 1600px) {
  .servicesList .servicesList_wrapper {
    padding: 2.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 1400px) {
  .servicesList .servicesList_wrapper .servicesList_item .column {
    padding: 1.25em;
  }
}
@media (max-width: 900px) {
  .servicesList .servicesList_wrapper .servicesList_item {
    flex-direction: column !important;
  }
  .servicesList .servicesList_wrapper .servicesList_item .image {
    width: 100%;
    border-radius: 0 5em 0 0 !important;
  }
  .servicesList .servicesList_wrapper .servicesList_item .column {
    width: 100%;
  }
  .servicesList .servicesList_wrapper .servicesList_item .column .icon {
    top: -7.5em;
    left: 0 !important;
    right: auto !important;
    border-radius: 0 3.75em 0 0 !important;
  }
}
@media (max-width: 600px) {
  .servicesList .servicesList_wrapper {
    gap: 5em;
    padding: 2.5em 10px 5em 10px;
  }
  .servicesList .servicesList_wrapper .servicesList_item .column {
    gap: 20px;
    padding: 1.25em 10px;
  }
}
@media (max-width: 500px) {
  .servicesList .servicesList_wrapper .servicesList_item .column .bottom_wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .servicesList .servicesList_wrapper .servicesList_item .column .bottom_wrapper .redactor {
    width: 100%;
  }
}

.contact {
  width: 100%;
}
.contact .contact_header {
  width: 100%;
  overflow: hidden;
}
.contact .contact_header .contact_image {
  width: 100%;
}
.contact .contact_header .contact_image img {
  width: 100%;
}
.contact .contact_header .contact_header_gradient {
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  z-index: 5;
}
.contact .contact_header .title_h1 {
  left: 1em;
  bottom: 0.5em;
  z-index: 20;
}
@media (max-width: 1600px) {
  .contact .contact_header .title_h1 {
    left: 0.5em;
  }
}
@media (max-width: 800px) {
  .contact .contact_header .contact_image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  .contact .contact_header .title_h1 {
    left: 10px;
  }
}
.contact .contact_wrapper {
  width: 100%;
  max-width: 1920px;
  gap: 7.5em;
  padding: 2.5em 5em 7.5em 5em;
  z-index: 10;
}
.contact .contact_wrapper .contact_gradient_top {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #F1F2F3 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.contact .contact_wrapper .contact_content {
  width: 100%;
  gap: 2.5em;
  z-index: 20;
}
.contact .contact_wrapper .contact_content .address {
  width: 21em;
}
.contact .contact_wrapper .contact_content .address p {
  color: #123659;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
}
.contact .contact_wrapper .contact_content .address a {
  color: #123659;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all 0.3s ease;
}
.contact .contact_wrapper .contact_content .address a:hover {
  text-decoration: underline;
}
.contact .contact_wrapper .contact_content .address table {
  margin-top: 2.5em;
}
.contact .contact_wrapper .contact_content .address table tr td {
  color: #123659;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
}
.contact .contact_wrapper .contact_content .address table tr td:first-child {
  padding: 0 1em 0 0;
}
.contact .contact_wrapper .contact_content .form {
  width: calc(100% - 23.5em);
  max-width: 1260px;
  gap: 2.5em;
  background-color: #FFFFFF;
  border-radius: 5em 0 0 0;
  padding: 3.75em 5em;
}
.contact .contact_wrapper .contact_content .form .form_column {
  width: calc(50% - 1.25em);
  align-self: stretch;
}
.contact .contact_wrapper .contact_content .form .form_column label {
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  padding: 0 0 0 1.5em;
}
.contact .contact_wrapper .contact_content .form .form_column input {
  width: 100%;
  border: 1px solid #005EB7;
  border-radius: 1.75em;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.contact .contact_wrapper .contact_content .form .form_column input:last-child {
  margin: 0;
}
.contact .contact_wrapper .contact_content .form .form_column input::placeholder {
  opacity: 0.5;
}
.contact .contact_wrapper .contact_content .form .form_column select {
  width: 100%;
  height: 3.8em;
  border: 1px solid #005EB7;
  border-radius: 1.75em;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.contact .contact_wrapper .contact_content .form .form_column textarea {
  width: 100%;
  height: -webkit-fill-available;
  border: 1px solid #005EB7;
  border-radius: 1.75em;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
  color: #005EB7;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5em;
  resize: none;
}
.contact .contact_wrapper .contact_content .form .form_column textarea::placeholder {
  opacity: 0.5;
}
.contact .contact_wrapper .contact_content .form .form_action {
  width: 100%;
  gap: 1.25em;
  margin-top: 10px;
}
.contact .contact_wrapper .contact_content .form .form_action .gdpr {
  width: 100%;
}
.contact .contact_wrapper .contact_content .form .form_action .btn {
  min-width: 280px;
  align-self: flex-end;
}
@media (max-width: 1600px) {
  .contact .contact_wrapper {
    padding: 2.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 1100px) {
  .contact .contact_wrapper .contact_content {
    flex-direction: column;
  }
  .contact .contact_wrapper .contact_content .address {
    width: 100%;
  }
  .contact .contact_wrapper .contact_content .form {
    width: 100%;
    padding: 2.5em;
  }
}
@media (max-width: 700px) {
  .contact .contact_wrapper .contact_content .form {
    width: 100%;
    flex-direction: column;
    gap: 1.25em;
    padding: 2.5em 20px;
  }
  .contact .contact_wrapper .contact_content .form .form_column {
    width: 100%;
  }
  .contact .contact_wrapper .contact_content .form .form_column textarea {
    height: 150px;
  }
}
@media (max-width: 600px) {
  .contact .contact_wrapper {
    gap: 5em;
    padding: 2.5em 10px 5em 10px;
  }
  .contact .contact_wrapper .contact_content .form {
    padding: 2.5em 10px;
  }
  .contact .contact_wrapper .contact_content .form .form_column .form_action .btn {
    min-width: unset;
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
}

.galleryList {
  width: 100%;
}
.galleryList .galleryList_header {
  width: 100%;
  overflow: hidden;
}
.galleryList .galleryList_header .galleryList_image {
  width: 100%;
}
.galleryList .galleryList_header .galleryList_image img {
  width: 100%;
}
.galleryList .galleryList_header .galleryList_header_gradient {
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  z-index: 5;
}
.galleryList .galleryList_header .title_h1 {
  left: 1em;
  bottom: 0.5em;
  z-index: 20;
}
@media (max-width: 1600px) {
  .galleryList .galleryList_header .title_h1 {
    left: 0.5em;
  }
}
@media (max-width: 800px) {
  .galleryList .galleryList_header .galleryList_image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  .galleryList .galleryList_header .title_h1 {
    left: 10px;
  }
}
.galleryList .galleryList_wrapper {
  width: 100%;
  max-width: 1920px;
  gap: 2.5em;
  padding: 0 5em 7.5em 5em;
  z-index: 10;
}
.galleryList .galleryList_wrapper .galleryList_gradient_top {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #F1F2F3 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.galleryList .galleryList_wrapper .galleryList_gradient_bottom {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  align-self: center;
}
.galleryList .galleryList_wrapper .redactor {
  width: 100%;
  max-width: 860px;
}
.galleryList .galleryList_wrapper .galleryList_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item {
  width: 100%;
  gap: 20px;
  background-color: #FFFFFF;
  border-radius: 0 0 2.5em 0;
  padding: 2.5em 1.875em 1.875em 1.875em;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .title {
  color: #123659;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.25em;
  text-transform: uppercase;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper {
  width: 100%;
  border-radius: 0 0 2.5em 0;
  overflow: hidden;
  margin-top: 10px;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper-slide img {
  width: 100%;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 94, 183, 0.6);
  background-image: url("../svg/zoom.svg");
  background-size: 5em 5em;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper-slide:hover::after {
    opacity: 1;
  }
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper_prev {
  top: calc(50% - 1.1875em);
  left: 1.25em;
  width: 2.375em;
  height: 2.375em;
  background-color: #FFFFFF;
  background-image: url("../svg/arrow_left_blue.svg");
  background-size: 1.25em 0.625em;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper_prev:hover {
    transform: scale(1.1);
  }
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper_prev.swiper-button-disabled {
  opacity: 0.5;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper_next {
  top: calc(50% - 1.1875em);
  right: 1.25em;
  width: 2.375em;
  height: 2.375em;
  background-color: #FFFFFF;
  background-image: url("../svg/arrow_right_blue.svg");
  background-size: 1.25em 0.625em;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper_next:hover {
    transform: scale(1.1);
  }
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper .swiper_next.swiper-button-disabled {
  opacity: 0.5;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image {
  width: 100%;
  overflow: hidden;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image img {
  width: 100%;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image.mobile_image {
  display: none;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image:nth-child(2) {
  border-radius: 0 0 2.5em 0;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image:nth-child(3) {
  border-radius: 2.5em 0 0 0;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 94, 183, 0.6);
  background-image: url("../svg/zoom.svg");
  background-size: 5em 5em;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image:hover::after {
    opacity: 1;
  }
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .btn {
  width: 260px;
  max-width: 100%;
  align-self: flex-end;
  margin: auto 0 0 0;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item.swiper_item {
  grid-column: span 2;
  border-radius: 0 0 0 5em;
}
.galleryList .galleryList_wrapper .galleryList_grid .galleryList_item.swiper_item .title {
  font-size: 1.75em;
}
@media (max-width: 1600px) {
  .galleryList .galleryList_wrapper {
    padding: 0 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 1400px) {
  .galleryList .galleryList_wrapper .galleryList_grid {
    grid-gap: 20px;
  }
}
@media (max-width: 1050px) {
  .galleryList .galleryList_wrapper .galleryList_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 850px) {
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item {
    padding: 20px 10px;
  }
}
@media (max-width: 800px) {
  .galleryList .galleryList_wrapper .galleryList_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .galleryList .galleryList_wrapper {
    padding: 0 10px 5em 10px;
  }
}
@media (max-width: 500px) {
  .galleryList .galleryList_wrapper .galleryList_grid {
    grid-template-columns: 100%;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item {
    border-radius: 0 0 2.5em 0 !important;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .title {
    font-size: 1.75em;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .gallery_swiper {
    display: none;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image.mobile_image {
    display: flex;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .image:nth-child(3) {
    display: none;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item .btn {
    width: 100%;
  }
  .galleryList .galleryList_wrapper .galleryList_grid .galleryList_item.swiper_item {
    grid-column: span 1;
  }
}

.error {
  width: 100%;
  gap: 2.5em;
  padding: 12.5em 2.5em 5em 2.5em;
}
.error .error_image {
  width: 100%;
  max-width: 1170px;
}
.error .error_title {
  color: #123659;
  font-size: 2.5em;
  letter-spacing: 0;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
}
.error .btn {
  width: 100%;
  max-width: 400px;
}

.universal {
  width: 100%;
}
.universal .universal_wrapper {
  width: 100%;
  max-width: 1020px;
  gap: 2.5em;
  padding: 12em 2.5em 7.5em 2.5em;
  z-index: 10;
}
.universal .universal_wrapper .universal_gradient_top {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, #F1F2F3 0%, rgba(241, 242, 243, 0) 100%);
  align-self: center;
}
.universal .universal_wrapper .universal_gradient_bottom {
  width: 100vw;
  height: 38.75em;
  background: linear-gradient(180deg, rgba(241, 242, 243, 0) 0%, #F1F2F3 100%);
  align-self: center;
}
@media (max-width: 600px) {
  .universal .universal_wrapper {
    padding: 8em 10px 5em 10px;
  }
}

/*# sourceMappingURL=main.css.map */
