.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

@media only screen and (min-width: 1600px) {
  .container--fluid {
    max-width: 1600px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #2B2540;
  --text-color: var(--black);
  --violet: #8163EF;
  --violet-gradient: radial-gradient(203.93% 111.54% at 99.41% 0%, #cd94ff 0%, #8868fe 100%);
  --green: #BDE500;
  --green-gradient: radial-gradient(72.79% 72.79% at 65.79% 28.95%, #f8fd71 0%, #9df313 100%);
  --yellow: #F5EF43;
  --border-color: #D1D1EE;
  --accent: var(--green);
  --brs: 20px;
  --font-family: "Manrope", sans-serif;
  --second-family: "Inter", sans-serif;
  --grey: #F3F4F5;
  --blue-grey: #4F6878;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  min-width: 320px;
  line-height: normal;
  color: var(--text-color);
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration-line: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration-line: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

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

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

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

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 90px;
}

.h1 {
  margin: 0;
  font-weight: 800;
  font-size: 40px;
  line-height: 120%;
}
.h1 span {
  color: var(--accent);
}

.h2 {
  margin: 0;
  font-weight: 800;
  font-size: 32px;
  line-height: 120%;
}
.h2 span {
  color: var(--accent);
}

.h3 {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}
.h3 span {
  color: var(--accent);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 50px;
  text-decoration: none;
  line-height: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  -webkit-transition: background-color 0.3s, ciolor 0.3s;
  transition: background-color 0.3s, ciolor 0.3s;
  color: #fff;
  background-color: var(--violet);
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--violet-gradient);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
}
.btn:active:before {
  opacity: 0;
}
.btn__title {
  position: relative;
  z-index: 2;
}
.btn__title + .btn__icon {
  margin-right: 0;
  margin-left: 10px;
}
.btn__icon {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.btn--lg {
  padding: 30px 60px;
}
.btn--md {
  padding: 15px 40px;
}
.btn--sm {
  padding: 10px 30px;
}
.btn--green {
  color: var(--text-color);
  background-color: var(--green);
}
.btn--green:before {
  background: var(--green-gradient);
}
.btn--outline {
  border: 1px solid var(--violet);
  color: var(--violet);
  background-color: transparent;
  padding: 19px 49px;
}
.btn--outline:before {
  opacity: 0;
}
.btn--outline:active {
  background-color: var(--violet);
  color: #fff;
}
.btn--outline.btn--lg {
  padding: 29px 59px;
}
.btn--outline.btn--md {
  padding: 14px 39px;
}
.btn--outline.btn--sm {
  padding: 9px 29px;
}

@media (hover) {
  .btn:hover:before {
    opacity: 0;
  }
  .btn--outline:hover {
    background-color: var(--violet);
    color: #fff;
  }
  .btn--outline:hover .btn__icon path {
    fill: #fff;
  }
}
.section {
  margin: 100px 0;
}

.social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
}
.social-link + .social-link {
  margin-left: 20px;
}

.back,
.next {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background-color: #DDE4EB;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
}
.back svg path,
.next svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.back:focus-visible,
.next:focus-visible {
  outline: none;
}
.back:active,
.next:active {
  background-color: var(--black);
}
.back:active svg path,
.next:active svg path {
  stroke: #fff;
}
.back.swiper-button-disabled,
.next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 10px;
  width: 14px;
  height: 14px;
  background: #E7E7FA;
  border: none;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50%;
  opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--green);
}

@media (hover) {
  .wow {
    visibility: hidden;
  }
  .back:hover,
  .next:hover {
    background-color: var(--black);
  }
  .back:hover svg path,
  .next:hover svg path {
    stroke: #fff;
  }
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 29px;
  }
  .h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .main {
    margin-top: 60px;
  }
  .section {
    margin: 80px 0;
  }
  .h1 {
    font-size: 32px;
  }
  .h2 {
    font-size: 26px;
  }
  .h3 {
    font-size: 20px;
  }
  .btn--lg {
    padding: 20px 50px;
  }
  .btn--lg.outline {
    padding: 19px 49px;
  }
}
.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

@-webkit-keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

