@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.image-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 
Responsive between
Ej: @include responsiveB('mobile-v', 'mobile-h'){
*/
/*
tr( duracion, propiedades, delay)
*/
/*
tre( duracion, propiedades, delay)
a diferencia de tr(), tre tiene un easign aplicado que hace la animacion mas natural
*/
/*
fade( x, y, defaulttransition, delay );
Añade transformacion x e y, y opacity 0 al elemento.
Se pueden pasar valores negativos, por ejemplo, para desplazar x hacia la izquierda
Tambien se puede pasar un porcentaje
defaulttransition aplica la variable $transition-default definida en _variables.scss
delay aplica un delay multiplicando el valor por $transition-default-delay para hacer aparecer los elementos de forma escalonada
*/
.in {
  --fade-opacity: 1;
  --fade-transform: translateX(0px) translateY(0px);
  --p100: 100%;
  --v1: 1;
  --v0: 0;
}

/*
fadein();
Aplica transformX(0px), transformY(0px) y opacity 1 para hacer aparecer el objecto
*/
/*
Se usa igual que fade, pero crea un loop para animar los elementos de forma ordenada
*/
/*
Use:
@if editor() {
  font-size: 90px;
}
*/
/* Text Block Custom Style */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fill-available;
}

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

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #292352;
  background-color: #F3F2F6;
  line-height: 1.57;
}
body:not(:has(.hero-home)) {
  padding-top: 130px;
}
@media only screen and (max-width: 900px) {
  body:not(:has(.hero-home)) {
    padding-top: 85px;
  }
}
body img {
  max-width: 100%;
  height: auto;
}
body ul li {
  list-style: none;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.hidden {
  display: none;
}

input[type=text],
input[type=email],
input[type=search],
input[type=submit],
textarea,
button {
  font-family: "DM Sans", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

button {
  background-color: transparent;
}

select {
  font-family: "DM Sans", sans-serif;
}

h1,
.h1,
.h1 p {
  font-size: 56px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  h1,
  .h1,
  .h1 p {
    font-size: 42px;
  }
}
@media only screen and (max-width: 600px) {
  h1,
  .h1,
  .h1 p {
    font-size: 26px;
  }
}

h2,
.h2,
.h2 p {
  font-size: 49px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  h2,
  .h2,
  .h2 p {
    font-size: 36px;
  }
}
@media only screen and (max-width: 600px) {
  h2,
  .h2,
  .h2 p {
    font-size: 26px;
  }
}

h3,
.h3,
.h3 p {
  font-size: 46px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  h3,
  .h3,
  .h3 p {
    font-size: 36px;
  }
}
@media only screen and (max-width: 600px) {
  h3,
  .h3,
  .h3 p {
    font-size: 30px;
  }
}

h4,
.h4,
.h4 p {
  font-size: 36px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  h4,
  .h4,
  .h4 p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  h4,
  .h4,
  .h4 p {
    font-size: 24px;
  }
}

h5,
.h5,
.h5 p {
  font-size: 32px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  h5,
  .h5,
  .h5 p {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  h5,
  .h5,
  .h5 p {
    font-size: 20px;
  }
}

h6,
.h6,
.h6 p {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  h6,
  .h6,
  .h6 p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  h6,
  .h6,
  .h6 p {
    font-size: 20px;
  }
}

a {
  color: #6854E5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

b,
strong,
strong * {
  font-weight: 600;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media only screen and (min-width: 750px) {
  .container {
    padding: 0 30px;
  }
}
.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}
@media only screen and (min-width: 750px) {
  .container-fluid {
    padding: 0 30px;
  }
}
@media (min-width: 1340px) {
  .container-fluid {
    padding: 0 50px;
  }
}

.centerDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iframe-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.home .site-menu > a,
body.error404 .site-menu > a,
body:has(.hero-home) .site-menu > a {
  color: #ffffff;
}
body.home .site-logo .logo-white,
body.error404 .site-logo .logo-white,
body:has(.hero-home) .site-logo .logo-white {
  display: block;
}
body.home .site-logo .logo-color,
body.error404 .site-logo .logo-color,
body:has(.hero-home) .site-logo .logo-color {
  display: none;
}
body.home .dropdown,
body.error404 .dropdown,
body:has(.hero-home) .dropdown {
  border: 1px solid #ffffff;
}
body.home .dropdown:hover,
body.error404 .dropdown:hover,
body:has(.hero-home) .dropdown:hover {
  border: 1px solid #6854E5;
}
@media only screen and (max-width: 1050px) {
  body.home .dropdown,
  body.error404 .dropdown,
  body:has(.hero-home) .dropdown {
    border: none;
  }
}
body.home .dropdown__items .button--inner,
body.error404 .dropdown__items .button--inner,
body:has(.hero-home) .dropdown__items .button--inner {
  color: #292352;
}

body.home.scrolled .site-logo .logo-color,
body.error404.scrolled .site-logo .logo-color,
body.scrolled:has(.hero-home) .site-logo .logo-color {
  display: none;
}
body.home.scrolled .site-logo .logo-white,
body.error404.scrolled .site-logo .logo-white,
body.scrolled:has(.hero-home) .site-logo .logo-white {
  display: block;
}

body:not(:has(.hero-home)) .site-menu a {
  color: #292352;
}
@media only screen and (max-width: 1050px) {
  body:not(:has(.hero-home)) .site-menu a {
    color: #ffffff;
  }
}
body:not(:has(.hero-home)) .site-menu a::after {
  background: #6854E5;
}
body:not(:has(.hero-home)) .site-menu a::before {
  background: url(../images/arrow-menu-dark.svg) no-repeat center center;
}
body:not(:has(.hero-home)) .dropdown {
  border: 1px solid #292352;
}
body:not(:has(.hero-home)) .dropdown:hover {
  border-top: 1px solid #6854E5;
  border-right: 1px solid #6854E5;
  border-left: 1px solid #6854E5;
  border-bottom: transparent;
}
body:not(:has(.hero-home)) .dropdown:hover button {
  color: #6854E5;
}
body:not(:has(.hero-home)) .dropdown:hover .investments_drop--button {
  border-bottom: 1px solid #6854E5;
}
body:not(:has(.hero-home)) .dropdown:hover .investments_drop--button::before {
  display: none;
}
@media only screen and (max-width: 1050px) {
  body:not(:has(.hero-home)) .dropdown {
    border: none;
  }
}
body:not(:has(.hero-home)) .dropdown .investments_drop--button {
  color: #292352;
}
@media only screen and (max-width: 1050px) {
  body:not(:has(.hero-home)) .dropdown .investments_drop--button {
    color: #ffffff;
  }
}
body:not(:has(.hero-home)) .dropdown .investments_drop--button svg {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

body.scrolled:not(:has(.hero-home)) .site-menu a,
body.scrolled:not(.home) .site-menu a {
  color: #ffffff;
}
body.scrolled:not(:has(.hero-home)) .dropdown,
body.scrolled:not(.home) .dropdown {
  border: 1px solid #ffffff;
}
@media only screen and (max-width: 1050px) {
  body.scrolled:not(:has(.hero-home)) .dropdown,
  body.scrolled:not(.home) .dropdown {
    border: none;
  }
}
body.scrolled:not(:has(.hero-home)) .dropdown .investments_drop--button,
body.scrolled:not(.home) .dropdown .investments_drop--button {
  color: #ffffff;
}
body.scrolled:not(:has(.hero-home)) .dropdown .investments_drop--button svg,
body.scrolled:not(.home) .dropdown .investments_drop--button svg {
  -webkit-filter: brightness(5);
          filter: brightness(5);
}
body.scrolled:not(:has(.hero-home)) .dropdown:hover .investments_drop--button,
body.scrolled:not(.home) .dropdown:hover .investments_drop--button {
  color: #292352;
}
@media only screen and (max-width: 1050px) {
  body.scrolled:not(:has(.hero-home)) .dropdown:hover .investments_drop--button,
  body.scrolled:not(.home) .dropdown:hover .investments_drop--button {
    color: #ffffff;
  }
}
body.scrolled:not(:has(.hero-home)) .dropdown:hover .investments_drop--button svg,
body.scrolled:not(.home) .dropdown:hover .investments_drop--button svg {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
body.scrolled:not(:has(.hero-home)) .dropdown:hover .investments_drop--button:hover,
body.scrolled:not(.home) .dropdown:hover .investments_drop--button:hover {
  color: #6854E5;
}
body.scrolled:not(:has(.hero-home)) .dropdown:hover .dropdown--items .investments_drop--button:hover,
body.scrolled:not(.home) .dropdown:hover .dropdown--items .investments_drop--button:hover {
  color: #ffffff;
}

.investments__mobile {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .investments__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    z-index: 2;
    width: 100%;
  }
}
@media only screen and (max-width: 1050px) {
  .investments__mobile--button {
    color: #C4BFE5;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 21px 19px;
  }
  .investments__mobile--button::after {
    position: absolute;
    bottom: 0;
    left: -1970px;
    width: 3000px;
    height: 1px;
    background: #1D154F;
    content: "";
  }
  .investments__mobile--button svg {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    width: 16px;
    height: 16px;
  }
}
.investments__mobile--button__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.investments__mobile--button__items__item {
  padding: 21px 19px !important;
  border-bottom: 1px solid #1D154F;
  line-height: 1.84;
  font-weight: 400;
  font-size: 19px;
  color: #ffffff;
}
.investments__mobile--button__items__item:active svg {
  -webkit-filter: brightness(3);
          filter: brightness(3);
}
.investments__mobile--button__items__item svg {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  width: 16px;
  height: 16px;
}

.site-logo {
  display: block;
  width: 147px;
  z-index: 1;
  -webkit-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (min-width: 900px) {
  .site-logo {
    max-width: 240px;
    width: 100%;
  }
  .scrolled .site-logo {
    max-width: 150px;
  }
}
.site-logo img {
  width: 100%;
  height: auto;
}
.site-logo .logo-color {
  display: block;
}
.site-logo .logo-white {
  display: none;
}

body.scrolled:not(.home) .site-logo .logo-color {
  display: none;
}
body.scrolled:not(.home) .site-logo .logo-white {
  display: block;
}

.header.js-open .site-logo .logo-color {
  display: none;
}
.header.js-open .site-logo .logo-white {
  display: block;
}

/*
body:not(:has(.hero)){
	.header{
		background-color: transparent;

		.svg-logo{
			path{
				fill:$dark-logo;
				&:last-child{
					fill: $light-logo;
				}
			}
		}
		.menu-item {
			a{
			--color: #292352;
			--borderColor: transparent;

			--colorHover: #6854E5;
			--borderColorHover: #6854E5;
			}
		}

	}
}
    */
.site-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1050px) {
  .site-menu {
    gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 100px;
  }
}
.site-menu .menu-item {
  position: relative;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .site-menu .menu-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #3B336B;
    content: "";
    z-index: 1;
  }
  .site-menu .menu-item:first-child::before {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #3B336B;
    content: "";
  }
  .site-menu .menu-item:last-child {
    background: #3B336B;
    position: relative;
  }
}
@media only screen and (max-width: 1050px) and (max-width: 900px) {
  .site-menu .menu-item:last-child {
    padding: 0;
  }
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item:last-child::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #3B336B;
    content: "";
    z-index: 1;
  }
}
@media only screen and (max-width: 1050px) and (orientation: landscape) {
  .site-menu .menu-item:last-child::after {
    display: none;
  }
}
.site-menu .menu-item a {
  position: relative;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  line-height: 15px;
  font-weight: 500;
  padding: 0 18px;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a {
    padding: 21px 19px;
  }
}
body:has(.hero-home) .site-menu .menu-item a :not(.button--inner) {
  color: white;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a:active {
    background: #7363E3;
  }
  .site-menu .menu-item a:active .link::after {
    -webkit-filter: brightness(3);
            filter: brightness(3);
  }
}
@media only screen and (min-width: 1050px) {
  .site-menu .menu-item a::after {
    content: "";
    position: absolute;
    top: -33px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #C4BBFA;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  }
}
.site-menu .menu-item a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: url(../images/arrow-menu-light.svg) no-repeat center center;
  opacity: 0;
  -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
@media only screen and (max-width: 900px) {
  .site-menu .menu-item a::before {
    display: none;
  }
}
.site-menu .menu-item a .link {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a .link::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(../images/arrow-right.svg) center/contain no-repeat;
    content: "";
    z-index: 1;
  }
}
.site-menu .menu-item a:hover {
  color: #6854E5;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a:hover {
    color: #F0EDEB;
  }
}
.site-menu .menu-item a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a:hover::after {
    display: none;
  }
}
.site-menu .menu-item a:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  opacity: 1;
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a:hover::before {
    display: none;
  }
}
@media only screen and (max-width: 1050px) {
  .site-menu .menu-item a {
    font-size: 19px;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    background: none;
    position: relative;
  }
  .site-menu .menu-item a::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(../images/arrow-right.svg) center/contain no-repeat;
    content: "";
    z-index: 1;
    display: none;
  }
}
.site-menu .menu-item.current-menu-item a {
  color: #6854E5;
}
.site-menu .menu-item.current-menu-item a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
body:not(:has(.hero)) .site-menu .menu-item.current-menu-item a {
  color: #6854E5;
}

.responsive__btn {
  display: none;
  float: left;
  position: relative;
  z-index: 11;
  width: 26px;
  height: 22px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.responsive__btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #1D154F;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.responsive__btn span:nth-child(1) {
  top: 0;
}
.responsive__btn span:nth-child(2), .responsive__btn span:nth-child(3) {
  top: 10px;
}
.responsive__btn span:nth-child(4) {
  top: 20px;
}
.responsive__btn.burger_menu {
  display: block;
}
@media only screen and (max-width: 1050px) {
  .responsive__btn {
    display: block;
  }
}
.responsive__btn.js-active span {
  background: #F0EDEB;
}
.responsive__btn.js-active span:nth-child(1),
.responsive__btn.js-active span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}
.responsive__btn.js-active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.responsive__btn.js-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.site:has(.hero-home) .responsive__btn span {
  background: #ffffff;
}

.site-search {
  position: relative;
  width: 100%;
}
.site-search .wc-block-product-search .wc-block-product-search__fields {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.site-search form label {
  display: none;
}
.site-search form input[type=search] {
  width: calc(100% - 25px);
  height: 25px;
  line-height: 25px;
  padding: 0 8px;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
}
@media only screen and (max-width: 1050px) {
  .site-search form input[type=search] {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site-search form input[type=search] {
    font-size: 20px;
  }
}
.site-search form input[type=search]::-webkit-input-placeholder {
  color: #292352;
}
.site-search form input[type=search]::-moz-placeholder {
  color: #292352;
}
.site-search form input[type=search]:-ms-input-placeholder {
  color: #292352;
}
.site-search form input[type=search]::-ms-input-placeholder {
  color: #292352;
}
.site-search form input[type=search]::placeholder {
  color: #292352;
}
.site-search form button {
  width: 25px;
  height: 25px;
  background: none;
  text-indent: 500px;
  overflow: hidden;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}
.site-search form button svg {
  display: none;
}
.site-search img {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: -1;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.socials .social {
  margin-bottom: 0;
}
.socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  height: 15px;
  width: auto;
}
.socials a svg {
  width: 19px;
  height: 19px;
}
.socials a:hover {
  opacity: 0.5;
}

.site .gform_wrapper,
.woocommerce .gform_wrapper,
.woocommerce .site .gform_wrapper {
  margin: 0;
  padding: 0;
}
.site .gform_wrapper .gform_fields,
.woocommerce .gform_wrapper .gform_fields,
.woocommerce .site .gform_wrapper .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 0 30px;
}
.site .gform_wrapper .gfield,
.woocommerce .gform_wrapper .gfield,
.woocommerce .site .gform_wrapper .gfield {
  width: 100%;
}
.site .gform_wrapper .gfield select,
.site .gform_wrapper .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site .gform_wrapper .gfield textarea,
.woocommerce .gform_wrapper .gfield select,
.woocommerce .gform_wrapper .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .gform_wrapper .gfield textarea,
.woocommerce .site .gform_wrapper .gfield select,
.woocommerce .site .gform_wrapper .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .site .gform_wrapper .gfield textarea {
  width: 100%;
}
.site .gform_wrapper .gfield--width-half,
.woocommerce .gform_wrapper .gfield--width-half,
.woocommerce .site .gform_wrapper .gfield--width-half {
  width: calc(50% - 15px);
}
.site .gform_wrapper .gfield--width-third,
.woocommerce .gform_wrapper .gfield--width-third,
.woocommerce .site .gform_wrapper .gfield--width-third {
  width: calc(33% - 20px);
}
.site .gform_wrapper .gfield--width-quarter,
.woocommerce .gform_wrapper .gfield--width-quarter,
.woocommerce .site .gform_wrapper .gfield--width-quarter {
  width: calc(25% - 22.5px);
}
.site .gform_wrapper .top_label .gfield_label,
.site .gform_wrapper legend.gfield_label,
.woocommerce .gform_wrapper .top_label .gfield_label,
.woocommerce .gform_wrapper legend.gfield_label,
.woocommerce .site .gform_wrapper .top_label .gfield_label,
.woocommerce .site .gform_wrapper legend.gfield_label {
  display: none;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site .gform_wrapper textarea,
.woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .gform_wrapper textarea,
.woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .site .gform_wrapper textarea {
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #292352;
  padding: 0 25px;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .site .gform_wrapper textarea,
  .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .gform_wrapper textarea,
  .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .site .gform_wrapper textarea {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .site .gform_wrapper textarea,
  .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .gform_wrapper textarea,
  .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .woocommerce .site .gform_wrapper textarea {
    font-size: 20px;
  }
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .site .gform_wrapper textarea::-webkit-input-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .woocommerce .gform_wrapper textarea::-webkit-input-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .woocommerce .site .gform_wrapper textarea::-webkit-input-placeholder {
  color: #bbbfc1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .site .gform_wrapper textarea::-moz-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .woocommerce .gform_wrapper textarea::-moz-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .woocommerce .site .gform_wrapper textarea::-moz-placeholder {
  color: #bbbfc1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .site .gform_wrapper textarea:-ms-input-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .woocommerce .gform_wrapper textarea:-ms-input-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .woocommerce .site .gform_wrapper textarea:-ms-input-placeholder {
  color: #bbbfc1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .site .gform_wrapper textarea::-ms-input-placeholder, .woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .woocommerce .gform_wrapper textarea::-ms-input-placeholder, .woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .woocommerce .site .gform_wrapper textarea::-ms-input-placeholder {
  color: #bbbfc1;
}
.site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.site .gform_wrapper textarea::placeholder,
.woocommerce .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.woocommerce .gform_wrapper textarea::placeholder,
.woocommerce .site .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.woocommerce .site .gform_wrapper textarea::placeholder {
  color: #bbbfc1;
}
.site .gform_wrapper .gfmc-column,
.woocommerce .gform_wrapper .gfmc-column,
.woocommerce .site .gform_wrapper .gfmc-column {
  padding-right: 48px;
}
.site .gform_wrapper .gfmc-column:nth-last-child(1),
.woocommerce .gform_wrapper .gfmc-column:nth-last-child(1),
.woocommerce .site .gform_wrapper .gfmc-column:nth-last-child(1) {
  padding-right: 0;
}
.site .gform_wrapper .gfmc-column h4,
.woocommerce .gform_wrapper .gfmc-column h4,
.woocommerce .site .gform_wrapper .gfmc-column h4 {
  margin-bottom: 4px;
  font-size: 32px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper .gfmc-column h4,
  .woocommerce .gform_wrapper .gfmc-column h4,
  .woocommerce .site .gform_wrapper .gfmc-column h4 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper .gfmc-column h4,
  .woocommerce .gform_wrapper .gfmc-column h4,
  .woocommerce .site .gform_wrapper .gfmc-column h4 {
    font-size: 20px;
  }
}
.site .gform_wrapper .gfmc-column .form__text,
.woocommerce .gform_wrapper .gfmc-column .form__text,
.woocommerce .site .gform_wrapper .gfmc-column .form__text {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  margin-top: 15px;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper .gfmc-column .form__text,
  .woocommerce .gform_wrapper .gfmc-column .form__text,
  .woocommerce .site .gform_wrapper .gfmc-column .form__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper .gfmc-column .form__text,
  .woocommerce .gform_wrapper .gfmc-column .form__text,
  .woocommerce .site .gform_wrapper .gfmc-column .form__text {
    font-size: 20px;
  }
}
.site .gform_wrapper .gfmc-column .form__text a,
.woocommerce .gform_wrapper .gfmc-column .form__text a,
.woocommerce .site .gform_wrapper .gfmc-column .form__text a {
  color: #292352;
  text-decoration: underline;
}
.site .gform_wrapper .gfmc-column .form__text a:hover,
.woocommerce .gform_wrapper .gfmc-column .form__text a:hover,
.woocommerce .site .gform_wrapper .gfmc-column .form__text a:hover {
  color: #6854E5;
}
.site .gform_wrapper .gfmc-column input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site .gform_wrapper .gfmc-column textarea,
.woocommerce .gform_wrapper .gfmc-column input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .gform_wrapper .gfmc-column textarea,
.woocommerce .site .gform_wrapper .gfmc-column input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.woocommerce .site .gform_wrapper .gfmc-column textarea {
  width: 100%;
}
.site .gform_wrapper .ginput_complex.ginput_container_address span,
.site .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left,
.woocommerce .gform_wrapper .ginput_complex.ginput_container_address span,
.woocommerce .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left,
.woocommerce .site .gform_wrapper .ginput_complex.ginput_container_address span,
.woocommerce .site .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left {
  width: 100%;
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 10px;
  display: block;
}
.site .gform_wrapper .ginput_complex.ginput_container_address label,
.woocommerce .gform_wrapper .ginput_complex.ginput_container_address label,
.woocommerce .site .gform_wrapper .ginput_complex.ginput_container_address label {
  display: none;
}
.site .gform_wrapper .gform_footer input.button,
.site .gform_wrapper .gform_footer input[type=submit],
.site .gform_wrapper .gform_page_footer input.button,
.site .gform_wrapper .gform_page_footer input[type=submit],
.woocommerce .gform_wrapper .gform_footer input.button,
.woocommerce .gform_wrapper .gform_footer input[type=submit],
.woocommerce .gform_wrapper .gform_page_footer input.button,
.woocommerce .gform_wrapper .gform_page_footer input[type=submit],
.woocommerce .site .gform_wrapper .gform_footer input.button,
.woocommerce .site .gform_wrapper .gform_footer input[type=submit],
.woocommerce .site .gform_wrapper .gform_page_footer input.button,
.woocommerce .site .gform_wrapper .gform_page_footer input[type=submit] {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper .gform_footer input.button,
  .site .gform_wrapper .gform_footer input[type=submit],
  .site .gform_wrapper .gform_page_footer input.button,
  .site .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_footer input.button,
  .woocommerce .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_page_footer input.button,
  .woocommerce .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_footer input.button,
  .woocommerce .site .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_page_footer input.button,
  .woocommerce .site .gform_wrapper .gform_page_footer input[type=submit] {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper .gform_footer input.button,
  .site .gform_wrapper .gform_footer input[type=submit],
  .site .gform_wrapper .gform_page_footer input.button,
  .site .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_footer input.button,
  .woocommerce .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .gform_wrapper .gform_page_footer input.button,
  .woocommerce .gform_wrapper .gform_page_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_footer input.button,
  .woocommerce .site .gform_wrapper .gform_footer input[type=submit],
  .woocommerce .site .gform_wrapper .gform_page_footer input.button,
  .woocommerce .site .gform_wrapper .gform_page_footer input[type=submit] {
    font-size: 20px;
  }
}
.site .gform_wrapper li.gfield.gfield_error,
.site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
.woocommerce .gform_wrapper li.gfield.gfield_error,
.woocommerce .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
.woocommerce .site .gform_wrapper li.gfield.gfield_error,
.woocommerce .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper li.gfield.gfield_error,
  .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .gform_wrapper li.gfield.gfield_error,
  .woocommerce .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper li.gfield.gfield_error,
  .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .gform_wrapper li.gfield.gfield_error,
  .woocommerce .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error,
  .woocommerce .site .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    font-size: 20px;
  }
}
.site .gform_wrapper .validation_message,
.woocommerce .gform_wrapper .validation_message,
.woocommerce .site .gform_wrapper .validation_message {
  padding-top: 8px;
}
.site .gform_wrapper div.validation_error,
.woocommerce .gform_wrapper div.validation_error,
.woocommerce .site .gform_wrapper div.validation_error {
  padding: 8px 0;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper div.validation_error,
  .woocommerce .gform_wrapper div.validation_error,
  .woocommerce .site .gform_wrapper div.validation_error {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper div.validation_error,
  .woocommerce .gform_wrapper div.validation_error,
  .woocommerce .site .gform_wrapper div.validation_error {
    font-size: 20px;
  }
}
.site .gform_wrapper .gfield_checkbox li input,
.site .gform_wrapper .gfield_checkbox li input[type=checkbox],
.site .gform_wrapper .gfield_radio li input[type=radio],
.woocommerce .gform_wrapper .gfield_checkbox li input,
.woocommerce .gform_wrapper .gfield_checkbox li input[type=checkbox],
.woocommerce .gform_wrapper .gfield_radio li input[type=radio],
.woocommerce .site .gform_wrapper .gfield_checkbox li input,
.woocommerce .site .gform_wrapper .gfield_checkbox li input[type=checkbox],
.woocommerce .site .gform_wrapper .gfield_radio li input[type=radio] {
  display: none;
}
.site .gform_wrapper ul.gfield_checkbox li label,
.site .gform_wrapper ul.gfield_radio li label,
.woocommerce .gform_wrapper ul.gfield_checkbox li label,
.woocommerce .gform_wrapper ul.gfield_radio li label,
.woocommerce .site .gform_wrapper ul.gfield_checkbox li label,
.woocommerce .site .gform_wrapper ul.gfield_radio li label {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  padding-left: 30px;
  line-height: 20px;
  position: relative;
}
@media only screen and (max-width: 1050px) {
  .site .gform_wrapper ul.gfield_checkbox li label,
  .site .gform_wrapper ul.gfield_radio li label,
  .woocommerce .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .gform_wrapper ul.gfield_radio li label,
  .woocommerce .site .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .site .gform_wrapper ul.gfield_radio li label {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site .gform_wrapper ul.gfield_checkbox li label,
  .site .gform_wrapper ul.gfield_radio li label,
  .woocommerce .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .gform_wrapper ul.gfield_radio li label,
  .woocommerce .site .gform_wrapper ul.gfield_checkbox li label,
  .woocommerce .site .gform_wrapper ul.gfield_radio li label {
    font-size: 20px;
  }
}
.site .gform_wrapper ul.gfield_checkbox li label:before,
.site .gform_wrapper ul.gfield_radio li label:before,
.woocommerce .gform_wrapper ul.gfield_checkbox li label:before,
.woocommerce .gform_wrapper ul.gfield_radio li label:before,
.woocommerce .site .gform_wrapper ul.gfield_checkbox li label:before,
.woocommerce .site .gform_wrapper ul.gfield_radio li label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #292352;
  content: "";
}
.site .gform_wrapper .gchoice_select_all:after,
.site .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after,
.site .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label:after,
.woocommerce .gform_wrapper .gchoice_select_all:after,
.woocommerce .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after,
.woocommerce .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label:after,
.woocommerce .site .gform_wrapper .gchoice_select_all:after,
.woocommerce .site .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after,
.woocommerce .site .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label:after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #6854E5;
  content: "";
}

.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.formBox textarea {
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #292352;
  padding: 0 25px;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  width: 100%;
  margin-bottom: 8px;
  background: #ffffff;
}
@media only screen and (max-width: 1050px) {
  .formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .formBox textarea {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .formBox textarea {
    font-size: 20px;
  }
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder, .formBox textarea::-webkit-input-placeholder {
  color: #bbbfc1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .formBox textarea::-moz-placeholder {
  color: #bbbfc1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .formBox textarea:-ms-input-placeholder {
  color: #bbbfc1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-ms-input-placeholder, .formBox textarea::-ms-input-placeholder {
  color: #bbbfc1;
}
.formBox input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.formBox textarea::placeholder {
  color: #bbbfc1;
}
.formBox p {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  line-height: 1.2;
}
@media only screen and (max-width: 1050px) {
  .formBox p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .formBox p {
    font-size: 20px;
  }
}
.formBox p a {
  color: #292352;
  text-decoration: underline;
}
.formBox p a:hover {
  color: #6854E5;
}

.form_block .formBox {
  margin: 0 auto;
  width: 337px;
  max-width: 100%;
}
.form_block .formBox .gform_footer {
  text-align: center;
}

.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none;
  position: absolute;
  left: -9000px;
}

.post-cont .post-thumbnail {
  width: 100%;
  padding-top: 67.25%;
  position: relative;
  margin-bottom: 19px;
}
.post-cont .post-thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.post-cont .post-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-cont .post-thumbnail a img {
  width: 100%;
  height: 100%;
}
.post-cont__date {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1050px) {
  .post-cont__date {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .post-cont__date {
    font-size: 20px;
  }
}
.post-cont__title {
  display: block;
  width: 100%;
  font-size: 32px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1050px) {
  .post-cont__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  .post-cont__title {
    font-size: 20px;
  }
}
.post-cont__title:hover {
  color: #6854E5;
}
.post-cont__link {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  text-decoration: underline;
}
@media only screen and (max-width: 1050px) {
  .post-cont__link {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .post-cont__link {
    font-size: 20px;
  }
}
.post-cont__link:hover {
  color: #6854E5;
}

.archive-cont__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 50px;
}
@media only screen and (max-width: 1050px) {
  .archive-cont__list {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 900px) {
  .archive-cont__list {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .archive-cont__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-header__title {
  margin: 0 auto;
  width: 985px;
  max-width: 100%;
  font-size: 49px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 1050px) {
  .single-header__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 600px) {
  .single-header__title {
    font-size: 26px;
  }
}
.single-header__introduction {
  margin: 0 auto;
  width: 773px;
  max-width: 100%;
  font-size: 36px;
  font-family: "DM Sans", sans-serif;
  line-height: 1.2;
  color: #292352;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1050px) {
  .single-header__introduction {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .single-header__introduction {
    font-size: 24px;
  }
}
.single-header__date {
  margin: 0 auto;
  width: 773px;
  max-width: 100%;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1050px) {
  .single-header__date {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .single-header__date {
    font-size: 20px;
  }
}
.single-header .post-thumbnail {
  margin-top: 70px;
  width: 100%;
}
.single-header .post-thumbnail img {
  width: 100%;
  height: auto;
}

.single-content {
  padding: 80px 0 168px 0;
}
.single-content__cont {
  margin: 0 auto;
  width: 620px;
  max-width: 100%;
}
.single-content__cont h1,
.single-content__cont h2,
.single-content__cont h3,
.single-content__cont h4,
.single-content__cont h5,
.single-content__cont h6 {
  color: #292352;
  margin-bottom: 20px;
}
.single-content__cont h1 {
  font-size: 56px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h1 {
    font-size: 26px;
  }
}
.single-content__cont h2 {
  font-size: 49px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h2 {
    font-size: 26px;
  }
}
.single-content__cont h3 {
  font-size: 46px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h3 {
    font-size: 30px;
  }
}
.single-content__cont h4 {
  font-size: 36px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont h4 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h4 {
    font-size: 24px;
  }
}
.single-content__cont h5 {
  font-size: 32px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont h5 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h5 {
    font-size: 20px;
  }
}
.single-content__cont h6 {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont h6 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont h6 {
    font-size: 20px;
  }
}
.single-content__cont p {
  font-size: 32px;
  font-family: "DM Sans", sans-serif;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont p {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont p {
    font-size: 20px;
  }
}
.single-content__cont ul,
.single-content__cont ol {
  padding-left: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.single-content__cont ul li {
  list-style: disc;
}
.single-content__cont a {
  color: #292352;
}
.single-content__cont a:hover {
  text-decoration: underline;
}
.single-content__cont blockquote {
  padding-left: 30px;
  border-left: 3px solid #292352;
}
.single-content__cont blockquote p {
  font-size: 36px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .single-content__cont blockquote p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .single-content__cont blockquote p {
    font-size: 24px;
  }
}
.single-content__cont img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.single-content__cont .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .single-content__cont .alignleft {
    max-width: 100%;
  }
}
.single-content__cont .aligncenter {
  margin: 30px auto;
  display: block;
}
.single-content__cont .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .single-content__cont .alignright {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1050px) {
  .latest_news {
    padding: 0 0 0 33px;
  }
}
.latest_news__cont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 50px;
}
@media only screen and (max-width: 600px) {
  .latest_news__cont {
    width: 100%;
    padding-right: 27%;
  }
}
.latest_news__cont .slick-list {
  overflow: visible;
}
.latest_news__cont .slick-slide {
  margin-right: 40px;
}
.latest_news__cont .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 7px 0 23.5px;
  width: 100vw;
  padding: 0 30px;
  margin-left: -30px;
  margin-top: 48px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.latest_news__cont .slick-dots li {
  margin: 0 23.5px;
  position: relative;
}
.latest_news__cont .slick-dots li * {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .latest_news__cont .slick-dots li * {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .latest_news__cont .slick-dots li * {
    font-size: 20px;
  }
}
.latest_news__cont .slick-dots li:before {
  position: absolute;
  left: -17px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #292352;
  content: "";
  cursor: pointer;
}
.latest_news__cont .slick-dots li.slick-active:before {
  border: 1px solid #6854E5;
  background: #6854E5;
}
.latest_news .posts_grid__cont {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.latest_news .post-cont .post-thumbnail {
  width: 100%;
  padding-top: 67.25%;
  position: relative;
  margin-bottom: 19px;
}
.latest_news .post-cont .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb,
.woocommerce-breadcrumb {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 1050px) {
  .breadcrumb,
  .woocommerce-breadcrumb {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .breadcrumb,
  .woocommerce-breadcrumb {
    font-size: 20px;
  }
}
.breadcrumb span,
.breadcrumb a,
.woocommerce-breadcrumb span,
.woocommerce-breadcrumb a {
  display: inline-block;
  position: relative;
  margin: 0 15px 15px 15px;
}
.breadcrumb span:before,
.breadcrumb a:before,
.woocommerce-breadcrumb span:before,
.woocommerce-breadcrumb a:before {
  position: absolute;
  top: 0;
  left: -15px;
  width: 1px;
  height: 100%;
  content: "";
}
.breadcrumb span:nth-child(1):before,
.breadcrumb a:nth-child(1):before,
.woocommerce-breadcrumb span:nth-child(1):before,
.woocommerce-breadcrumb a:nth-child(1):before {
  display: none;
}
.breadcrumb a:hover,
.woocommerce-breadcrumb a:hover {
  color: #292352;
}

.post-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  padding: 18px 26px 22px 24px;
  text-decoration: none;
}
@media only screen and (min-width: 750px) {
  .post-item {
    padding: 23px 32px 28px;
  }
}
.post-item__date {
  position: relative;
  font-size: 12px;
  color: #6854E5;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}
.post-item__date::before {
  position: absolute;
  left: -24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 3px;
  background: rgba(137, 120, 255, 0.9);
  content: "";
}
@media only screen and (min-width: 750px) {
  .post-item__date::before {
    left: -32px;
    width: 20px;
    height: 4px;
  }
}
.post-item__logo {
  position: relative;
  border-top: 0.5px solid #6854E5;
  border-bottom: 0.5px solid #6854E5;
  width: 100%;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
  overflow: hidden;
}
.post-item__logo.investment-item__logo {
  margin-top: 0;
}
@media only screen and (min-width: 750px) {
  .post-item__logo {
    height: 140px;
    margin-top: 16px;
  }
}
.post-item__logo img {
  max-width: 90%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-item__logo .swiper-slide {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-item__text-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  margin-bottom: 20px;
}
.post-item__eyebrow {
  font-size: 12px;
  margin-top: 10px;
  padding: 5px 10px;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  line-height: 1.81;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.post-item__title {
  color: #6854E5;
  display: block;
  text-decoration: none;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  margin-top: 12px;
  padding-bottom: 2px;
}
@media only screen and (min-width: 750px) {
  .post-item__title {
    font-size: 25px;
    line-height: 1.36;
    margin-top: 15px;
  }
}
.post-item__title span {
  display: inline;
  background: -webkit-gradient(linear, left top, right top, from(#6854e5), color-stop(50%, #6854e5), color-stop(50.1%, rgba(104, 84, 229, 0)), to(rgba(104, 84, 229, 0)));
  background: linear-gradient(90deg, #6854e5 0%, #6854e5 50%, rgba(104, 84, 229, 0) 50.1%, rgba(104, 84, 229, 0) 100%);
  background-size: 205% 1px;
  background-repeat: no-repeat;
  background-position: 100% 90%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
.post-item__text {
  font-size: 14px;
  color: #292352;
  margin-top: 8px;
  line-height: 1.64;
}
@media only screen and (min-width: 750px) {
  .post-item__text {
    margin-top: 10px;
  }
}
.post-item .button--arrow {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.post-item:hover .post-item__title span {
  background-position: 0% 90%;
}
.post-item:hover .button--arrow {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-results:not(.js-loading) .post-item:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.js-results:not(.js-loading) .post-item:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.js-results:not(.js-loading) .post-item:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.js-results:not(.js-loading) .post-item:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.js-results:not(.js-loading) .post-item:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.25s;
          transition-delay: 2.25s;
}
.js-results:not(.js-loading) .post-item:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.js-results:not(.js-loading) .post-item:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.15s;
          transition-delay: 3.15s;
}
.js-results:not(.js-loading) .post-item:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.js-results:not(.js-loading) .post-item:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.05s;
          transition-delay: 4.05s;
}
.js-results:not(.js-loading) .post-item:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.5s;
          transition-delay: 4.5s;
}
.js-results:not(.js-loading) .post-item:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.95s;
          transition-delay: 4.95s;
}
.js-results:not(.js-loading) .post-item:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.4s;
          transition-delay: 5.4s;
}
.js-results:not(.js-loading) .post-item:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.85s;
          transition-delay: 5.85s;
}
.js-results:not(.js-loading) .post-item:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.3s;
          transition-delay: 6.3s;
}
.js-results:not(.js-loading) .post-item:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.75s;
          transition-delay: 6.75s;
}
.js-results:not(.js-loading) .post-item:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.2s;
          transition-delay: 7.2s;
}
.js-results:not(.js-loading) .post-item:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.65s;
          transition-delay: 7.65s;
}
.js-results:not(.js-loading) .post-item:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.1s;
          transition-delay: 8.1s;
}
.js-results:not(.js-loading) .post-item:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.55s;
          transition-delay: 8.55s;
}
.js-results:not(.js-loading) .post-item:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9s;
          transition-delay: 9s;
}
.js-results:not(.js-loading) .post-item:nth-child(21) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.45s;
          transition-delay: 9.45s;
}
.js-results:not(.js-loading) .post-item:nth-child(22) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.9s;
          transition-delay: 9.9s;
}
.js-results:not(.js-loading) .post-item:nth-child(23) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.35s;
          transition-delay: 10.35s;
}
.js-results:not(.js-loading) .post-item:nth-child(24) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.8s;
          transition-delay: 10.8s;
}
.js-results:not(.js-loading) .post-item:nth-child(25) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.25s;
          transition-delay: 11.25s;
}
.js-results:not(.js-loading) .post-item:nth-child(26) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.7s;
          transition-delay: 11.7s;
}
.js-results:not(.js-loading) .post-item:nth-child(27) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.15s;
          transition-delay: 12.15s;
}
.js-results:not(.js-loading) .post-item:nth-child(28) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.6s;
          transition-delay: 12.6s;
}
.js-results:not(.js-loading) .post-item:nth-child(29) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.05s;
          transition-delay: 13.05s;
}
.js-results:not(.js-loading) .post-item:nth-child(30) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.5s;
          transition-delay: 13.5s;
}
.js-results:not(.js-loading) .post-item:nth-child(31) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.95s;
          transition-delay: 13.95s;
}
.js-results:not(.js-loading) .post-item:nth-child(32) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 14.4s;
          transition-delay: 14.4s;
}
.js-results:not(.js-loading) .post-item:nth-child(33) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 14.85s;
          transition-delay: 14.85s;
}
.js-results:not(.js-loading) .post-item:nth-child(34) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 15.3s;
          transition-delay: 15.3s;
}
.js-results:not(.js-loading) .post-item:nth-child(35) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 15.75s;
          transition-delay: 15.75s;
}
.js-results:not(.js-loading) .post-item:nth-child(36) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 16.2s;
          transition-delay: 16.2s;
}
.js-results:not(.js-loading) .post-item:nth-child(37) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 16.65s;
          transition-delay: 16.65s;
}
.js-results:not(.js-loading) .post-item:nth-child(38) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 17.1s;
          transition-delay: 17.1s;
}
.js-results:not(.js-loading) .post-item:nth-child(39) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 17.55s;
          transition-delay: 17.55s;
}
.js-results:not(.js-loading) .post-item:nth-child(40) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 18s;
          transition-delay: 18s;
}
.js-results:not(.js-loading) .post-item:nth-child(41) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 18.45s;
          transition-delay: 18.45s;
}
.js-results:not(.js-loading) .post-item:nth-child(42) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 18.9s;
          transition-delay: 18.9s;
}
.js-results:not(.js-loading) .post-item:nth-child(43) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 19.35s;
          transition-delay: 19.35s;
}
.js-results:not(.js-loading) .post-item:nth-child(44) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 19.8s;
          transition-delay: 19.8s;
}
.js-results:not(.js-loading) .post-item:nth-child(45) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 20.25s;
          transition-delay: 20.25s;
}

.single-post__nav__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-block: 0 24px;
  border-bottom: 1px solid #6854E5;
}
@media only screen and (min-width: 1050px) {
  .single-post__nav__cont {
    padding-block: 0 48px;
  }
}
.single-post__nav__link {
  position: relative;
  padding-left: 33px;
  color: #292352;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}
@media only screen and (min-width: 1050px) {
  .single-post__nav__link {
    padding-left: 50px;
  }
}
.single-post__nav__link::before {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background: #7363E3;
  content: "";
}
@media only screen and (min-width: 1050px) {
  .single-post__nav__link::before {
    width: 32px;
    height: 5px;
  }
}
.single-post__header {
  position: relative;
  padding-top: 32px;
}
@media only screen and (min-width: 1050px) {
  .single-post__header {
    padding-top: 92px;
  }
}
@media only screen and (min-width: 1200px) {
  .single-post__header {
    max-width: 1110px;
    margin: auto;
  }
}
.single-post__eyebrow {
  font-size: 13px;
  position: relative;
  margin-bottom: 32px;
  padding: 7px 20px;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  color: white;
  display: inline-block;
  font-weight: 300;
  line-height: 1.81;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (min-width: 1050px) {
  .single-post__eyebrow {
    margin-bottom: 56px;
    padding: 11px 23px;
    font-size: 16px;
  }
}
.single-post__title {
  font-size: 20px;
  font-weight: 300;
  text-align: start;
  color: #6854E5;
  line-height: 1.3;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1050px) {
  .single-post__title {
    max-width: 960px;
    margin-bottom: 56px;
    font-size: 46px;
  }
}
.single-post__thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1050px) {
  .single-post__thumbnail {
    margin-bottom: 56px;
  }
}
.single-post__thumbnail__img {
  width: 100%;
  height: 100%;
  max-height: 250px;
}
@media only screen and (min-width: 1050px) {
  .single-post__thumbnail__img {
    max-height: 530px;
  }
}
.single-post__thumbnail__img img {
  position: relative;
  top: 40px;
  margin-bottom: 40px;
  width: 100%;
  height: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
@media only screen and (min-width: 1050px) {
  .single-post__thumbnail__img img {
    top: 0px;
    max-height: 530px;
  }
}
.single-post__thumbnail--no-img {
  margin-bottom: 56px;
  position: relative;
  overflow: visible;
}
@media only screen and (min-width: 1050px) {
  .single-post__thumbnail--no-img {
    margin-bottom: 80px;
  }
}
.single-post__thumbnail--no-img .single-post__thumbnail__img {
  position: absolute;
  display: block;
  top: 40px;
  width: 100%;
  height: 64px;
  background: linear-gradient(277.25deg, #4E38E4 14.38%, #292352 141.07%);
}
@media only screen and (min-width: 1050px) {
  .single-post__thumbnail--no-img .single-post__thumbnail__img {
    height: 128px;
    top: unset;
    bottom: -24px;
  }
}
.single-post__thumbnail--no-img .single-post__logo {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (min-width: 1050px) {
  .single-post__thumbnail--no-img .single-post__logo {
    top: 0;
    left: 24px;
  }
}
.single-post__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 217px !important;
  height: 82px !important;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (min-width: 1050px) {
  .single-post__logo {
    width: 362px !important;
    height: 140px !important;
  }
}
.single-post__logo img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
@media only screen and (min-width: 1050px) {
  .single-post__logo img {
    max-height: 64px;
    max-width: 256px;
  }
}
.single-post__logo .swiper-slide {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 48px;
}
@media only screen and (min-width: 1050px) {
  .single-post__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 92px;
    gap: 92px;
  }
}
@media only screen and (min-width: 1200px) {
  .single-post__content {
    max-width: 1110px;
    margin: auto;
  }
}
.single-post__content__date {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 1050px) {
  .single-post__content__date {
    font-size: 16px;
  }
}
.single-post__content__inner {
  max-width: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (min-width: 1050px) {
  .single-post__content__inner {
    max-width: 66%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.single-post__content__inner .default_block {
  padding: 0;
}
.single-post__navigation {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #6854E5;
}
@media only screen and (min-width: 1050px) {
  .single-post__navigation {
    margin-top: 56px;
    padding-top: 48px;
  }
}
.single-post__navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
.single-post__navigation .nav-links a {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}
@media only screen and (min-width: 1050px) {
  .single-post__navigation .nav-links a {
    font-size: 16px;
  }
}
.single-post__navigation .nav-links a .nav-subtitle::before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-post__navigation .nav-previous .nav-subtitle {
  position: relative;
  padding-left: 26px;
}
.single-post__navigation .nav-previous:hover .nav-subtitle::before {
  -webkit-transform: translateX(-5px) translateY(-50%);
          transform: translateX(-5px) translateY(-50%);
}
.single-post__navigation .nav-next .nav-subtitle {
  position: relative;
  padding-right: 26px;
}
.single-post__navigation .nav-next:hover .nav-subtitle::before {
  -webkit-transform: translateX(5px) translateY(-50%) rotate(180deg);
          transform: translateX(5px) translateY(-50%) rotate(180deg);
}
.single-post__navigation .nav-previous .nav-subtitle::before,
.single-post__navigation .nav-next .nav-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/back.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.single-post__navigation .nav-next .nav-subtitle::before {
  left: unset;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.filters {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  padding-bottom: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
@media only screen and (min-width: 900px) {
  .filters {
    gap: 23px;
    padding-bottom: 22px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.filters__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (min-width: 900px) {
  .filters__content {
    gap: 23px;
    width: auto;
  }
}
.filters__title {
  font-size: 12px;
  font-weight: 500;
  color: #292352;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (min-width: 900px) {
  .filters__title {
    font-size: 15px;
  }
}
.filters .select2-search {
  display: block;
  height: 100%;
}
.filters .select2-search__field {
  cursor: pointer;
  color: #292352;
  font-weight: 500;
  height: 100% !important;
  margin: 0 !important;
  padding-left: 19px !important;
  padding-top: 12px !important;
  background: url(../images/arrow-right-select.svg) no-repeat center right 15px !important;
}
.filters .select2-search__field::-webkit-input-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field::-moz-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field:-ms-input-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field::-ms-input-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field::placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field::-webkit-input-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field::-moz-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field:-ms-input-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters .select2-search__field:-moz-placeholder {
  color: #292352;
  font-weight: 500;
}
.filters select {
  display: none;
}
.filters .select2-container {
  min-width: 85px;
  cursor: pointer;
}
@media only screen and (max-width: 1050px) {
  .filters .select2-container {
    width: 100% !important;
  }
}
.filters .select2-container .select2-selection {
  border: 1px solid transparent;
  background-color: #ffffff;
  border-radius: 0;
  padding: 0;
  height: 41px;
}
.filters .select2-container .select2-selection__rendered {
  padding: 6px 20px;
  font-size: 16px;
  color: #292352 !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 900px) {
  .filters .select2-container .select2-selection__rendered {
    font-size: 15px;
  }
}
.filters .select2-container .select2-selection__choice {
  font-size: 12px;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  color: #ffffff;
  font-weight: 400;
  margin-top: 7px !important;
}
.filters .select2-container .select2-selection__choice__remove {
  color: #ffffff;
  height: 100%;
}
.filters .select2-container .select2-selection__choice__remove:hover {
  background-color: #6854E5 !important;
  color: #ffffff;
}
.filters .select2-container .select2-selection__choice__remove:hover span {
  color: #ffffff;
}
.filters .select2-container .select2-selection__choice__remove span {
  color: #ffffff;
}
.filters .select2-container .select2-selection__choice__display {
  color: #ffffff;
}
.filters .select2-container .select2-selection__clear {
  margin-right: 7px !important;
}
.filters .select2-container .select2-selection__clear span {
  font-size: 20px;
}
.filters .select2-container .select2-selection__arrow {
  width: 10px !important;
  height: 8px !important;
  background: url("../images/arrow-right-select.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  top: 50% !important;
  right: 10px !important;
  -webkit-transform: translateY(-4px) !important;
          transform: translateY(-4px) !important;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.filters .select2-container .select2-selection__arrow b {
  display: none;
}
.filters .select2-container--open .select2-selection__rendered {
  color: #6854E5 !important;
}
.filters .select2-container--open .select2-selection__arrow {
  -webkit-transform: translateY(-4px) rotate(180deg) !important;
          transform: translateY(-4px) rotate(180deg) !important;
  -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(18%) saturate(6282%) hue-rotate(231deg) brightness(92%) contrast(95%) !important;
          filter: brightness(0) saturate(100%) invert(35%) sepia(18%) saturate(6282%) hue-rotate(231deg) brightness(92%) contrast(95%) !important;
}
.filters .select2-container--open .select2-selection {
  border-left-color: #6854E5 !important;
  border-right-color: #6854E5 !important;
}
.filters .select2-container--open.select2-container--above .select2-selection {
  border-bottom-color: #6854E5 !important;
}
.filters .select2-container--open.select2-container--below .select2-selection {
  border-top-color: #6854E5 !important;
}
.filters .select2-dropdown .select2-results__options {
  margin: 0 !important;
}
.filters .select2-selection--clearable .select2-search {
  display: none;
}
.filters__select {
  position: relative;
}
.filters__select--tax {
  width: 100%;
}
@media only screen and (min-width: 1050px) {
  .filters__select--tax {
    min-width: 220px;
  }
}
.filters__select--date {
  width: 100%;
  max-width: 86px;
}
@media only screen and (max-width: 900px) {
  .filters__clear {
    position: absolute;
    right: 0;
    top: 100%;
  }
}
.filters__clear button {
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #292352;
}
@media only screen and (min-width: 900px) {
  .filters__clear button {
    font-size: 15px;
  }
}
.filters__clear button:hover {
  text-decoration: underline;
}

.select2-dropdown {
  border-color: #6854E5 !important;
  border-radius: 0 !important;
}
.select2-dropdown .select2-results__option {
  border-bottom: 0.5px solid #6854E5 !important;
  padding-left: 20px !important;
}
.select2-dropdown .select2-results__option--highlighted, .select2-dropdown .select2-results__option--selected {
  background-color: #6854E5 !important;
  color: #ffffff !important;
}
.select2-dropdown .select2-results__option:last-child {
  border-bottom: none !important;
}

.investment-item {
  height: 115px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  cursor: pointer;
}
.investment-item:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.investment-item:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.investment-item:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.investment-item:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.investment-item:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.investment-item:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.investment-item:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.investment-item:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.investment-item:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.investment-item:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.investment-item:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.3s;
          transition-delay: 3.3s;
}
.investment-item:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.investment-item:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.9s;
          transition-delay: 3.9s;
}
.investment-item:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.2s;
          transition-delay: 4.2s;
}
.investment-item:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.5s;
          transition-delay: 4.5s;
}
.investment-item:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.8s;
          transition-delay: 4.8s;
}
.investment-item:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.1s;
          transition-delay: 5.1s;
}
.investment-item:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.4s;
          transition-delay: 5.4s;
}
.investment-item:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.7s;
          transition-delay: 5.7s;
}
.investment-item:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6s;
          transition-delay: 6s;
}
.investment-item:nth-child(21) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.3s;
          transition-delay: 6.3s;
}
.investment-item:nth-child(22) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.6s;
          transition-delay: 6.6s;
}
.investment-item:nth-child(23) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.9s;
          transition-delay: 6.9s;
}
.investment-item:nth-child(24) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.2s;
          transition-delay: 7.2s;
}
.investment-item:nth-child(25) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.5s;
          transition-delay: 7.5s;
}
.investment-item:nth-child(26) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.8s;
          transition-delay: 7.8s;
}
.investment-item:nth-child(27) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.1s;
          transition-delay: 8.1s;
}
.investment-item:nth-child(28) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.4s;
          transition-delay: 8.4s;
}
.investment-item:nth-child(29) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.7s;
          transition-delay: 8.7s;
}
.investment-item:nth-child(30) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9s;
          transition-delay: 9s;
}
.investment-item:nth-child(31) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.3s;
          transition-delay: 9.3s;
}
.investment-item:nth-child(32) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.6s;
          transition-delay: 9.6s;
}
.investment-item:nth-child(33) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.9s;
          transition-delay: 9.9s;
}
.investment-item:nth-child(34) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.2s;
          transition-delay: 10.2s;
}
.investment-item:nth-child(35) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.5s;
          transition-delay: 10.5s;
}
.investment-item:nth-child(36) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.8s;
          transition-delay: 10.8s;
}
.investment-item:nth-child(37) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.1s;
          transition-delay: 11.1s;
}
.investment-item:nth-child(38) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.4s;
          transition-delay: 11.4s;
}
.investment-item:nth-child(39) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.7s;
          transition-delay: 11.7s;
}
.investment-item:nth-child(40) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12s;
          transition-delay: 12s;
}
.investment-item:nth-child(41) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.3s;
          transition-delay: 12.3s;
}
.investment-item:nth-child(42) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.6s;
          transition-delay: 12.6s;
}
.investment-item:nth-child(43) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.9s;
          transition-delay: 12.9s;
}
.investment-item:nth-child(44) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.2s;
          transition-delay: 13.2s;
}
.investment-item:nth-child(45) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.5s;
          transition-delay: 13.5s;
}
@media only screen and (max-width: 750px) {
  .investment-item {
    height: 72px;
    padding: 20px;
  }
}
.investment-item img {
  max-height: 75px;
  max-width: 90%;
  display: block;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 750px) {
  .investment-item img {
    max-width: 90%;
    max-height: 100%;
    height: -webkit-fill-available;
  }
}
.investment-item__logo {
  display: contents;
}
.investment-item:after {
  height: 0.5px;
  width: 100%;
  content: "";
  background: #6854E5;
  position: absolute;
  top: 100%;
  margin-top: -0.5px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.investment-item:before {
  width: 25px;
  height: 25px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/icons/investment-arrow.svg) no-repeat;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 900px) {
  .investment-item:hover {
    -webkit-box-shadow: 0px 0px 20px 0px #e9e6f0;
            box-shadow: 0px 0px 20px 0px #e9e6f0;
  }
  .investment-item:hover img {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    opacity: 1;
  }
  .investment-item:hover:after {
    height: 3px;
    background: #6854e5;
  }
  .investment-item:hover:before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.dropdown {
  position: relative;
  border: 1px solid #ffffff;
}
@media only screen and (max-width: 1050px) {
  .dropdown {
    display: none;
    border: none;
    width: 100%;
    z-index: 2;
  }
  .dropdown .investments_drop--button {
    width: 100%;
  }
  .dropdown .investments_drop--button svg {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.dropdown.investments_drop {
  margin-left: 10px;
}
@media only screen and (min-width: 1050px) {
  .dropdown.investments_drop {
    height: 42px;
  }
}
.dropdown .investments_drop--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 15px;
  background: transparent;
  border: none;
  position: relative;
  border-bottom: 1px solid transparent;
  z-index: 1;
}
@media only screen and (max-width: 1050px) {
  .dropdown .investments_drop--button {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 0;
    color: #C6BEFF;
  }
}
@media only screen and (min-width: 1050px) {
  .dropdown .investments_drop--button {
    padding: 0 18px;
    height: 42px;
    line-height: 42px;
  }
}
.dropdown .investments_drop--button svg {
  -webkit-filter: brightness(5);
          filter: brightness(5);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
@media only screen and (max-width: 1050px) {
  .dropdown .investments_drop--button svg {
    width: 16px;
    height: 16px;
  }
}
.dropdown .investments_drop--button::after {
  display: none;
}
.dropdown .investments_drop--button:hover {
  background: #ffffff;
  color: #6854E5;
}
@media only screen and (max-width: 1050px) {
  .dropdown .investments_drop--button:hover {
    background: #3B336B;
    color: #ffffff;
  }
}
.dropdown .investments_drop--button.button--inner {
  position: relative;
  background: #6854E5;
  color: #ffffff;
}
.dropdown .investments_drop--button.button--inner:hover {
  background: #6854E5;
  color: #ffffff;
}
@media only screen and (max-width: 1050px) {
  .dropdown .investments_drop--button.button--inner:hover {
    background: #3B336B;
    color: #ffffff;
  }
}
@media only screen and (max-width: 1050px) {
  .dropdown .investments_drop--button.button--inner {
    background: #3B336B;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-transform: none;
    padding: 12px 0;
  }
}
.dropdown .dropdown--items {
  position: absolute;
  top: calc(100% + 1px);
  left: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
  background: #1D154F;
  width: 101.5%;
  z-index: -100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
}
@media only screen and (max-width: 1050px) {
  .dropdown .dropdown--items {
    width: 100%;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    background: #3B336B;
    pointer-events: auto;
    top: 12px;
  }
}
.dropdown .dropdown--items .investments_drop--button {
  font-weight: 400;
}
.dropdown:hover {
  background: #ffffff;
  color: #6854E5;
}
@media only screen and (max-width: 1050px) {
  .dropdown:hover {
    background: #3B336B;
    color: #ffffff;
  }
}
.dropdown:hover .investments_drop--button {
  color: #6854E5;
  border-bottom: 1px solid #6854E5;
  background: #EFEDF3;
}
@media only screen and (max-width: 1050px) {
  .dropdown:hover .investments_drop--button {
    color: #ffffff;
  }
}
.dropdown:hover .investments_drop--button svg {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
.dropdown:hover .investments_drop--button svg path {
  stroke: #6854E5;
}
@media only screen and (max-width: 1050px) {
  .dropdown:hover .investments_drop--button svg {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.dropdown:hover .dropdown--items {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 1;
}
.dropdown:hover .button--inner {
  background: #EFEDF3;
  color: #292352;
  position: relative;
  border-right: 1px solid #6854E5;
  border-left: 1px solid #6854E5;
  padding: 12px 16px;
}
.dropdown:hover .button--inner:last-child {
  border-bottom: 1px solid #6854E5;
}
@media only screen and (max-width: 1050px) {
  .dropdown:hover .button--inner {
    background: #3B336B;
    color: #ffffff;
  }
}

.btn,
.button {
  --color: #ffffff;
  --borderColor: rgba(255, 255, 255, 0.5);
  --backgroundColor: transparent;
  --colorHover: #6b61ab;
  --borderColorHover: #d3cdfe;
  --backgroundColorHover: #d3cdfe;
  color: var(--color);
  background: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  border-radius: 100px;
  padding: 7px 12px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 750px) {
  .btn,
  .button {
    padding: 10px 24px;
    gap: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .btn,
  .button {
    font-size: 14px;
  }
}
.btn:hover,
.button:hover {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
}
.btn svg path,
.button svg path {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.button--line {
  --color: #6854E5;
  --borderColor: #6854E5;
}
.button--line:hover {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
}

.button--arrow {
  --color: #6854E5;
  --borderColor: rgba(104, 84, 229, 0.5);
  border: 0.5px solid var(--borderColor);
  padding: 5px 10px;
}
.button--arrow svg path {
  stroke-width: 1px;
}
.button--arrow:hover {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
}
.button--arrow.button--white {
  --color: #ffffff;
  --borderColor: #ffffff;
  border-style: 1px solid !important;
}
.button--arrow.button--white:hover {
  background-color: white;
}
.button--arrow.button--white:hover svg path {
  stroke: #292352;
}

.button--white {
  padding: 4px 15px;
}
.button--white svg path {
  stroke: white;
}
.button--white:hover svg path {
  stroke: #6b61ab;
}

.team--button {
  --color: #6854E5;
  --colorHover: #ffffff;
  --borderColor: #7363E3;
  border-radius: 0px;
  padding: 8px 12px;
  font-size: 19px;
  font-weight: 400;
  cursor: pointer;
}
.team--button.js-active, .team--button:hover {
  color: var(--colorHover);
  background: var(--borderColor);
  border: 1px solid var(--borderColor);
}
@media only screen and (min-width: 1050px) {
  .team--button {
    padding: 12px 16px;
  }
}

.investment-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000000000000000;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.investment-popup.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.investment-popup__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(59, 51, 107, 0.7);
}
.investment-popup__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 900px) {
  .investment-popup__cont {
    background: #F3F2F6;
  }
}
.investment-popup__cont__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 250px;
  padding-top: 30px;
}
@media only screen and (max-width: 900px) {
  .investment-popup__cont__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #ffffff;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: unset;
    padding-top: 0;
  }
}
.investment-popup__cont__heading__logo {
  max-width: 327px;
  aspect-ratio: 327/113;
}
@media only screen and (max-width: 900px) {
  .investment-popup__cont__heading__logo {
    height: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.investment-popup__cont__heading__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 900px) {
  .investment-popup__cont__heading__logo img {
    max-height: 60px;
    width: auto;
    height: auto;
  }
}
.investment-popup__cont__heading__image {
  aspect-ratio: 769/455;
  height: 455px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1200px) {
  .investment-popup__cont__heading__image {
    aspect-ratio: unset;
    left: clamp(350px, 100.25px + 0.333 * 100vw, 500px);
  }
}
@media only screen and (max-width: 900px) {
  .investment-popup__cont__heading__image {
    position: relative;
    width: 100%;
    left: unset;
    aspect-ratio: 282/167;
    height: auto;
    padding: 25px 25px 0;
    background: #F3F2F6;
  }
}
.investment-popup__cont__heading__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.investment-popup__cont__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .investment-popup__cont__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.investment-popup__content {
  /*
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
        */
  position: relative;
  width: 100%;
  max-width: 1340px;
  background: white;
  z-index: 10000;
  padding: 0 clamp(20px, -130px + 0.2 * 100vw, 110px) clamp(30px, -36.6px + 0.111 * 100vw, 80px);
}
@media only screen and (max-width: 900px) {
  .investment-popup__content {
    padding: 0 20px 20px;
  }
}
.investment-popup__close {
  position: absolute;
  top: -1px;
  right: 0;
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.investment-popup__close img {
  display: block;
}
.investment-popup__close:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.investment-popup-info {
  max-width: 587px;
  width: 100%;
  padding: clamp(25px, -8.6px + 0.056 * 100vw, 50px);
  background: #F3F2F6;
}
@media only screen and (max-width: 1050px) {
  .investment-popup-info {
    max-width: 100%;
  }
}
.investment-popup-info__title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: #292352;
  margin-bottom: 25px;
}
@media only screen and (max-width: 750px) {
  .investment-popup-info__title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
.investment-popup-info__information {
  background: #ffffff;
  padding: 0 17px;
  margin-bottom: 43px;
  display: none;
}
@media only screen and (max-width: 900px) {
  .investment-popup-info__information {
    margin-bottom: 30px;
  }
}
.investment-popup-info__information:has(.information__item) {
  display: block;
}
.investment-popup-info__information .information__item {
  padding: 13.5px 0;
  border-bottom: 1px solid #CFCBDB;
}
.investment-popup-info__information .information__item:last-child {
  border-bottom: none;
}
.investment-popup-info__information .information__item__title {
  color: #837D94;
  margin-right: 5px;
  font-weight: 500;
}
@media only screen and (max-width: 900px) {
  .investment-popup-info__information .information__item__title {
    font-size: 14px;
  }
}
.investment-popup-info__information .information__item__value {
  font-weight: 300;
}
@media only screen and (max-width: 900px) {
  .investment-popup-info__information .information__item__value {
    font-size: 14px;
  }
}
.investment-popup-info__paragraph {
  margin-bottom: 40px;
  font-weight: 300;
  padding: 0 17px;
}
@media only screen and (max-width: 900px) {
  .investment-popup-info__paragraph {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.investment-popup-relatednews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: clamp(30px, 8.4px + 0.036 * 100vw, 46px);
  background: #1D154F;
  color: #ffffff;
  margin-top: 205px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .investment-popup-relatednews {
    margin-top: 0;
    padding: 28px 20px;
    padding-bottom: 35px;
  }
}
.investment-popup-relatednews .tagline {
  font-size: 22px;
  font-family: "DM Sans", sans-serif;
  position: relative;
  padding: 12px 29px;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  color: white;
  display: inline-block;
  font-weight: 300;
  line-height: 1.81;
  padding: 7px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1050px) {
  .investment-popup-relatednews .tagline {
    font-size: 17px;
  }
}
@media only screen and (max-width: 600px) {
  .investment-popup-relatednews .tagline {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1050px) {
  .investment-popup-relatednews .tagline {
    padding: 9px 17px;
  }
}
@media only screen and (max-width: 900px) {
  .investment-popup-relatednews .tagline {
    font-size: 14px;
  }
}
.investment-popup-relatednews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
.investment-popup-relatednews__item:not(:last-child) {
  margin-bottom: 20px;
}
.investment-popup-relatednews__item .date {
  font-size: 13px;
  font-weight: 300;
}
.investment-popup-relatednews__item a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 300;
}
@media only screen and (max-width: 900px) {
  .investment-popup-relatednews__item a {
    font-size: 14px;
  }
}
.investment-popup-relatednews__item a:hover {
  color: #C4BBFA;
  text-decoration: underline;
}
.investment-popup__website {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-left: 17px;
}
.investment-popup__website span {
  font-weight: 300;
}
@media only screen and (max-width: 900px) {
  .investment-popup__website span {
    font-size: 14px;
  }
}
.investment-popup__website a {
  text-decoration: none;
  font-weight: 300;
}
@media only screen and (max-width: 900px) {
  .investment-popup__website a {
    font-size: 14px;
  }
}
.investment-popup__website a:hover {
  text-decoration: underline;
}
.investment-popup__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: clamp(25px, -8.6px + 0.056 * 100vw, 50px);
  color: #6854E5;
  font-size: 16px;
  gap: 10px;
  font-weight: 300;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .investment-popup__back {
    font-size: 14px;
  }
}
.investment-popup__back .icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.investment-popup__back:hover .icon {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.investment-item__logo {
  border-top: none;
  background: #ffffff;
}

.filters-dropdown {
  height: 41px;
  position: relative;
  z-index: 10;
}
.filters-dropdown__cont {
  overflow: hidden;
  max-height: 41px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  border: 1px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  background: #ffffff;
}
.filters-dropdown button {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 41px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding-right: 30px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.filters-dropdown button:not(.active):hover {
  background: #6854E5;
  color: #ffffff;
}
.filters-dropdown button.active {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.filters-dropdown:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 12px;
  aspect-ratio: 1;
  background: url(../images/arrow-right.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filters-dropdown:hover:after {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.filters-dropdown:hover .filters-dropdown__cont {
  max-height: 200px;
  border: 1px solid #6854E5;
  background: #6854E5;
}
.filters-dropdown:hover button.active {
  color: #6854E5;
}

.hero {
  position: relative;
}

.hero-home {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero-home__media,
.hero-home video {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .hero-home__media,
  .hero-home video {
    aspect-ratio: unset;
  }
}
.hero-home video {
  width: 102%;
  margin: 0 -1%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: var(--v1, 0);
  -webkit-transition: 2s;
  transition: 2s;
}
.hero-home__media {
  background: #3B336B;
}
.hero-home__media:before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-21.04%, rgba(54, 43, 131, 0.9)), color-stop(86.28%, rgba(54, 43, 131, 0)));
  background: linear-gradient(180deg, rgba(54, 43, 131, 0.9) -21.04%, rgba(54, 43, 131, 0) 86.28%);
  left: 0;
  width: 100%;
  height: 213px;
  top: 0;
  z-index: 1;
}
.hero-home__media:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.1);
}
.hero-home__media img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-home__cont {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1050px) {
  .hero-home__cont {
    overflow: hidden;
  }
}
.hero-home .container {
  margin-bottom: clamp(40px, -13.4px + 0.089 * 100vw, 80px);
}
.hero-home__title {
  color: #ffffff;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 2.7px;
  max-width: 820px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  padding-left: 60px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (max-width: 1200px) {
  .hero-home__title {
    top: 34%;
    left: 41%;
    font-size: 50px;
  }
}
@media only screen and (max-width: 1050px) {
  .hero-home__title {
    font-size: 42px;
    margin-left: 0;
    position: relative;
    -webkit-transform: none;
            transform: none;
    top: 0;
    left: 0;
    letter-spacing: normal;
    margin-bottom: 11px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 750px) {
  .hero-home__title {
    font-size: 26px;
  }
}
.hero-home__text {
  position: relative;
  width: auto;
  padding: 59px 88px 50px 72px;
  left: 50px;
  bottom: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 1050px) {
  .hero-home__text {
    width: 100vw;
    height: auto;
    left: 33px;
    font-size: 14px;
    line-height: 1.57;
  }
}
@media only screen and (min-width: 1050px) {
  .hero-home__text {
    font-size: 22px;
  }
}
.hero-home__text::before {
  position: absolute;
  left: -50px;
  top: -50px;
  width: 262px;
  height: calc(100% + 50px);
  background: #7363E3;
  z-index: -1;
  content: "";
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: scaleX(var(--v1, 0));
          transform: scaleX(var(--v1, 0));
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
@media only screen and (max-width: 1050px) {
  .hero-home__text::before {
    width: 296px;
    left: -33px;
    height: calc(100% + 33px);
    top: -33px;
  }
}
.hero-home__text:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform: scaleX(var(--v1, 0));
          transform: scaleX(var(--v1, 0));
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  z-index: 1;
}
.hero-home__text span {
  display: block;
  position: relative;
  z-index: 2;
  width: 495px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 1050px) {
  .hero-home__text span {
    width: 100%;
    margin-left: 20px;
  }
}
.hero-home__text span:before {
  position: absolute;
  top: 10px;
  left: -37px;
  display: inline-block;
  vertical-align: middle;
  background: #7363E3;
  width: 24px;
  height: 5px;
  content: "";
}
@media only screen and (max-width: 1050px) {
  .hero-home__text span:before {
    top: 10px;
    left: -37px;
    width: 14px;
    height: 3px;
  }
}
.hero-home-bar {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 1050px) {
  .hero-home-bar {
    height: 33px;
  }
}
.hero-home-bar::after {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100vw - (100vw - 100%) - 495px - 210px);
  height: 100%;
  background: #7363e3;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 1050px) {
  .hero-home-bar::after {
    left: 33px;
    width: calc(100% - 33px);
  }
}

.hero-simple {
  position: relative;
  padding-bottom: 35px;
  overflow: hidden;
}
@media only screen and (min-width: 900px) {
  .hero-simple {
    padding-bottom: 50px;
  }
}
.hero-simple .container {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 900px) {
  .hero-simple .container {
    padding: 0 30px;
    position: relative;
  }
}
.hero-simple__tagline {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 900px) {
  .hero-simple__tagline {
    left: 0;
    font-size: 17px;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
}
.hero-simple__tagline.mobile {
  display: block;
  left: 33px;
  color: #1D154F;
  width: calc(100% - 33px);
}
@media only screen and (min-width: 900px) {
  .hero-simple__tagline.mobile {
    display: none;
  }
}
.hero-simple__tagline.desktop {
  display: none;
}
@media only screen and (min-width: 900px) {
  .hero-simple__tagline.desktop {
    display: block;
  }
}
.hero-simple__tagline::before {
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 3px;
  background: #6854E5;
  content: "";
}
@media only screen and (min-width: 900px) {
  .hero-simple__tagline::before {
    background: #6854E5;
    left: -33px;
    width: 25px;
    height: 5px;
  }
}
.hero-simple__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media only screen and (min-width: 900px) {
  .hero-simple__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
}
.hero-simple__media {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 32px);
  margin-top: 10px;
  left: 33px;
  right: 0;
}
@media only screen and (min-width: 900px) {
  .hero-simple__media {
    min-height: 218px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45.82%;
            flex: 0 0 45.82%;
    max-width: 613px;
    margin-top: 0;
    left: auto;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(-300px) translateY(0));
            transform: var(--fade-transform, translateX(-300px) translateY(0));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
}
@media only screen and (min-width: 900px) {
  .extended .hero-simple__media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 51.11%;
            flex: 0 0 51.11%;
    max-width: 685px;
  }
}
.hero-simple__media video {
  position: relative;
  aspect-ratio: 35/23;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 900px) {
  .hero-simple__media video {
    aspect-ratio: 685/560;
  }
}
.hero-simple__media img {
  aspect-ratio: 34/12;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 900px) {
  .hero-simple__media img {
    aspect-ratio: 613/218;
  }
}
.hero-simple__cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
  width: calc(100% - 33px);
  left: 33px;
  right: 0px;
  padding: 20px 31px 20px 31px;
  margin-top: -1px;
}
@media only screen and (min-width: 900px) {
  .hero-simple__cont {
    padding: 0 40px 50px 64px;
    margin: 50px 0 0 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 54.17%;
            flex: 0 1 54.17%;
    left: auto;
    gap: 20px;
    z-index: 2;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}
@media only screen and (max-width: 900px) {
  .hero-simple__cont {
    background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  }
}
@media only screen and (min-width: 900px) {
  .basic .hero-simple__cont {
    padding: 47px 64px;
  }
}
.hero-simple__cont::before {
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  height: 100%;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  z-index: 0;
  content: "";
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform: scaleX(var(--v1, 0));
          transform: scaleX(var(--v1, 0));
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
@media only screen and (max-width: 900px) {
  .hero-simple__cont::before {
    display: none;
  }
}
.hero-simple__cont::after {
  position: absolute;
  left: -50px;
  top: 0;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  background: #7363e3;
  z-index: -1;
  content: "";
}
@media only screen and (min-width: 900px) {
  .hero-simple__cont::after {
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media only screen and (max-width: 900px) {
  .hero-simple__cont::after {
    left: -33px;
    width: 100%;
    top: 0;
    height: calc(100% + 35px);
  }
}
@media only screen and (min-width: 900px) {
  .hero-simple__cont__box {
    padding-bottom: 50px;
  }
}
.hero-simple__cont__box-wrapper {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
@media only screen and (max-width: 900px) {
  .hero-simple__cont__box.not-extended .hero-simple__cont__title {
    position: relative;
    bottom: 0;
    line-height: 1.2;
  }
}
.hero-simple__cont__title {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.46;
  max-width: 280px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.extended .hero-simple__cont__title {
  position: absolute;
  bottom: calc(100% + 24px);
}
@media only screen and (min-width: 900px) {
  .extended .hero-simple__cont__title {
    position: relative;
    bottom: auto;
  }
}
@media only screen and (min-width: 600px) {
  .hero-simple__cont__title {
    max-width: 49vw;
  }
}
@media only screen and (min-width: 900px) {
  .hero-simple__cont__title {
    max-width: 600px;
    line-height: 1.36;
    font-weight: 400;
    position: relative;
    top: auto;
    bottom: auto;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
}
@media only screen and (min-width: 1050px) {
  .hero-simple__cont__title {
    max-width: 500px;
  }
}
.hero-simple__cont__text {
  font-size: 14px;
  line-height: 1.57;
  font-weight: 300;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (min-width: 900px) {
  .hero-simple__cont__text {
    font-size: 16px;
    line-height: 1.62;
    margin-top: 25px;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
}

body:has(.expertise) .hero-simple {
  padding-bottom: 33px;
}
@media only screen and (min-width: 900px) {
  body:has(.expertise) .hero-simple {
    padding-bottom: 50px;
  }
}
body:has(.expertise) .hero-simple__cont::after {
  height: calc(100% + 33px);
}
@media only screen and (min-width: 900px) {
  body:has(.expertise) .hero-simple__cont::after {
    height: 100%;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  background: transparent;
  padding: 20px 0;
  padding-bottom: 28px;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (min-width: 750px) {
  .header {
    padding: 20px 0;
  }
}
.scrolled .header {
  background-color: #292352;
  -webkit-filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
}
.scroll-down .header:not(:has(.header__right.js-child-open)) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 10px 0;
}
.header:has(.header__right.js-child-open) {
  background: #1D154F;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 1050px) {
  .header__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1050px) {
  .header__right.js-child-open {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header__right.js-child-open .site-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1D154F;
    height: calc(100vh - 84px);
    padding-top: 0;
    top: 84px;
  }
}
@media only screen and (max-width: 1050px) and (orientation: landscape) {
  .header__right.js-child-open .site-menu {
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 1050px) {
  .header__right .site-menu {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media only screen and (max-width: 1050px) and (max-width: 1050px) {
  .header__right .site-menu .button--inner {
    pointer-events: none;
  }
}

.site-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 267px;
  background: #1D154F;
  color: #F0EDEB;
}
.site-footer__cont {
  padding: 43px 0;
}
@media only screen and (max-width: 900px) {
  .site-footer__cont {
    padding: 28px 0 110px;
  }
}
.site-footer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 34% 64%;
  grid-template-columns: 34% 64%;
}
@media only screen and (max-width: 1050px) {
  .site-footer__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
}
.site-footer__column {
  position: relative;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .site-logo {
    padding-bottom: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer__column .site-logo svg {
    width: 124px;
  }
}
.site-footer__column:nth-child(2) {
  padding: 9px 34px 0;
  position: relative;
  /*
  			&::after {
  				position: absolute;
  				top: 13px;
  				right: 0;
  				width: 1px;
  				height: 84%;
  				background: rgba($secondary-color, 0.6);
  				content: "";

  				@include responsive("tablet-h") {
  					display: none;
  				}
  			}
  */
}
@media only screen and (max-width: 1050px) {
  .site-footer__column:nth-child(2) {
    padding: 0;
  }
}
.site-footer__column:nth-child(2)::before {
  position: absolute;
  top: 13px;
  left: 4px;
  width: 1px;
  height: 84%;
  background: rgba(104, 84, 229, 0.6);
  content: "";
}
@media only screen and (max-width: 1050px) {
  .site-footer__column:nth-child(2)::before {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer__column:nth-child(2) {
    padding: 0;
    border-right: none;
    border-left: none;
  }
  .site-footer__column:nth-child(2) .bottom-menu {
    display: none;
  }
}
.site-footer__column:nth-child(3) {
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1050px) {
  .site-footer__column:nth-child(3) {
    padding-left: 0;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer__column:nth-child(3) {
    padding-left: 0;
    padding-top: 27px;
  }
}
.site-footer__column:nth-child(3) .bottom-menu {
  display: none;
}
@media only screen and (max-width: 900px) {
  .site-footer__column:nth-child(3) .bottom-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-footer__column .address {
  max-width: 244px;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .address {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.site-footer__column .dropdown-menu {
  display: none;
}
.site-footer .footer-menu,
.site-footer .bottom-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  padding-bottom: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.site-footer .footer-menu li a,
.site-footer .bottom-menu li a {
  color: #F0EDEB;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  font-weight: 300;
}
@media only screen and (max-width: 900px) {
  .site-footer .footer-menu li a,
  .site-footer .bottom-menu li a {
    font-size: 14px;
  }
}
.site-footer .footer-menu li a:hover,
.site-footer .bottom-menu li a:hover {
  opacity: 0.6;
}
.site-footer .footer-menu {
  position: relative;
}
.site-footer .footer-menu::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 94%;
  height: 0.5px;
  background: rgba(104, 84, 229, 0.6);
  content: "";
}
@media only screen and (max-width: 900px) {
  .site-footer .footer-menu::after {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer .footer-menu {
    gap: 18px;
  }
}
.site-footer .bottom-menu {
  border-bottom: none;
  padding-top: 25px;
  padding-bottom: 0;
  gap: 0;
}
@media only screen and (max-width: 900px) {
  .site-footer .bottom-menu {
    padding-top: 40px;
  }
}
.site-footer .bottom-menu li a {
  font-size: 12px;
  font-weight: 300;
  color: #F0EDEB;
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding: 0;
  text-decoration: none;
}
.site-footer .bottom-menu li a span {
  position: relative;
  display: inline-block;
}
.site-footer .bottom-menu li a:hover {
  opacity: 0.6;
}
.site-footer .bottom-menu li a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 78%;
  background: #6854e5;
  z-index: 1;
}
.site-footer .bottom-menu li:first-child {
  margin-left: 0;
}
.site-footer .bottom-menu li:first-child a::before {
  display: none;
}
.site-footer .bottom-menu li:nth-child(2) a {
  padding-left: 14px;
  margin-left: 0;
}
.site-footer .copyright {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #292352;
}
@media only screen and (max-width: 1050px) {
  .site-footer .copyright {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .site-footer .copyright {
    font-size: 20px;
  }
}

.contact,
.error-404 {
  min-height: 100vh !important;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media only screen and (max-width: 1050px) {
  .contact,
  .error-404 {
    min-height: 80vh !important;
  }
}
@media only screen and (max-width: 800px) {
  .contact,
  .error-404 {
    background-color: #36279b;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact::after,
.error-404::after {
  display: none;
}
@media only screen and (max-width: 800px) {
  .contact .hero-home__media,
  .error-404 .hero-home__media {
    height: auto;
    top: 0;
    left: 0;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
  }
}
.contact .hero-home__media img,
.error-404 .hero-home__media img {
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .hero-home__media::after,
.error-404 .hero-home__media::after {
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.contact .container-fluid,
.error-404 .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  margin-bottom: 33px !important;
  padding-top: 195px;
  padding-bottom: 33px;
}
@media only screen and (min-width: 800px) {
  .contact .container-fluid,
  .error-404 .container-fluid {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 170px;
    padding-bottom: 120px;
    margin-bottom: 0px !important;
  }
}
@media only screen and (max-width: 800px) {
  .contact .container-fluid,
  .error-404 .container-fluid {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
.contact__cont,
.error-404__cont {
  width: 100%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 800px) {
  .contact__cont,
  .error-404__cont {
    margin-top: -45px;
  }
}
.contact__cont__box,
.error-404__cont__box {
  position: relative;
  width: calc(100% - 33px);
  padding: 30px 11px 44px 42px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-left: 33px;
}
@media only screen and (min-width: 800px) {
  .contact__cont__box,
  .error-404__cont__box {
    max-width: 695px;
    padding: 45px 30px 50px 60px;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .contact__cont__box,
  .error-404__cont__box {
    background: linear-gradient(308deg, #4E38E4 -17.76%, #292352 106.48%);
  }
}
@media only screen and (max-width: 900px) {
  .contact__cont__box,
  .error-404__cont__box {
    background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  }
}
.contact__cont__box::before,
.error-404__cont__box::before {
  position: absolute;
  left: -33px;
  top: 33px;
  width: 33px;
  height: 100%;
  background: #7363e3;
  z-index: -1;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (min-width: 800px) {
  .contact__cont__box::before,
  .error-404__cont__box::before {
    top: 50px;
    left: -50px;
    width: 95%;
    height: 100%;
  }
}
@media only screen and (min-width: 900px) {
  .contact__cont__box::before,
  .error-404__cont__box::before {
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.contact__cont__box::after,
.error-404__cont__box::after {
  position: absolute;
  left: -33px;
  top: 100%;
  width: 100%;
  height: 33px;
  background: #7363e3;
  z-index: -1;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (min-width: 800px) {
  .contact__cont__box::after,
  .error-404__cont__box::after {
    width: 100%;
    height: 50px;
    left: -50px;
  }
}
@media only screen and (min-width: 900px) {
  .contact__cont__box::after,
  .error-404__cont__box::after {
    background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
  }
}
.contact__cont__box__row,
.error-404__cont__box__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  width: 100%;
  max-width: 580px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.contact__cont__box__row::before,
.error-404__cont__box__row::before {
  position: absolute;
  background: #6854E5;
}
@media only screen and (min-width: 750px) {
  .contact__cont__box__row::before,
  .error-404__cont__box__row::before {
    left: 42%;
    top: 5%;
    width: 1px;
    height: 90%;
    content: "";
  }
}
@media only screen and (min-width: 750px) {
  .contact__cont__box__row,
  .error-404__cont__box__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 25px;
  }
}
@media only screen and (min-width: 900px) {
  .contact__cont__box__row,
  .error-404__cont__box__row {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.4s;
            transition-delay: 2.4s;
  }
}
.contact__cont__box .button,
.error-404__cont__box .button {
  font-size: 15px;
}
.contact__cont__col,
.error-404__cont__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
}
@media only screen and (min-width: 900px) {
  .contact__cont__col,
  .error-404__cont__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
            flex: 0 0 41%;
  }
}
.contact__cont__col:last-child,
.error-404__cont__col:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51.8%;
          flex: 0 0 51.8%;
  max-width: 290px;
}
@media only screen and (max-width: 750px) {
  .contact__cont__col:last-child,
  .error-404__cont__col:last-child {
    max-width: none;
    width: 100%;
    position: relative;
  }
  .contact__cont__col:last-child::before,
  .error-404__cont__col:last-child::before {
    position: absolute;
    left: 0;
    top: -25px;
    width: 100%;
    height: 1px;
    background: #6854E5;
    content: "";
  }
}
.contact__cont__col address,
.error-404__cont__col address {
  max-width: 190px;
  font-weight: 300;
  line-height: 1.62;
  font-style: normal;
  font-size: 16px;
}
@media only screen and (max-width: 800px) {
  .contact__cont__col address,
  .error-404__cont__col address {
    font-size: 14px;
  }
}
.contact__cont__col .emails,
.error-404__cont__col .emails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  line-height: 1.62;
}
@media only screen and (max-width: 800px) {
  .contact__cont__col .emails,
  .error-404__cont__col .emails {
    font-size: 14px;
  }
}
.contact__cont__col .emails p,
.error-404__cont__col .emails p {
  font-weight: 600;
}
@media only screen and (max-width: 800px) {
  .contact__cont__col .emails p,
  .error-404__cont__col .emails p {
    font-size: 14px;
  }
}
.contact__cont__col .emails a,
.error-404__cont__col .emails a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
}
@media only screen and (max-width: 800px) {
  .contact__cont__col .emails a,
  .error-404__cont__col .emails a {
    font-size: 14px;
  }
}
.contact__cont__col .emails a:hover,
.error-404__cont__col .emails a:hover {
  text-decoration: underline;
}
.contact__cont__tagline,
.error-404__cont__tagline {
  position: relative;
  font-size: 14px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 900px) {
  .contact__cont__tagline,
  .error-404__cont__tagline {
    font-size: 17px;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
}
.contact__cont__tagline::before,
.error-404__cont__tagline::before {
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 3px;
  background: #7363E3;
  content: "";
}
@media only screen and (min-width: 900px) {
  .contact__cont__tagline::before,
  .error-404__cont__tagline::before {
    left: -40px;
    width: 25px;
    height: 5px;
  }
}
.contact__cont h1, .contact__cont h2,
.error-404__cont h1,
.error-404__cont h2 {
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 1.5px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 800px) {
  .contact__cont h1, .contact__cont h2,
  .error-404__cont h1,
  .error-404__cont h2 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 900px) {
  .contact__cont h1, .contact__cont h2,
  .error-404__cont h1,
  .error-404__cont h2 {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
}
.contact__cont__title,
.error-404__cont__title {
  font-size: clamp(48px, 13.2px + 0.058 * 100vw, 74px);
  font-weight: 400;
  line-height: 0.66;
  letter-spacing: 2px;
}
@media only screen and (min-width: 900px) {
  .contact__cont__title,
  .error-404__cont__title {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.1s;
            transition-delay: 2.1s;
  }
}
.contact__cont__subtitle,
.error-404__cont__subtitle {
  font-size: clamp(28px, 6.4px + 0.036 * 100vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: capitalize;
  letter-spacing: 2px;
}
@media only screen and (min-width: 900px) {
  .contact__cont__subtitle,
  .error-404__cont__subtitle {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.4s;
            transition-delay: 2.4s;
  }
}
.contact__cont__text,
.error-404__cont__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (min-width: 900px) {
  .contact__cont__text,
  .error-404__cont__text {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.7s;
            transition-delay: 2.7s;
  }
}

@media only screen and (min-width: 800px) {
  .error-404 .contact__cont__box {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}

@media only screen and (max-width: 1050px) {
  .site {
    overflow-x: hidden;
  }
}

@media only screen and (min-width: 1050px) {
  .site-content .container.default_block {
    max-width: 885px;
  }
}
.site-content .container.default_block.heading {
  margin-bottom: 10px;
}
.site-content .container.default_block.heading .wp-block-heading {
  font-weight: 300;
  color: #6854E5;
}
.site-content .container.default_block.heading:has(h2) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1050px) {
  .site-content .container.default_block.heading:has(h2) {
    margin-bottom: 45px;
  }
}
.site-content .container.default_block.paragraph {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1050px) {
  .site-content .container.default_block.paragraph {
    margin-bottom: 20px;
  }
}
.site-content .container.default_block.paragraph p strong {
  font-weight: 700;
}
.site-content .container.default_block.paragraph p a {
  text-decoration: underline;
  color: #292352;
}
.site-content .container.default_block.paragraph p a:hover {
  text-decoration: none;
}
.site-content .container.default_block.paragraph + .list {
  margin-top: -10px;
}
@media only screen and (min-width: 1050px) {
  .site-content .container.default_block.paragraph + .list {
    margin-top: -25px;
  }
}
.site-content .container.default_block.list {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1050px) {
  .site-content .container.default_block.list {
    margin-bottom: 35px;
  }
}
.site-content .container.default_block.list .list {
  margin-bottom: 0;
}
.site-content .container.default_block.list ul li {
  list-style: inherit;
}
.site-content .container.default_block.list ol li {
  list-style: inherit;
}
.site-content ul {
  margin-left: 15px;
}
.site-content ul li {
  list-style: inherit;
}
.site-content ol {
  margin-left: 15px;
}
.site-content ol li {
  list-style: inherit;
}
.site-content blockquote {
  padding-left: 10px;
  border-left: 6px solid #292352;
  font-style: italic;
  font-weight: 500;
}
@media only screen and (min-width: 1050px) {
  .site-content blockquote {
    font-size: 24px;
  }
}
.site-content img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.site-content img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.site-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*!
 * Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2022 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("webfonts/fa-brands-400.woff2") format("woff2"), url("webfonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

:root {
  --f-spinner-width:36px;
  --f-spinner-height:36px;
  --f-spinner-color-1:rgba(0, 0, 0, 0.1);
  --f-spinner-color-2:rgba(17, 24, 28, 0.8);
  --f-spinner-stroke:2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}
.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          animation: f-spinner-rotate 2s linear infinite;
}
.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}
.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}
.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
          animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}
.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}
.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width:40px;
  --f-button-height:40px;
  --f-button-border:0;
  --f-button-border-radius:0;
  --f-button-color:#374151;
  --f-button-bg:#f8f8f8;
  --f-button-hover-bg:#e0e0e0;
  --f-button-active-bg:#d0d0d0;
  --f-button-shadow:none;
  --f-button-transition:all 0.15s ease;
  --f-button-transform:none;
  --f-button-svg-width:20px;
  --f-button-svg-height:20px;
  --f-button-svg-stroke-width:1.5;
  --f-button-svg-fill:none;
  --f-button-svg-filter:none;
  --f-button-svg-disabled-opacity:0.65;
}

.f-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}
.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}
.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          filter: var(--f-button-svg-filter);
  pointer-events: none;
}
.f-button[disabled] {
  cursor: default;
}
.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}
.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}
html.with-fancybox body {
  -ms-touch-action: none;
      touch-action: none;
}
html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color:#dbdbdb;
  --fancybox-hover-color:#fff;
  --fancybox-bg:rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap:10px;
  --f-spinner-width:50px;
  --f-spinner-height:50px;
  --f-spinner-color-1:rgba(255, 255, 255, 0.1);
  --f-spinner-color-2:#bbb;
  --f-spinner-stroke:3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}
.fancybox__container * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}
.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}
.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}
.fancybox__slide.has-image {
  overflow: hidden;
}
.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}
.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width:2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width:34px;
  --f-button-height:34px;
  --f-button-border-radius:4px;
  --f-button-color:var(--fancybox-color, #fff);
  --f-button-hover-color:var(--fancybox-color, #fff);
  --f-button-bg:transparent;
  --f-button-hover-bg:transparent;
  --f-button-active-bg:transparent;
  --f-button-svg-width:22px;
  --f-button-svg-height:22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn, .is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}
.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}
.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}
.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius:50%;
  --f-button-color:#fff;
  --f-button-hover-color:#fff;
  --f-button-outline-color:#000;
  --f-button-bg:rgba(0, 0, 0, 0.6);
  --f-button-active-bg:rgba(0, 0, 0, 0.6);
  --f-button-hover-bg:rgba(0, 0, 0, 0.6);
  --f-button-svg-width:18px;
  --f-button-svg-height:18px;
  --f-button-svg-filter:none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width:50px;
  --f-button-height:50px;
  --f-button-border:0;
  --f-button-border-radius:50%;
  --f-button-color:var(--fancybox-color);
  --f-button-hover-color:var(--fancybox-hover-color);
  --f-button-bg:transparent;
  --f-button-hover-bg:rgba(24, 24, 27, 0.3);
  --f-button-active-bg:rgba(24, 24, 27, 0.5);
  --f-button-shadow:none;
  --f-button-transition:all 0.15s ease;
  --f-button-transform:none;
  --f-button-svg-width:26px;
  --f-button-svg-height:26px;
  --f-button-svg-stroke-width:2.5;
  --f-button-svg-fill:none;
  --f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity:0.65;
  --f-button-next-pos:1rem;
  --f-button-prev-pos:1rem;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}
.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
          animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
          animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
          animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
          animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width:96px;
  --f-thumb-height:72px;
  --f-thumb-outline:0;
  --f-thumb-outline-color:#5eb0ef;
  --f-thumb-opacity:1;
  --f-thumb-hover-opacity:1;
  --f-thumb-selected-opacity:1;
  --f-thumb-border-radius:2px;
  --f-thumb-offset:0px;
  --f-button-next-pos:0;
  --f-button-prev-pos:0;
}
.f-carousel__thumbs.is-classic {
  --f-thumb-gap:8px;
  --f-thumb-opacity:0.5;
  --f-thumb-hover-opacity:1;
  --f-thumb-selected-opacity:1;
}
.f-carousel__thumbs.is-modern {
  --f-thumb-gap:4px;
  --f-thumb-extra-gap:16px;
  --f-thumb-clip-width:46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}
.f-thumbs .f-spinner svg {
  display: none;
}
.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}
.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}
.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
          filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}
.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}
.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path:inset(0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}
.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}
.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px;
}
.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width:96px;
  --f-thumb-height:72px;
  --f-thumb-border-radius:2px;
  --f-thumb-outline:2px;
  --f-thumb-outline-color:#ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.fancybox__thumbs.is-classic {
  --f-thumb-gap:8px;
  --f-thumb-opacity:0.5;
  --f-thumb-hover-opacity:1;
}
.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}
.fancybox__thumbs.is-modern {
  --f-thumb-gap:4px;
  --f-thumb-extra-gap:16px;
  --f-thumb-clip-width:46px;
  --f-thumb-opacity:1;
  --f-thumb-hover-opacity:1;
}
.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}
.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}
.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width:64px;
  --f-thumb-clip-width:32px;
  --f-thumb-height:48px;
  --f-thumb-extra-gap:10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color:var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width:46px;
  --f-button-height:46px;
  --f-button-color:var(--fancybox-color);
  --f-button-hover-color:var(--fancybox-hover-color);
  --f-button-bg:rgba(24, 24, 27, 0.65);
  --f-button-hover-bg:rgba(70, 70, 73, 0.65);
  --f-button-active-bg:rgba(90, 90, 93, 0.65);
  --f-button-border-radius:0;
  --f-button-svg-width:24px;
  --f-button-svg-height:24px;
  --f-button-svg-stroke-width:1.5;
  --f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill:none;
  --f-button-svg-disabled-opacity:0.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}
.fancybox__toolbar :focus-visible {
  z-index: 1;
}
.fancybox__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.fancybox__toolbar__column.is-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.fancybox__infobar span {
  padding: 0 5px;
}
.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}
[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}
[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}
:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}
:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.news {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
body.home .news {
  padding: 90px 0 55px;
}
@media only screen and (max-width: 750px) {
  body.home .news {
    padding: 0px 0 28px;
  }
}
.news .container {
  position: relative;
}
.news__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.news__title {
  position: relative;
  color: #604BE7;
  line-height: 0.86;
}
.news__button {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
}
.news__button:hover svg path {
  stroke: #6B61AB;
}
@media only screen and (max-width: 750px) {
  .news__button {
    display: none;
    font-size: 12px;
  }
}
.news .filters {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.news .block-blog_ajax {
  margin-top: 28px;
}
@media only screen and (max-width: 1050px) {
  .news .block-blog_ajax {
    margin-top: 15px;
  }
}
.news .block-blog_ajax .loading {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news .block-blog_ajax .loading svg {
  width: 50px;
  height: 50px;
}
.news .block-blog_ajax .js-loading {
  min-height: 100px;
}
.news .block-blog_ajax .js-loading > * {
  opacity: 0.2;
}
.news .block-blog_ajax .js-loading:before {
  width: 50px;
  aspect-ratio: 1;
  content: "";
  background: url(../images/new-loader.svg) no-repeat center;
  background-size: 100% auto;
  -webkit-animation: loading 3s infinite;
          animation: loading 3s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  display: block;
  position: absolute;
  top: 50px;
  left: 50%;
  margin-left: -25px;
}
.news .block-blog_ajax .js-results {
  display: contents;
}
.news .block-blog_ajax .js-loading-item {
  display: none;
}
.news .js-load-more__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: clamp(40px, -39.8px + 0.133 * 100vw, 100px);
}

.posts-grid-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.posts-grid-pagination .js-load-more {
  --color: #ffffff;
  --borderColor: rgba(255, 255, 255, 0.5);
  --backgroundColor: transparent;
  --colorHover: #6b61ab;
  --borderColorHover: #d3cdfe;
  --backgroundColorHover: #d3cdfe;
  color: var(--color);
  background: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  border-radius: 100px;
  padding: 7px 12px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  --color: #6854E5;
  --borderColor: #6854E5;
  cursor: pointer;
}
@media only screen and (min-width: 750px) {
  .posts-grid-pagination .js-load-more {
    padding: 10px 24px;
    gap: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .posts-grid-pagination .js-load-more {
    font-size: 14px;
  }
}
.posts-grid-pagination .js-load-more:hover {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
}
.posts-grid-pagination .js-load-more svg path {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.posts-grid-pagination .js-load-more:hover {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.home-news .block-blog_ajax {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.home-news .block-blog_ajax .post-item {
  max-width: 325px;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
@media only screen and (min-width: 600px) {
  .home-news .block-blog_ajax .post-item {
    max-width: 425px;
  }
}
.home-news .scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.home-news .scroller[data-animated=true] .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
          animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.home-news .scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.home-news .scroller[data-direction=slow] {
  --_animation-duration: 30s;
}
.home-news .scroller[data-speed=fast] {
  --_animation-duration: 30s;
}
.home-news .scroller[data-animated=true] .scroller__inner:has(.post-item:hover) {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
            transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
            transform: translate(calc(-50% - 0.5rem));
  }
}
.block-blog_ajax {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 32px;
}
@media only screen and (max-width: 900px) {
  .block-blog_ajax {
    gap: 20px;
  }
}
@media only screen and (min-width: 750px) {
  .block-blog_ajax {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1050px) {
  .block-blog_ajax {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.block-blog_ajax .filters {
  margin-bottom: 20px;
}
.block-blog_ajax .filters button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
.block-blog_ajax .filters button.active {
  background: #6854E5;
  color: #fff;
}
.block-blog_ajax .blogpagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.block-blog_ajax .blogpagination a,
.block-blog_ajax .blogpagination span {
  padding: 10px;
}
.block-blog_ajax .no-results {
  grid-column: 1/-1;
  padding: 40px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #6854E5;
}
@media only screen and (min-width: 900px) {
  .block-blog_ajax .no-results {
    font-size: 22px;
    padding: 40px;
  }
}

/*
.post-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: $grey2;
  padding: 18px 26px 22px 24px;
  text-decoration: none;

  @include fade(0, 100px, true, 1);

  @include responsiveMin('mobile-h') {
    padding: 23px 32px 28px;
  }

  &__date {
    position: relative;
    font-size: 12px;
    color: $secondary-color;
    text-transform: uppercase;
    font-style: normal;

    @include fade(0, 100px, true, 1);

    &::before {
      position: absolute;
      left: -24px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 3px;
      background: rgba(137, 120, 255, 0.90);
      content: "";

      @include responsiveMin('mobile-h') {
        left: -32px;
        width: 20px;
        height: 4px;
      }
    }
  }

  &__logo {
    position: relative;
    border-top: 0.5px solid $secondary-color;
    border-bottom: 0.5px solid $secondary-color;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;

    @include responsiveMin('mobile-h') {
      height: 140px;
      margin-top: 16px;
    }

    img {
      max-width: 90%;
      max-height: 100px;
      object-fit: contain;
    }
  }

  &__text-cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    margin-bottom: 20px;
  }

  &__title {
    color: $secondary-color;
    display: block;
    text-decoration: none;
	@include fade(0, 100px, true, 1);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.35;
    margin-top: 12px;
    // background-image: linear-gradient($secondary-color, $secondary-color);
    // background-repeat: no-repeat;
    // background-position: left bottom;
    // background-size: 0% 1px;
    // transition: background-size 0.4s ease;
    padding-bottom: 2px;

    @include responsiveMin('mobile-h') {
      font-size: 25px;
      line-height: 1.36;
      margin-top: 15px;
    }

    span {
        display: inline;
        background: linear-gradient(
				90deg,
				rgba($secondary-color, 1) 0%,
				rgba($secondary-color, 1) 100%,
				rgba($secondary-color, 0) 100%,
				rgba($secondary-color, 0) 100%
		);
        background-size: 100% 0px;
        background-repeat: no-repeat;
        background-position: 100% 88%;
        transition: $transition-default-hover-text;
        transition-duration: 0.6s;
        box-decoration-break: clone;
    }
  }

  &__text {
    font-size: 14px;
    color: $primary-color;
    margin-top: 8px;

    @include responsiveMin('mobile-h') {
      margin-top: 10px;
    }
  }

  .button--arrow {
    // margin-top: 20px;
    // border: 1px solid transparent;
    transition: all 0.5s ease;
  }

  &:hover {
    .post-item__title {
        span {
            background-size: 100% 1px;
        }

    }

    .button--arrow {
      color: var(--colorHover);
      background: var(--backgroundColorHover);
      border: 1px solid var(--borderColorHover);
      transition: all 0.5s ease;
    }
  }
}

*/
.investments_block {
  position: relative;
  margin-bottom: clamp(50px, -83.2px + 0.222 * 100vw, 150px);
}
.investments_block .container {
  max-width: 1180px;
}
.investments_block__grid .block-blog_ajax {
  display: block;
}
.investments_block__grid .block-blog_ajax .js-results {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}
@media only screen and (max-width: 1050px) {
  .investments_block__grid .block-blog_ajax .js-results {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .investments_block__grid .block-blog_ajax .js-results {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.investments_block__grid .block-blog_ajax .js-results .js-loading-item {
  display: none;
}
.investments_block__title {
  margin-top: clamp(30px, -63.6px + 0.156 * 100vw, 100px);
  margin-bottom: 20px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (max-width: 1050px) {
  .investments_block__title {
    margin-left: 25px;
  }
}
.investments_block__title span {
  color: #6854E5;
  font-size: clamp(14px, 7.4px + 0.011 * 100vw, 19px);
  font-weight: 400;
  line-height: 1.36;
  position: relative;
}
.investments_block__title span::after {
  position: absolute;
  top: 11px;
  left: -40px;
  width: 24px;
  height: 5px;
  background: #6854e5;
  content: "";
}
@media only screen and (max-width: 900px) {
  .investments_block__title span::after {
    width: 13px;
    height: 3px;
    left: -25px;
    top: 7px;
  }
}
.investments_block__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  position: relative;
  z-index: 1;
}
.investments_block__filters-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.investments_block__filters-cont .filters__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: clamp(30px, -63.6px + 0.156 * 100vw, 100px);
  margin-bottom: clamp(30px, -10.2px + 0.067 * 100vw, 60px);
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (min-width: 900px) {
  .investments_block__filters-cont .filters__select {
    gap: 17px;
  }
}
.investments_block__filters-cont label {
  --color: #ffffff;
  --borderColor: rgba(255, 255, 255, 0.5);
  --backgroundColor: transparent;
  --colorHover: #6b61ab;
  --borderColorHover: #d3cdfe;
  --backgroundColorHover: #d3cdfe;
  color: var(--color);
  background: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  border-radius: 100px;
  padding: 7px 12px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  --color: #6854E5;
  --colorHover: #ffffff;
  --borderColor: #7363E3;
  border-radius: 0px;
  padding: 8px 12px;
  font-size: 19px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  display: block;
}
@media only screen and (min-width: 750px) {
  .investments_block__filters-cont label {
    padding: 10px 24px;
    gap: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .investments_block__filters-cont label {
    font-size: 14px;
  }
}
.investments_block__filters-cont label:hover {
  color: var(--colorHover);
  background: var(--backgroundColorHover);
  border: 1px solid var(--borderColorHover);
}
.investments_block__filters-cont label svg path {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.investments_block__filters-cont label:hover {
  color: var(--colorHover);
  background: var(--borderColor);
  border: 1px solid var(--borderColor);
}
.investments_block__filters-cont label:has(input:checked) {
  color: var(--colorHover);
  background: var(--borderColor);
  border: 1px solid var(--borderColor);
}
.investments_block__filters-cont label input {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.investments_block__filters-cont label:nth-child(4) {
  display: none;
}
.investments_block .filters button {
  padding: 10px 58px 10px 10px;
  font-size: 16px;
  cursor: pointer;
}
.investments_block .filters button.active {
  background: #ffffff;
  color: #000;
}
.investments_block .blogpagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.investments_block .blogpagination a,
.investments_block .blogpagination span {
  padding: 10px;
}

.our-approach {
  position: relative;
  margin-top: -50px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 1050px) {
  .our-approach {
    margin-top: -30px;
    padding-bottom: 100px;
  }
}
.our-approach__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-left: 0;
  background: radial-gradient(ellipse at right, rgb(184, 174, 254) 0%, rgb(238, 237, 254) 100%);
}
.our-approach__bg:after {
  height: 500px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#f3f2f6), to(rgba(243, 242, 246, 0)));
  background: linear-gradient(0deg, #f3f2f6 0%, rgba(243, 242, 246, 0) 100%);
}
.our-approach__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1366px) {
  .our-approach__bg img {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.our-approach__cont {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}
.our-approach__cont__content {
  position: relative;
}
.our-approach__cont__content__heading {
  padding: 100px 0;
  position: relative;
  margin: 100px 0;
}
.our-approach__cont__content__heading img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 990px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 2s;
  transition: 2s;
  opacity: var(--v1, 0);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, black));
          mask-image: linear-gradient(to right, transparent 0%, black 50%);
}
@media only screen and (max-width: 750px) {
  .our-approach__cont__content__heading img {
    height: auto;
    aspect-ratio: 4/3;
    right: -20px;
    top: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .our-approach__cont__content__heading {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 900px) {
  .our-approach__cont__content__heading {
    padding: 35px 0;
    margin: 30px 0;
  }
}
.our-approach__cont__content .our-approach__heading {
  padding-left: 100px;
}
@media only screen and (max-width: 1200px) {
  .our-approach__cont__content .our-approach__heading {
    padding-left: 0;
  }
}
@media only screen and (max-width: 900px) {
  .our-approach__cont__content .our-approach__heading {
    margin-top: 74px;
  }
}
.our-approach__cont__content .our-approach__heading__tagline {
  font-size: 22px;
  font-family: "DM Sans", sans-serif;
  position: relative;
  padding: 12px 29px;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  color: white;
  display: inline-block;
  font-weight: 300;
  line-height: 1.81;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 1050px) {
  .our-approach__cont__content .our-approach__heading__tagline {
    font-size: 17px;
  }
}
@media only screen and (max-width: 600px) {
  .our-approach__cont__content .our-approach__heading__tagline {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1050px) {
  .our-approach__cont__content .our-approach__heading__tagline {
    padding: 9px 17px;
  }
}
.our-approach__cont__content .our-approach__heading__title {
  margin-top: 65px;
  background: linear-gradient(116deg, #4330c1 40.69%, #bbb1ff 123.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  line-height: 1.3;
  max-width: 850px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 1050px) {
  .our-approach__cont__content .our-approach__heading__title {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: normal;
    max-width: 100%;
  }
}
.our-approach__feature {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 50px;
}
@media only screen and (max-width: 750px) {
  .our-approach__feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 0;
  }
}
.our-approach__feature:before {
  height: 100%;
  width: 605px;
  background: #7363E3;
  content: "";
  position: absolute;
  top: 50px;
  left: -50px;
  -webkit-transform: scaleX(var(--v1, 0));
          transform: scaleX(var(--v1, 0));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
@media only screen and (max-width: 750px) {
  .our-approach__feature:before {
    width: 100%;
    top: 0;
  }
}
.our-approach__feature__text {
  position: relative;
  max-width: 605px;
  height: 445px;
  padding: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 750px) {
  .our-approach__feature__text {
    height: auto;
    padding: 30px;
    margin-right: -20px;
    width: auto;
    max-width: unset;
    margin-top: -30px;
  }
  .our-approach__feature__text:after {
    width: 100%;
    height: 100%;
    background: #7363E3;
    top: 100%;
    height: 33px;
    position: absolute;
    content: "";
    left: 0;
  }
}
.our-approach__feature__text:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  content: "";
  -webkit-transform: scaleX(var(--v1, 0));
          transform: scaleX(var(--v1, 0));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.our-approach__feature__text__title {
  position: relative;
  margin-bottom: clamp(20px, 6.8px + 0.022 * 100vw, 30px);
  font-weight: 400;
  font-size: clamp(24px, -18.6px + 0.071 * 100vw, 56px);
  letter-spacing: 2px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (min-width: 750px) {
  .our-approach__feature__text__title::after {
    width: 84px;
    height: 5px;
    background: #7363E3;
    content: "";
    margin-top: 30px;
    display: block;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.our-approach__feature__text__text {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 750px) {
  .our-approach__feature__text__text {
    max-width: 246px;
    font-size: 14px;
  }
}
.our-approach__feature__text__link {
  position: relative;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.our-approach__feature__image {
  width: 100%;
  position: relative;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (min-width: 750px) {
  .our-approach__feature__image__cont {
    position: absolute;
    top: 50px;
    left: -80px;
    bottom: -100px;
    right: 0;
  }
}
@media only screen and (max-width: 750px) {
  .our-approach__feature__image__cont {
    aspect-ratio: 335/233;
    margin-left: -20px;
    position: relative;
  }
}
.our-approach__feature__image__cont img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-news {
  position: relative;
  overflow: hidden;
  padding: 0 0 50px 0;
}
@media only screen and (max-width: 900px) {
  .featured-news .container {
    padding: 0;
  }
}
.featured-news--tagline {
  position: relative;
  font-size: 17px;
  color: #ffffff;
  font-style: normal;
  left: 0;
  font-weight: 400;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 900px) {
  .featured-news--tagline {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
}
@media only screen and (max-width: 750px) {
  .featured-news--tagline {
    font-size: 14px;
  }
}
.featured-news--tagline::before {
  position: absolute;
  left: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 5px;
  background: #7363E3;
  content: "";
}
@media only screen and (max-width: 750px) {
  .featured-news--tagline::before {
    left: -20px;
    width: 12px;
    height: 3px;
  }
}
.featured-news .feat-swiper {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
}
.featured-news .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .featured-news .swiper-slide {
    height: auto;
  }
}
.featured-news__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: white;
  text-decoration: none;
  padding-top: 64px;
  height: 100%;
}
@media only screen and (max-width: 900px) {
  .featured-news__slide {
    height: 100%;
    padding-top: 50px;
  }
}
.featured-news__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0px 0 50px 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(51.12% - 50px);
          flex: 0 0 calc(51.12% - 50px);
  padding: 24px 90px 78px 60px;
  aspect-ratio: 1.5;
}
@media only screen and (max-width: 900px) {
  .featured-news__card {
    margin: 0px 0 33px 33px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(100% - 34px);
    padding: 20px 26px 28px 37px;
    background: linear-gradient(277deg, #4E38E4 14.38%, #292352 141.07%);
  }
}
@media only screen and (min-width: 1050px) {
  .featured-news__card {
    min-height: 450px;
    max-width: calc(51.12% - 50px);
  }
}
.featured-news__card::after {
  position: absolute;
  left: -50px;
  top: 50px;
  width: calc(100% + 50px);
  height: 100%;
  z-index: -1;
  background: #7363E3;
  content: "";
}
@media only screen and (min-width: 900px) {
  .featured-news__card::after {
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media only screen and (max-width: 900px) {
  .featured-news__card::after {
    top: 33px;
    width: 33px;
    left: -33px;
    background: linear-gradient(351deg, #7363E3 22.06%, #362B86 80.57%);
  }
}
.featured-news__card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(277deg, #4E38E4 14.38%, #292352 141.07%);
  content: "";
}
@media only screen and (min-width: 900px) {
  .featured-news__card::before {
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media only screen and (max-width: 900px) {
  .featured-news__card::before {
    height: 33px;
    left: -31px;
    position: absolute;
    top: 100%;
    width: calc(100% + 1px);
    height: 50px;
    z-index: 0;
    background: #7363E3;
  }
}
.featured-news__heading {
  font-weight: 300;
  font-size: 26px;
  color: #ffffff;
  line-height: 1.69;
  color: #C5BDFF;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 900px) {
  .featured-news__heading {
    font-size: 24px;
  }
}
@media only screen and (min-width: 900px) {
  .featured-news__heading {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
}
.featured-news__date {
  padding-top: 35px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.24px;
  line-height: 1.91;
  margin-bottom: 6px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 900px) {
  .featured-news__date {
    padding-top: 8px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 900px) {
  .featured-news__date {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
}
.featured-news__title {
  font-weight: 300;
  font-size: 20px;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (min-width: 900px) {
  .featured-news__title {
    line-height: 1.375;
    font-size: 32px;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
}
.featured-news__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.64;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
@media only screen and (max-width: 900px) {
  .featured-news__text {
    margin-top: 12px;
  }
}
@media only screen and (min-width: 900px) {
  .featured-news__text {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.1s;
            transition-delay: 2.1s;
  }
}
.featured-news .button {
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 100px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
@media only screen and (max-width: 900px) {
  .featured-news .button {
    display: none;
  }
}
.featured-news__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: -50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48.8%;
          flex: 0 0 48.8%;
  background-color: #6854E5;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 65/50;
}
@media only screen and (max-width: 900px) {
  .featured-news__image {
    display: none;
  }
}
@media only screen and (min-width: 1050px) {
  .featured-news__image {
    height: auto;
  }
}
@media only screen and (min-width: 900px) {
  .featured-news__image {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(-300px) translateY(0));
            transform: var(--fade-transform, translateX(-300px) translateY(0));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
}
.featured-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(104, 84, 229, 0.55)), to(rgba(104, 84, 229, 0.55)));
  background: linear-gradient(0deg, rgba(104, 84, 229, 0.55), rgba(104, 84, 229, 0.55));
  background-blend-mode: lighten, normal;
}
.featured-news__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(104, 84, 229, 0.55)), to(rgba(104, 84, 229, 0.55)));
  background: linear-gradient(0deg, rgba(104, 84, 229, 0.55), rgba(104, 84, 229, 0.55));
  background-blend-mode: lighten, normal;
}
.featured-news .mobile-image {
  position: relative;
  display: none;
  margin-top: 12px;
  aspect-ratio: 1.9;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.featured-news .mobile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 900px) {
  .featured-news .mobile-image {
    display: block;
  }
}
.featured-news .feat-swiper-pagination {
  position: absolute;
  z-index: 5;
  left: 100px;
  bottom: 50px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 3px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 900px) {
  .featured-news .feat-swiper-pagination {
    bottom: auto;
    top: 83px;
    left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50px;
    height: auto;
    gap: 5px;
  }
}
@media only screen and (min-width: 900px) {
  .featured-news .feat-swiper-pagination {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.7s;
            transition-delay: 2.7s;
  }
}
.featured-news .feat-swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 44px;
  height: 44px;
  color: white;
  background: #322590;
  color: white;
  font-size: 17px;
  line-height: 1.52;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  opacity: 1;
  color: #A092FF;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .featured-news .feat-swiper-pagination .swiper-pagination-bullet {
    width: 33px;
    height: 33px;
    margin: 0 0;
    background: #24196E;
    font-size: 16px;
  }
}
.featured-news .feat-swiper-pagination .swiper-pagination-bullet:hover {
  background: #7363E3;
  color: #ffffff;
}
.featured-news .feat-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #7363E3;
  color: #ffffff;
}
.featured-news + .news {
  padding-top: 0;
}

.partners {
  position: relative;
  padding: 0 0 60px 0;
  overflow: hidden;
}
@media only screen and (min-width: 1050px) {
  .partners {
    padding: 0 0 175px 0;
  }
}
.partners:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66%;
  background: #1D154F;
  z-index: -1;
}
.partners .container {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1050px) {
  .partners .container {
    padding: 0 30px;
    position: relative;
  }
}
.partners__cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
  width: calc(100% - 33px);
  left: 33px;
  right: 0px;
  padding: 20px 31px 31px 31px;
  margin-top: -1px;
}
@media only screen and (min-width: 1050px) {
  .partners__cont {
    padding: 0 40px 64px 64px;
    margin: 50px 0 0 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 54.17%;
            flex: 0 1 54.17%;
    left: auto;
    gap: 20px;
  }
}
@media only screen and (max-width: 1050px) {
  .partners__cont {
    background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  }
}
.partners__cont::before {
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  height: calc(100% + 50px);
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  z-index: 0;
  content: "";
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform: scaleX(var(--v1, 0));
          transform: scaleX(var(--v1, 0));
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
@media only screen and (max-width: 1050px) {
  .partners__cont::before {
    display: none;
  }
}
.partners__cont::after {
  position: absolute;
  left: -50px;
  top: 0;
  width: 100%;
  height: calc(100% + 50px);
  background: #7363e3;
  z-index: -1;
  content: "";
}
@media only screen and (min-width: 1050px) {
  .partners__cont::after {
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: scaleX(var(--v1, 0));
            transform: scaleX(var(--v1, 0));
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media only screen and (max-width: 1050px) {
  .partners__cont::after {
    left: -33px;
    width: 100%;
    top: 33px;
    height: 100%;
  }
}
.partners__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
  padding: 0 0 30px 0;
}
@media only screen and (min-width: 750px) {
  .partners__head {
    padding: 43px 26px 30px 16px;
  }
}
@media only screen and (min-width: 1050px) {
  .partners__head {
    padding: 0;
    gap: 22px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.5%;
            flex: 0 0 31.5%;
    padding: 0 0 30px 0;
  }
}
.partners__head--title {
  color: #ffffff;
  line-height: 1.25;
  font-weight: 600;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (min-width: 1050px) {
  .partners__head--title {
    line-height: 1.38;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
}
.partners__head--text {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}
@media only screen and (min-width: 1050px) {
  .partners__head--text {
    font-size: 22px;
    margin-top: 0px;
    line-height: 1.63;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
}
.partners__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media only screen and (min-width: 750px) {
  .partners__body {
    max-width: 100%;
  }
}
.partners__panels {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 100%;
  gap: 30px;
}
@media only screen and (min-width: 1050px) {
  .partners__panels {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}
.partners__panels--panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
  max-height: 325px;
  aspect-ratio: 1.07;
}
.partners__panels--panel:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.partners__panels--panel:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.partners__panels--panel:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
@media only screen and (min-width: 1050px) {
  .partners__panels--panel:nth-child(1) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.1s;
            transition-delay: 2.1s;
  }
  .partners__panels--panel:nth-child(2) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.4s;
            transition-delay: 2.4s;
  }
  .partners__panels--panel:nth-child(3) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.7s;
            transition-delay: 2.7s;
  }
}
.partners__panels--panel--icon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  border: 0.5px solid #ffffff;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partners__panels--panel--icon::before {
  content: "";
  display: block;
  width: 16px;
  height: 0px;
  border-bottom: solid 0.5px #ffffff;
  position: absolute;
  bottom: 11px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.partners__panels--panel--icon::after {
  content: "";
  display: block;
  width: 16px;
  height: 0px;
  border-bottom: solid 0.5px #ffffff;
  position: absolute;
  bottom: 11px;
}
.partners__panels--panel--image {
  min-height: 325px;
  aspect-ratio: 1.07;
  position: relative;
}
.partners__panels--panel--image--overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(153.19deg, #4935CD 27.2%, #7363E3 118.03%);
  -webkit-box-shadow: 25px 4px 55px rgba(29, 21, 79, 0.45);
          box-shadow: 25px 4px 55px rgba(29, 21, 79, 0.45);
  opacity: 0.75;
}
.partners__panels--panel h4 {
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 20px;
  padding-right: 60px;
  color: #ffffff;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media only screen and (min-width: 1050px) {
  .partners__panels--panel h4 {
    font-weight: 600;
    line-height: 1.33;
    font-size: 25px;
    padding: 30px;
    padding-right: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .partners__panels--panel h4 {
    padding: 40px;
    padding-right: 60px;
    font-size: 30px;
  }
}
.partners__panels--panel .panel-text {
  background: rgba(29, 21, 79, 0.5490196078);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media only screen and (min-width: 1050px) {
  .partners__panels--panel .panel-text {
    padding: 40px;
    padding-right: 60px;
  }
}
.partners__panels--panel .panel-text p {
  font-size: 16px;
  line-height: 1.44;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.partners__panels--panel:hover {
  /*
  .partners__panels--panel--icon{
  	transform: rotate(0deg);
  	&::before {
  		content: "";
  		display: block;
  		width: 0px;
  		height: 0px;
  		border-bottom: solid 0.5px $white;
  		position: absolute;
  		bottom: 11px;
  		transform: rotate(90deg);
  	}
  }
  h4{
  	transform: translateY(-20px);
  	opacity: 0;
  }
  .panel-text{
  	transform: translateY(0);
  }
  */
}

.expertise {
  position: relative;
  padding: 0 0;
}
@media only screen and (max-width: 900px) {
  .expertise {
    overflow: hidden;
  }
}
.expertise__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/868;
  margin-left: 0;
  height: calc(100% + 50px);
  margin-top: 0;
  z-index: -1;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (min-width: 900px) {
  .expertise__bg {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 900px) {
  .expertise__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e7e6ec, transparent);
  }
}
.expertise__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media only screen and (min-width: 900px) {
  .expertise__bg img {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.expertise__bg img.mobile {
  display: block;
  opacity: 0.5;
}
@media only screen and (min-width: 900px) {
  .expertise__bg img.mobile {
    display: none;
  }
}
.expertise__bg img.desktop {
  display: none;
}
@media only screen and (min-width: 900px) {
  .expertise__bg img.desktop {
    display: block;
  }
}
.expertise__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  color: #ffffff;
  max-width: 1070px;
  position: relative;
  width: 100%;
  left: 0;
  right: 0px;
  padding: 30px 15px 20px 15px;
}
@media only screen and (min-width: 900px) {
  .expertise__card {
    padding: 40px 40px 35px 64px;
    margin: 50px 0 0 50px;
    left: auto;
  }
}
.expertise__tagline {
  font-size: 22px;
  font-family: "DM Sans", sans-serif;
  position: relative;
  padding: 12px 29px;
  background: linear-gradient(277deg, #4e38e4 14.38%, #292352 141.07%);
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 300;
  line-height: 1.81;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 1050px) {
  .expertise__tagline {
    font-size: 17px;
  }
}
@media only screen and (max-width: 600px) {
  .expertise__tagline {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1050px) {
  .expertise__tagline {
    padding: 9px 17px;
  }
}
.expertise__title {
  margin-top: 50px;
  background: linear-gradient(116deg, #4330c1 40.69%, #bbb1ff 123.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 46px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 1050px) {
  .expertise__title {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: normal;
    background: transparent;
    -webkit-text-fill-color: #4330c1;
  }
}
.expertise__cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  color: #ffffff;
  max-width: 1070px;
  position: relative;
  width: 100%;
  left: 0;
  right: 0px;
  padding: 0 15px 30px 15px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (min-width: 900px) {
  .expertise__cont {
    padding: 0 40px 100px 64px;
    margin: 0 0 0 50px;
    left: auto;
  }
}
.expertise__cont p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #292352;
}
@media only screen and (min-width: 900px) {
  .expertise__cont p {
    font-size: 20px;
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
            transform: var(--fade-transform, translateX(0) translateY(100px));
    -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 2.1s;
            transition-delay: 2.1s;
  }
}
@media only screen and (min-width: 1050px) {
  .expertise__cont p {
    font-size: 22px;
  }
}

.people {
  position: relative;
  padding: 30px 0;
}
@media only screen and (min-width: 900px) {
  .people {
    padding: 100px 0 85px;
  }
}
.people .container {
  max-width: 1180px;
}
.people__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (min-width: 900px) {
  .people__tabs {
    gap: 17px;
  }
}
@media only screen and (max-width: 900px) {
  .people__tabs .team--button {
    font-size: 14px;
  }
}
.people__tabs .team--button.js-active {
  cursor: default;
}
.people__grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media only screen and (min-width: 600px) {
  .people__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .people__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1050px) {
  .people__grid {
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.people__grid__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 25px;
  background: #ffffff;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: left;
  cursor: pointer;
}
.people__grid__item:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.people__grid__item:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.people__grid__item:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.people__grid__item:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.people__grid__item:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.people__grid__item:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.people__grid__item:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.people__grid__item:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.people__grid__item:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.people__grid__item:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.people__grid__item:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.3s;
          transition-delay: 3.3s;
}
.people__grid__item:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.people__grid__item:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 3.9s;
          transition-delay: 3.9s;
}
.people__grid__item:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.2s;
          transition-delay: 4.2s;
}
.people__grid__item:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.5s;
          transition-delay: 4.5s;
}
.people__grid__item:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 4.8s;
          transition-delay: 4.8s;
}
.people__grid__item:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.1s;
          transition-delay: 5.1s;
}
.people__grid__item:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.4s;
          transition-delay: 5.4s;
}
.people__grid__item:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 5.7s;
          transition-delay: 5.7s;
}
.people__grid__item:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6s;
          transition-delay: 6s;
}
.people__grid__item:nth-child(21) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.3s;
          transition-delay: 6.3s;
}
.people__grid__item:nth-child(22) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.6s;
          transition-delay: 6.6s;
}
.people__grid__item:nth-child(23) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 6.9s;
          transition-delay: 6.9s;
}
.people__grid__item:nth-child(24) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.2s;
          transition-delay: 7.2s;
}
.people__grid__item:nth-child(25) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.5s;
          transition-delay: 7.5s;
}
.people__grid__item:nth-child(26) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 7.8s;
          transition-delay: 7.8s;
}
.people__grid__item:nth-child(27) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.1s;
          transition-delay: 8.1s;
}
.people__grid__item:nth-child(28) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.4s;
          transition-delay: 8.4s;
}
.people__grid__item:nth-child(29) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 8.7s;
          transition-delay: 8.7s;
}
.people__grid__item:nth-child(30) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9s;
          transition-delay: 9s;
}
.people__grid__item:nth-child(31) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.3s;
          transition-delay: 9.3s;
}
.people__grid__item:nth-child(32) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.6s;
          transition-delay: 9.6s;
}
.people__grid__item:nth-child(33) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 9.9s;
          transition-delay: 9.9s;
}
.people__grid__item:nth-child(34) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.2s;
          transition-delay: 10.2s;
}
.people__grid__item:nth-child(35) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.5s;
          transition-delay: 10.5s;
}
.people__grid__item:nth-child(36) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 10.8s;
          transition-delay: 10.8s;
}
.people__grid__item:nth-child(37) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.1s;
          transition-delay: 11.1s;
}
.people__grid__item:nth-child(38) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.4s;
          transition-delay: 11.4s;
}
.people__grid__item:nth-child(39) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 11.7s;
          transition-delay: 11.7s;
}
.people__grid__item:nth-child(40) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12s;
          transition-delay: 12s;
}
.people__grid__item:nth-child(41) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.3s;
          transition-delay: 12.3s;
}
.people__grid__item:nth-child(42) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.6s;
          transition-delay: 12.6s;
}
.people__grid__item:nth-child(43) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 12.9s;
          transition-delay: 12.9s;
}
.people__grid__item:nth-child(44) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.2s;
          transition-delay: 13.2s;
}
.people__grid__item:nth-child(45) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 13.5s;
          transition-delay: 13.5s;
}
@media only screen and (min-width: 900px) {
  .people__grid__item {
    padding: 30px;
  }
}
.people__grid__item .team-member__name {
  font-size: 19px;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  color: #292352;
  font-weight: 400;
  line-height: 1.57;
}
@media only screen and (min-width: 900px) {
  .people__grid__item .team-member__name {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.36;
  }
}
.people__grid__item .team-member__position {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.42;
  color: #292352;
}
@media only screen and (min-width: 900px) {
  .people__grid__item .team-member__position {
    font-size: 13px;
    line-height: 1.53;
  }
}
.people__grid__item:after {
  height: 0.5px;
  width: 100%;
  content: "";
  background: #6854E5;
  position: absolute;
  top: 100%;
  margin-top: -0.5px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.people__grid__item:before {
  width: 25px;
  height: 25px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/icons/investment-arrow.svg) no-repeat;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.people__grid__item.no-description {
  cursor: default;
}
.people__grid__item.no-description:before {
  display: none;
}
.people__grid__item:hover .team-member__name {
  color: #7363E3;
  text-decoration: underline;
}
.people__grid__item:hover:after {
  height: 3px;
  background: #6854e5;
}
.people__grid__item:hover:before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.people__grid__title {
  position: relative;
  margin-top: 30px;
  color: #6854E5;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1200px) {
  .people__grid__title {
    font-size: 19px;
    margin-top: 60px;
  }
}
.people__grid__title::before {
  display: block;
  position: relative;
  width: 13px;
  height: 3px;
  background: #6854E5;
  margin-right: 10px;
  content: "";
}
@media only screen and (min-width: 1200px) {
  .people__grid__title::before {
    position: absolute;
    left: -40px;
    width: 24px;
    height: 5px;
    margin-right: 15px;
  }
}
.people__grid__title + .people__grid {
  margin-top: 20px;
}
.people .panel {
  display: none;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 900px) {
  .people .panel {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.people .panel.js-open {
  display: block;
}
.people .panel.advisory-board {
  padding-top: 40px;
}
@media only screen and (min-width: 900px) {
  .people .panel.advisory-board {
    padding-top: 60px;
  }
}
.people .panel__title {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #6854E5;
  left: 25px;
  margin-block: 20px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (min-width: 1050px) {
  .people .panel__title {
    font-size: 19px;
    left: 0;
    margin-block: 30px;
  }
}
.people .panel__title::before {
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 3px;
  background: #6854E5;
  content: "";
}
@media only screen and (min-width: 1050px) {
  .people .panel__title::before {
    left: -40px;
    width: 25px;
    height: 5px;
  }
}
.people .member-modal {
  position: fixed;
  overflow-y: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999999;
  background: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-block: 50px;
  display: none;
}
.people .member-modal.js-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 900px) {
  .people .member-modal {
    padding-block: 120px;
  }
}
.people .member-modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media only screen and (min-width: 1050px) {
  .people .member-modal__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.people .member-modal__heading {
  position: relative;
  padding: 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 900px) {
  .people .member-modal__heading {
    min-width: 300px;
    padding: 0 15px 15px;
  }
}
.people .member-modal__body {
  position: relative;
}
.people .member-modal__title {
  color: #292352;
  font-size: 34px;
  font-weight: 300;
}
.people .member-modal__position {
  color: #292352;
  font-size: 20px;
  font-weight: 300;
}
@media only screen and (min-width: 900px) {
  .people .member-modal__position {
    font-size: 20px;
  }
}
.people .member-modal__cont {
  padding: 31px 26px 38px;
  background: #F3F2F6;
  color: #292352;
  font-size: 14px;
  line-height: 1.57;
  font-weight: 300;
}
@media only screen and (min-width: 900px) {
  .people .member-modal__cont {
    padding: 80px 88px;
    line-height: 1.62;
    font-size: 16px;
  }
}
.people .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 33px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background: #4C37D9;
}
@media only screen and (min-width: 1050px) {
  .people .modal-close {
    width: 44px;
    height: 44px;
  }
}
.people .modal-close svg {
  width: 14px;
  height: 14px;
}
@media only screen and (min-width: 1050px) {
  .people .modal-close svg {
    width: 18px;
    height: 18px;
  }
}
.people .member_modal__close {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: clamp(25px, -8.6px + 0.056 * 100vw, 50px);
  color: #6854E5;
  font-size: 16px;
  gap: 10px;
  font-weight: 300;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .people .member_modal__close {
    font-size: 14px;
  }
}
.people .member_modal__close .icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.people .member_modal__close:hover .icon {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.people .member_modal__close.desktop {
  display: none;
  margin-top: 80px;
}
.people .member_modal__close.desktop::before {
  position: absolute;
  left: 0;
  top: -60px;
  width: 25px;
  height: 5px;
  background: #7363E3;
  content: "";
}
@media only screen and (min-width: 900px) {
  .people .member_modal__close.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.people .member_modal__close.mobile {
  margin-top: 24px;
}
@media only screen and (min-width: 900px) {
  .people .member_modal__close.mobile {
    display: none;
  }
}

.separator__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-block: 16px 30px;
  background: #6854E5;
  width: 100%;
  height: 0.5px;
}
@media only screen and (min-width: 1050px) {
  .separator__cont {
    margin-block: 35px 60px;
  }
}
/*# sourceMappingURL=main.css.map */