@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  font-family: sans-serif;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #fff;
}

body {
  position: relative;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  .page-default {
    overflow: hidden;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 991px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1220px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1420px;
  }
}

::-moz-selection {
  color: #19135d;
  background: #ffb300;
}

::selection {
  color: #19135d;
  background: #ffb300;
}

.btn-primary {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  font-size: calc(16px * 1);
  line-height: 1.5555555556;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  height: 5rem;
  padding: 0 3rem;
  text-align: center;
  color: #19135d;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  background: #ffb300;
  outline: none;
  border: none;
  transition: 0.3s;
  border-radius: 3.4rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .btn-primary {
    min-width: 24rem;
    height: 5.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-primary {
    height: 6.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-primary {
    min-width: 28rem;
  }
}
.btn-primary::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background: #ffb300;
}
.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-secondary {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  font-size: calc(16px * 1);
  line-height: 1.5555555556;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  height: 5rem;
  padding: 0 3rem;
  text-align: center;
  color: #19135d;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  background: transparent;
  outline: none;
  border: 1px solid #19135d;
  transition: 0.5s;
  border-radius: 3.4rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .btn-secondary {
    min-width: 24rem;
    height: 5.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-secondary {
    height: 6.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-secondary {
    min-width: 28rem;
  }
}
.btn-secondary:hover {
  text-decoration: none;
  background: #19135d;
  color: #fff;
}

.header-toggle {
  position: relative;
  z-index: 9999;
  align-items: center;
  height: 4.8rem;
  padding: 0 2rem;
  margin: 0;
  border: none;
  border-radius: 2.5rem;
  text-decoration: none !important;
  background: #19135d;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 991px) {
  .header-toggle {
    padding: 0 2.5rem;
    height: 5.2rem;
  }
}
.header-toggle__label {
  margin: 0 0 0 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.6rem;
  min-width: 3.4rem;
  display: none;
}
@media only screen and (min-width: 550px) {
  .header-toggle__label {
    display: block;
  }
}
.header-toggle__label .toggle-lbl-1 {
  display: block;
}
.header-toggle__label .toggle-lbl-2 {
  display: none;
}
.header-toggle__label.open .toggle-lbl-1 {
  display: none;
}
.header-toggle__label.open .toggle-lbl-2 {
  display: block;
}
.header-toggle__icon {
  position: relative;
  height: 1rem;
  width: 2rem;
}
.header-toggle__icon span {
  display: block;
  position: absolute;
  height: 0.1rem;
  width: 2rem;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  pointer-events: none;
}
.header-toggle__icon span:nth-child(1) {
  top: 0rem;
}
.header-toggle__icon span:nth-child(2) {
  top: 0.5rem;
}
.header-toggle__icon span:nth-child(3) {
  top: 0.5rem;
}
.header-toggle__icon span:nth-child(4) {
  top: 1rem;
}
.header-toggle__icon.open span:nth-child(1) {
  top: 0rem;
  width: 0%;
  left: 50%;
}
.header-toggle__icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header-toggle__icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-toggle__icon.open span:nth-child(4) {
  top: 0rem;
  width: 0%;
  left: 50%;
}

.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: none;
  padding: 9rem 0 0 0;
}
@media only screen and (min-width: 991px) {
  .header-mobile {
    top: 4.5rem;
    height: calc(100vh - 4.5rem);
  }
}
@media only screen and (min-width: 1200px) {
  .header-mobile {
    display: none !important;
  }
}
.header-mobile ul {
  overflow-x: hidden;
  max-width: 100vw;
}
.header-mobile__content {
  height: calc(100vh - 6rem);
  overflow-y: auto;
  position: relative;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .header-mobile__content {
    height: calc(100vh - 8rem);
    padding: 2rem 0 4rem 0;
  }
}
.header-mobile__nav .btn-primary {
  font-size: calc(16px * 1);
}
.header-mobile__nav > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto;
}
.header-mobile__nav > ul > li {
  margin: 0;
  padding: 0;
}
.header-mobile__nav > ul > li > a:not(.btn-primary):not(.btn-primary-border) {
  font-size: calc(30px * 0.7);
  line-height: 1.2380952381;
  color: rgba(25, 19, 93, 0.8);
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 768px) {
  .header-mobile__nav > ul > li > a:not(.btn-primary):not(.btn-primary-border) {
    font-size: calc(30px * 0.8);
  }
}
@media screen and (min-width: 1200px) {
  .header-mobile__nav > ul > li > a:not(.btn-primary):not(.btn-primary-border) {
    font-size: calc(30px * 1);
  }
}
.header-mobile__nav > ul > li > a:not(.btn-primary):not(.btn-primary-border):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.header-mobile__nav > ul > li.selected > a {
  color: #ffb300;
}
.header-mobile__nav > ul > li.has-childs:hover ul {
  display: flex;
}
.header-mobile__nav > ul > li.has-childs:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.header-mobile__nav > ul > li.has-childs > a {
  position: relative;
  padding: 0 2rem 0 0;
}
.header-mobile__nav > ul > li.has-childs > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.header-mobile__nav > ul > li.has-childs ul {
  display: none;
  flex-direction: column;
  row-gap: 1rem;
  margin: 0;
  padding: 2rem 0 2rem 2rem;
}
.header-mobile__nav > ul > li.has-childs ul li {
  margin: 0;
  padding: 0;
}
.header-mobile__nav > ul > li.has-childs ul li a {
  font-size: calc(34px * 0.7);
  line-height: 1.2380952381;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
}
.header-mobile__nav > ul > li.has-childs ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.header-mobile__open {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0;
}
.header-mobile__controls {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: column;
  padding: 3rem 0 0 0;
  gap: 2rem;
}
.header-mobile__controls-btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #19135d;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  transition: 0.3s;
}
.header-mobile__controls-btn:hover {
  color: #ffb300;
}
.header-mobile__controls-list {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.header-mobile__languages {
  z-index: 100;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.header-mobile__languages a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  transition: 0.3s;
  color: #19135d;
}
.header-mobile__languages a:hover {
  color: #ffb300;
}
.header-mobile__languages a span {
  margin: 0 !important;
}
.header-mobile__languages .wpml-ls {
  padding: 0;
}
.header-mobile__languages .wpml-ls img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.header-mobile__languages ul {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.navigation {
  list-style: none;
  display: flex;
  flex-direction: row;
  column-gap: 4rem;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .navigation {
    column-gap: 3.6rem;
  }
}
.navigation > li {
  margin: 0;
  padding: 0;
}
.navigation > li > a:not(.btn-primary) {
  font-size: calc(18px * 0.7);
  line-height: 1.5555555556;
  position: relative;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .navigation > li > a:not(.btn-primary) {
    font-size: calc(18px * 0.8);
  }
}
@media screen and (min-width: 991px) {
  .navigation > li > a:not(.btn-primary) {
    font-size: calc(16px * 1);
    color: rgba(255, 255, 255, 0.8);
  }
}
.navigation > li > a:not(.btn-primary):hover {
  color: #ffb300;
}
.navigation > li.selected > a {
  color: #ffb300;
}
.navigation > li.has-childs > a {
  position: relative;
  padding: 0 2rem 0 0;
}
.navigation > li.has-childs > a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4.5px 0 4.5px;
  border-color: #ffb300 transparent transparent transparent;
}
.navigation > li.has-childs > a::after {
  content: "";
  position: absolute;
  top: 3.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent #fff transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.navigation > li.has-childs:hover > a::after {
  opacity: 1;
  visibility: visible;
}
.navigation > li.has-childs:hover .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .header.opened-menu .header__logo img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(37%) saturate(7351%) hue-rotate(244deg) brightness(105%) contrast(102%);
  }
}
.header__top-wrapper {
  position: relative;
}
.header__top-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.2);
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 1.3rem 0;
}
@media only screen and (max-width: 990px) {
  .header__top {
    display: none;
  }
}
.header__contacts {
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
}
.header__contacts p {
  margin: 0;
  display: flex;
  gap: 1rem;
}
.header__contacts strong {
  font-weight: 700;
}
.header__contacts a {
  color: #ffb300;
  text-decoration: none;
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.header__controls-btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  transition: 0.3s;
}
.header__controls-btn:hover {
  color: #fff;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 1.4rem 0;
}
@media only screen and (min-width: 991px) {
  .header__content {
    padding: 2rem 0;
  }
}
.header__left {
  padding: 0;
}
.header__logo {
  position: relative;
  z-index: 9999;
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  display: block;
  width: 14rem;
}
@media only screen and (min-width: 991px) {
  .header__logo img {
    width: 18rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header__logo img {
    width: 20rem;
  }
}
@media only screen and (min-width: 1600px) {
  .header__logo img {
    width: 23.5rem;
  }
}
.header__nav {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header__nav {
    display: block;
  }
}
.header__right {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
@media only screen and (max-width: 990px) {
  .header__buttons {
    display: none;
  }
}
.header .header-toggle {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  .header .header-toggle {
    display: none;
  }
}

.header-language {
  position: relative;
}
.header-language__btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  padding: 0 2rem 0 0;
}
.header-language__btn img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.header-language__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-top: 0.5rem solid #ffb300;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
}
.header-language__menu {
  z-index: 100;
  position: absolute;
  display: none;
  top: calc(100% + 0.8rem);
  right: 0;
  padding: 0.8rem 0;
  background: #fff;
  border-radius: 1rem;
}
.header-language__menu::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  right: 2rem;
  border-bottom: 0.5rem solid #fff;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
}
.header-language__menu.open {
  display: block;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  padding: 1rem 2rem;
  z-index: 1000;
  background: white;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}
.header-language__menu .wpml-ls-flag {
  display: none;
}
.header-language__menu a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: block;
  padding: 0.7rem 2rem;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  transition: 0.3s;
  color: #19135d;
}
.header-language__menu a:hover {
  color: #ffb300;
}
.header-language .wpml-ls-statics-shortcode_actions {
  padding: 0;
}
.header-language .wpml-ls-link {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: block;
  padding: 0.7rem 2rem;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  transition: 0.3s;
  color: #19135d;
}
.header-language .wpml-ls-link span {
  margin: 0;
}
.header-language .wpml-ls-link:hover span {
  color: #ffb300 !important;
}

.footer {
  padding: 7rem 0 0 0;
  background: #282661;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer--separator {
  position: relative;
}
.footer--separator::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.2);
}
.footer__header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  margin: 0 0 4rem 0;
}
@media only screen and (min-width: 768px) {
  .footer__header {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 991px) {
  .footer__header {
    margin: 0 0 8rem 0;
  }
}
.footer__content {
  display: flex;
  gap: 8rem;
  padding: 0 0 7rem 0;
  flex-direction: column;
}
@media only screen and (min-width: 991px) {
  .footer__content {
    flex-direction: row;
  }
}
.footer__logo img {
  display: block;
  width: 14rem;
}
@media only screen and (min-width: 991px) {
  .footer__logo img {
    width: 18rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__logo img {
    width: 20rem;
  }
}
@media only screen and (min-width: 1600px) {
  .footer__logo img {
    width: 23.5rem;
  }
}
.footer__contact {
  display: flex;
  gap: 5rem;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .footer__contact {
    flex-direction: row;
  }
}
.footer__contact-title {
  margin: 0 0 2.5rem 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #fff;
}
.footer__contact-person {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__contact-person img {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
}
@media only screen and (min-width: 991px) {
  .footer__contact-person img {
    width: 10rem;
    height: 10rem;
  }
}
.footer__contact-person-text {
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.footer__contact-person-text strong {
  font-weight: 700;
  color: #fff;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__contacts-item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__contacts-item img {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
@media only screen and (min-width: 991px) {
  .footer__contacts-item img {
    width: 4rem;
    height: 4rem;
  }
}
.footer__contacts-item:hover .footer__contacts-item-text {
  color: #ffb300;
}
.footer__contacts-item:hover .footer__contacts-item-text strong {
  color: #fff;
}
.footer__contacts-item-text {
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: 0.3s;
}
.footer__contacts-item-text strong {
  font-weight: 700;
  color: #ffb300;
  transition: 0.3s;
}
.footer__texts {
  line-height: 1.4444444444;
  margin: 0 0 4rem 0;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}
.footer__texts p {
  margin: 0 0 2rem 0;
}
.footer__texts > *:last-child {
  margin: 0;
}
.footer__socials-label {
  display: block;
  margin: 0 0 2rem 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #fff;
}
.footer__socials-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__socials-links a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.footer__socials-links a img {
  display: block;
  width: 4rem;
  height: 4rem;
}
.footer__copyrights {
  font-size: calc(16px * 1);
  line-height: 1.625;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  column-gap: 3rem;
  row-gap: 1.5rem;
  padding: 2rem 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 1200px) {
  .footer__copyrights {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyrights a {
  color: inherit;
  text-decoration: none;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
}
.footer__nav .navigation {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer__nav a {
    font-size: 16px !important;
  }
}
.footer__developed img {
  transform: translateY(1px);
  transition: 0.3s;
  opacity: 1;
  max-height: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .footer__developed img {
    max-height: 2.7rem;
  }
}
.footer__developed:hover {
  color: #ffb300;
}
.footer__developed:hover img {
  opacity: 1;
}

@keyframes slideRight {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 1.2rem);
  }
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.base-section-title, .team-panel__title, .about-panel__title, .page-common h2, .home-how__title, .section-logo-media--white-bg .logo-media__title, .home-news__title, .reference-preview__title, .cta-panel__title, .home-numbers__item strong, .home-numbers__title {
  font-size: calc(32px * 1);
  line-height: 1.2;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #19135d;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .base-section-title, .team-panel__title, .about-panel__title, .page-common h2, .home-how__title, .section-logo-media--white-bg .logo-media__title, .home-news__title, .reference-preview__title, .cta-panel__title, .home-numbers__item strong, .home-numbers__title {
    font-size: calc(36px * 1);
  }
}
@media only screen and (min-width: 991px) {
  .base-section-title, .team-panel__title, .about-panel__title, .page-common h2, .home-how__title, .section-logo-media--white-bg .logo-media__title, .home-news__title, .reference-preview__title, .cta-panel__title, .home-numbers__item strong, .home-numbers__title {
    font-size: calc(42px * 1);
  }
}
@media only screen and (min-width: 1200px) {
  .base-section-title, .team-panel__title, .about-panel__title, .page-common h2, .home-how__title, .section-logo-media--white-bg .logo-media__title, .home-news__title, .reference-preview__title, .cta-panel__title, .home-numbers__item strong, .home-numbers__title {
    font-size: calc(44px * 1);
  }
}
@media only screen and (min-width: 1600px) {
  .base-section-title, .team-panel__title, .about-panel__title, .page-common h2, .home-how__title, .section-logo-media--white-bg .logo-media__title, .home-news__title, .reference-preview__title, .cta-panel__title, .home-numbers__item strong, .home-numbers__title {
    font-size: calc(50px * 1);
  }
}

.base-section-text, .cooperate__item--custom p, .contact-box__texts, .page-intro__texts p {
  font-size: calc(18px * 1);
  line-height: 1.5555555556;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: rgba(25, 19, 93, 0.8);
  text-align: center;
}
.base-section-text strong, .cooperate__item--custom p strong, .contact-box__texts strong, .page-intro__texts p strong, .base-section-text b, .cooperate__item--custom p b, .contact-box__texts b, .page-intro__texts p b {
  font-weight: 700;
}
.base-section-text a, .cooperate__item--custom p a, .contact-box__texts a, .page-intro__texts p a {
  color: #ffb300;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.base-section-text a:hover, .cooperate__item--custom p a:hover, .contact-box__texts a:hover, .page-intro__texts p a:hover {
  color: #19135d;
}
.base-section-text p, .cooperate__item--custom p p, .contact-box__texts p, .page-intro__texts p p {
  margin: 0 0 2.5rem 0;
}
.base-section-text > *:last-child, .cooperate__item--custom p > *:last-child, .contact-box__texts > *:last-child, .page-intro__texts p > *:last-child {
  margin: 0;
}

.logos-slider .slick-static {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  transform: translate3d(0, 0, 0) !important;
}
.logos-slider__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
  .logos-slider__item {
    min-height: 4rem;
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .logos-slider__item {
    min-height: 4.5rem;
  }
}
.logos-slider__item img {
  max-height: 2.5rem;
  max-width: 13rem;
}
@media only screen and (min-width: 768px) {
  .logos-slider__item img {
    max-height: 3rem;
  }
}
@media only screen and (min-width: 991px) {
  .logos-slider__item img {
    max-height: 4.5rem;
  }
}

.gradient-corner-left {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 20rem;
  max-width: 100vw;
  height: 20rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .gradient-corner-left {
    width: 40rem;
    height: 40rem;
  }
}
.gradient-corner-left::before {
  content: "";
  position: absolute;
  display: block;
  top: 5rem;
  right: 5rem;
  width: 250%;
  height: 250%;
  background: radial-gradient(circle, #00c6ef 0%, transparent 70%);
}

.gradient-corner-right {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 20rem;
  max-width: 100vw;
  height: 20rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .gradient-corner-right {
    width: 40rem;
    height: 40rem;
  }
}
.gradient-corner-right::before {
  content: "";
  position: absolute;
  display: block;
  top: 5rem;
  left: 5rem;
  width: 250%;
  height: 250%;
  background: radial-gradient(circle, #ef0068 0%, transparent 70%);
}

.section-home-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 7.6rem 0 2rem 0;
  background: #19135d;
}
@media only screen and (min-width: 991px) {
  .section-home-intro {
    padding: 15rem 0 2rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .section-home-intro {
    padding: 16rem 0 4rem 0;
  }
}

.section-page-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 7.6rem 0 0 0;
  background: #19135d;
}
@media only screen and (min-width: 991px) {
  .section-page-intro {
    padding: 15rem 0 0 0;
  }
}
@media only screen and (min-width: 1600px) {
  .section-page-intro {
    padding: 16rem 0 0 0;
  }
}

.home-intro-wrapper {
  flex: 1;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
@media only screen and (min-width: 1600px) {
  .home-intro-wrapper {
    padding: 4rem 0;
  }
}

.page-intro-wrapper {
  flex: 1;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .page-intro-wrapper {
    padding: 2rem 0 4rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .page-intro-wrapper {
    padding: 5rem 0 7rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .page-intro-wrapper {
    padding: 7rem 0 10rem 0;
  }
}

.home-intro-logos {
  z-index: 2;
  position: relative;
  padding: 2rem 0;
}
@media only screen and (min-width: 991px) {
  .home-intro-logos {
    padding: 2rem 0 4rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .home-intro-logos {
    padding: 4rem 0;
  }
}

.home-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 4rem;
}
@media only screen and (min-width: 768px) {
  .home-intro {
    flex-direction: row;
  }
}
.home-intro__texts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .home-intro__texts {
    align-items: flex-start;
    text-align: left;
  }
}
@media only screen and (min-width: 991px) {
  .home-intro__texts {
    gap: 4rem;
  }
}
.home-intro__title {
  font-size: calc(32px * 1);
  line-height: 1.2;
  max-width: 58rem;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .home-intro__title {
    font-size: calc(36px * 1);
  }
}
@media only screen and (min-width: 991px) {
  .home-intro__title {
    font-size: calc(42px * 1);
  }
}
@media only screen and (min-width: 1200px) {
  .home-intro__title {
    font-size: calc(50px * 1);
  }
}
.home-intro__desc {
  font-size: calc(18px * 1);
  line-height: 1.2222222222;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 991px) {
  .home-intro__desc {
    position: absolute;
    top: 20.5rem;
    left: 33rem;
    width: 24rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-intro__desc {
    top: 28rem;
    left: 53rem;
    width: 24rem;
  }
}
@media only screen and (min-width: 1600px) {
  .home-intro__desc {
    top: 28rem;
    left: 58rem;
    width: 26rem;
  }
}
@media only screen and (min-width: 991px) {
  .home-intro__desc span {
    opacity: 0;
    display: block;
    animation: revealDot 1s ease forwards;
    animation-delay: 1.8s;
  }
}
.home-intro__desc-line-wrapper {
  position: absolute;
  top: -7.5rem;
  left: 5rem;
}
@media only screen and (max-width: 990px) {
  .home-intro__desc-line-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .home-intro__desc-line-wrapper {
    top: -12.5rem;
    left: -10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .home-intro__desc-line-wrapper {
    left: -10rem;
  }
}
@media only screen and (min-width: 1200px) {
  @keyframes fulfilLineV {
    from {
      width: 0;
    }
    to {
      width: 10rem;
    }
  }
  @keyframes fulfilLineH {
    from {
      height: 0;
    }
    to {
      height: 10rem;
    }
  }
  @keyframes moveDot {
    0% {
      left: 0;
      top: 0;
    }
    50% {
      left: 10rem;
      top: 0;
    }
    to {
      left: 10rem;
      top: 10rem;
    }
  }
}
@media only screen and (max-width: 1199px) {
  @keyframes fulfilLineV {
    from {
      width: 0;
    }
    to {
      width: 5rem;
    }
  }
  @keyframes fulfilLineH {
    from {
      height: 0;
    }
    to {
      height: 5rem;
    }
  }
  @keyframes moveDot {
    0% {
      left: 0;
      top: 0;
    }
    50% {
      left: 5rem;
      top: 0;
    }
    to {
      left: 5rem;
      top: 5rem;
    }
  }
}
@keyframes revealDot {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home-intro__desc-line-v {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.1rem;
  background: #8c89ae;
  animation: fulfilLineV 1s ease forwards;
}
.home-intro__desc-line-h {
  position: absolute;
  top: 0;
  left: 5rem;
  width: 0.1rem;
  background: #8c89ae;
  animation: fulfilLineH 1s ease forwards;
  animation-delay: 1s;
}
@media only screen and (min-width: 1200px) {
  .home-intro__desc-line-h {
    left: 10rem;
  }
}
.home-intro__desc-line-dot-start {
  top: 0;
  left: 0;
}
.home-intro__desc-line-dot-end {
  animation: moveDot 2s ease forwards;
}
.home-intro__desc-line-dot-start, .home-intro__desc-line-dot-end {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background: #ffb300;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.home-intro__video-link {
  position: relative;
  display: block;
}
.home-intro__video-link:hover .home-intro__video-link-icon {
  transform: translate(-50%, -50%) scale(1.1);
}
.home-intro__video-link > img {
  display: block;
  max-width: 100%;
  max-height: 24rem;
  border-radius: 5.5rem;
}
@media only screen and (min-width: 768px) {
  .home-intro__video-link > img {
    max-height: 30rem;
    border-radius: 5.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-intro__video-link > img {
    max-height: 36rem;
    border-radius: 5.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .home-intro__video-link > img {
    max-height: 43.5rem;
  }
}
.home-intro__video-link-icon {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.page-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.page-intro__texts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.page-intro__texts p {
  color: rgba(255, 255, 255, 0.5);
}
.page-intro__texts a:hover {
  text-decoration: none;
  color: #ffb300 !important;
}
.page-intro__title {
  font-size: calc(32px * 1);
  line-height: 1.2;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .page-intro__title {
    font-size: calc(36px * 1);
  }
}
@media only screen and (min-width: 991px) {
  .page-intro__title {
    font-size: calc(42px * 1);
  }
}
@media only screen and (min-width: 1200px) {
  .page-intro__title {
    font-size: calc(50px * 1);
  }
}
.page-intro__title strong {
  color: #ffb300;
  font-weight: 700;
}
.page-intro__date {
  font-size: calc(16px * 1);
  line-height: 1.2;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 768px) {
  .page-intro__date {
    font-size: calc(18px * 1);
  }
}

.section-home-numbers {
  background: #f3f3f7;
}

.home-numbers {
  padding: 6rem 0;
}
@media only screen and (min-width: 1200px) {
  .home-numbers {
    padding: 10rem 0;
  }
}
.home-numbers__title {
  margin: 0 0 4rem 0;
}
@media only screen and (min-width: 991px) {
  .home-numbers__title {
    margin: 0 0 7rem 0;
  }
}
.home-numbers__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
}
@media only screen and (min-width: 991px) {
  .home-numbers__list {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-numbers__list {
    gap: 4rem;
  }
}
.home-numbers__separator {
  flex: 0.4;
  position: relative;
  margin-top: 4rem;
  height: 0.1rem;
}
@media only screen and (max-width: 990px) {
  .home-numbers__separator {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .home-numbers__separator {
    flex: 0.7;
  }
}
.home-numbers__separator-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.1rem;
  width: 100%;
  background: #8683aa;
}
.home-numbers__separator-dot-start {
  left: 0;
}
.home-numbers__separator-dot-end {
  left: calc(100% - 1.2rem);
}
.home-numbers__separator-dot-start, .home-numbers__separator-dot-end {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  transform: translateY(calc(-50% + 1px));
  background: #ffb300;
}
.home-numbers__item {
  line-height: 1.2222222222;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #19135d;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .home-numbers__item {
    gap: 1.5rem;
  }
}
.home-numbers__separator.visible .home-numbers__separator-dot-end {
  animation: slideRight 1s ease forwards;
}

.home-numbers__separator.visible .home-numbers__separator-line {
  animation: expandLine 1s ease forwards;
}

.home-numbers__item, .home-numbers__separator {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.home-numbers__item.visible, .home-numbers__separator.visible {
  opacity: 1;
}

.section-cta-panel {
  position: relative;
  padding: 6rem 0;
  background: #19135d;
}
@media only screen and (min-width: 768px) {
  .section-cta-panel {
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-cta-panel {
    padding: 12rem 0;
  }
}

.cta-panel {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .cta-panel {
    gap: 3.6rem;
  }
}
.cta-panel__title {
  max-width: 81rem;
  color: #fff;
  text-align: center;
}

.section-reference-preview {
  padding: 4rem 0 10rem 0;
  background: #f3f3f7;
}
@media only screen and (min-width: 768px) {
  .section-reference-preview {
    padding: 10rem 0 12rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-reference-preview {
    padding: 15rem 0;
  }
}

.reference-preview {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  width: 100%;
}
.reference-preview__texts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
}
@media only screen and (min-width: 768px) {
  .reference-preview__texts {
    width: 30%;
    align-items: flex-start;
  }
}
.reference-preview__title {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .reference-preview__title {
    text-align: left;
  }
}
.reference-preview__slider-wrapper {
  width: 100%;
  position: relative;
  padding: 3rem;
  background: #fff;
  border-radius: 5rem;
}
@media only screen and (min-width: 768px) {
  .reference-preview__slider-wrapper {
    width: calc(70% - 5rem);
    padding: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .reference-preview__slider-wrapper {
    padding: 6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .reference-preview__slider-wrapper {
    flex: 2.5;
  }
}
.reference-preview--case-study {
  margin: 3rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .reference-preview--case-study {
    margin: 4rem 0 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .reference-preview--case-study {
    margin: 7rem 0 0 0;
  }
}
@media only screen and (min-width: 1600px) {
  .reference-preview--case-study {
    margin: 10rem 0 0 0;
  }
}
.reference-preview--case-study .reference-preview__slider-wrapper {
  width: 100% !important;
}

.referense-slider-dots-line {
  position: absolute;
  z-index: 1;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #8683aa;
}
@media only screen and (min-width: 768px) {
  .referense-slider-dots-line {
    bottom: -4.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .referense-slider-dots-line {
    bottom: -5.5rem;
  }
}

.reference-case-study {
  width: 100%;
  margin: 0 !important;
}
.reference-case-study .home-numbers__separator {
  margin-top: 0;
  flex: 0.8;
}

.reference-slider {
  width: 100%;
  margin: 0 !important;
}
.reference-slider .slick-dots {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 5rem;
  bottom: -7rem;
}
@media only screen and (min-width: 768px) {
  .reference-slider .slick-dots {
    bottom: -8.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .reference-slider .slick-dots {
    column-gap: 8rem;
    bottom: -12rem;
  }
}
.reference-slider .slick-dots li {
  margin: 0;
  padding: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.3s;
}
.reference-slider .slick-dots li.slick-active {
  width: 1.2rem;
  height: 1.2rem;
  transform: scale(2.5);
}
.reference-slider .slick-dots li.slick-active button {
  background: #ffb300;
}
.reference-slider .slick-dots li button {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  width: 100%;
  height: 100%;
  background: #ffb300;
  border-radius: 50%;
  transition: 0.3s;
}
.reference-slider .slick-dots li button::before {
  content: none;
}
.reference-slider .slick-dots li button:hover {
  transform: scale(1.5);
}

.reference-slider-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .reference-slider-card__header {
    flex-direction: row;
    align-items: center;
  }
}
.reference-slider-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 4rem;
}
@media only screen and (min-width: 1200px) {
  .reference-slider-card__logo img {
    max-height: 6rem;
  }
}
.reference-slider-card__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.reference-slider-card__contact img {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) {
  .reference-slider-card__contact img {
    width: 6.5rem;
    height: 6.5rem;
  }
}
.reference-slider-card__contact-text {
  line-height: 1.2222222222;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
.reference-slider-card__contact-text strong {
  font-weight: 700;
}
.reference-slider-card__content {
  padding: 2rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .reference-slider-card__content {
    padding: 4rem 0 0 0;
  }
}
.reference-slider-card__title, .reference-slider-card__texts h3 {
  margin: 0 0 1.6rem 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
.reference-slider-card__texts {
  line-height: 1.4444444444;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
}
.reference-slider-card__texts p {
  margin: 0 0 2rem 0;
}
.reference-slider-card__texts > *:last-child {
  margin: 0;
}
.reference-slider-card__texts a {
  color: #19135d;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.reference-slider-card__texts a:hover {
  color: #ffb300;
}
@media only screen and (min-width: 991px) {
  .reference-slider-card__texts--case_study ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
.reference-slider-card__texts--case_study ul span {
  font-weight: 700;
}
.reference-slider-card__texts--case_study ul li {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 991px) {
  .reference-slider-card__texts--case_study ul li {
    padding-right: 3rem !important;
  }
}

.list-arrows, .home-how-section__texts ul, .reference-slider-card__texts ul {
  line-height: 1.625;
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
.list-arrows strong, .home-how-section__texts ul strong, .reference-slider-card__texts ul strong {
  font-weight: 700;
}
.list-arrows span, .home-how-section__texts ul span, .reference-slider-card__texts ul span, .list-arrows em, .home-how-section__texts ul em, .reference-slider-card__texts ul em {
  color: #ef0068;
}
.list-arrows em, .home-how-section__texts ul em, .reference-slider-card__texts ul em {
  font-style: normal !important;
}
.list-arrows li, .home-how-section__texts ul li, .reference-slider-card__texts ul li {
  position: relative;
  margin: 0;
  padding: 0.5rem 0 0.5rem 6rem;
}
.list-arrows li::before, .home-how-section__texts ul li::before, .reference-slider-card__texts ul li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 3.3rem;
  height: 1.7rem;
  background: url(../../images/right-arrow.png) no-repeat center center;
  background-size: contain;
}

.section-home-news {
  padding: 6rem 0;
}
@media only screen and (min-width: 768px) {
  .section-home-news {
    padding: 10rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-home-news {
    padding: 14rem 0;
  }
}

.section-page-news {
  padding: 4rem 0 6rem 0;
}
@media only screen and (min-width: 768px) {
  .section-page-news {
    padding: 6rem 0 10rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-page-news {
    padding: 6rem 0 14rem 0;
  }
}

.home-news__title {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto 4rem auto;
}
@media only screen and (min-width: 768px) {
  .home-news__title {
    margin: 0 auto 5rem auto;
    max-width: 64rem;
  }
  .home-news__title--related-items {
    max-width: 50rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-news__title {
    margin: 0 auto 7rem auto;
  }
}
.home-news__caption {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto 4rem auto;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #19135d;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .home-news__caption {
    margin: 0 auto 5rem auto;
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-news__caption {
    margin: 0 auto 5rem auto;
    max-width: 33rem;
    font-size: 2.4rem;
  }
}
.home-news__caption span {
  color: #FE0167;
}
.home-news__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0 0;
}
.home-news__controls--pagination {
  gap: 1rem;
}
.home-news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
.home-news__list-item {
  width: 100%;
}
@media (min-width: 768px) {
  .home-news__list-item {
    width: calc((100% - 3rem) / 2);
  }
}
@media (min-width: 991px) {
  .home-news__list-item {
    width: calc((100% - 6rem) / 3);
  }
}
.home-news .page-numbers {
  font-size: calc(20px * 1);
  line-height: 1.5;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #19135d;
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.home-news .page-numbers:hover {
  color: #ffb300;
}
.home-news .page-numbers.current {
  text-decoration: none;
  color: #FE0167;
  cursor: default;
}
.home-news .page-numbers.current:hover {
  color: #FE0167;
}
.home-news .pagination__btn {
  font-size: calc(20px * 1);
  line-height: 1.5;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #19135d;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
  margin-left: auto;
}
.home-news .pagination__btn:hover {
  color: #ffb300;
}
.home-news .pagination__btn.disabled {
  pointer-events: none;
  color: rgba(25, 19, 93, 0.5);
}
.home-news .pagination__btn:first-of-type {
  margin-right: auto;
  margin-left: unset;
}

.home-news-card {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  border-radius: 3rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.home-news-card:hover {
  z-index: 2;
  transform: scale(1.01);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}
.home-news-card__image {
  padding-top: 65%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}
.home-news-card__content {
  line-height: 1.1111111111;
  padding: 2.4rem;
  background: #f3f3f7;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .home-news-card__content {
    padding: 3.2rem;
  }
}
.home-news-card__title {
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
.home-news-card__date {
  margin: 0 0 2rem 0;
}
.home-news-card__texts {
  margin: 0;
}

.section-logo-media {
  position: relative;
  padding: 7rem 0;
  background: #282661;
}
.section-logo-media::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.2);
}
.section-logo-media--white-bg {
  padding: 0;
  background: #fff;
}
.section-logo-media--white-bg::before {
  content: none;
}
.section-logo-media--white-bg .logo-media__title {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto 4rem auto;
}
@media only screen and (min-width: 768px) {
  .section-logo-media--white-bg .logo-media__title {
    margin: 0 auto 5rem auto;
    max-width: 50rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section-logo-media--white-bg .logo-media__title {
    margin: 0 auto 7rem auto;
  }
}

.logo-media__title {
  display: block;
  margin: 0 0 2.5rem 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.section-home-how {
  position: relative;
  overflow-x: clip;
  padding: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .section-home-how {
    padding: 6rem 0 4rem 0;
  }
}
@media only screen and (min-width: 991px) {
  .section-home-how {
    padding: 8rem 0 8rem 0;
  }
}

.home-how {
  position: relative;
}
.home-how__header {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}
@media only screen and (min-width: 768px) {
  .home-how__header {
    flex-direction: row;
    position: sticky;
    top: 0;
  }
  .home-how__header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 20%);
  }
}
.home-how__title {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .home-how__title {
    text-align: left;
    max-width: 70%;
  }
}
.home-how__content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home-how__sections {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .home-how__sections {
    width: 50%;
    row-gap: 20vh;
  }
}
@media only screen and (min-width: 1200px) {
  .home-how__sections {
    padding: 0 6rem 4rem 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .home-how__sections {
    padding: 0 6rem;
  }
}
.home-how__images-col {
  display: none;
}
@media only screen and (min-width: 768px) {
  .home-how__images-col {
    display: block;
    position: relative;
    width: 50%;
    padding: 0 0 0 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-how__images-col {
    padding: 0 0 0 10rem;
  }
}
.home-how__images-container {
  position: sticky;
  top: 15vh;
  display: flex;
  align-items: center;
  width: 100%;
}
.home-how__images {
  position: relative;
  width: 100%;
  height: 75vh;
}
@media only screen and (min-width: 1600px) {
  .home-how__images {
    height: 65vh;
  }
}

.home-how-image {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 80vh;
  opacity: 0;
}
.home-how-image::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8rem;
  width: 50vw;
  height: 30rem;
  background: #fff7e5;
  border-radius: 3rem;
}
@media only screen and (min-width: 991px) {
  .home-how-image::before {
    height: 40rem;
    border-radius: 5rem;
    left: 13rem;
  }
}
@media only screen and (min-width: 1600px) {
  .home-how-image::before {
    height: 50rem;
    left: 15rem;
  }
}
.home-how-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(50% + 9rem);
  transform: translateY(-50%);
  left: 18rem;
  width: 20rem;
  height: 30rem;
  background: url(../../images/icon-subtle-logo.png) no-repeat center center;
  background-size: contain;
}
@media only screen and (min-width: 991px) {
  .home-how-image::after {
    left: 38rem;
    width: 269px;
    height: 435px;
  }
}
.home-how-image.active {
  opacity: 1;
}
.home-how-image.active .home-how-image__button {
  opacity: 1;
}
.home-how-image__content {
  position: relative;
}
.home-how-image__content > img {
  z-index: 2;
  position: relative;
  display: block;
  vertical-align: middle;
  object-fit: contain;
  max-width: 100%;
  height: 100% !important;
  width: 100% !important;
  margin: 0;
  aspect-ratio: auto;
}
.home-how-image__button {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #19135d;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.6s;
}
@media only screen and (min-width: 1200px) {
  .home-how-image__button {
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
  }
}
.home-how-image__button:nth-child(1) {
  transition-delay: 0s;
}
.home-how-image__button:nth-child(2) {
  transition-delay: 0.3s;
}
.home-how-image__button:nth-child(3) {
  transition-delay: 0.6s;
}
.home-how-image__button.arrow-left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5rem;
  transform: translateY(-50%);
  border-right: 0.5rem solid #fff;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
}
.home-how-image__button.arrow-top::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 0.5rem solid #fff;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
}

.home-how-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  transition: 0.3s;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .home-how-section {
    padding: 4rem 0;
    opacity: 0.2;
  }
}
@media only screen and (min-width: 991px) {
  .home-how-section {
    padding: 0;
  }
}
.home-how-section.active {
  opacity: 1;
}
.home-how-section__content {
  position: relative;
}
.home-how-section__content-border {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.1rem;
  height: 100%;
  background: #8c89ae;
}
.home-how-section__content-border::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0rem;
  left: 0;
  width: 0.3rem;
  height: 6rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  transform: translateX(-50%);
}
.home-how-section__content-border::after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 0.3rem;
  height: 6rem;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 1199px) {
  .home-how-section__content-border {
    display: none;
  }
}
.home-how-section__title {
  position: relative;
  margin: 0 0 1.6rem 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
@media only screen and (min-width: 1200px) {
  .home-how-section__title::before {
    content: "";
    z-index: 2;
    position: absolute;
    top: 1rem;
    left: -4.5rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #ffb300;
  }
}
@media only screen and (min-width: 1600px) {
  .home-how-section__title::before {
    left: -6.5rem;
  }
}
.home-how-section__texts {
  line-height: 1.4444444444;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
}
.home-how-section__texts p {
  margin: 0 0 2rem 0;
}
.home-how-section__texts > *:last-child {
  margin: 0;
}
.home-how-section__texts em {
  font-style: normal !important;
  color: #ef0068;
}
.home-how-section__image {
  display: block;
  position: relative;
  margin: 4rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .home-how-section__image {
    display: none;
  }
}
.home-how-section__image > img {
  display: block;
  width: 100%;
}
.home-how-section .home-how-image__button {
  opacity: 1;
}

@media only screen and (min-width: 991px) {
  .first-section {
    min-height: 80vh;
    margin-bottom: -10vh;
  }
}
@media only screen and (min-width: 1600px) {
  .first-section {
    margin-bottom: -20vh;
  }
}

@media only screen and (min-width: 991px) {
  .last-section {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 1600px) {
  .last-section {
    margin-bottom: 150px;
  }
}

.section-page-pricelist {
  padding: 4rem 0 6rem 0;
}
@media only screen and (min-width: 768px) {
  .section-page-pricelist {
    padding: 6rem 0 10rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-page-pricelist {
    padding: 6rem 0 14rem 0;
  }
}

.pricelist__caption {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto 4rem auto;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #19135d;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .pricelist__caption {
    margin: 0 auto 5rem auto;
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pricelist__caption {
    margin: 0 auto 5rem auto;
    max-width: 33rem;
    font-size: 2.4rem;
  }
}
.pricelist__caption span {
  color: #FE0167;
}
.pricelist__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0 0;
}
.pricelist__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
.pricelist__list-item {
  width: 100%;
}
@media (min-width: 768px) {
  .pricelist__list-item {
    width: calc((100% - 3rem) / 2);
  }
}
@media (min-width: 991px) {
  .pricelist__list-item {
    width: calc((100% - 6rem) / 3);
  }
}

.pricelist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 3rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.pricelist-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  margin: 0;
  padding: 2rem;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: #19135d;
}
.pricelist-card__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 15rem;
  margin: 0;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  background: #19135d;
}
.pricelist-card__info .gradient-corner-left {
  width: 20rem;
  height: 20rem;
}
@media only screen and (min-width: 768px) {
  .pricelist-card__info .gradient-corner-left {
    width: 26rem;
    height: 26rem;
  }
}
.pricelist-card__info .gradient-corner-right {
  width: 20rem;
  height: 20rem;
}
@media only screen and (min-width: 768px) {
  .pricelist-card__info .gradient-corner-right {
    width: 26rem;
    height: 26rem;
  }
}
.pricelist-card__desc {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .pricelist-card__desc {
    font-size: 1.8rem;
  }
}
.pricelist-card__price {
  position: relative;
  z-index: 2;
  color: #ffb300;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (min-width: 991px) {
  .pricelist-card__price {
    font-size: 2.4rem;
  }
}
.pricelist-card__content {
  line-height: 1.1111111111;
  flex: 1;
  padding: 2.4rem 2.4rem 0 2.4rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
}
@media only screen and (min-width: 1200px) {
  .pricelist-card__content {
    padding: 3.6rem 4rem 0 4rem;
  }
}
.pricelist-card__content ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricelist-card__content ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(26, 19, 97, 0.5);
}
.pricelist-card__content ul li {
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 2.4rem;
}
.pricelist-card__content ul li::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: -0.4rem;
  width: 1rem;
  height: 1rem;
  background: #ffb300;
  border-radius: 50%;
}
.pricelist-card__footer {
  display: flex;
  justify-content: center;
  padding: 2.4rem 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .pricelist-card__footer {
    padding: 3.4rem 0 5rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .pricelist-card__footer .btn-primary {
    height: 5.7rem;
  }
}

@keyframes scaleBefore {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.8);
  }
}
.map {
  position: relative;
  height: 40rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 1200px) {
  .map {
    height: 65rem;
  }
}
@media only screen and (min-width: 1600px) {
  .map {
    height: 83rem;
  }
}
.map__btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #ffb300;
  transition: background 0.3s;
  display: block;
}
@media only screen and (min-width: 1200px) {
  .map__btn {
    width: 6rem;
    height: 6rem;
  }
}
.map__btn img {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: inherit;
  opacity: 50%;
  z-index: 1;
  animation-name: scaleBefore;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.map__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 30%;
  z-index: 1;
  animation-name: scaleBefore;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.contact-page {
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) {
  .contact-page {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-page {
    padding: 10rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-page {
    padding: 12rem 0;
  }
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border-radius: 3rem;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 991px) {
  .contact-box {
    flex-direction: row;
  }
}
.contact-box__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  padding: 3rem 2.4rem;
}
@media only screen and (min-width: 991px) {
  .contact-box__content {
    width: 50%;
    gap: 5rem;
    padding: 5rem 4rem 5rem 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-box__content {
    gap: 7rem;
    padding: 7rem 8rem 7.5rem 10rem;
  }
}
.contact-box__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  flex-direction: column;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .contact-box__contacts {
    flex-direction: row;
  }
}
.contact-box__contact-person {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact-box__contact-person img {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
}
@media only screen and (min-width: 991px) {
  .contact-box__contact-person img {
    width: 10rem;
    height: 10rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box__contact-person img {
    width: 12rem;
    height: 12rem;
  }
}
.contact-box__contact-person-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 991px) {
  .contact-box__contact-person-info {
    gap: 1.4rem;
  }
}
.contact-box__contact-person-caption {
  margin: 0;
  line-height: 1.3;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
@media only screen and (min-width: 991px) {
  .contact-box__contact-person-caption {
    font-size: 2.4rem;
  }
}
.contact-box__contact-person-text {
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(26, 19, 97, 0.8);
  white-space: nowrap;
}
.contact-box__contact-person-text strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FE0167;
}
.contact-box__contacts-item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact-box__contacts-item img {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
@media only screen and (min-width: 991px) {
  .contact-box__contacts-item img {
    width: 4rem;
    height: 4rem;
  }
}
.contact-box__contacts-item:hover .contact-box__contacts-item-text {
  color: #ffb300;
}
.contact-box__contacts-item:hover .contact-box__contacts-item-text strong {
  color: #19135d;
}
.contact-box__contacts-item-text {
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(26, 19, 97, 0.8);
  white-space: nowrap;
  transition: 0.3s;
}
.contact-box__contacts-item-text strong {
  font-weight: 700;
  color: #ffb300;
  transition: 0.3s;
}
.contact-box__row {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .contact-box__row {
    flex-direction: row;
  }
}
.contact-box__col {
  flex: 1;
}
.contact-box__title {
  margin: 0 0 2rem 0;
  line-height: 1.3;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
@media only screen and (min-width: 991px) {
  .contact-box__title {
    font-size: 2.4rem;
  }
}
.contact-box__texts {
  font-size: 1.8rem;
  text-align: left;
}
.contact-box__texts p {
  margin: 0 0 1.8rem 0;
}
.contact-box__texts > *:last-child {
  margin: 0;
}
.contact-box__socials-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-box__socials-links a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.contact-box__socials-links a img {
  display: block;
  width: 4rem;
  height: 4rem;
}
.contact-box__form {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2.5rem 2rem;
  background: #19135d;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
@media only screen and (min-width: 991px) {
  .contact-box__form {
    width: 50%;
    padding: 3.5rem 3rem;
    border-top-right-radius: 3rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box__form {
    padding: 5rem 3.6rem 4.2rem 3.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-box__form {
    padding: 6rem 4.8rem 4.8rem 4.8rem;
  }
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.contact-form__title {
  margin: 0 0 3.4rem 0;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #fff;
}
.contact-form__row {
  display: flex;
  gap: 1.4rem;
  flex-direction: column;
  margin: 0 0 1.4rem 0;
}
@media only screen and (min-width: 768px) {
  .contact-form__row {
    flex-direction: row;
    gap: 1rem;
  }
}
.contact-form__text {
  margin: 2.4rem 0 3.4rem 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #fff;
  line-height: 1.2;
}
@media only screen and (min-width: 1600px) {
  .contact-form__text {
    margin: 2.4rem 0 5rem 0;
  }
}
.contact-form__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.contact-form__text a:hover {
  text-decoration: none;
}
.contact-form__controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-field {
  flex: 1;
}
.form-field--email {
  display: none;
}
.form-field__label {
  display: block;
  margin: 0 0 1rem 0;
  padding: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}
.form-field__input, .form-field__text {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 30px;
  background: #fff;
  border: none;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}
.form-field__input::placeholder, .form-field__text::placeholder {
  color: rgba(26, 19, 97, 0.5);
}
.form-field__input {
  display: block;
  padding: 0 1.5rem;
  height: 5rem;
}
@media only screen and (min-width: 768px) {
  .form-field__input {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__input {
    padding: 0 4rem;
    height: 6rem;
  }
}
.form-field__text {
  resize: none;
  height: 13rem;
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .form-field__text {
    padding: 2rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__text {
    padding: 2rem 4rem;
  }
}

.connected-dots-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.connected-dots-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(26, 19, 97, 0.5);
}
.connected-dots-list li {
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 2.4rem;
}
.connected-dots-list li p {
  margin: 0;
}
.connected-dots-list li::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: -0.4rem;
  width: 1rem;
  height: 1rem;
  background: #ffb300;
  border-radius: 50%;
}

.page-common {
  padding: 8rem 0;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
}
.page-common__container {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.page-common h2 {
  margin: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .page-common h2 {
    margin: 0 0 5rem 0;
  }
}
.page-common h3 {
  margin: 0 0 3.4rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #19135d;
  text-align: center;
}
.page-common p {
  margin: 0 0 3rem 0;
}
.page-common p img {
  border-radius: 3rem;
}
@media only screen and (min-width: 991px) {
  .page-common p img {
    border-radius: 5rem;
  }
}
.page-common .wide-image,
.page-common .common-gallery,
.page-common .controls-panel {
  margin: 4rem 0;
}
@media only screen and (min-width: 768px) {
  .page-common .wide-image,
  .page-common .common-gallery,
  .page-common .controls-panel {
    margin: 6rem 0;
  }
}
.page-common ul.connected-dots-list, .page-common ul {
  position: relative;
  width: 100%;
  max-width: 52rem;
  margin: 4.5rem auto;
  padding: 0;
  list-style: none;
}
.page-common ul.connected-dots-list::before, .page-common ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(26, 19, 97, 0.5);
}
.page-common ul.connected-dots-list li, .page-common ul li {
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 2.4rem;
}
.page-common ul.connected-dots-list li::before, .page-common ul li::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: -0.4rem;
  width: 1rem;
  height: 1rem;
  background: #ffb300;
  border-radius: 50%;
}
.page-common ol.numbered-list, .page-common ol {
  text-align: left !important;
  width: 100%;
  max-width: 56rem;
  margin: 4.5rem auto;
  padding: 0;
  list-style: none;
  counter-reset: ol-counter;
}
@media only screen and (min-width: 768px) {
  .page-common ol.numbered-list, .page-common ol {
    margin: 6rem auto;
  }
}
.page-common ol.numbered-list li, .page-common ol li {
  position: relative;
  margin: 0 0 4rem 0;
  padding: 0 0 0 8rem;
  counter-increment: ol-counter;
}
.page-common ol.numbered-list li::before, .page-common ol li::before {
  font-size: calc(24px * 1);
  content: counter(ol-counter) ".";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 6rem;
  height: 6rem;
  padding: 0 0 0 0.5rem;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  background: #19135d;
  border-radius: 50%;
}
.page-common a:not(.btn):not(.btn-primary) {
  color: #19135d;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.page-common a:not(.btn):not(.btn-primary):hover {
  color: #ffb300;
}

.wide-image {
  width: 100%;
}
.wide-image img {
  display: block;
  width: 100%;
  border-radius: 3rem;
}
@media only screen and (min-width: 991px) {
  .wide-image img {
    border-radius: 5rem;
  }
}

.controls-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.common-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .common-gallery {
    gap: 3rem;
  }
}
.common-gallery__item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  width: calc((100% - 1.6rem) / 2);
  transition: 0.3s;
}
@media (min-width: 768px) {
  .common-gallery__item {
    width: calc((100% - 3rem) / 2);
  }
}
@media (min-width: 991px) {
  .common-gallery__item {
    width: calc((100% - 6rem) / 3);
  }
}
.common-gallery__item:hover {
  opacity: 0.8;
}
.common-gallery__item img {
  display: block;
  width: auto;
  height: auto;
  border-radius: 1.6rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .common-gallery__item img {
    border-radius: 3rem;
  }
}

.accordion-panel {
  margin: 3.4rem 0;
}
.accordion-panel__item {
  padding: 0;
  border-bottom: 1px solid rgba(26, 19, 97, 0.5);
}
.accordion-panel__header {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  line-height: 1.2222222222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #19135d;
}
@media only screen and (min-width: 768px) {
  .accordion-panel__header {
    line-height: 1.75;
  }
}
.accordion-panel__header svg, .accordion-panel__header img {
  flex-shrink: 0;
}
.accordion-panel__header:not(.accordion-panel__header--nav).opened svg, .accordion-panel__header:not(.accordion-panel__header--nav).opened img {
  transform: rotate(180deg);
}
.accordion-panel__header--nav {
  text-decoration: none !important;
}
.accordion-panel__header--nav:hover img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(94%) saturate(1452%) hue-rotate(359deg) brightness(102%) contrast(106%);
  transition: 0.3s;
}
.accordion-panel__texts {
  padding: 0 0 2.4rem 0;
}
.accordion-panel__texts p {
  margin: 0 0 3rem 0;
}
.accordion-panel__texts > *:last-child {
  margin: 0;
}
.accordion-panel__texts strong, .accordion-panel__texts b {
  font-weight: 700;
}
.accordion-panel__texts a {
  color: #ffb300;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.accordion-panel__texts a:hover {
  color: #19135d;
}

.hidden {
  display: none;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.load-next-loader {
  margin-left: 2rem;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #19135d 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #19135d);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-page-common--gray-bg {
  background: #F3F3F7;
}

.section-page-logo-panel {
  position: relative;
  padding: 4rem 0 2rem 0;
  background: #19135d;
}
@media only screen and (min-width: 991px) {
  .section-page-logo-panel {
    padding: 5rem 0 2rem 0;
  }
}
.section-page-logo-panel__title {
  margin: 0 0 2rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: #fff;
}

.about-panel {
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) {
  .about-panel {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .about-panel {
    padding: 7.5rem 0;
  }
}
.about-panel__title {
  margin: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .about-panel__title {
    margin: 0 0 4.4rem 0;
  }
}
.about-panel__grid {
  display: flex;
  flex-direction: column;
  max-width: 1110px;
  margin: 0 auto;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
}
@media only screen and (min-width: 768px) {
  .about-panel__grid {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-panel__grid {
    gap: 9rem;
  }
}
.about-panel__col {
  flex: 1;
}
.about-panel__col p {
  margin: 0 0 3rem 0;
}
.about-panel__col ul.connected-dots-list {
  margin: 0 0 3rem 0;
}
.about-panel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 0 0;
}
.about-panel--case-study .about-panel__col {
  flex: 1;
  max-width: 100%;
}
.about-panel--case-study .about-panel__col img {
  display: block;
  width: 100%;
  border-radius: 3rem;
}
@media only screen and (min-width: 991px) {
  .about-panel--case-study .about-panel__col img {
    border-radius: 5rem;
  }
}
.about-panel--case-study .about-panel__col h2 {
  text-align: left;
  margin: 0 0 2rem 0;
}
.about-panel--case-study .about-panel__col p {
  margin: 0 0 2rem 0;
}
.about-panel--case-study .about-panel__col a {
  color: #ffb300;
  font-size: 1.6rem;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  align-items: center;
  width: fit-content;
  font-weight: 700;
}
.about-panel--case-study .about-panel__col a img {
  width: auto;
  max-width: 100%;
}
.about-panel--case-study .about-panel__col a:hover {
  color: #19135d;
}
.about-panel--case-study .about-panel__col a:hover img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(41%) saturate(4801%) hue-rotate(239deg) brightness(81%) contrast(107%);
}
.about-panel--case-study .about-panel__col:first-of-type {
  margin: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .about-panel--case-study .about-panel__col:first-of-type {
    margin: 0;
  }
}

.section-team-panel {
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) {
  .section-team-panel {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-team-panel {
    padding: 8.5rem 0;
  }
}

.team-panel__title {
  margin: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .team-panel__title {
    margin: 0 0 4rem 0;
  }
}
.team-panel__text {
  margin: 0 0 4rem 0;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
  text-align: center;
}
@media only screen and (min-width: 991px) {
  .team-panel__text {
    margin: 0 0 5rem 0;
  }
}
.team-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.team-panel__list-item {
  width: 100%;
}
@media only screen and (min-width: 991px) {
  .team-panel__list-item {
    width: calc(50% - 1.2rem);
  }
}

.team-card {
  display: flex;
  flex-wrap: wrap;
  min-height: 100%;
  border-radius: 15px;
  background: #F3F3F7;
}
@media only screen and (min-width: 768px) {
  .team-card {
    border-radius: 30px;
  }
}
.team-card__image {
  position: relative;
  width: 140px;
  min-height: 180px;
  border-radius: 15px;
  background: #FFF6E1;
  overflow: hidden;
}
@media only screen and (min-width: 400px) {
  .team-card__image {
    width: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .team-card__image {
    width: 260px;
    min-height: 310px;
    border-radius: 30px;
  }
}
@media only screen and (min-width: 991px) {
  .team-card__image {
    width: 200px;
  }
}
@media only screen and (min-width: 1200px) {
  .team-card__image {
    width: 293px;
  }
}
.team-card__image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  max-height: 100%;
}
.team-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 140px);
  padding: 2rem;
}
@media only screen and (min-width: 400px) {
  .team-card__content {
    width: calc(100% - 180px);
  }
}
@media only screen and (min-width: 768px) {
  .team-card__content {
    width: calc(100% - 260px);
    padding: 3rem;
  }
}
@media only screen and (min-width: 991px) {
  .team-card__content {
    width: calc(100% - 200px);
  }
}
@media only screen and (min-width: 1200px) {
  .team-card__content {
    width: calc(100% - 293px);
    padding: 3rem 3rem 3rem 4.6rem;
  }
}
.team-card__name {
  margin: 0 0 2px 0;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #19135d;
}
@media only screen and (min-width: 768px) {
  .team-card__name {
    font-size: 2.4rem;
  }
}
.team-card__role {
  margin: 0 0 2rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  color: #FE0167;
}
@media only screen and (min-width: 768px) {
  .team-card__role {
    font-size: 1.8rem;
  }
}
.team-card__texts {
  margin: 0;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
}
.team-card__texts.expanded {
  -webkit-line-clamp: unset;
}
.team-card .show-more {
  display: none;
  margin: 1rem 0 0 0;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  color: #19135d;
}
.team-card .show-more:hover {
  text-decoration: none;
}
.team-card__contacts {
  line-height: 1.4;
  margin: 2.6rem 0 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #ffb300;
}
@media only screen and (min-width: 768px) {
  .team-card__contacts {
    font-size: 1.8rem;
  }
}
.team-card__contacts a {
  color: inherit;
  text-decoration: underline;
}
.team-card__contacts a:hover {
  text-decoration: none;
}

.page-intro-nav-wrapper {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .page-intro-nav-wrapper {
    display: none;
  }
}
.page-intro-nav-wrapper::before {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 50%;
  background: #fff;
}
.page-intro-nav-wrapper .container {
  display: flex;
  justify-content: center;
}

.page-intro-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 5rem;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 991px) {
  .page-intro-nav {
    min-height: 90px;
    padding: 0 6rem;
  }
}
.page-intro-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 991px) {
  .page-intro-nav__list {
    column-gap: 7rem;
  }
}
.page-intro-nav__list li {
  position: relative;
  margin: 0;
  padding: 0;
}
.page-intro-nav__list li:first-child::before {
  content: none;
  display: none;
}
.page-intro-nav__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2.8rem;
  width: 10px;
  height: 10px;
  background: #ffb300;
  border-radius: 50%;
}
@media only screen and (min-width: 991px) {
  .page-intro-nav__list li::before {
    left: -3.8rem;
  }
}
.page-intro-nav__item {
  display: inline-block;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #FE0167;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.page-intro-nav__item:hover {
  text-decoration: none;
}

.cooperate__list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 991px) {
  .cooperate__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cooperate__item {
  display: flex;
  flex-direction: column;
  background-color: #f3f3f7;
  border-radius: 3rem;
}
@media only screen and (min-width: 550px) {
  .cooperate__item {
    flex-direction: row;
  }
}
.cooperate__item--custom {
  flex-direction: column;
  background-color: #19135d;
  position: relative;
  overflow: hidden;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
@media only screen and (min-width: 991px) {
  .cooperate__item--custom {
    padding: 4rem;
  }
}
.cooperate__item--custom p {
  color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  margin: 0;
}
.cooperate__item--custom a:hover {
  text-decoration: none;
  color: #ffb300 !important;
}
.cooperate__item--custom .cooperate__item-image img {
  max-width: 200px;
  max-height: 200px;
  width: 100%;
  height: 100%;
}
.cooperate__item--custom .cooperate__item-image .gradient-corner-left, .cooperate__item--custom .cooperate__item-image .gradient-corner-right {
  width: 22rem !important;
  height: 22rem !important;
}
.cooperate__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 45%;
  padding: 2rem;
  background-color: #19135d;
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  align-items: center;
  min-height: 20rem;
}
@media only screen and (min-width: 550px) {
  .cooperate__left {
    min-height: unset;
  }
}
@media only screen and (min-width: 991px) {
  .cooperate__left {
    padding: 4rem;
  }
}
.cooperate__left img {
  max-width: 160px;
  max-height: 160px;
  width: 100%;
  height: 100%;
}
.cooperate__left .gradient-corner-left, .cooperate__left .gradient-corner-right {
  width: 22rem !important;
  height: 22rem !important;
}
.cooperate__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 55%;
  padding: 2rem;
}
@media only screen and (min-width: 991px) {
  .cooperate__right {
    padding: 4rem;
  }
}
.cooperate__item-tags {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
.cooperate__item-tag {
  font-size: 1.6rem;
  color: rgba(25, 19, 93, 0.8);
  border: 2px solid rgba(25, 19, 93, 0.8);
  padding: 1rem 2rem;
  border-radius: 1rem;
}
.cooperate__item-text {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Zobrazí max. 4 řádky */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  position: relative;
  margin: 1rem 0 0 0;
}
@media only screen and (min-width: 991px) {
  .cooperate__item-text {
    margin: 1.5rem 0 0 0;
  }
}
.cooperate__item-text--expandable {
  color: #FE0167;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f3f3f7;
  padding: 0 20px;
  font-size: 1.6rem;
  display: none;
}
.cooperate__item-text--expandable::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #FE0167; /* Malý trojúhelník */
  margin-bottom: 2px;
}
.cooperate__item-text-parent {
  position: relative;
}
.cooperate__item-text-parent.expanded .cooperate__item-text {
  -webkit-line-clamp: unset;
}
.cooperate__item-text-parent.expanded .cooperate__item-text--expandable {
  text-align: center;
  padding-top: 1rem;
  position: relative;
}
.cooperate__item-text-parent.expanded .cooperate__item-text--expandable:after {
  border-top: none;
  border-bottom: 5px solid #FE0167; /* Otočení trojúhelníku nahoru */
}
.cooperate__item-text-parent.expandable .cooperate__item-text--expandable {
  display: block;
}
.cooperate__item-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: rgba(25, 19, 93, 0.8);
  margin: 0 0 1rem 0;
}
@media only screen and (min-width: 991px) {
  .cooperate__item-title {
    font-size: 2.2rem;
    margin: 0 0 1.5rem 0;
  }
}
.cooperate__item-title a {
  color: #ffb300;
  font-size: 1.6rem;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  align-items: center;
  width: fit-content;
}
.cooperate__item-title a:hover {
  color: #19135d;
}
.cooperate__item-title a:hover img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(41%) saturate(4801%) hue-rotate(239deg) brightness(81%) contrast(107%);
}
.cooperate__item-links {
  max-width: unset !important;
  margin: 2rem 0 0 0 !important;
}
@media only screen and (min-width: 991px) {
  .cooperate__item-links {
    margin: 3rem 0 0 0 !important;
  }
}
.cooperate__item-links li {
  padding: 0 0 1rem 2.4rem !important;
}
.cooperate__item-links li:before {
  top: 0.8rem !important;
}
.cooperate__item-links:before {
  display: none;
}
.cooperate__item-links a {
  font-weight: 600;
  color: #ffb300;
  font-size: 1.6rem;
}
.cooperate__item-links a:hover {
  color: #19135d;
}

.section-about-panel--case-study {
  background-color: #f3f3f7;
}

.case-study__form h3 {
  margin: 0 0 2rem 0;
}
.case-study__form .form-field__label {
  color: #19135d;
}
.case-study__form p {
  margin: 0 0 4rem 0;
}
.case-study__form .contact-form__row {
  margin: 0 0 4rem 0;
}
.case-study__form strong {
  font-weight: 700;
}

.wpcf7-not-valid-tip {
  font-size: calc(16px * 1);
  margin-top: 1rem;
  color: #FF6F61;
}

.wpcf7-form p {
  margin: 0;
}
.wpcf7-form .contact-form__controls p {
  display: flex;
  justify-items: center;
  gap: 2rem;
  align-items: center;
}
.wpcf7-form .wpcf7-spinner {
  margin: 0;
}

.wpcf7-response-output {
  font-size: calc(18px * 1);
  line-height: 1.4444444444;
  border: 0 !important;
  padding: 0 !important;
  color: #FF6F61;
  margin: 2rem 0 !important;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  padding: 0;
  color: #46b450;
  margin: 2rem 0;
}

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