@-webkit-keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

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

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.rotateImage {
  -webkit-animation-name: rotateImage;
          animation-name: rotateImage;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeInScaleOpacity {
  -webkit-animation-name: fadeInScaleOpacity;
          animation-name: fadeInScaleOpacity;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes bgScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bgScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bgScaleOpacity {
  -webkit-animation-name: bgScaleOpacity;
          animation-name: bgScaleOpacity;
}

.page-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--second-family);
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child {
  margin-bottom: 0;
}
.page-content p {
  margin: 20px 0;
}
.page-content b, .page-content strong {
  font-weight: 700;
}
.page-content h1 {
  margin: 0;
  font-weight: 800;
  font-size: 40px;
  line-height: 120%;
}
.page-content h2 {
  margin: 0;
  font-weight: 800;
  font-size: 32px;
  line-height: 120%;
}
.page-content h3 {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}

@media only screen and (max-width: 1199px) {
  .page-content h1 {
    font-size: 36px;
  }
  .page-content h2 {
    font-size: 29px;
  }
  .page-content h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .page-content h1 {
    font-size: 32px;
  }
  .page-content h2 {
    font-size: 26px;
  }
  .page-content h3 {
    font-size: 20px;
  }
}
.mfp-bg {
  background-color: var(--black);
  opacity: 0.75;
}

*::-webkit-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*:-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.form input[type=text],
.form input[type=password],
.form input[type=url],
.form input[type=email],
.form input[type=number],
.form textarea {
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  height: 62px;
  padding: 0 30px;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  background-color: #F4F5FE;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--text-color);
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  resize: none;
  height: 150px;
  padding-top: 20px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 62px #F4F5FE;
  -webkit-text-fill-color: var(--text-color);
}
.form .input-group {
  width: 100%;
}
.form .input-group + .input-group {
  margin-top: 10px;
}
.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-row .input-group {
  width: calc(50% - 10px);
}
.form-row .btn {
  width: calc(50% - 10px);
}

.iti {
  width: 100%;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px 0 0 10px;
  color: var(--text-color);
}
.iti__arrow {
  border-top: 4px solid var(--text-color);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid var(--text-color);
}
.iti__country-list {
  max-height: 220px;
  z-index: 11;
  margin: 0;
  margin-top: 10px;
  border: 1px solid #89A4B5;
  white-space: normal;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--grey);
}
.iti__country-list li {
  color: var(--text-color);
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}

.wpcf7-list-item-label {
  display: inline-block;
  cursor: pointer;
  padding-left: 31px;
  text-align: left;
  line-height: auto;
  position: relative;
}
.wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 4px;
  height: 21px;
  width: 21px;
  top: 0;
  left: 0px;
  border: 1px solid #89A4B5;
}
.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  height: 11px;
  width: 11px;
  border-radius: 2px;
  background-color: var(--accent-color);
  top: 5px;
  left: 5px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7-list-item input[type=checkbox] {
  display: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 30px;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label a:active {
  text-decoration: none;
  text-decoration-color: transparent;
}

@media (hover) {
  .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    text-decoration: none;
    text-decoration-color: transparent;
  }
}
.search-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-form input:-webkit-autofill,
.search-form input:-webkit-autofill:hover,
.search-form input:-webkit-autofill:focus,
.search-form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 54px #FFF;
  -webkit-text-fill-color: var(--text-color);
}
.search-toggle {
  display: none;
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
}
.search-toggle svg {
  width: 24px;
  height: 24px;
  fill: #9C9CB7;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.search-toggle.active svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 30px;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  background-color: #fff;
}
.search-icon {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  padding: 15px 0px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  z-index: 2;
  text-align: left;
}
.search-placeholder {
  position: absolute;
  left: 64px;
  right: 30px;
  overflow: hidden;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  color: #9C9CB7;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.search-placeholder a {
  color: var(--violet);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--violet);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
  pointer-events: auto;
}
.search-placeholder a:hover {
  text-decoration-color: transparent;
}
.search-placeholder .comma {
  margin-right: 5px;
}
.search-placeholder.hidden {
  opacity: 0;
}

.fancybox-bg {
  background-color: var(--black);
}

