/* #region VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&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;
}

* {
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
}

body {
  width: 100%;
  height: 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;
  }
}

p strong {
  font-weight: 700;
}
p blockquote {
  font-style: italic;
}

span {
  display: block;
}

ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
ul li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
ul li strong {
  font-weight: 700;
}

ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
ol li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
ol li strong {
  font-weight: 700;
}

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

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

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

.richText * {
  margin-bottom: 1em;
}
.richText *:last-child {
  margin-bottom: 0;
}
.richText * li {
  margin-bottom: 0 !important;
}
.richText figure {
  width: 100%;
  max-width: 1000px;
}
.richText figure img {
  width: 100%;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: all 0.3s ease;
}
.gdpr #gdpr_input:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.gdpr label {
  width: calc(100% - 20px);
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}

#email2 {
  display: none;
}

.page-404 {
  height: 100%;
}
.page-404 .container {
  height: 100%;
  gap: 2rem;
  padding-inline: 1rem;
}
.page-404 .container p {
  text-align: center;
}

/* #region VARIABLES */
* {
  font-family: "Geologica", sans-serif;
}

body {
  background-color: #262D29;
}

.body_pattern {
  width: 100%;
  height: 100%;
  background-color: rgba(38, 45, 41, 0.5019607843);
  background-image: url("../svg/body_pattern.svg");
  background-repeat: repeat;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

.body_ellipse {
  top: 0;
  left: 0;
  width: 1200px;
}
.body_ellipse svg {
  width: 100%;
}

h1.title_h1 {
  color: #dcefd8;
  font-weight: 400;
  font-size: 6em;
  line-height: 0.93em;
  letter-spacing: 0;
}
@media (max-width: 1050px) {
  h1.title_h1 {
    font-size: 5em;
  }
}
@media (max-width: 600px) {
  h1.title_h1 {
    font-size: 3.5em;
  }
}

h2.title_h2 {
  color: #dcefd8;
  font-weight: 400;
  font-size: 6em;
  line-height: 0.93em;
  letter-spacing: 0;
}
@media (max-width: 1050px) {
  h2.title_h2 {
    font-size: 5em;
  }
}
@media (max-width: 600px) {
  h2.title_h2 {
    font-size: 3.5em;
  }
}

p {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
p a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
}

ul li {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}

ol li {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}

.gdpr .custom_checkbox {
  border: 2px solid #203F72;
}
.gdpr .custom_checkbox::after {
  background-color: #203F72;
}
.gdpr label {
  color: #203F72;
}

header {
  width: 100%;
  height: 6.25em;
  background-color: #262D29;
  border-bottom: 1px solid #97D28B;
  padding: 0 0 0 2.5em;
  z-index: 300;
}
header .header_logo {
  height: 2.875em;
  margin: 0 auto 0 0;
}
header .header_logo img {
  height: 100%;
}
header .header_nav {
  align-self: stretch;
}
header .header_nav .nav_item {
  min-width: 10em;
  height: auto;
  align-self: stretch;
  border-left: 1px solid #97D28B;
  padding: 1.25em;
  transition: all 0.3s ease;
}
header .header_nav .nav_item:hover {
  background-color: #97D28B;
}
header .header_nav .nav_item .placeholder {
  opacity: 0;
}
header .header_nav .nav_item span {
  position: absolute;
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s linear;
}
header .header_nav .nav_item.no_wrap .placeholder {
  white-space: nowrap;
}
header .header_nav .nav_item.no_wrap span {
  white-space: nowrap;
}
header .header_nav .nav_item:nth-child(even) span {
  top: 1.25em;
  left: 1.25em;
}
header .header_nav .nav_item:nth-child(even):hover span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header_nav .nav_item:nth-child(odd) span {
  bottom: 1.25em;
  left: 1.25em;
}
header .header_nav .nav_item:nth-child(odd):hover span {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
header .header_language {
  min-width: 10em;
  height: auto;
  align-self: stretch;
  background-color: #333E39;
  border-left: 1px solid #97D28B;
  padding: 1.25em;
}
header .header_language .language_active {
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  gap: 0.625em;
  cursor: pointer;
}
header .header_language .language_active::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../svg/arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header .header_language .language_dropdown {
  top: 100%;
  width: 100%;
  border: 1px solid #97D28B;
  background-color: #333E39;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease 0.3s;
}
header .header_language .language_dropdown a {
  width: 100%;
  height: 3em;
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #97D28B;
  opacity: 0;
  transition: all 0.3s ease;
}
header .header_language .language_dropdown a:last-child {
  border-bottom: none;
}
header .header_language .language_dropdown.open {
  transform: scaleY(1);
  transition: all 0.3s ease;
}
header .header_language .language_dropdown.open a {
  opacity: 1;
  transition: all 0.3s ease 0.3s;
}
header .hamburger {
  display: none;
  min-width: 10em;
  height: auto;
  align-self: stretch;
}
header .hamburger .hamburger_wrapper {
  width: 50px;
  height: 35px;
}
header .hamburger .hamburger_wrapper span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #97D28B;
}
header .hamburger .hamburger_wrapper span:nth-child(1) {
  top: 0;
  transition: top 0.15s ease 0.15s, transform 0.15s ease;
}
header .hamburger .hamburger_wrapper span:nth-child(2) {
  top: 15px;
  transition: opacity 0.15s ease;
}
header .hamburger .hamburger_wrapper span:nth-child(3) {
  top: 30px;
  transition: top 0.15s ease 0.15s, transform 0.15s ease;
}
header .hamburger.open .hamburger_wrapper span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
  transition: top 0.15s ease, transform 0.15s ease 0.15s;
}
header .hamburger.open .hamburger_wrapper span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.15s ease 0.15s;
}
header .hamburger.open .hamburger_wrapper span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
  transition: top 0.15s ease, transform 0.15s ease 0.15s;
}
@media (max-width: 1200px) {
  header .header_nav {
    display: none;
  }
  header .header_language {
    border-right: 1px solid #97D28B;
  }
  header .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  header {
    height: 5em;
    padding: 0 0 0 10px;
  }
  header .header_language {
    min-width: 5em;
  }
  header .hamburger {
    min-width: 70px;
  }
}

