*,
*::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;
  scroll-behavior: smooth;
}
@media (max-width: 990px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: #1A1361;
  margin: 0;
  padding: 0;
}
body.scroll-lock {
  overflow: hidden;
  height: 100vh;
}
@media screen and (max-width: 600px) {
  body.admin-bar #wpadminbar {
    top: calc(-1 * var(--wp-admin--admin-bar--height, 46px));
  }
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1em 0;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

strong, b {
  font-weight: 600;
}

.base-page {
  overflow: clip;
}

.bg-light-blue {
  background: #F1F0F6;
}

.bg-blue {
  background: #1A1361;
}

::-moz-selection {
  color: #1A1361;
  background: #FFAF00;
}

::selection {
  color: #1A1361;
  background: #FFAF00;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media only screen and (min-width: 991px) {
  .container {
    max-width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 1430px) {
  .container {
    max-width: 1430px;
  }
}

.btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 100px;
  background: #FFAF00;
  color: #1A1361;
  box-shadow: none;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s, background 0.3s;
  cursor: pointer;
}
.btn b, .btn strong {
  font-weight: 600;
}
.btn::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: #FFAF00;
}
.btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:focus-visible {
  border-radius: 30px;
  box-shadow: 0 0 0 1px #FFAF00, 0 0 0 4px rgba(255, 175, 0, 0.3);
  outline: none;
}
.btn--app {
  padding: 0 35px 0 5px;
}
.btn__app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #1A1361;
  color: #FFAF00;
}
.btn__app-icon svg, .btn__app-icon img {
  display: block;
  height: 24px;
  width: 24px;
}
@media (min-width: 1200px) {
  .btn--min-w-230 {
    min-width: 230px;
  }
}

.slick-slider-reseter .slick-list {
  overflow: initial;
}
.slick-slider-reseter .slick-list .slick-track {
  display: flex;
}
.slick-slider-reseter .slick-list .slick-track .slick-slide {
  float: none;
  height: unset;
}
.slick-slider-reseter .slick-list .slick-track .slick-slide > div {
  height: 100%;
}

.header-toggle {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 60px;
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
}
.header-toggle.always-visible {
  display: flex !important;
}
@media (min-width: 991px) {
  .header-toggle {
    display: none;
  }
}
.header-toggle__icon {
  position: relative;
  height: 40px;
  width: 40px;
}
.header-toggle__icon span {
  display: block;
  position: absolute;
  height: 1px;
  width: 20px;
  background: #fff;
  opacity: 1;
  left: 10px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  pointer-events: none;
}
.header-toggle__icon span:nth-child(1) {
  top: 14px;
}
.header-toggle__icon span:nth-child(2) {
  top: 20px;
}
.header-toggle__icon span:nth-child(3) {
  top: 20px;
}
.header-toggle__icon span:nth-child(4) {
  top: 26px;
}
.header-toggle__icon.open span {
  background: #fff;
}
.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}
@media (max-width: 990px) {
  .header {
    position: fixed;
    transition: background-color 0.3s, box-shadow 0.3s;
  }
  .header.scrolled, .header.menu-open {
    background-color: #1A1361;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 601px) and (max-width: 990px) {
  .admin-bar .header {
    top: var(--wp-admin--admin-bar--height, 46px);
  }
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
@media (min-width: 991px) {
  .header__container {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .header__container {
    height: 110px;
  }
}
.header__left {
  flex-shrink: 0;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) {
  .header__right {
    gap: 44px;
  }
}
.header .header__app-buttons {
  display: none;
}
@media (min-width: 991px) {
  .header .header__app-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}
.header__nav {
  flex: 1 1 auto;
  display: none;
}
@media (min-width: 991px) {
  .header__nav {
    display: flex;
    justify-content: flex-end;
  }
}

.header-logo {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  outline: none;
  color: #fff;
}
.header-logo:focus-visible {
  border-radius: 30px;
  box-shadow: 0 0 0 1px #FFAF00, 0 0 0 4px rgba(255, 175, 0, 0.3);
}
.header-logo svg,
.header-logo img {
  width: 110px;
  display: block;
}
@media (min-width: 1200px) {
  .header-logo svg,
  .header-logo img {
    width: 186px;
    transform: translateX(-20px);
  }
}

.navigation {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 991px) {
  .navigation {
    gap: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation {
    gap: 40px;
  }
}
.navigation > li {
  margin: 0;
  padding: 0;
  position: relative;
}
.navigation > li > a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: block;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.3s;
  white-space: nowrap;
  outline: none;
}
.navigation > li > a:hover, .navigation > li > a:focus {
  color: #FFAF00;
}
.navigation > li > a:focus-visible {
  border-radius: 30px;
  box-shadow: 0 0 0 1px #FFAF00, 0 0 0 4px rgba(255, 175, 0, 0.3);
}
.navigation > li > a.selected {
  color: #FFAF00;
}

.mobile-navigation-wrapper {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .mobile-navigation-wrapper:not(.always-available) {
    display: none !important;
  }
}
.mobile-navigation-wrapper.open {
  display: block;
}
.mobile-navigation-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: #1A1361;
}

.mobile-navigation-panel {
  z-index: 2;
  position: relative;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 0 40px 0;
}
.mobile-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-navigation ul > li {
  position: relative;
  margin: 6px 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
.mobile-navigation ul > li > a:not(.btn) {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #fff;
  transition: 0.3s;
  white-space: nowrap;
}
.mobile-navigation ul > li > a:not(.btn):hover {
  color: #FFAF00;
}
.mobile-navigation ul > li > a:not(.btn).selected {
  color: #FFAF00;
}

.mobile-navigation__app-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gradient-corner-left {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 20rem;
  max-width: 100vw;
  height: 20rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
@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;
  pointer-events: none;
  z-index: 10;
}
@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-hero-panel {
  position: relative;
  background: #1A1361;
  padding: 90px 0 0 0;
}
@media (min-width: 1200px) {
  .section-hero-panel {
    padding: 116px 0 0 0;
  }
}

.hero-panel {
  z-index: 20;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 0 30px 0;
}
@media (min-width: 768px) {
  .hero-panel {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}
@media (min-width: 991px) {
  .hero-panel {
    gap: 80px;
  }
}
@media (min-width: 1200px) {
  .hero-panel {
    padding: 60px 0 80px 0;
    gap: 100px;
  }
}
@media (min-width: 1430px) {
  .hero-panel {
    gap: 150px;
  }
}
.hero-panel .hero-panel__img {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .hero-panel .hero-panel__img {
    width: 300px;
  }
}
@media (min-width: 991px) {
  .hero-panel .hero-panel__img {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .hero-panel .hero-panel__img {
    width: 440px;
  }
}
@media (min-width: 1430px) {
  .hero-panel .hero-panel__img {
    width: 558px;
    padding: 0 80px 0 0;
  }
}
.hero-panel .hero-panel__img img {
  display: block;
  max-width: 100%;
}
.hero-panel .hero-panel__content {
  min-width: 0;
  flex: 1;
}
.hero-panel .hero-panel__title {
  max-width: 520px;
  margin: 0 auto 15px auto;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-panel .hero-panel__title {
    font-size: 40px;
    margin: 0 0 35px 0;
    text-align: left;
  }
}
@media (min-width: 991px) {
  .hero-panel .hero-panel__title {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .hero-panel .hero-panel__title {
    font-size: 60px;
  }
}
.hero-panel .hero-panel__title.page-title {
  max-width: 100%;
  text-align: center;
}
.hero-panel .hero-panel__lines {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .hero-panel .hero-panel__lines {
    display: block;
  }
}
@keyframes fulfilLineV {
  from {
    width: 0;
  }
  to {
    width: 40px;
  }
}
@keyframes fulfilLineH {
  from {
    height: 0;
  }
  to {
    height: 40px;
  }
}
@keyframes moveDot {
  0% {
    left: 0;
    top: 0;
  }
  50% {
    left: 0;
    top: 40px;
  }
  to {
    left: 40px;
    top: 40px;
  }
}
@keyframes revealDot {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-panel .hero-panel__lines-line-v {
  position: absolute;
  top: 40px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7490196078);
  animation: fulfilLineV 1s ease forwards;
  animation-delay: 1s;
}
.hero-panel .hero-panel__lines-line-h {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.7490196078);
  animation: fulfilLineH 1s ease forwards;
}
.hero-panel .hero-panel__lines-line-dot-start,
.hero-panel .hero-panel__lines-line-dot-end {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #FFAF00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-panel .hero-panel__lines-line-dot-start {
  top: 0;
  left: 0;
}
.hero-panel .hero-panel__lines-line-dot-end {
  animation: moveDot 2s ease forwards;
}
.hero-panel .hero-panel__texts {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.hero-panel .hero-panel__text {
  flex: 1;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
@media (min-width: 768px) {
  .hero-panel .hero-panel__text {
    padding: 20px 0 0 0;
    text-align: left;
  }
}
@media (min-width: 991px) {
  .hero-panel .hero-panel__text {
    opacity: 0;
    animation: revealDot 1s ease forwards;
    animation-delay: 1.8s;
  }
}
.hero-panel .hero-panel__button-container {
  display: flex;
  justify-content: center;
  margin: 25px 0 0 0;
}
@media (min-width: 768px) {
  .hero-panel .hero-panel__button-container {
    margin: 35px 0 0 0;
    justify-content: flex-start;
  }
}

.meet-box {
  position: relative;
  background: #1A1361;
  border-radius: 50px;
  padding: 40px 0 40px 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .meet-box {
    padding: 80px 0 70px 0;
  }
}
.meet-box .meet-box__content {
  z-index: 20;
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .meet-box .meet-box__content {
    max-width: 580px;
    padding: 0;
  }
}
.meet-box .meet-box__title {
  margin: 0 0 20px 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  color: #fff;
}
.meet-box .meet-box__desc {
  margin: 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}
.meet-box .meet-box__button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 0 0;
}
.meet-box .meet-box__logos {
  margin: 50px 0 0 0;
}

.logos-slider__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 30px;
}
@media only screen and (min-width: 768px) {
  .logos-slider__item {
    min-height: 40px;
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1600px) {
  .logos-slider__item {
    min-height: 45px;
  }
}
.logos-slider__item img {
  max-height: 25px;
}
@media only screen and (min-width: 768px) {
  .logos-slider__item img {
    max-height: 30px;
  }
}
@media only screen and (min-width: 1600px) {
  .logos-slider__item img {
    max-height: 45px;
  }
}

.main-points {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 991px) {
  .main-points {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .main-points {
    gap: 30px;
  }
}
.main-points .main-points__separator {
  display: none;
  flex: 0.4;
  position: relative;
}
@media (min-width: 991px) {
  .main-points .main-points__separator {
    display: block;
    flex: 0.3;
    margin-top: 72px;
  }
}
.main-points .main-points__separator-dot-start,
.main-points .main-points__separator-dot-end {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(calc(-50% + 1px));
  background: #FFAF00;
}
.main-points .main-points__separator-dot-start {
  left: 0;
  z-index: 1;
}
.main-points .main-points__separator-dot-end {
  left: calc(100% - 10px);
}
.main-points .main-points__separator-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #1A1361;
}
@keyframes slideRight {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 10px);
  }
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.main-points .main-points__separator.visible .main-points__separator-dot-end {
  animation: slideRight 1s ease forwards;
}
.main-points .main-points__separator.visible .main-points__separator-line {
  animation: expandLine 1s ease forwards;
}
.main-points .main-points__item, .main-points .main-points__separator {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.main-points .main-points__item.visible, .main-points .main-points__separator.visible {
  opacity: 1;
}
.main-points .main-points__item {
  flex: 1;
}
.main-points .main-points__item-title {
  margin: 0 0 10px 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #1A1361;
}
.main-points .main-points__item-desc {
  margin: 0;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #1A1361;
}

.section-app-box {
  position: relative;
}
.section-app-box::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #F1F0F6;
}

.app-box {
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 40px;
  border-radius: 50px;
  background: #1A1361;
  overflow: hidden;
}
@media (min-width: 991px) {
  .app-box {
    flex-direction: row;
    gap: 160px;
  }
}
.app-box .app-box__bg-logo {
  position: absolute;
  top: 0;
  right: 50%;
  color: #FFAF00;
}
.app-box .app-box__img {
  position: relative;
  padding: 0 0 0 10vw;
}
@media (min-width: 768px) {
  .app-box .app-box__img {
    padding: 0 0 0 20%;
  }
}
@media (min-width: 991px) {
  .app-box .app-box__img {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px 0 0 45px;
  }
}
@media (min-width: 1430px) {
  .app-box .app-box__img {
    padding: 35px 0 0 125px;
  }
}
.app-box .app-box__img img {
  display: block;
  max-height: 300px;
}
@media (min-width: 991px) {
  .app-box .app-box__img img {
    max-height: unset;
  }
}
.app-box .app-box__img-bg {
  z-index: 1;
  position: relative;
}
.app-box .app-box__img-fg {
  z-index: 2;
  position: absolute;
  bottom: 25px;
  left: 20%;
  max-width: 70vw;
}
@media (min-width: 768px) {
  .app-box .app-box__img-fg {
    left: 30%;
    max-width: unset;
  }
}
@media (min-width: 991px) {
  .app-box .app-box__img-fg {
    left: 150px;
  }
}
@media (min-width: 1430px) {
  .app-box .app-box__img-fg {
    left: 250px;
  }
}
.app-box .app-box__content {
  max-width: 100%;
  padding: 30px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .app-box .app-box__content {
    padding: 40px 40px 0 40px;
  }
}
@media (min-width: 991px) {
  .app-box .app-box__content {
    max-width: 520px;
    padding: 40px 40px 40px 0;
  }
}
@media (min-width: 1200px) {
  .app-box .app-box__content {
    max-width: 630px;
    padding: 40px 50px 40px 0;
  }
}
@media (min-width: 1430px) {
  .app-box .app-box__content {
    max-width: 660px;
    padding: 40px 80px 40px 0;
  }
}
.app-box .app-box__title {
  margin: 0 0 20px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  color: #fff;
}
.app-box .app-box__texts {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}
.app-box .app-box__texts p {
  margin: 0 0 20px 0;
}
.app-box .app-box__app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 991px) {
  .app-box .app-box__app-buttons {
    margin-top: 40px;
  }
}

.flow-panel {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
  row-gap: 30px;
}
@media (min-width: 991px) {
  .flow-panel {
    padding: 120px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.flow-panel .flow-panel__img img {
  display: block;
  max-width: 100%;
}
@media (min-width: 991px) {
  .flow-panel .flow-panel__img img {
    max-width: 440px;
  }
}
@media (min-width: 1200px) {
  .flow-panel .flow-panel__img img {
    max-width: 500px;
  }
}
@media (min-width: 1430px) {
  .flow-panel .flow-panel__img img {
    max-width: 670px;
  }
}
.flow-panel .flow-panel__title {
  margin: 0 0 30px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #1A1361;
}
@media (min-width: 991px) {
  .flow-panel .flow-panel__title {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .flow-panel .flow-panel__title {
    font-size: 60px;
  }
}
.flow-panel .flow-panel__texts {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .flow-panel .flow-panel__texts {
    gap: 40px;
  }
}
.flow-panel .flow-panel__texts::before {
  content: "";
  width: 1px;
  height: calc(100% - 11px);
  background: #1A1361;
  position: absolute;
  top: 11px;
  left: 5px;
  z-index: 1;
}
.flow-panel .flow-panel__texts li {
  position: relative;
  margin: 0;
  padding: 0 0 0 30px;
}
@media (min-width: 768px) {
  .flow-panel .flow-panel__texts li {
    padding: 0 0 0 48px;
  }
}
.flow-panel .flow-panel__texts li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #FFAF00;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 3;
}
.flow-panel .flow-panel__texts li:last-child::after {
  content: "";
  width: 3px;
  height: calc(100% - 18px);
  border-radius: 10px;
  background: #fff;
  position: absolute;
  top: 18px;
  left: 4px;
  z-index: 2;
}
.flow-panel .flow-panel__caption {
  margin: 0 0 12px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #1A1361;
}
.flow-panel .flow-panel__text {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #1A1361;
}

.category-panel {
  padding: 60px 0;
}
@media (min-width: 991px) {
  .category-panel {
    padding: 90px 0;
  }
}
.category-panel .category-panel__title {
  text-align: center;
  margin: 0 0 44px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #1A1361;
}
@media (min-width: 991px) {
  .category-panel .category-panel__title {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .category-panel .category-panel__title {
    font-size: 60px;
  }
}
.category-panel .category-panel__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.category-panel .category-panel__item {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 140px;
  height: 140px;
  border-radius: 30px;
  background: #FFF;
}
.category-panel .category-panel__item-icon {
  margin: 18px 0 0 0;
  color: #FE0167;
  height: 60px;
}
.category-panel .category-panel__item-icon img {
  display: block;
  max-height: 60px;
  max-width: 60px;
}
.category-panel .category-panel__item-text {
  text-align: center;
  margin: 0;
  padding: 0 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #1A1361;
}
.category-panel .category-panel__text {
  text-align: center;
  margin: 40px 0 0 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: #1A1361;
}
@media (min-width: 991px) {
  .category-panel .category-panel__text {
    font-size: 24px;
  }
}
.category-panel .category-panel__text b, .category-panel .category-panel__text strong {
  color: #FE0167;
  font-weight: 600;
}
.category-panel .category-panel__text p {
  margin: 0;
}

.follow-panel {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0;
}
@media (min-width: 991px) {
  .follow-panel {
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
}
@media (min-width: 1200px) {
  .follow-panel {
    padding: 60px 0;
    gap: 155px;
  }
}
.follow-panel .follow-panel__img {
  width: 100%;
}
@media (min-width: 991px) {
  .follow-panel .follow-panel__img {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .follow-panel .follow-panel__img {
    width: 540px;
  }
}
@media (min-width: 1430px) {
  .follow-panel .follow-panel__img {
    width: 690px;
  }
}
.follow-panel .follow-panel__img img {
  display: block;
  max-width: 100%;
}
.follow-panel .follow-panel__content {
  min-width: 0;
  flex: 1;
}
.follow-panel .follow-panel__title {
  margin: 0 0 25px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  color: #1A1361;
  max-width: 350px;
}
@media (min-width: 1200px) {
  .follow-panel .follow-panel__title {
    font-size: 60px;
    max-width: 400px;
  }
}
.follow-panel .follow-panel__texts {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #1A1361;
}
.follow-panel .follow-panel__texts p {
  margin: 0 0 20px 0;
}
.follow-panel .follow-panel__button-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-panel {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact-panel {
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
  }
}
.contact-panel .contact-panel__button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-panel .contact-panel__text {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #1A1361;
}
.contact-panel .contact-panel__text b, .contact-panel .contact-panel__text strong {
  color: #FE0167;
  font-weight: 600;
}
.contact-panel .contact-panel__text p {
  margin: 0;
}

.footer .footer__main {
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .footer .footer__main {
    padding: 80px 0;
  }
}
.footer .footer__logo {
  margin: 0 0 15px 0;
}
.footer .footer__logo img, .footer .footer__logo svg {
  display: block;
  transform: translateX(-16px);
}
.footer .footer__row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer .footer__row {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .footer .footer__row {
    gap: 110px;
  }
}
.footer .footer__col {
  flex: 1;
}
.footer .footer__col.footer__col--span-2 {
  flex: 2;
}
.footer .footer__title {
  margin: 0 0 14px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #1A1361;
}
.footer .footer__text {
  margin: 0 0 20px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #1A1361;
}
.footer .footer__text p {
  margin: 0 0 10px 0;
}
.footer .footer__app-buttons {
  z-index: 2;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 35px 0 0 0;
}
.footer .footer__contacts a {
  display: inline-block;
  margin: 0 0 5px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #FFAF00;
  text-decoration: none;
}
.footer .footer__contacts a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: #1A1361;
}
.footer .footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .footer__socials a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #1A1361;
  color: #FFAF00;
  transition: box-shadow 0.3s, transform 0.3s;
}
.footer .footer__socials a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.footer .footer__socials a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footer .footer__bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  row-gap: 15px;
}
@media (min-width: 1200px) {
  .footer .footer__bar-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .footer__copy {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 8px;
}
.footer .footer__links li {
  margin: 0;
  padding: 0;
}
.footer .footer__links li a {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.footer .footer__links li a:hover {
  color: #FFAF00;
}
.footer .footer__devs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  column-gap: 25px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .footer .footer__devs {
    flex-direction: row;
  }
}
.footer .footer__dev {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer .footer__dev > span {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer__dekovacka-logo {
  color: #fff;
}
.footer .footer__dekovacka-logo img, .footer .footer__dekovacka-logo svg {
  display: block;
}

.section-page-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 7.6rem 0 0 0;
  background: #1A1361;
}
@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;
  }
}
.section-page-intro--countries {
  z-index: 2;
}

.page-common {
  padding: 8rem 0;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #1A1361;
}
.page-common__container {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.page-common h2 {
  margin: 0 0 30px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #1A1361;
  text-align: center;
}
@media (min-width: 991px) {
  .page-common h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .page-common h2 {
    font-size: 60px;
  }
}
.page-common h3 {
  margin: 0 0 3.4rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #1A1361;
  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: #FFAF00;
  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 {
  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: #1A1361;
  border-radius: 50%;
  font-size: 16px;
}
.page-common a:not(.btn):not(.btn-primary) {
  color: #FFAF00;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.page-common a:not(.btn):not(.btn-primary):hover {
  color: #1A1361;
}

.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 {
  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 {
  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: 800;
  font-size: 1.8rem;
  line-height: 22px;
  color: #1A1361;
  cursor: pointer;
  position: relative;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.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: 800;
  color: #FE0167;
}
.accordion-panel__texts a {
  color: #1A1361;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: 0.3s;
}
.accordion-panel__texts a:hover {
  color: #FFAF00;
}

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