.fancybox-is-open .fancybox-bg {
  background-color: var(--black);
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  border: none;
  border-radius: var(--brs);
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 50px 80px;
  width: 100%;
  max-width: 580px;
  position: relative;
  display: none;
  margin: 20px auto;
  background-image: radial-gradient(162.33% 122.45% at 2.15% 0%, #ebecff 0%, #c6cbef 100%);
}
.popup-title {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
}
.popup .fancybox-close-small {
  display: none;
}
.popup-close {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  top: 15px;
  right: 15px;
  position: absolute;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-close svg {
  width: 20px;
  height: 20px;
}
.popup-close svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.popup-close:hover svg path {
  fill: var(--black);
}
.popup .form {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.popup .form .btn {
  width: 100%;
  margin-top: 30px;
}
.popup .form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.popup .form-footer .btn {
  width: auto;
  margin-top: 0;
}
.popup .form-footer .wpcf7-acceptance .wpcf7-list-item-label {
  margin-top: 0px;
  margin-left: 25px;
}
.popup--wide {
  max-width: 900px;
}
.popup--wide .popup-title {
  text-align: left;
}

.thanks-popup {
  max-width: 630px;
  padding: 50px 60px;
}
.thanks-popup:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("./img/bubbles.png");
  background-repeat: no-repeat;
  background-position: right -585px center;
  background-size: 1192px auto;
  pointer-events: none;
}
.thanks-popup-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.thanks-popup-info {
  max-width: 330px;
}
.thanks-popup-subtitle {
  font-size: 14px;
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .search-toggle {
    display: block;
  }
  .search-wrapper {
    position: absolute;
    right: -20px;
    top: 100%;
    margin-top: 20px;
    opacity: 0;
    width: 0;
    pointer-events: none;
    border: none;
    padding: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .search-wrapper.open {
    opacity: 1;
    width: 450px;
    pointer-events: auto;
    border: 1px solid var(--border-color);
    padding: 0 30px;
    text-align: left;
  }
  .search-icon {
    display: none;
  }
  .search-placeholder {
    left: 30px;
  }
  .popup--wide {
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-row .input-group,
  .form-row .btn {
    width: 100%;
  }
  .form-row .input-group + .btn {
    margin-top: 10px;
  }
  .search-wrapper {
    right: -70px;
  }
  .search-wrapper.open {
    width: 500px;
  }
  .popup {
    max-width: calc(100% - 40px);
  }
  .popup .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup .form-footer .btn {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 30px;
  }
  .popup .form-footer .wpcf7-acceptance .wpcf7-list-item-label {
    margin-left: 0;
  }
  .popup--wide .popup-title {
    text-align: center;
  }
  .thanks-popup {
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 575px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    margin-top: 20px;
  }
  .search-wrapper.open {
    width: 305px;
  }
  .search-placeholder .comma {
    display: none;
  }
  .search-placeholder .comma + a {
    display: none;
  }
  .popup {
    padding: 60px 30px 30px;
  }
  .popup-title {
    font-size: 24px;
  }
  .popup .form {
    margin-top: 30px;
  }
  .popup .form__btn {
    margin-top: 20px;
  }
  .popup .form-footer {
    margin-top: 20px;
  }
  .popup .form-footer .btn {
    margin-top: 20px;
  }
  .thanks-popup {
    padding: 40px;
  }
  .thanks-popup:before {
    background-position: right -550px center;
    background-size: 1000px auto;
  }
  .thanks-popup-info {
    max-width: 200px;
  }
  .thanks-popup-subtitle {
    font-size: 12px;
  }
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo img {
  width: 100%;
}

.hamburger {
  cursor: pointer;
  padding: 0;
  height: 40px;
  background-color: transparent;
  z-index: 12;
}
.hamburger .hamburger-box {
  width: 54px;
  height: 40px;
  top: 12px;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
  background-color: var(--violet);
  height: 3px;
  width: 100%;
  border-radius: 9999px;
}
.hamburger .hamburger-inner::before {
  width: 32px;
  margin-left: 22px;
  top: 12px;
}
.hamburger .hamburger-inner::after {
  opacity: 0;
  visibility: hidden;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner {
  top: -2px;
  width: 36px;
  margin-left: 22px;
}
.hamburger.is-active .hamburger-inner:after {
  width: 36px;
  opacity: 1;
  visibility: visible;
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.header.fixed {
  -webkit-box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
          box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
  background-color: #fff;
}
.header.opened {
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
          box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
}
.header.opened .menu {
  opacity: 1;
  visibility: visible;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 178px;
  margin-right: 40px;
}
.header__btn {
  border-width: 2px;
  padding: 13px 38px;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__search-form {
  width: 100%;
  margin-left: 40px;
}
.header__hamburger {
  margin-left: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.menu {
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.menu .container {
  padding: 0;
}
.menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 40px;
}
.menu__item + .menu__item {
  margin-right: 20px;
}
.menu__item.current_page_item .menu__link {
  background-color: var(--green);
}
.menu__link {
  font-weight: 600;
  font-size: 16px;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 9999px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.menu__link:active {
  background-color: var(--green);
}
.menu__btn {
  display: none;
}

@media (hover) {
  .menu__link:hover {
    background-color: var(--green);
  }
}
@media only screen and (max-width: 1199px) {
  .hamburger {
    height: 28px;
  }
  .hamburger .hamburger-box {
    width: 40px;
    height: 30px;
    top: 0px;
  }
  .hamburger .hamburger-inner::before {
    width: 40px;
    margin-left: 0;
    top: 12px;
  }
  .hamburger .hamburger-inner::after {
    opacity: 1;
    visibility: visible;
    top: 24px;
  }
  .hamburger.is-active .hamburger-inner {
    top: 4px;
    width: 40px;
    margin-left: 0;
  }
  .hamburger.is-active .hamburger-inner:after {
    top: 20px;
    width: 40px;
  }
  .header.opened .menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header.opened .menu__list {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header__logo {
    z-index: 2;
    margin-right: auto;
  }
  .header__search-form {
    width: auto;
    z-index: 2;
  }
  .header__btn {
    z-index: 2;
  }
  .menu {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 100dvh;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    padding-top: 90px;
  }
  .menu .container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 90px;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    margin-top: 60px;
    padding: 0;
  }
  .menu__item + .menu__item {
    margin-right: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
  .header__hamburger {
    margin-left: 30px;
  }
  .header__search-form {
    margin-left: 30px;
  }
  .menu__btn {
    margin-top: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.hero {
  overflow: hidden;
  padding-top: 90px;
}
.hero-swiper {
  overflow: visible;
  padding-bottom: 65px;
}
.hero-slide {
  height: auto;
  min-height: 600px;
  -webkit-box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
          box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
  background: radial-gradient(203.93% 111.54% at 99.41% 0%, #cd94ff 0%, #8868fe 100%);
  border-radius: var(--brs);
  overflow: hidden;
  color: #fff;
  padding: 60px 80px;
}
.hero-slide--green {
  background: radial-gradient(206.67% 111.8% at 100% 0%, #7cefdc 0%, #7cbd4a 100%);
}
.hero-slide--pink {
  background: radial-gradient(72.79% 72.79% at 65.79% 28.95%, #ff7d4d 0%, #a710be 100%);
}
.hero-slide-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  min-height: 100%;
}
.hero-slide__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0px;
  right: 0px;
}
.hero-slide__tag {
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 15px 30px;
}
.hero-slide__tag + .hero-slide__tag {
  margin-left: 20px;
}
.hero-slide__title {
  font-weight: 800;
  font-size: 64px;
  line-height: 120%;
  max-width: 500px;
}
.hero-slide__title span {
  color: var(--accent);
}
.hero-slide__subtitle {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  margin-top: 40px;
  max-width: 400px;
}
.hero-slide__text {
  font-size: 16px;
  margin-top: 40px;
  max-width: 450px;
}
.hero-slide__btns {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.hero-slide__btns .btn + .btn {
  margin-left: 20px;
}
.hero-slide__bg {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .hero-slide {
    padding: 50px 60px;
    min-height: 500px;
  }
  .hero-slide__title {
    font-size: 56px;
  }
  .hero-slide__subtitle {
    font-size: 28px;
    max-width: 350px;
  }
  .hero-slide__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-slide {
    min-height: auto;
  }
  .hero-slide__title {
    font-size: 48px;
    max-width: calc(100% - 120px);
  }
  .hero-slide__subtitle {
    max-width: 100%;
    font-size: 24px;
  }
  .hero-slide__text {
    max-width: 100%;
  }
  .hero-slide__btns {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 40px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide {
    padding: 40px 50px;
  }
  .hero-slide__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-swiper {
    padding-bottom: 50px;
  }
  .hero-slide {
    padding: 40px 30px;
  }
  .hero-slide-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero-slide:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8163ef), to(rgba(129, 99, 239, 0)));
    background: linear-gradient(90deg, #8163ef 0%, rgba(129, 99, 239, 0));
  }
  .hero-slide--pink:after {
    background: -webkit-gradient(linear, left top, right top, from(#a710be), to(rgba(167, 16, 190, 0)));
    background: linear-gradient(90deg, #a710be 0%, rgba(167, 16, 190, 0));
  }
  .hero-slide--green:after {
    background: -webkit-gradient(linear, left top, right top, from(#7cbd4a), to(rgba(124, 189, 74, 0)));
    background: linear-gradient(90deg, #7cbd4a 0%, rgba(124, 189, 74, 0));
  }
  .hero-slide__tags {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 30px;
  }
  .hero-slide__tag {
    padding: 10px 20px;
    font-size: 14px;
  }
  .hero-slide__title {
    font-size: 32px;
    max-width: 100%;
  }
  .hero-slide__subtitle {
    font-size: 20px;
    margin-top: 30px;
  }
  .hero-slide__text {
    font-size: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .hero-slide__btns {
    margin-left: 0;
    margin-top: auto;
  }
}
.category-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-list::-webkit-scrollbar {
  display: none;
}
.category-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  flex-shrink: 0;
  padding: 15px 30px;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s, border-color 0.3s;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.category-tab.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.category-tab.active svg path {
  fill: #fff;
}
.category-tab.active svg path.white-color {
  fill: var(--black);
}
.category-tab svg {
  margin-right: 15px;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.category-tab svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.category-tab__title br {
  display: none;
}
.category-tab__count {
  margin-left: 15px;
  white-space: nowrap;
}
.category-scroll-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s, border-color 0.3s;
  transition: background 0.3s, border-color 0.3s;
  z-index: 2;
}
.category-scroll-btn svg {
  width: 10px;
  height: 10px;
}
.category-scroll-btn svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.category-scroll-btn:hover {
  background: #2B2540;
  border-color: #2B2540;
}
.category-scroll-btn:hover svg path {
  fill: #fff;
}
.category-scroll-btn--left {
  left: 0;
}
.category-scroll-btn--right {
  right: 0;
}
.category-scroll-btn--hidden {
  opacity: 0;
  pointer-events: none;
}
.category-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 170px;
}
.category-fade--left {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.category-fade--right {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.category-fade.visible {
  opacity: 1;
}

@media (hover) {
  .category-tab:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
  }
  .category-tab:hover svg path {
    fill: #fff;
  }
  .category-tab:hover svg path.white-color {
    fill: var(--black);
  }
}
@media only screen and (max-width: 1199px) {
  .category-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    margin-left: -5px;
    margin-right: -5px;
  }
  .category-scroll-btn {
    display: none;
  }
  .category-fade {
    display: none;
  }
  .category-tab {
    width: calc(33.33% - 10px);
    margin: 5px;
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .category-tab svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
  .category-tab__title {
    margin-right: auto;
  }
  .category-tab__title br {
    display: inline;
  }
  .category-tab__count {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .category-tab {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 575px) {
  .category-tab {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 399px) {
  .category-tab {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
  }
}
.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}

.filters-dropdown {
  position: relative;
}
.filters-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--brs);
  -webkit-box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
          box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
  overflow: hidden;
  z-index: 10;
  min-width: 100%;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.filters-dropdown__menu.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.filters-dropdown__item {
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  font-size: 14px;
  font-weight: 600;
  color: #9191B4;
  white-space: nowrap;
}
.filters-dropdown__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 10px 20px;
}
.filters-dropdown__item:hover {
  background: #f5f5fa;
}
.filters-dropdown__name {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.filters-dropdown__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #9191B4;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
  cursor: pointer;
}
.filters-dropdown__checkbox:checked {
  border-color: var(--accent);
  background-color: var(--accent);
}
.filters-dropdown__checkbox:checked:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.filters-dropdown__checkbox:checked + .filters-dropdown__name {
  color: var(--black);
}
.filters-button {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px;
  padding: 0 30px;
  border-radius: 9999px;
  background-color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}
.filters-button__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.filters-button__count {
  margin-left: 10px;
  display: none;
}

.sort-dropdown {
  position: relative;
  margin-left: 30px;
}
.sort-dropdown__toggle {
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 44px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  color: #9191b4;
  padding: 0px 30px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sort-dropdown__toggle:hover {
  border-color: #b0a8e2;
}
.sort-dropdown__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sort-dropdown__arrow {
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.sort-dropdown.open .sort-dropdown__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sort-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--brs);
  overflow: hidden;
  -webkit-box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
          box-shadow: 0 11px 35px 0 rgba(129, 99, 239, 0.3);
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 10;
}
.sort-dropdown.open .sort-dropdown__menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sort-dropdown__item {
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #9191B4;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  white-space: nowrap;
}
.sort-dropdown__item:hover {
  background: #f5f5fa;
}
.sort-dropdown__item.active {
  background: var(--accent);
  color: var(--black);
}

.view-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: 30px;
}
.view-toggle__btn {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.view-toggle__btn svg {
  width: 16px;
  height: 16px;
}
.view-toggle__btn svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.view-toggle__btn.active {
  background-color: var(--green);
}
.view-toggle__btn.active svg path {
  fill: var(--black);
}

.filter-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.filter-tag {
  padding: 10px 30px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  background-color: #F4F4FE;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter-tag__remove {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  margin-left: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}
.filter-tag__remove:before, .filter-tag__remove:after {
  background-color: #9191B4;
  position: absolute;
  left: 0;
  content: "";
  width: 18px;
  height: 2px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.filter-tag__remove:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.filter-tag__remove:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (hover) {
  .filter-tag__remove:hover:before, .filter-tag__remove:hover:after {
    background-color: var(--black);
  }
  .view-toggle__btn:hover {
    background-color: var(--green);
  }
}
@media only screen and (max-width: 991px) {
  .filters {
    margin-top: 30px;
  }
  .filter-tags {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .view-toggle {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .filters {
    margin-left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .filters-button {
    padding: 0 25px;
  }
  .filters-button__text {
    display: none;
  }
  .filters-button__icon {
    margin-right: 0;
  }
  .sort-dropdown {
    margin-left: 10px;
  }
  .sort-dropdown__toggle {
    padding: 0 20px;
  }
  .sort-dropdown__item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .filter-tag {
    font-size: 12px;
    padding: 10px 20px;
  }
  .filter-tag__remove {
    margin-left: 10px;
    width: 14px;
    height: 14px;
  }
}
.events {
  margin-top: 60px;
}
.events-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.events-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 30px -10px -20px;
}
.events-grid.list-view {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.events-grid.list-view .event {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 240px;
  margin: 0;
}
.events-grid.list-view .event + .event {
  margin-top: 20px;
}
.events-grid.list-view .event-top {
  width: 413px;
  margin-bottom: -1px;
}
.events-grid.list-view .event-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.events-grid.list-view .event-bottom {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.events-show-more {
  text-align: center;
  margin-top: 50px;
}
.events-show-more .btn__icon {
  top: 1px;
}

.agency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.agency-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.agency-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 150%;
  font-family: var(--second-family);
}
.agency-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
}
.agency-subtitle {
  font-size: 13px;
}

.event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
}
.event-top {
  aspect-ratio: 1.73;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--brs);
  overflow: hidden;
  position: relative;
  margin-left: -1px;
  margin-top: -1px;
  width: calc(100% + 2px);
}
.event-category {
  position: absolute;
  top: 20px;
  left: 30px;
  white-space: nowrap;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background-color: var(--violet);
  z-index: 2;
  border-radius: 9999px;
}
.event-category--green {
  color: var(--text-color);
  background-color: var(--green);
}
.event-category--blue {
  background-color: #68A8F0;
}
.event-category--pink {
  background-color: #F45084;
}
.event-category--orange {
  background-color: #FFC62B;
}
.event-gallery {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.event-gallery .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #fff;
  margin: 5px;
  width: 7px;
  height: 7px;
}
.event-gallery .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--green);
}
.event-gallery .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.event-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-content {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.event-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -10px;
  margin-bottom: 20px;
}
.event-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #9191b4;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  margin-right: 10px;
}
.event-tag img {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event-text {
  margin-bottom: 30px;
  margin-top: 20px;
}
.event-bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
.event__btn {
  margin-left: 15px;
}

@media only screen and (max-width: 1299px) {
  .event-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .event__agency {
    margin-right: auto;
  }
  .event__btn {
    margin-left: auto;
    margin-top: 20px;
  }
  .events-grid.list-view .event-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .events-grid.list-view .event__agency {
    margin-right: 0;
  }
  .events-grid.list-view .event__btn {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .event {
    width: calc(50% - 20px);
  }
  .event-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .event__btn {
    margin-left: 20px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .events-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .events-top .h2 {
    text-align: center;
  }
  .event-category {
    left: 25px;
  }
  .event-content {
    padding-left: 25px;
    padding-right: 25px;
  }
  .event-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .event__agency {
    margin-right: auto;
  }
  .event__btn {
    margin-left: auto;
    margin-top: 20px;
  }
  .events-grid.list-view .event {
    min-height: 320px;
  }
  .events-grid.list-view .event-top {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .event {
    width: calc(100% - 20px);
  }
  .event-category {
    left: 30px;
  }
  .event-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .event-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .event__btn {
    margin-left: 15px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .events-grid {
    margin-top: 20px;
  }
  .events-top {
    margin-bottom: 20px;
  }
  .events-show-more {
    margin-top: 40px;
  }
  .event-category {
    left: 20px;
    font-size: 12px;
  }
  .event-tag {
    font-size: 13px;
  }
  .event-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .event-text {
    font-size: 13px;
  }
  .event__agency .agency-logo {
    width: 30px;
    height: 30px;
  }
  .event__agency .agency-title {
    font-size: 13px;
  }
  .event__agency .agency-subtitle {
    font-size: 11px;
  }
}
.offer {
  border-radius: var(--brs);
  padding: 50px 80px;
  background-image: radial-gradient(124.46% 113.68% at 95% 0%, #ebecff 0%, #98a0d7 100%);
  overflow: hidden;
  color: #fff;
  margin: 20px 0;
  position: relative;
}
.offer:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("./img/bubbles.png");
  background-repeat: no-repeat;
  background-position: right -750px bottom -40px;
  background-size: 2004px auto;
  pointer-events: none;
}
.offer:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("./img/bubbles.png");
  background-repeat: no-repeat;
  background-position: left -1350px bottom calc(50% + 70px);
  background-size: 2004px auto;
  pointer-events: none;
}
.offer + .events-grid {
  margin-top: 0;
}
.offer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.offer-info {
  max-width: 500px;
}
.offer__title span {
  white-space: nowrap;
}
.offer-text {
  margin-top: 30px;
  font-size: 16px;
  max-width: 375px;
}
.offer__btn {
  padding-left: 120px;
  padding-right: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 100px;
}

@media only screen and (max-width: 1199px) {
  .offer {
    padding: 60px;
  }
  .offer:before {
    background-position: right -300px center;
    background-size: 1000px auto;
  }
  .offer:after {
    display: none;
  }
  .offer__btn {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .offer:before {
    background-position: right -500px center;
  }
  .offer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .offer-info {
    max-width: 450px;
  }
  .offer__btn {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .offer {
    padding: 40px 30px;
  }
  .offer:before {
    background-position: right -550px center;
  }
  .offer:after {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right top, from(#98a0d7), to(rgba(152, 160, 215, 0)));
    background: linear-gradient(90deg, #98a0d7 0%, rgba(152, 160, 215, 0));
  }
  .offer-text {
    font-size: 14px;
  }
  .offer__btn {
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.events-slider {
  overflow: hidden;
}
.events-swiper {
  padding-bottom: 55px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.events-swiper.swiper-initialized {
  opacity: 1;
}
.events-swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.events-slide {
  height: auto;
  border-radius: 20px;
  padding: 50px 50px 40px;
  background: radial-gradient(72.79% 72.79% at 65.79% 28.95%, #ff7d4d 0%, #a710be 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 200px;
  position: relative;
  overflow: hidden;
}
.events-slide__title span {
  white-space: nowrap;
}
.events-slide__bg {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  z-index: -1;
}
.events-slide--blue {
  background: radial-gradient(203.93% 111.54% at 99.41% 0%, #59e7eb 0%, #5d5fdb 100%);
}
.events-slide--green {
  background: radial-gradient(206.67% 111.8% at 100% 0%, #7cefdc 0%, #7cbd4a 100%);
}
.events-slide__text {
  margin: 30px 0;
  font-size: 16px;
  max-width: 300px;
}
.events-slide__btn {
  margin-top: auto;
}

@media only screen and (max-width: 767px) {
  .events-slide {
    padding: 40px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .events-swiper {
    padding-bottom: 40px;
  }
  .events-slide {
    padding: 30px;
    padding-right: 100px;
  }
  .events-slide:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50%;
    bottom: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#a710be), to(rgba(167, 16, 190, 0)));
    background: linear-gradient(90deg, #a710be 0%, rgba(167, 16, 190, 0));
  }
  .events-slide--blue:after {
    background: -webkit-gradient(linear, left top, right top, from(#5d5fdb), to(rgba(93, 95, 219, 0)));
    background: linear-gradient(90deg, #5d5fdb 0%, rgba(93, 95, 219, 0));
  }
  .events-slide__text {
    font-size: 14px;
    margin: 20px 0;
    max-width: 200px;
  }
}
.faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 846px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--brs);
}
.faq-item + .faq-item {
  margin-top: 20px;
}
.faq-item.is-open .faq-item__body {
  max-height: 2000px;
}
.faq-item.is-open .faq-item__content {
  opacity: 1;
  padding-bottom: 20px;
}
.faq-item.is-open .faq-item__toggle:before {
  opacity: 0;
}
.faq-item__header {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq-item__title {
  font-weight: 700;
  font-size: 20px;
}
.faq-item__toggle {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  border-radius: 5px;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
  position: relative;
  top: 2px;
}
.faq-item__toggle:before, .faq-item__toggle:after {
  position: absolute;
  content: "";
  width: 2px;
  background-color: var(--violet);
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq-item__toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__body {
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
.faq-item__content {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media only screen and (max-width: 1199px) {
  .faq-items {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .faq-item__header {
    padding: 20px;
  }
  .faq-item__title {
    font-size: 18px;
  }
  .faq-item__body {
    padding: 0 20px;
  }
  .faq-item__toggle {
    margin-left: 20px;
    top: auto;
  }
}
.subscribe-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 47px 80px;
  border-radius: var(--brs);
  background-image: radial-gradient(162.33% 122.45% at 2.15% 0%, #ebecff 0%, #c6cbef 100%);
}
.subscribe-block:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("./img/bubbles.png");
  background-repeat: no-repeat;
  background-position: right -585px center;
  background-size: 1192px auto;
  pointer-events: none;
}
.subscribe-block:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("./img/bubbles.png");
  background-repeat: no-repeat;
  background-position: right 65% bottom -10px;
  background-size: 1192px auto;
  pointer-events: none;
}
.subscribe-info {
  padding-right: 100px;
  position: relative;
  z-index: 2;
}
.subscribe-form {
  width: 648px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .subscribe-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 60px;
  }
  .subscribe-block:after {
    display: none;
  }
  .subscribe-info {
    padding-right: 0;
  }
  .subscribe-form {
    max-width: 100%;
    width: 100%;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe .h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .subscribe-block {
    padding: 40px 30px;
  }
  .subscribe-block:before {
    background-position: right -550px center;
    background-size: 1000px auto;
  }
  .subscribe-form {
    margin-top: 30px;
  }
}
.footer {
  overflow: hidden;
  background-color: var(--black);
  color: #fff;
  padding: 100px 0;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
}
.footer__logo {
  width: 178px;
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 15px;
}
.footer-links a {
  color: var(--green);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  text-decoration-line: none;
  text-decoration-style: dotted;
  text-decoration-color: transparent;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
}
.footer-links a:active {
  text-decoration-line: underline;
  text-decoration-color: var(--green);
}
.footer-links a + a {
  margin-top: 15px;
}
.footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 135px;
}
.footer-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 20px;
}
.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-menu__item + .footer-menu__item {
  margin-top: 20px;
}
.footer-menu__link {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: var(--green);
  text-decoration-line: none;
  text-decoration-style: dotted;
  text-decoration-color: transparent;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
}
.footer-menu__link:active {
  text-decoration-line: underline;
  text-decoration-color: var(--green);
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-contact + .footer-contact {
  margin-top: 20px;
}
.footer-contact__icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-contact__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
}
.footer-contact__text a {
  color: var(--green);
  text-decoration-line: none;
  text-decoration-style: dotted;
  text-decoration-color: transparent;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
}
.footer-contact__text a:active {
  text-decoration-line: underline;
  text-decoration-color: var(--green);
}
.footer-copy {
  font-size: 15px;
  line-height: 150%;
  margin-top: 40px;
}

@media (hover) {
  .footer-menu__link:hover {
    text-decoration-line: underline;
    text-decoration-color: var(--green);
  }
  .footer-links a:hover {
    text-decoration-line: underline;
    text-decoration-color: var(--green);
  }
  .footer-contact__text a:hover {
    text-decoration-line: underline;
    text-decoration-color: var(--green);
  }
}
@media only screen and (max-width: 1299px) {
  .footer-column {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-column {
    margin-left: 30px;
  }
  .footer-info {
    margin-right: 0;
    width: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-info {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer-links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-column {
    margin-left: 0;
    margin-top: 70px;
  }
  .footer-copy {
    text-align: center;
    width: 100%;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-column {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer-menu__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 80px 0 30px;
  }
  .footer-title {
    margin-bottom: 15px;
  }
  .footer-column {
    margin-top: 50px;
  }
  .footer-copy {
    margin-top: 50px;
  }
  .footer-menu__item + .footer-menu__item {
    margin-top: 10px;
  }
  .footer-contact + .footer-contact {
    margin-top: 15px;
  }
}