.menu {
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: #262D29;
  transition: all 0.5s ease;
  padding: 10px;
  z-index: 200;
}
.menu.open {
  transform: translateX(0%);
}
.menu .nav {
  gap: 1.5em;
}
.menu .nav .nav_item {
  color: #ffffff;
  font-size: 1.75em;
  font-weight: 400;
  padding: 0 1.75em;
}

footer {
  width: 100%;
  margin-top: auto;
  background-color: #333E39;
}
footer .footer_content {
  width: 100%;
  gap: 5em;
  border-top: 1px solid #97D28B;
  border-bottom: 1px solid #97D28B;
  padding: 2.5em;
}
footer .footer_content .footer_nav .nav_item {
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  padding: 0 1.75em;
  border-right: 1px solid #ffffff;
}
footer .footer_content .footer_nav .nav_item:first-child {
  border-right: none;
  padding: 0 1.75em 0 0;
}
footer .footer_content .footer_nav .nav_item:last-child {
  border-right: none;
}
footer .footer_content .footer_social {
  gap: 10px;
}
footer .footer_content .footer_social .footer_social_item {
  width: 1.875em;
  height: 1.875em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer_content .footer_social .footer_social_item.twitter {
  background-image: url("../svg/twitter.svg");
}
footer .footer_content .footer_social .footer_social_item.facebook {
  background-image: url("../svg/facebook.svg");
}
footer .footer_content .footer_social .footer_social_item.instagram {
  background-image: url("../svg/instagram.svg");
}
footer .footer_content .footer_social .footer_social_item.linkedin {
  background-image: url("../svg/linkedin.svg");
}
footer .footer_bottom {
  width: 100%;
  gap: 5em;
  flex-wrap: wrap;
  padding: 2.5em;
}
footer .footer_bottom .header_logo {
  height: 2.875em;
  margin: 0 auto;
}
footer .footer_bottom .header_logo img {
  height: 100%;
}
footer .footer_bottom span {
  width: 17em;
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
}
footer .footer_bottom span a {
  color: #ffffff;
  font-size: 1em;
  font-weight: 700;
}
footer .footer_bottom span:last-child {
  text-align: right;
}
@media (max-width: 800px) {
  footer .footer_content {
    flex-direction: column;
    align-items: center;
  }
  footer .footer_bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  footer .footer_bottom .header_logo {
    order: 1;
  }
  footer .footer_bottom span {
    width: auto;
  }
  footer .footer_bottom span:nth-child(1) {
    order: 2;
  }
  footer .footer_bottom span:nth-child(3) {
    order: 3;
  }
}
@media (max-width: 600px) {
  footer .footer_content {
    padding: 2.5em 10px;
  }
  footer .footer_content .footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  footer .footer_content .footer_nav .nav_item {
    width: 100%;
    padding: 0;
    text-align: center;
    border: none;
  }
  footer .footer_bottom {
    padding: 2.5em 10px;
  }
}

.universalMatrix {
  width: 100%;
  max-width: 930px;
  gap: 1.875em;
  background-color: #333e39;
  padding: 6.25em;
  margin-top: 10em;
}
.universalMatrix::after {
  content: "";
  position: absolute;
  top: -1.875em;
  right: -1.875em;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.universalMatrix .universalMatrix_elem {
  width: 100%;
}
.universalMatrix .universalMatrix_elem .richText p {
  color: #ffffff;
  font-weight: 200;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem .richText p a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem .richText ul li {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem .richText ol li {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem.highlighted .text {
  color: #FFFFFF;
  font-size: 1.875em;
  font-weight: 400;
}
.universalMatrix .universalMatrix_elem.image img {
  width: 100%;
}
@media (max-width: 1200px) {
  .universalMatrix {
    padding: 2.5em;
    margin-top: 7.5em;
  }
  .universalMatrix::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .universalMatrix {
    padding: 2.5em 10px;
    margin-top: 5em;
  }
}

.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: "Geologica", 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 {
  color: #1D0C12;
  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 {
  color: #1D0C12;
  font-size: 1.25em;
  font-weight: 500;
  cursor: pointer;
  margin-left: auto;
}
.cookie .cookie_bottom .cookie_deny {
  color: #1D0C12;
  font-size: 1.25em;
  font-weight: 500;
  cursor: pointer;
}
.cookie .cookie_bottom .cookie_save {
  color: #1D0C12;
  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: #1D0C12;
  color: #FFFFFF;
  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;
}

.form_message {
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  background-color: #ffffff;
  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%);
}
.form_message .message {
  font-size: 2em;
  text-align: center;
}

.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;
  z-index: 5;
}
.btn.square {
  min-width: 15em;
  min-height: 3.75em;
  background-color: #DCEFD8;
  padding: 1.25em 5em;
}
.btn.square span {
  color: #262D29;
  font-size: 1.125em;
  line-height: 1.1em;
  letter-spacing: 0;
}
.btn.square::after {
  content: "";
  position: absolute;
  top: -0.625em;
  right: -0.625em;
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.btn.more span {
  color: #97D28B;
  font-weight: 400;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}

.index {
  width: 100%;
  padding: 7.5em 2.5em;
}
.index .index_header {
  width: 100%;
}
.index .index_header .column {
  width: 42%;
  gap: 2.5em;
  padding: 0 0 0 5em;
}
.index .index_header .column h1 {
  color: #DCEFD8;
  font-weight: 600;
  font-size: min(6em, 14vw);
  line-height: 0.93em;
  letter-spacing: 0;
}
.index .index_header .column h1 strong {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1em;
  line-height: 0.93em;
  letter-spacing: 0;
}
.index .index_header .globe_wrapper {
  width: 58%;
  padding-bottom: 35%;
  overflow: hidden;
}
.index .index_header .globe_wrapper #globe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index .index_header .globe_wrapper .globe_gradient {
  bottom: -1px;
  width: 100%;
  height: 55%;
  background: linear-gradient(163deg, transparent 0%, transparent 50%, #262D29 75%, #262D29 100%);
  z-index: 5;
}
.index .index_about {
  width: 100%;
  max-width: 1400px;
  gap: 1.875em;
  margin-top: 5em;
}
.index .index_about .column {
  width: calc(50% - 0.9375em);
  gap: 2.5em;
}
.index .index_about .image {
  width: calc(50% - 0.9375em);
  padding: 0 1.875em 1.875em 0;
  margin-top: 3.75em;
}
.index .index_about .image img {
  width: 100%;
}
.index .index_about .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/image_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_services {
  width: 100%;
  max-width: 1400px;
  gap: 1.875em;
  margin-top: 10em;
}
.index .index_services .index_services_header {
  width: 100%;
  gap: 2.5em;
  flex-wrap: wrap;
}
.index .index_services .index_services_header .richText {
  max-width: 940px;
}
.index .index_services .index_services_wrapper {
  width: 100%;
  max-width: 1010px;
  gap: 2.5em;
}
.index .index_services .index_services_wrapper .services_image_swiper {
  width: calc(42% - 1.25em);
  overflow: hidden;
}
.index .index_services .index_services_wrapper .services_image_swiper .services_image_swiper_background {
  width: 100%;
  height: 100%;
}
.index .index_services .index_services_wrapper .services_image_swiper .services_image_swiper_background svg {
  width: 100%;
}
.index .index_services .index_services_wrapper .services_image_swiper .swiper-slide {
  opacity: 0 !important;
}
.index .index_services .index_services_wrapper .services_image_swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.index .index_services .index_services_wrapper .services_image_swiper .swiper-slide svg {
  width: 100%;
}
.index .index_services .index_services_wrapper .services_image_swiper .swiper-slide svg rect {
  opacity: 0;
  transition: opacity 0.5s;
}
.index .index_services .index_services_wrapper .services_text_swiper {
  width: calc(58% - 1.25em);
  align-self: stretch;
  overflow: hidden;
  padding: 0 5.625em 0 0;
}
.index .index_services .index_services_wrapper .services_text_swiper .swiper-slide {
  gap: 1.25em;
  transition: opacity 0.5s ease;
}
.index .index_services .index_services_wrapper .services_text_swiper .swiper-slide.swiper-slide-prev {
  opacity: 0.25;
}
.index .index_services .index_services_wrapper .services_text_swiper .swiper-slide.swiper-slide-next {
  opacity: 0.25;
}
.index .index_services .index_services_wrapper .services_text_swiper .swiper-slide .title {
  color: #dcefd8;
  font-size: 1.875em;
  font-weight: 400;
}
.index .index_services .index_services_wrapper .services_text_swiper .swiper-slide p {
  color: #dcefd8;
  font-size: 1.125em;
  font-weight: 200;
}
.index .index_services .index_services_wrapper .services_text_nav {
  top: calc(50% - 4.25em);
  gap: 1em;
}
.index .index_services .index_services_wrapper .services_text_nav .services_text_prev {
  width: 3.75em;
  height: 3.75em;
  background-color: #333e39;
}
.index .index_services .index_services_wrapper .services_text_nav .services_text_prev .arrow {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../svg/arrow-prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.index .index_services .index_services_wrapper .services_text_nav .services_text_prev.swiper-button-disabled .arrow {
  opacity: 0.5;
}
.index .index_services .index_services_wrapper .services_text_nav .services_text_next {
  width: 3.75em;
  height: 3.75em;
  background-color: #333e39;
}
.index .index_services .index_services_wrapper .services_text_nav .services_text_next .arrow {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../svg/arrow-next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.index .index_services .index_services_wrapper .services_text_nav .services_text_next.swiper-button-disabled .arrow {
  opacity: 0.5;
}
.index .index_blog {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
  padding: 7.5em 0 5em 0;
}
.index .index_blog .index_blog_bg {
  width: 100vw;
  height: 100%;
  align-self: center;
  background: linear-gradient(180deg, #262d29, transparent);
}
.index .index_blog .index_blog_header {
  width: 100%;
  gap: 1.25em;
  flex-wrap: wrap;
}
.index .index_blog .index_blog_header .title_h2 {
  max-width: 1100px;
}
.index .index_blog .index_blog_header .btn {
  margin: 0 0 0 auto;
}
.index .index_blog .index_blog_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.875em;
}
.index .index_blog .index_blog_grid .blog_item {
  width: 100%;
  background-color: #333E39;
  gap: 1.25em;
  padding: 1.25em 1.25em 1.875em 1.25em;
}
.index .index_blog .index_blog_grid .blog_item::after {
  content: "";
  position: absolute;
  bottom: -0.875em;
  right: -0.875em;
  width: 3.5em;
  height: 3.5em;
  background-image: url("../svg/image_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_blog .index_blog_grid .blog_item .image {
  width: 100%;
}
.index .index_blog .index_blog_grid .blog_item .image img {
  width: 100%;
}
.index .index_blog .index_blog_grid .blog_item .date {
  color: #dcefd8;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0;
}
.index .index_blog .index_blog_grid .blog_item .title {
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_blog .index_blog_grid .blog_item .btn {
  align-self: flex-end;
}
.index .index_blog .index_blog_grid .publication_item {
  width: 100%;
  background-color: #717973;
  padding: 1.25em 1.25em 1.875em 1.25em;
}
.index .index_blog .index_blog_grid .publication_item::after {
  content: "";
  position: absolute;
  top: -0.875em;
  right: -0.875em;
  width: 3.5em;
  height: 3.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_blog .index_blog_grid .publication_item .title {
  width: 90%;
  color: #dcefd8;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-align: center;
}
.index .index_blog .index_blog_grid .publication_item .richText {
  width: 100%;
  margin-top: 1.25em;
}
.index .index_blog .index_blog_grid .publication_item .richText p {
  font-size: 1em;
}
.index .index_blog .index_blog_grid .publication_item .line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  margin: 1.25em 0;
}
.index .index_blog .index_blog_grid .publication_item .location {
  color: #dcefd8;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0;
}
.index .index_blog .index_blog_grid .publication_item .date {
  color: #dcefd8;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0;
}
.index .index_blog .index_blog_grid .publication_item .author {
  width: 100%;
  gap: 3px;
  margin-bottom: 1.875em;
}
.index .index_blog .index_blog_grid .publication_item .author .image {
  width: 2.5em;
  height: 2.5em;
}
.index .index_blog .index_blog_grid .publication_item .author .image img {
  width: 100%;
  border-radius: 50%;
}
.index .index_blog .index_blog_grid .publication_item .author .column {
  width: calc(100% - 3px - 2.5em);
  gap: 6px;
}
.index .index_blog .index_blog_grid .publication_item .author .column .name {
  color: #dcefd8;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_blog .index_blog_grid .publication_item .author .column .position {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_blog .index_blog_grid .publication_item .btn {
  align-self: flex-end;
}
.index .index_team {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
  margin-top: 10em;
}
.index .index_team .index_team_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1.875em;
}
.index .index_team .index_team_grid .team_grid_item {
  width: 100%;
  background-color: #333E39;
  gap: 1.25em;
  padding: 1.25em;
}
.index .index_team .index_team_grid .team_grid_item .image {
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
.index .index_team .index_team_grid .team_grid_item .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(17.5em, 100%);
  height: min(17.5em, 100%);
  background-image: url("../svg/team_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_team .index_team_grid .team_grid_item .image img {
  width: 100%;
  z-index: 3;
}
.index .index_team .index_team_grid .team_grid_item .wrapper {
  width: 100%;
  gap: 10px;
  padding: 0 1.25em;
}
.index .index_team .index_team_grid .team_grid_item .wrapper .column {
  width: calc(100% - 1.5em);
  gap: 0.625em;
}
.index .index_team .index_team_grid .team_grid_item .wrapper .column .name {
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
.index .index_team .index_team_grid .team_grid_item .wrapper .column .position {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.5em;
  letter-spacing: 0;
}
.index .index_team .index_team_grid .team_grid_item .wrapper .arrow {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../svg/arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .index .index_header .column {
    padding: 0;
  }
}
@media (max-width: 950px) {
  .index .index_blog .index_blog_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .index .index_header {
    flex-direction: column;
  }
  .index .index_header .column {
    width: 100%;
  }
  .index .index_header .globe_wrapper {
    width: 100%;
    padding-bottom: 60%;
  }
  .index .index_about {
    flex-direction: column;
  }
  .index .index_about .column {
    width: 100%;
  }
  .index .index_about .image {
    width: 100%;
  }
  .index .index_blog .index_blog_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index .index_team .index_team_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .index {
    padding: 5em 10px;
  }
  .index .index_header .column .btn {
    align-self: center;
  }
  .index .index_about .column .btn {
    align-self: center;
  }
  .index .index_services {
    width: 100%;
    max-width: 1400px;
    gap: 1.875em;
    margin-top: 10em;
  }
  .index .index_services .index_services_wrapper {
    gap: 1.25em;
    align-items: center;
  }
  .index .index_services .index_services_wrapper .services_image_swiper {
    width: calc(30% - 0.625em);
  }
  .index .index_services .index_services_wrapper .services_text_swiper {
    width: calc(70% - 0.625em);
    height: 200px;
  }
  .index .index_blog .index_blog_header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2.5em;
  }
  .index .index_blog .index_blog_header .btn {
    margin: 0;
  }
  .index .index_blog .index_blog_grid {
    gap: 15px;
  }
  .index .index_blog .index_blog_grid .blog_item {
    padding: 10px 10px 15px 10px;
  }
  .index .index_blog .index_blog_grid .blog_item::after {
    bottom: -0.25em;
    right: -0.25em;
    width: 2em;
    height: 2em;
  }
  .index .index_blog .index_blog_grid .blog_item .btn {
    margin-top: auto;
  }
  .index .index_blog .index_blog_grid .publication_item {
    padding: 10px;
  }
  .index .index_blog .index_blog_grid .publication_item::after {
    top: -0.25em;
    right: -0.25em;
    width: 2em;
    height: 2em;
  }
  .index .index_blog .index_blog_grid .publication_item .line.line_2 {
    display: none;
  }
  .index .index_blog .index_blog_grid .publication_item .author {
    display: none;
  }
  .index .index_blog .index_blog_grid .publication_item .btn {
    margin-top: 1.25em;
  }
  .index .index_team .index_team_grid {
    gap: 15px;
  }
  .index .index_team .index_team_grid .team_grid_item {
    padding: 10px;
  }
  .index .index_team .index_team_grid .team_grid_item .wrapper {
    padding: 0;
  }
}
@media (max-width: 350px) {
  .index .index_blog .index_blog_grid {
    grid-template-columns: 100%;
  }
  .index .index_team .index_team_grid {
    grid-template-columns: 100%;
  }
}

.servicesList {
  width: 100%;
  padding: 10em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .servicesList {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .servicesList {
    padding: 5em 10px 5em 10px;
  }
}
.servicesList .servicesList_header {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
}
.servicesList .servicesList_header .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
}
.servicesList .servicesList_header .image {
  width: calc(50% - 1.25em);
}
.servicesList .servicesList_header .image img {
  width: 100%;
}
.servicesList .servicesList_header .image::after {
  content: "";
  position: absolute;
  bottom: -1.875em;
  right: -1.875em;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/image_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.servicesList .servicesList_grid {
  width: 100%;
  max-width: 1400px;
  gap: 7.5em;
  margin-top: 10em;
}
.servicesList .servicesList_grid .servicesList_item {
  width: 100%;
  max-width: 1100px;
  gap: 2.5em;
}
.servicesList .servicesList_grid .servicesList_item .image {
  width: calc(37% - 1.25em);
}
.servicesList .servicesList_grid .servicesList_item .image svg {
  width: 100%;
}
.servicesList .servicesList_grid .servicesList_item .image svg:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.servicesList .servicesList_grid .servicesList_item .image svg:nth-child(2) rect {
  opacity: 0;
  transition: opacity 0.5s;
}
.servicesList .servicesList_grid .servicesList_item .column {
  width: calc(63% - 1.25em);
  gap: 1.25em;
  background-color: #333e39;
  padding: 6.25em;
}
.servicesList .servicesList_grid .servicesList_item .column .title {
  color: #dcefd8;
  font-weight: 400;
  font-size: 3.125em;
  line-height: 1.04em;
  letter-spacing: 0;
}
.servicesList .servicesList_grid .servicesList_item .column .richText {
  width: 100%;
  margin-bottom: 1.25em;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(even) {
  flex-direction: row-reverse;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(1) {
  align-self: flex-end;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(2) {
  align-items: flex-end;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(3) {
  align-self: flex-start;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(4) {
  align-items: flex-end;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(5) {
  align-self: flex-end;
}
.servicesList .servicesList_grid .servicesList_item:nth-child(6) {
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .servicesList .servicesList_grid .servicesList_item .column {
    padding: 2.5em;
  }
}
@media (max-width: 750px) {
  .servicesList .servicesList_header {
    flex-direction: column;
  }
  .servicesList .servicesList_header .column {
    width: 100%;
  }
  .servicesList .servicesList_header .image {
    width: 90%;
    align-self: center;
  }
  .servicesList .servicesList_grid .servicesList_item {
    gap: 1.25em;
  }
  .servicesList .servicesList_grid .servicesList_item .image {
    width: calc(25% - 0.625em);
  }
  .servicesList .servicesList_grid .servicesList_item .column {
    width: calc(75% - 0.625em);
  }
}
@media (max-width: 500px) {
  .servicesList .servicesList_grid {
    margin-top: 7.5em;
  }
  .servicesList .servicesList_grid .servicesList_item {
    flex-direction: column !important;
  }
  .servicesList .servicesList_grid .servicesList_item .image {
    width: 100%;
  }
  .servicesList .servicesList_grid .servicesList_item .column {
    width: 100%;
    padding: 2.5em 10px;
  }
  .servicesList .servicesList_grid .servicesList_item .column .btn {
    align-self: center;
  }
}

.service {
  width: 100%;
  padding: 10em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .service {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .service {
    padding: 5em 10px 5em 10px;
  }
}
.service .service_header {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
}
.service .service_header .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
}
.service .service_header .image {
  width: calc(50% - 1.25em);
}
.service .service_header .image svg {
  width: 100%;
  max-width: 411px;
}
@media (max-width: 750px) {
  .service .service_header {
    flex-direction: column;
  }
  .service .service_header .column {
    width: 100%;
  }
  .service .service_header .image {
    width: 90%;
    align-self: center;
  }
}

.blogList {
  width: 100%;
  padding: 7.5em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .blogList {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .blogList {
    padding: 5em 10px 5em 10px;
  }
}
.blogList .blogList_header {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
}
.blogList .blogList_header .column {
  width: calc(100% - 1.25em - 22.5em);
}
.blogList .blogList_header .filter {
  width: 22.5em;
}
.blogList .blogList_header .filter .active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5em;
  min-height: 3.75em;
  background-color: #DCEFD8;
  padding: 1.25em 2.5em;
  cursor: pointer;
}
.blogList .blogList_header .filter .active span {
  gap: 10px;
  color: #262D29;
  font-size: 1.125em;
  line-height: 1.1em;
  letter-spacing: 0;
  white-space: wrap;
}
.blogList .blogList_header .filter .active span::after {
  content: "";
  display: inline-block;
  width: 0.88em;
  height: 0.88em;
  background-image: url("../svg/arrow-down-black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.blogList .blogList_header .filter .active::after {
  content: "";
  position: absolute;
  top: -0.625em;
  right: -0.625em;
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.blogList .blogList_header .filter .filter_dropdown {
  top: 100%;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease 0.3s;
}
.blogList .blogList_header .filter .filter_dropdown a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75em;
  background-color: #DCEFD8;
  padding: 1.25em 2.5em;
}
.blogList .blogList_header .filter .filter_dropdown a span {
  gap: 10px;
  color: #262D29;
  font-size: 1.125em;
  line-height: 1.1em;
  letter-spacing: 0;
  white-space: wrap;
  opacity: 0;
  transition: all 0.3s ease;
}
.blogList .blogList_header .filter .filter_dropdown.open {
  transform: scaleY(1);
  transition: all 0.3s ease;
}
.blogList .blogList_header .filter .filter_dropdown.open a span {
  opacity: 1;
  transition: all 0.3s ease 0.3s;
}
.blogList .blogList_grid {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 7.5em 1.875em;
  margin-top: 7.5em;
}
.blogList .blogList_grid .blog_item {
  width: 100%;
  background-color: #333E39;
  gap: 1.25em;
  padding: 1.25em 1.25em 1.875em 1.25em;
}
.blogList .blogList_grid .blog_item::after {
  content: "";
  position: absolute;
  bottom: -0.875em;
  right: -0.875em;
  width: 3.5em;
  height: 3.5em;
  background-image: url("../svg/image_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.blogList .blogList_grid .blog_item .image {
  width: 100%;
}
.blogList .blogList_grid .blog_item .image img {
  width: 100%;
}
.blogList .blogList_grid .blog_item .date {
  color: #dcefd8;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0;
}
.blogList .blogList_grid .blog_item .title {
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.blogList .blogList_grid .blog_item .btn {
  align-self: flex-end;
}
.blogList .blogList_grid .publication_item {
  width: 100%;
  background-color: #717973;
  padding: 1.25em 1.25em 1.875em 1.25em;
}
.blogList .blogList_grid .publication_item::after {
  content: "";
  position: absolute;
  top: -0.875em;
  right: -0.875em;
  width: 3.5em;
  height: 3.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.blogList .blogList_grid .publication_item .title {
  width: 90%;
  color: #dcefd8;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-align: center;
}
.blogList .blogList_grid .publication_item .richText {
  width: 100%;
  margin-top: 1.25em;
}
.blogList .blogList_grid .publication_item .richText p {
  font-size: 1em;
}
.blogList .blogList_grid .publication_item .line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  margin: 1.25em 0;
}
.blogList .blogList_grid .publication_item .location {
  color: #dcefd8;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0;
}
.blogList .blogList_grid .publication_item .date {
  color: #dcefd8;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0;
}
.blogList .blogList_grid .publication_item .author {
  width: 100%;
  gap: 3px;
  margin-bottom: 1.875em;
}
.blogList .blogList_grid .publication_item .author .image {
  width: 2.5em;
  height: 2.5em;
}
.blogList .blogList_grid .publication_item .author .image img {
  width: 100%;
  border-radius: 50%;
}
.blogList .blogList_grid .publication_item .author .column {
  width: calc(100% - 3px - 2.5em);
  gap: 6px;
}
.blogList .blogList_grid .publication_item .author .column .name {
  color: #dcefd8;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.blogList .blogList_grid .publication_item .author .column .position {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.blogList .blogList_grid .publication_item .btn {
  align-self: flex-end;
}
.blogList .blogList_pagination {
  gap: 0.75em;
  margin-top: 7.5em;
}
.blogList .blogList_pagination a {
  width: 3.75em;
  height: 3.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333e39;
  color: #dcefd8;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: 0;
}
.blogList .blogList_pagination span {
  width: 3.75em;
  height: 3.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #97D28B;
  color: #333e39;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .blogList .blogList_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 5em 1.875em;
  }
}
@media (max-width: 750px) {
  .blogList .blogList_header {
    flex-direction: column;
  }
  .blogList .blogList_header .column {
    width: 100%;
  }
  .blogList .blogList_header .image {
    width: 90%;
    align-self: center;
  }
}
@media (max-width: 600px) {
  .blogList .blogList_grid {
    grid-gap: 2.5em 20px;
  }
  .blogList .blogList_pagination {
    margin-top: 5em;
  }
  .blogList .blogList_pagination a {
    width: 2.5em;
    height: 2.5em;
  }
  .blogList .blogList_pagination span {
    width: 2.5em;
    height: 2.5em;
  }
}
@media (max-width: 400px) {
  .blogList .blogList_grid {
    grid-template-columns: 100%;
  }
}

.blog {
  width: 100%;
  padding: 10em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .blog {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .blog {
    padding: 5em 10px 5em 10px;
  }
}
.blog .blog_header {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
}
.blog .blog_header .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
}
.blog .blog_header .column .date {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
.blog .blog_header .column .date strong {
  color: #9ACD32;
  font-weight: 400;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.blog .blog_header .image {
  width: calc(50% - 1.25em);
}
.blog .blog_header .image img {
  width: 100%;
}
.blog .blog_header .image::after {
  content: "";
  position: absolute;
  bottom: -1.875em;
  right: -1.875em;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/image_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 750px) {
  .blog .blog_header {
    flex-direction: column;
  }
  .blog .blog_header .column {
    width: 100%;
  }
  .blog .blog_header .image {
    width: 90%;
    align-self: center;
  }
}

.team {
  width: 100%;
  gap: 7.5em;
  padding: 7.5em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .team {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .team {
    gap: 5em;
    padding: 5em 10px 5em 10px;
  }
}
.team .team_item {
  width: 100%;
  max-width: 1400px;
}
.team .team_item .image {
  width: 32%;
  gap: 1.25em;
  background-color: #333e39;
  padding: 2.5em 3.75em;
}
.team .team_item .image .name {
  color: #dcefd8;
  font-weight: 400;
  font-size: 3.125em;
  line-height: 1.05em;
  letter-spacing: 0;
}
.team .team_item .image .position {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.team .team_item .image img {
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
.team .team_item .column {
  width: calc(68% + 1.875em);
  background-color: #717973;
  padding: 6.25em;
  margin-left: -1.875em;
}
.team .team_item .column::after {
  content: "";
  position: absolute;
  top: -1.875em;
  right: -1.875em;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.team .team_item .column .richText {
  width: 100%;
}
.team .team_item .column .richText p {
  font-weight: 200;
  font-size: 1.125em;
}
.team .team_item .column .team_wrapper {
  width: 100%;
  gap: 1.25em;
  flex-wrap: wrap;
  margin-top: 2.5em;
}
.team .team_item .column .team_wrapper .team_link {
  gap: 6px;
  color: #dcefd8;
  font-weight: 400;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.team .team_item .column .team_wrapper .team_link::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.team .team_item .column .team_wrapper .team_link.email::before {
  background-image: url("../svg/mail.svg");
}
.team .team_item .column .team_wrapper .team_link.phone::before {
  background-image: url("../svg/phone.svg");
}
.team .team_item .column .team_wrapper .team_social {
  gap: 10px;
  margin-left: auto;
}
.team .team_item .column .team_wrapper .team_social .team_social_item {
  width: 1.875em;
  height: 1.875em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.team .team_item .column .team_wrapper .team_social .team_social_item.twitter {
  background-image: url("../svg/twitter.svg");
}
.team .team_item .column .team_wrapper .team_social .team_social_item.facebook {
  background-image: url("../svg/facebook.svg");
}
.team .team_item .column .team_wrapper .team_social .team_social_item.instagram {
  background-image: url("../svg/instagram.svg");
}
@media (max-width: 1200px) {
  .team .team_item .image {
    padding: 2.5em;
  }
  .team .team_item .column {
    padding: 2.5em;
  }
}
@media (max-width: 800px) {
  .team .team_item {
    flex-direction: column;
  }
  .team .team_item .image {
    width: 100%;
    max-width: 500px;
  }
  .team .team_item .column {
    width: 100%;
    margin: 0;
  }
  .team .team_item .column::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .team .team_item .image {
    padding: 20px 10px;
  }
  .team .team_item .column {
    padding: 20px 10px;
  }
  .team .team_item .column .team_wrapper {
    flex-direction: column;
    align-items: center;
  }
  .team .team_item .column .team_wrapper .team_social {
    margin: 0;
  }
}

.about {
  width: 100%;
  padding: 10em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .about {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 5em 10px 5em 10px;
  }
}
.about .about_header {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
}
.about .about_header .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
}
.about .about_header .column .date {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
.about .about_header .column .date strong {
  color: #9ACD32;
  font-weight: 400;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.about .about_header .image {
  width: calc(50% - 1.25em);
}
.about .about_header .image img {
  width: 100%;
}
.about .about_header .image::after {
  content: "";
  position: absolute;
  bottom: -1.875em;
  right: -1.875em;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/image_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about .about_item {
  width: 100%;
  max-width: 1400px;
  gap: 3.75em;
  margin-top: 10em;
}
.about .about_item.reverse {
  flex-direction: row-reverse;
}
.about .about_item .column {
  width: calc(50% - 1.875em);
  gap: 2.5em;
}
.about .about_item .column .date {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
.about .about_item .column .date strong {
  color: #9ACD32;
  font-weight: 400;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.about .about_item .image {
  width: calc(50% - 1.875em);
}
.about .about_item .image img {
  width: 100%;
}
.about .about_item .image::after {
  content: "";
  position: absolute;
  top: -1.875em;
  right: -1.875em;
  width: 7.5em;
  height: 7.5em;
  background-image: url("../svg/button_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about .about_team {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
  margin-top: 10em;
}
.about .about_team .about_team_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1.875em;
}
.about .about_team .about_team_grid .team_grid_item {
  width: 100%;
  background-color: #333E39;
  gap: 1.25em;
  padding: 1.25em;
}
.about .about_team .about_team_grid .team_grid_item .image {
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
.about .about_team .about_team_grid .team_grid_item .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(17.5em, 100%);
  height: min(17.5em, 100%);
  background-image: url("../svg/team_pixels.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about .about_team .about_team_grid .team_grid_item .image img {
  width: 100%;
  z-index: 3;
}
.about .about_team .about_team_grid .team_grid_item .wrapper {
  width: 100%;
  gap: 10px;
  padding: 0 1.25em;
}
.about .about_team .about_team_grid .team_grid_item .wrapper .column {
  width: calc(100% - 1.5em);
  gap: 0.625em;
}
.about .about_team .about_team_grid .team_grid_item .wrapper .column .name {
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
.about .about_team .about_team_grid .team_grid_item .wrapper .column .position {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.5em;
  letter-spacing: 0;
}
.about .about_team .about_team_grid .team_grid_item .wrapper .arrow {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../svg/arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 800px) {
  .about .about_team .about_team_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 750px) {
  .about .about_header {
    flex-direction: column;
  }
  .about .about_header .column {
    width: 100%;
  }
  .about .about_header .image {
    width: 90%;
    align-self: center;
  }
  .about .about_item {
    flex-direction: column !important;
    gap: 2.5em;
  }
  .about .about_item .column {
    width: 100%;
  }
  .about .about_item .column .btn {
    align-self: center;
  }
  .about .about_item .image {
    width: 100%;
  }
  .about .about_item .image::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .about .about_team .about_team_grid {
    gap: 15px;
  }
  .about .about_team .about_team_grid .team_grid_item {
    padding: 10px;
  }
  .about .about_team .about_team_grid .team_grid_item .wrapper {
    padding: 0;
  }
}
@media (max-width: 350px) {
  .about .about_team .about_team_grid {
    grid-template-columns: 100%;
  }
}

.contact {
  width: 100%;
  padding: 10em 2.5em 7.5em 2.5em;
}
@media (max-width: 1200px) {
  .contact {
    padding: 7.5em 2.5em 7.5em 2.5em;
  }
}
@media (max-width: 600px) {
  .contact {
    padding: 5em 10px 5em 10px;
  }
}
.contact .contact_wrapper {
  width: 100%;
  max-width: 1400px;
  gap: 2.5em;
}
.contact .contact_wrapper .column {
  width: calc(50% - 1.25em);
}
.contact .contact_wrapper .column .richText {
  margin-top: 3.75em;
}
.contact .contact_wrapper .column .contact_link {
  width: 100%;
  gap: 6px;
  color: #dcefd8;
  font-size: 1.5em;
  line-height: 100%;
  letter-spacing: 0;
  padding: 0.9em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact .contact_wrapper .column .contact_link::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.contact .contact_wrapper .column .contact_link.address::before {
  background-image: url("../svg/address.svg");
}
.contact .contact_wrapper .column .contact_link.email::before {
  background-image: url("../svg/mail.svg");
}
.contact .contact_wrapper .column .contact_link.phone::before {
  background-image: url("../svg/phone.svg");
}
.contact .contact_wrapper .column .contact_social {
  gap: 10px;
  margin-top: 1.25em;
}
.contact .contact_wrapper .column .contact_social .contact_social_item {
  width: 1.875em;
  height: 1.875em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.contact .contact_wrapper .column .contact_social .contact_social_item.twitter {
  background-image: url("../svg/twitter.svg");
}
.contact .contact_wrapper .column .contact_social .contact_social_item.facebook {
  background-image: url("../svg/facebook.svg");
}
.contact .contact_wrapper .column .contact_social .contact_social_item.instagram {
  background-image: url("../svg/instagram.svg");
}
.contact .contact_wrapper .form {
  width: calc(50% - 1.25em);
  gap: 1.875em;
}
.contact .contact_wrapper .form .input_box {
  width: 100%;
  gap: 8px;
}
.contact .contact_wrapper .form .input_box label {
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.1em;
  letter-spacing: 0;
}
.contact .contact_wrapper .form .input_box input {
  width: 100%;
  background-color: #333e39;
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  padding: 0.875em 0.5em;
}
.contact .contact_wrapper .form .input_box textarea {
  width: 100%;
  background-color: #333e39;
  color: #dcefd8;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  padding: 0.875em 0.5em;
  resize: none;
}
.contact .contact_wrapper .form .btn {
  align-self: flex-end;
}
@media (max-width: 900px) {
  .contact .contact_wrapper {
    flex-direction: column;
  }
  .contact .contact_wrapper .column {
    width: 100%;
  }
  .contact .contact_wrapper .form {
    width: 100%;
    max-width: 600px;
    align-self: center;
  }
}
@media (max-width: 600px) {
  .contact .contact_wrapper .form .btn {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */