/* stylelint-disable */
/* stylelint-disable */
:root {
  --color-red: #6B1919;
  --color-dark-red: #5D1616;
  --color-light: #F4F3F3;
  --color-white: #F6EFEF;
  --color-gray: #A9A9A9;
  --body-color: #190505;
  --inter-font: 'Inter', sans-serif;
  --literata-font: 'Literata', serif;
}

::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  position: absolute;
  right: 0;
  display: none;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-dark-red);
}

html {
  scroll-behavior: smooth !important;
}

html,
body {
  font-family: var(--inter-font);
  color: var(--color-gray);
  overflow-x: clip;
  background: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (max-width: 985px) {
  html,
  body {
    font-size: 15px;
  }
}

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

.title_h1 {
  color: var(--color-light);
  font-family: var(--literata-font);
  font-size: 52px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 1.56px;
}
@media only screen and (max-width: 985px) {
  .title_h1 {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}

.title_h2 {
  color: var(--color-light);
  font-family: var(--literata-font);
  font-size: 48px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 1.44px;
}
@media only screen and (max-width: 985px) {
  .title_h2 {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}

.text,
.text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  font-family: var(--inter-font);
  color: var(--color-white);
}
@media only screen and (max-width: 985px) {
  .text,
  .text p {
    font-size: 18px;
    line-height: 1.6;
  }
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
body.overflow {
  overflow: hidden;
}
body a {
  font-family: var(--inter-font);
  color: var(--color-light);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
body a:hover {
  opacity: 0.8;
}

.section {
  margin: 100px 0;
  overflow: clip;
}
@media only screen and (max-width: 985px) {
  .section {
    margin: 80px 0;
  }
}

.img_cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: flex;
  max-width: 100%;
  height: auto;
}

.contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

body,
html,
p,
h1,
h2,
h3,
h4,
a,
label,
button,
input,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--color-gray);
  box-sizing: border-box;
  line-height: 30px;
}
@media only screen and (max-width: 985px) {
  body,
  html,
  p,
  h1,
  h2,
  h3,
  h4,
  a,
  label,
  button,
  input,
  ul {
    font-size: 14px;
    line-height: 20px;
  }
}

div {
  outline: none;
  box-sizing: border-box;
}

button {
  border: none;
}

input,
button,
a {
  outline: none;
  text-decoration: none;
}
input:hover,
button:hover,
a:hover {
  text-decoration: none;
}

button {
  background: transparent;
}
button:active {
  outline: none;
}

li {
  list-style-type: none;
}

.dist ul li {
  list-style-type: disc !important;
}

.number_list ol li {
  list-style-type: decimal;
}
.number_list ul {
  margin: 0px 0px 0px 40px;
}

html {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.mfp-hide {
  display: none !important;
}

@font-face {
  font-family: "San Francisco Pro Display Light";
  src: url("../../build/fonts/SFProDisplay-Light.woff") format("woff"), url("../../build/fonts/SFProDisplay-Light.woff2") format("woff2"), url("../../build/fonts/SFProDisplay-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "San Francisco Pro Display Light";
  src: url("../../build/fonts/SFProText-Regular.woff") format("woff"), url("../../build/fonts/SFProText-Regular.woff2") format("woff2"), url("../../build/fonts/SFProText-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  min-height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.header_right {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 985px) {
  .header_right {
    gap: 20px;
  }
}
@media only screen and (max-width: 765px) {
  .header_phone, .header_contact {
    display: none;
  }
}
.header_btn.btn {
  padding: 10px 18px;
  min-height: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5px;
}
.header_btn_transparent.btn {
  background-color: transparent;
  border: none;
}
@media only screen and (min-width: 985px) {
  .header_btn_transparent.btn {
    display: none;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 985px) {
  .footer {
    padding: 40px 0;
  }
}
.footer_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 985px) {
  .footer_wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer_right {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 985px) {
  .footer_right {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
.footer_text {
  color: var(--color-gray);
  font-size: 20px;
  font-weight: 500;
  line-height: 21px;
}
@media only screen and (max-width: 1100px) {
  .footer_text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 985px) {
  .footer_text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 985px) {
  .footer_phone, .footer_email {
    font-size: 18px;
  }
}
.footer_contact_item img {
  width: 50px;
  height: 50px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 20px 26px;
  border-radius: 4px;
  border: 1px solid var(--color-dark-red);
  background: radial-gradient(53.91% 53.91% at 50% 50%, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.04) 100%), var(--color-red);
  box-shadow: 0 0 30px 0 rgba(63, 14, 14, 0.24);
  color: var(--color-light);
  text-align: center;
  font-family: var(--inter-font);
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5px;
}
.btn:hover {
  background-color: var(--color-red);
}
.btn:active {
  background-color: var(--color-red);
}
@media only screen and (max-width: 985px) {
  .btn {
    font-size: 18px;
    letter-spacing: 0.5px;
    min-height: 54px;
    padding: 17px 24px;
  }
}
.btn_small {
  padding: 13px 10px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 985px) {
  .btn_small {
    padding: 13px 10px;
    min-height: 40px;
  }
}

.popup_send {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.popup_send.active {
  opacity: 1;
  visibility: visible;
}
.popup_send__content {
  position: relative;
  z-index: 10;
  max-width: 996px;
  width: 100%;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  background: transparent;
}
@media only screen and (max-width: 985px) {
  .popup_send__content {
    max-width: 90%;
  }
}
.popup_send__close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.popup_send__close_btn:hover {
  transform: rotate(90deg);
}
.popup_send__close_btn svg {
  width: 100%;
  height: 100%;
}
.popup_send__title {
  color: var(--color-light);
  text-align: center;
}
.popup_send__text {
  color: var(--color-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (max-width: 985px) {
  .popup_send__text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 765px) {
  .hero {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
  }
}
@media only screen and (min-width: 765px) {
  .hero_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: max(15px, (100% - 1200px) / 2);
    gap: 20px;
  }
}
.hero_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 511px;
  margin: 0 auto;
}
@media only screen and (max-width: 765px) {
  .hero_content {
    position: absolute;
    bottom: 80px;
    width: calc(100% - 64px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
}
@media only screen and (max-width: 765px) {
  .hero_content_image {
    display: none;
  }
}
.hero_title {
  margin-top: 16px;
}
.hero_text {
  margin-top: 26px;
}
@media only screen and (max-width: 765px) {
  .hero_text {
    margin-top: 16px;
    font-size: 16px !important;
  }
}
.hero_btn {
  margin-top: 44px;
}
@media only screen and (max-width: 765px) {
  .hero_btn {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 765px) {
  .hero_image {
    position: absolute;
    inset: 0;
  }
  .hero_image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
}
.hero_image img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 765px) {
  .hero_image img {
    min-height: 600px;
  }
}

.about_wrapper {
  max-width: 656px;
  margin: 0 auto;
}

.help_wrapper {
  text-align: center;
}
.help_text {
  margin-top: 20px;
}
@media only screen and (max-width: 985px) {
  .help_text {
    margin-top: 12px;
  }
}
.help_items {
  margin: 50px 0;
  position: relative;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 985px) {
  .help_items {
    padding: 0;
    margin: 36px 0;
    margin-right: -15px;
    grid-template-columns: repeat(4, 230px);
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .help_items::-webkit-scrollbar {
    width: 0px;
  }
  .help_items::-webkit-scrollbar-thumb {
    background: transparent;
  }
}
.help .flip-box {
  background-color: transparent;
  min-height: 510px;
  perspective: 1000px;
}
@media only screen and (max-width: 985px) {
  .help .flip-box {
    min-height: 460px;
  }
}
.help .flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.help .flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}
.help .flip-box-front, .help .flip-box-back {
  padding: 10px;
  padding-bottom: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid #140E0E;
  background-color: #1C1212;
}
.help .flip-box-front {
  position: relative;
}
.help .flip-box-front img {
  height: 346px;
  flex-shrink: 0;
}
@media only screen and (max-width: 985px) {
  .help .flip-box-front img {
    height: 260px;
  }
}
.help .flip-box-back {
  transform: rotateY(180deg);
}
.help_item__body {
  height: 100%;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #211E1E;
  background-color: rgba(34, 29, 29, 0.3);
}
@media only screen and (max-width: 985px) {
  .help_item__body {
    text-align: left;
  }
}
.help_item__title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 985px) {
  .help_item__title {
    font-size: 16px;
  }
}
.help_item__description {
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}
@media only screen and (max-width: 985px) {
  .help_item__description {
    font-size: 14px;
  }
}
.help_back__wrapper {
  padding: 6px 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #211E1E;
  background-color: rgba(34, 29, 29, 0.3);
}
.help_list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media only screen and (max-width: 985px) {
  .help_list {
    gap: 12px;
  }
}
.help_list__item__name {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
@media only screen and (max-width: 985px) {
  .help_list__item__name {
    font-size: 14px;
    line-height: 17px;
  }
}
.help_list__item__description {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (max-width: 985px) {
  .help_list__item__description {
    font-size: 13px;
    line-height: 18px;
  }
}
.help_back__btn.btn {
  font-size: 17px !important;
}
@media only screen and (max-width: 985px) {
  .help_back__btn.btn {
    font-size: 14px !important;
  }
}

.testimonials_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}
@media only screen and (max-width: 985px) {
  .testimonials_wrapper {
    align-items: center;
    flex-direction: column;
  }
}
.testimonials_content {
  max-width: 487px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 985px) {
  .testimonials_content {
    gap: 12px;
    padding: 0 17px;
  }
}
.testimonials .swiper {
  width: 100%;
}
.testimonials_slider {
  max-width: 624px;
}
.testimonials_item {
  width: calc(100% - 120px);
  margin: 0 auto;
}
@media only screen and (max-width: 985px) {
  .testimonials_item {
    width: calc(100% - 100px);
  }
}
.testimonials_item__body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media only screen and (max-width: 985px) {
  .testimonials_item__body {
    gap: 20px;
  }
}
.testimonials_item__body::before {
  content: "";
  width: 51px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='51' height='40' viewBox='0 0 51 40' fill='none'%3E%3Cpath d='M11.3034 40C7.44591 40 4.5752 38.7919 2.69129 36.3758C0.897098 33.8702 0 30.7383 0 26.9799C0 23.5794 0.717678 20.2685 2.15303 17.047C3.6781 13.8255 5.74143 10.783 8.34301 7.91946C10.9446 4.96644 13.9947 2.32662 17.4934 0L19.2427 2.14765C15.4749 5.10067 12.7388 8.14317 11.0343 11.2752C9.41953 14.3177 8.61214 17.3602 8.61214 20.4027H12.2454C14.7573 20.4027 16.7309 20.8054 18.1662 21.6107C19.6913 22.3266 20.8127 23.3557 21.5303 24.698C22.248 26.0403 22.6069 27.5615 22.6069 29.2617C22.6069 32.1253 21.5303 34.6309 19.3773 36.7785C17.314 38.9262 14.6227 40 11.3034 40ZM39.6966 40C35.8391 40 33.0132 38.7919 31.219 36.3758C29.4248 33.8702 28.5277 30.7383 28.5277 26.9799C28.5277 23.5794 29.2454 20.2685 30.6807 17.047C32.1161 13.8255 34.1346 10.783 36.7361 7.91946C39.4274 4.96644 42.5224 2.32662 46.0211 0L47.6359 2.14765C43.8681 5.10067 41.1768 8.14317 39.562 11.2752C37.9472 14.3177 37.1398 17.3602 37.1398 20.4027H40.6385C43.1504 20.4027 45.124 20.8054 46.5594 21.6107C48.0844 22.3266 49.2058 23.3557 49.9235 24.698C50.6412 26.0403 51 27.5615 51 29.2617C51 32.1253 49.9235 34.6309 47.7704 36.7785C45.7071 38.9262 43.0158 40 39.6966 40Z' fill='%236B1919'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 985px) {
  .testimonials_item__body::before {
    width: 29px;
    height: 23px;
    background-size: 29px 23px;
  }
}
.testimonials_item__author {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.testimonials_item__author .dot {
  display: inline-flex;
  width: 5px;
  height: 5px;
  background-color: var(--color-gray);
  border-radius: 50%;
}
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: #1C1212;
  border-radius: 50%;
}
.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.13125 6.75H0V5.25H9.13125L4.93125 1.05L6 0L12 6L6 12L4.93125 10.95L9.13125 6.75Z' fill='%23BAB9B9'/%3E%3C/svg%3E%0A");
  width: 30px;
  height: 30px;
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonials .swiper-button-prev::after {
  transform: rotate(180deg);
}

.gallery_items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 985px) {
  .gallery_items {
    margin-right: -15px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .gallery_items::-webkit-scrollbar {
    width: 0px;
  }
  .gallery_items::-webkit-scrollbar-thumb {
    background: transparent;
  }
}
.gallery_item {
  grid-column: span 6;
}
.gallery_item:not(:last-child) {
  grid-column: span 3;
}
.gallery_item img {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 985px) {
  .gallery_item {
    flex-shrink: 0;
    width: 265px;
    height: 265px;
  }
  .gallery_item:not(:last-child) {
    width: 180px;
  }
}

@media only screen and (max-width: 985px) {
  .first .container {
    padding: 0 30px;
  }
}
.first_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 793px;
}
@media only screen and (min-width: 985px) {
  .first_wrapper {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 985px) {
  .first_wrapper {
    gap: 36px;
  }
}
.first_bottom {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 985px) {
  .first_bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 5px;
  }
}
.first_bottom_item {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media only screen and (max-width: 985px) {
  .first_bottom_item:not(:first-child) {
    grid-row: 2;
  }
}
.first_bottom_item a {
  font-size: 20px;
}
.first_bottom_item a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 985px) {
  .first_bottom_item a {
    font-size: 16px;
  }
}
.first_contact_item img {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 985px) {
  .first_contact_item img {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 985px) {
  .magic .container {
    padding: 0;
  }
}
.magic_wrapper {
  display: grid;
  grid-template-columns: 54% 1fr;
  gap: 70px;
}
@media only screen and (max-width: 985px) {
  .magic_wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.magic_content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (max-width: 985px) {
  .magic_content {
    padding: 0 15px;
    gap: 36px;
  }
}
.magic_text {
  padding: 24px 32px;
  border-radius: 4px;
  border: 1px solid #211E1E;
  background: rgba(33, 30, 30, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 985px) {
  .magic_text {
    padding: 20px 18px;
  }
}
.magic_text strong {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
}
@media only screen and (max-width: 985px) {
  .magic_text strong {
    font-size: 18px;
    line-height: 22px;
  }
}
.magic_image img {
  width: 100%;
  height: 100%;
}

.contacts {
  scroll-margin-top: 100px;
}
@media only screen and (max-width: 985px) {
  .contacts .container {
    padding: 0 32px;
  }
}
.contacts_wrapper {
  max-width: 793px;
  margin: 0 auto;
}
.contacts_content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts_form {
  margin-top: 50px;
}
@media only screen and (max-width: 985px) {
  .contacts_form {
    margin-top: 36px;
  }
}
.contacts form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 985px) {
  .contacts form {
    gap: 14px;
  }
}
.contacts_form_item:not(:has(input[type=radio])), .contacts_form_item *:not(:has(input[type=radio])) {
  display: flex;
  flex-direction: column;
}
.contacts_form_item input:not([type=submit]), .contacts_form_item * input:not([type=submit]) {
  display: flex;
  height: 58px;
  padding: 10px 14px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #211E1E;
  background-color: rgba(33, 30, 30, 0.3);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
@media only screen and (max-width: 985px) {
  .contacts_form_item input:not([type=submit]), .contacts_form_item * input:not([type=submit]) {
    height: 50px;
    padding: 10px 14px;
  }
}
.contacts_form_label {
  width: calc(100% - 28px);
  margin: 0 auto;
  margin-top: 5px;
}
@media only screen and (max-width: 985px) {
  .contacts_form_label {
    font-size: 13px;
    line-height: 17px;
  }
}
.contacts_form_label.radio_label {
  margin-bottom: 10px;
  width: 100%;
  color: var(--color-white);
  font-size: 16px;
  line-height: 21px;
}
.contacts .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 985px) {
  .contacts .wpcf7-radio {
    gap: 20px;
  }
}
.contacts .wpcf7-list-item {
  margin: 0;
}
.contacts .wpcf7-list-item label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 0;
}
.contacts .wpcf7-list-item label input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contacts .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: var(--color-red);
}
.contacts .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-50%) scale(1);
}
.contacts .wpcf7-list-item label .wpcf7-list-item-label {
  padding-left: 28px;
  color: var(--color-white);
  font-size: 16px;
  line-height: normal;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 985px) {
  .contacts .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 15px;
  }
}
.contacts .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  transition: border-color 0.3s ease;
}
.contacts .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-red);
  transition: transform 0.2s ease;
}
.contacts_form_btn {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.contacts_form_btn:hover {
  opacity: 0.8;
}
.error_404 {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
}
.error_404_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.error_404_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.error_404_title {
  color: var(--color-white);
  font-family: var(--literata-font);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 985px) {
  .error_404_title {
    font-size: 80px;
  }
}
.error_404_text {
  color: var(--color-gray);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media only screen and (max-width: 985px) {
  .error_404_text {
    font-size: 18px;
  }
}
.error_404_btn {
  min-width: 200px;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

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

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

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

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

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

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

.swiper.swiper-flip {
  overflow: visible;
}

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

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

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

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

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

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */

.grecaptcha-badge{
    display: none !important;
}