@charset "UTF-8";
:root {
  --text-dark: #15120e;
  --text-light: #ffffff;
  --text-accent: #0000ff;
  --text-gray: #666;
  --text-error: #ff4242;
  --background-primary: #15120e;
  --background-secondary: #0000ff;
}

@font-face {
  font-family: "Montserrat-Bold";
  font-weight: 400;
  src: url("../../assets/fonts/Montserrat-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("../../assets/fonts/Montserrat.ttf") format("truetype");
}
@font-face {
  font-family: "Aeonik Pro";
  font-weight: 500;
  src: url("../../assets/fonts/aeonikpro-medium.otf") format("opentype");
}
@font-face {
  font-family: "Aeonik Pro";
  font-weight: 700;
  src: url("../../assets/fonts/aeonikpro-bold.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box; /* Set the sizing of an element to include it's border */
}

* {
  margin: 0; /* Set the default margin to 0 */
  padding: 0; /* Set the default padding to 0 */
}

ul[role="list"],
ol[role="list"] {
  list-style: none; /* Turn off numbered and unordered list decoration */
}

html:focus-within {
  scroll-behavior: smooth; /* Make the scrolling inside of any scrollable element smooth */
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto; /* Makes link undelines look better */
}

dialog:-internal-dialog-in-top-layer::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

img,
svg,
video,
canvas {
  max-width: 100%; /* Makes it responsive */
  height: auto; /* Makes it responsive */
  vertical-align: middle; /* Makes text next to inline images look better */
  font-style: italic; /* If the images don't load it makes the alt decription look better */
  background-repeat: no-repeat;
  /* The background repeat and size are there if you want to load a picture first like a backroung image that is worse quality while the better quality image loads */
  background-size: cover;
}

input,
button,
textarea,
select {
  font: inherit; /* Makes these elements inherit fonts */
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

::-moz-selection {
  background: var(--background-secondary);
}

::selection {
  background: var(--background-secondary);
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
html {
  overflow-x: hidden;
}

body,
html {
  height: 100%;
  scroll-behavior: auto;
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-primary);
}

h1 {
  font-family: "Montserrat-Bold";
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 73px;
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 52px;
    line-height: 70px;
  }
}

h2 {
  font-family: "Montserrat-Bold";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 49px;
  letter-spacing: 1px;
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 56px;
    line-height: 76px;
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 60px;
    line-height: 81px;
  }
}

h3 {
  font-family: "Montserrat-Bold";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 36px;
    line-height: 49px;
  }
}
@media screen and (min-width: 1440px) {
  h3 {
    font-size: 46px;
    line-height: 62px;
  }
}

p {
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1440px) {
  p {
    font-size: 20px;
    line-height: 31px;
  }
}

span {
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  span {
    font-size: 24px;
    line-height: 37px;
  }
}

a {
  font-family: "Montserrat";
  text-decoration: none;
  color: inherit;
}
a:hover,
a:active,
a:focus,
a:visited {
  color: inherit;
}

h1,
h2,
h3,
h4,
ul,
p {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.leaflet-control-zoom-in::before {
  content: "+";
  font-size: 20px;
  color: var(--text-gray);
  display: flex;
  justify-content: center;
}

.leaflet-control-zoom-out::before {
  content: "-";
  font-size: 20px;
  color: var(--text-gray);
  display: flex;
  justify-content: center;
}

input[type="number"] {
  border: none;
}

button {
  border-radius: 0;
}

.page-id-416 #secondary {
  display: none;
}

ins {
  background: rgba(0, 0, 255, 0.4862745098) !important;
  text-decoration: none;
}

.header {
  margin: 0 auto;
  padding: 20px 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 1440px) {
  .header {
    padding: 30px 60px;
  }
}
.header--container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .header--container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.header__logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo-container > a > svg {
  width: 140px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .header__logo-container {
    order: 2;
    flex: 1;
  }
}
.header__menu {
  background-color: transparent;
  border: none;
  display: flex;
  gap: 16px;
  padding: 0;
}
.header__menu > p {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
@media screen and (min-width: 1440px) {
  .header__menu > p {
    color: var(--text-dark);
  }
}
.header__menu--white > p {
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  .header__contact-info {
    order: 1;
    flex: 0.75;
  }
}
@media screen and (min-width: 1440px) {
  .header__contact-info {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 28px;
  }
}
.header__contact--text {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--text-light);
}
.header__contact--text > b:hover {
  fill: var(--text-gray);
}
.header__social-icons {
  display: none;
}
@media screen and (min-width: 1440px) {
  .header__social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
  .header__social-icons__facebook {
    fill: var(--text-light);
    width: 17px;
    height: 24.5px;
  }
  .header__social-icons__facebook:hover {
    fill: var(--text-gray);
  }
  .header__social-icons__instagram {
    width: 16px;
    height: 16px;
  }
  .header__social-icons__instagram:hover {
    stroke: var(--text-gray);
  }
}

.header__city-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header__city-selector .header__city-current {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 8px;
}
.header__city-selector .header__city-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.header__city-selector .header__city-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  z-index: 1000;
  margin-top: 8px;
}
.header__city-selector .header__city-list li {
  padding: 8px 0;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 28px;
  color: var(--text-light);
}
.header__city-selector .header__city-list li:hover {
  color: var(--text-gray);
}
.header__city-selector.open .header__city-list {
  display: block;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: transparent;
  position: absolute;
  z-index: 10;
}

.marquee,
.marquee_2 {
  position: relative;
  width: 101%;
  overflow: hidden;
  background-color: var(--text-light);
}

.marquee {
  rotate: 3deg;
  top: -90px;
}
@media screen and (min-width: 768px) {
  .marquee {
    top: -30px;
  }
}

.marquee_2 {
  rotate: -3deg;
  top: -112px;
}

.marquee-text {
  display: flex;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-text h3 {
  display: inline-block;
  flex-shrink: 0;
  color: var(--text-accent);
  font-weight: 700;
  font-size: 46px;
}

.footer {
  padding: 68px 48px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 30px 70px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .footer {
    padding: 40px 140px 32px;
    max-width: 1440px;
  }
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .footer-container {
    flex-flow: wrap;
    gap: 53px;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-logo__wrapper > a > svg {
  width: 148px;
  height: 22px;
}
@media screen and (min-width: 768px) {
  .footer-logo__wrapper > a > svg {
    width: 160px;
    height: 23px;
  }
}
.footer-info__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-info__wrapper > a {
  color: var(--text-light);
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 1px;
}
.footer-info__wrapper > a:hover {
  color: var(--text-gray);
}
@media screen and (min-width: 768px) {
  .footer-info__wrapper {
    align-items: baseline;
    gap: 11px;
  }
}
@media screen and (min-width: 1440px) {
  .footer-info__wrapper {
    flex-flow: row;
    gap: 53px;
    margin-left: 80px;
  }
}
.footer-policy > a > p {
  font-size: 14px;
  line-height: 19px;
  color: var(--text-gray);
}
.footer-policy > a > p:hover {
  color: var(--text-accent);
}
@media screen and (min-width: 768px) {
  .footer-policy {
    margin-top: -70px;
  }
}
@media screen and (min-width: 1440px) {
  .footer-policy {
    order: 4;
    margin-top: -45px;
  }
}
.footer-credits > a > p:hover {
  color: var(--text-gray);
}
@media screen and (min-width: 768px) {
  .footer-credits {
    position: absolute;
    bottom: 30px;
    left: 35%;
  }
}
@media screen and (min-width: 1440px) {
  .footer-credits {
    position: relative;
    left: 0;
    bottom: 0;
  }
}

.modal {
  padding: 42px 25px 25px;
  border: none !important;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  background-color: var(--background-primary);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100vw);
  opacity: 0;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
@media screen and (min-width: 768px) {
  .modal {
    width: 50vw;
  }
}
@media screen and (min-width: 1440px) {
  .modal {
    width: 22%;
    min-width: 400px;
  }
}
@media screen and (min-width: 1800px) {
  .modal {
    width: 20vw;
  }
}
.modal {
  opacity: 0;
}
.modal.show {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .modal.show {
    transform: translateX(25vw);
  }
}
@media screen and (min-width: 1440px) {
  .modal.show {
    transform: translateX(38vw);
  }
}
@media screen and (min-width: 1800px) {
  .modal.show {
    transform: translateX(40vw);
  }
}
.modal__btn--close {
  color: var(--text-light);
  outline: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -45px;
  right: 28px;
}
@media screen and (min-width: 768px) {
  .modal__btn--close {
    font-size: 18px;
    line-height: 18px;
  }
}
.modal__svg--close {
  stroke: var(--text-light);
  width: 14px;
  height: 14px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.modal__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}
.modal-link {
  font-size: 36px;
  font-weight: 700;
}
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--text-light);
}
.modal-logo > svg {
  width: 300px;
  height: 50px;
}

.video-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-50px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}
.video-backdrop.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.video-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  fill: #ffffff;
  width: 24px;
  height: 24px;
}
.video-close-btn > svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.video-close-btn:hover > svg {
  transform: rotate(90deg);
}
.video-content {
  position: relative;
  transition: transform 0.5s ease;
}
.video-player {
  width: 375px;
  height: 230px;
}
@media screen and (min-width: 768px) {
  .video-player {
    width: 705px;
    height: 410px;
  }
}
@media screen and (min-width: 1440px) {
  .video-player {
    width: 940px;
    height: 530px;
  }
}

.contact-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: white;
  z-index: 1000;
  border: none;
  width: 100vw;
  height: 75vh;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .contact-modal {
    max-width: 540px;
    height: 700px;
  }
}
@media screen and (min-width: 1440px) {
  .contact-modal {
    max-width: 660px;
    height: 670px;
  }
}
.contact-modal-logo {
  background-color: var(--text-accent);
  text-align: center;
}
.contact-modal-logo > a > svg {
  width: 300px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .contact-modal-logo > a > svg {
    width: 420px;
    height: 214px;
  }
}
.contact-modal-wrapper {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .contact-modal-wrapper {
    padding: 40px 45px;
  }
}
.contact-modal-title {
  font-size: 28px;
  line-height: 1.23;
  color: var(--text-dark);
  text-align: center;
  text-wrap: nowrap;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .contact-modal-title {
    letter-spacing: normal;
    margin-bottom: 12px;
    font-size: 32px;
  }
}
.contact-modal-text {
  color: var(--text-dark);
  text-align: center;
  font-size: 20px;
}
.contact-modal__btn--close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.contact-modal__btn--close > svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.contact-modal__btn--close:hover > svg {
  transform: rotate(90deg);
}
.contact-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.wpcf7-form {
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form {
    gap: 30px;
  }
}

.wpcf7-text,
.wpcf7-tel {
  height: 50px;
  width: 100%;
  padding: 15px !important;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .wpcf7-text,
  .wpcf7-tel {
    height: 60px;
  }
}

.wpcf7-submit {
  color: var(--text-light) !important;
  background: var(--text-dark) !important;
  width: 100%;
  padding: 0 30px;
  font-size: 16px;
  text-transform: uppercase;
  height: 50px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .wpcf7-submit {
    height: 60px;
    padding: 0 60px;
  }
}

.wpcf7-not-valid-tip {
  font-size: 16px !important;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.backdrop.show {
  display: block;
}

.body-lock {
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 690px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero-wrapper {
    flex-direction: row;
    height: 550px;
  }
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--text-accent);
  overflow: hidden;
}
.hero > picture {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row-reverse;
    background-color: var(--background-primary);
  }
}
.hero__image {
  width: 100%;
  height: 690px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hero__image {
    width: 135%;
    height: 550px;
    -o-object-fit: fill;
    object-fit: fill;
    position: relative;
    transform: translateX(35%);
    z-index: 1;
  }
}
@media screen and (min-width: 1440px) {
  .hero__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    transform: translateX(1%);
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-content {
    position: static;
    transform: none;
    width: 100%;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (min-width: 1440px) {
  .hero-content {
    padding-left: 140px;
    align-items: center;
  }
}
.hero-title {
  position: relative;
  z-index: 5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-title {
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .hero-title {
    text-wrap: balance;
    width: 560px;
  }
}
.hero-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (min-width: 1440px) {
  .hero-button {
    margin-right: 230px;
  }
}

.button-custom {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: none;
  color: black;
  font-size: 18px;
  width: 320px;
  height: 59px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.svg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.svg-background:hover {
  color: var(--text-dark);
}

.svg-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: all 0.3s ease;
}

.button-custom:hover .svg-hover {
  top: 5%;
  left: 3%;
}

.smoke-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* Це дозволяє натискати елементи поверх диму */
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Щоб дим не блокував кліки */
  z-index: 0;
}

.about {
  background-color: var(--text-accent);
  margin: 0 auto;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 109px;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .about-container {
    flex-direction: row;
    gap: 0;
  }
}
.about-title-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 155px 40px 0px;
}
@media screen and (min-width: 768px) {
  .about-title-wrapper {
    text-align: justify;
    padding: 165px 70px 0px;
  }
}
@media screen and (min-width: 1440px) {
  .about-title-wrapper {
    padding: 165px 0px 0;
    text-align: left;
    position: absolute;
    z-index: 2;
    right: 45%;
    left: 10%;
  }
}
@media screen and (min-width: 1800px) {
  .about-title-wrapper {
    left: 20%;
  }
}
.about-quote {
  letter-spacing: 1px;
}
@media screen and (min-width: 1440px) {
  .about-quote {
    font-size: 14px;
    line-height: 22px;
  }
}
.about-title {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .about-title {
    margin-top: 23px;
  }
}
.about-text {
  font-size: 16px;
  line-height: 25px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about-text {
    font-size: 18px;
    line-height: 28px;
    margin-top: 33px;
  }
}
@media screen and (min-width: 1440px) {
  .about-text {
    margin-top: 23px;
  }
}
.about-image {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1440px) {
  .about-image {
    width: 55%;
    height: auto;
    max-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    left: 45%;
  }
}
.about-features {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 0px 40px 90px;
}
@media screen and (min-width: 768px) {
  .about-features {
    padding: 0px 70px 150px;
    margin-top: 188px;
  }
}
@media screen and (min-width: 1440px) {
  .about-features {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    flex-flow: wrap;
    padding: 0px 140px 150px;
    max-width: 1440px;
    margin: 65px auto 0;
  }
}
.about-feature {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-feature {
    flex-direction: row;
    gap: 40px;
    text-align: start;
  }
}
.about-feature__icon {
  width: 100px;
  height: 100px;
}
.about-feature__text {
  font-size: 16px;
  line-height: 25px;
}
@media screen and (min-width: 768px) {
  .about-feature__text {
    width: 386px;
    font-size: 24px;
    line-height: 37px;
  }
}
@media screen and (min-width: 1440px) {
  .about-feature__text {
    width: 379px;
  }
}
.about-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s linear forwards;
}
.about-svg-container.visible {
  opacity: 1;
}
.about-svg-container.visible .about-smile {
  animation: stamp 0.9s forwards linear;
}
.about-svg-container.visible .about-os {
  animation: stamp 1.9s forwards ease-in-out;
}
.about-smile,
.about-os {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: none;
}
.about-smile {
  bottom: -222px;
  right: -105px;
}
.about-os {
  bottom: -99px;
  right: -49px;
  width: 274px;
  height: 218px;
  rotate: -25deg;
}

@keyframes stamp {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1440px) {
  .benefits-container {
    flex-wrap: nowrap;
  }
}
.benefits-block {
  width: 100%;
  height: 530px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .benefits-block {
    height: 640px;
  }
}
@media screen and (min-width: 1440px) {
  .benefits-block {
    height: 696px;
  }
}
.benefits-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--text-light);
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .benefits-overlay {
    padding: 70px 214px 90px;
  }
}
@media screen and (min-width: 1440px) {
  .benefits-overlay {
    padding: 82px 43px;
  }
}
.benefits-title {
  text-align: center;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin-top: 40px;
}
.benefits-list li {
  position: relative;
}
.benefits-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--text-light);
}
.benefits-list li p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  margin-left: 30px;
}
@media screen and (min-width: 1440px) {
  .benefits-list li p {
    font-size: 24px;
    line-height: 37px;
  }
}

.instagram {
  padding: 0px 15px 90px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .instagram {
    padding: 0px 20px 150px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1440px) {
  .instagram {
    padding: 0px 40px 150px;
  }
}
@media screen and (min-width: 1800px) {
  .instagram {
    align-items: center;
  }
}
.instagram-title {
  text-align: left;
  width: 300px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .instagram-title {
    width: 460px;
    margin-left: 54px;
  }
}
@media screen and (min-width: 992px) {
  .instagram-title {
    margin-left: 100px;
    width: 65%;
  }
}
@media screen and (min-width: 1800px) {
  .instagram-title {
    width: 50%;
    margin-left: 0;
  }
}

.policy {
  padding: 180px 20px 60px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .policy {
    padding: 135px 84px 60px;
  }
}
@media screen and (min-width: 1440px) {
  .policy {
    padding: 135px 220px 60px;
  }
}
.policy-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 46.74px;
}
@media screen and (min-width: 768px) {
  .policy-title {
    font-size: 38px;
  }
}
@media screen and (min-width: 1440px) {
  .policy-title {
    font-size: 42px;
    text-align: center;
    line-height: 51.66px;
  }
}
.policy-container {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .policy-container {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .policy-container {
    gap: 40px;
  }
}
.policy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.policy-subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .policy-subtitle {
    font-size: 18px;
    line-height: 27.9px;
  }
}
@media screen and (min-width: 1440px) {
  .policy-subtitle {
    font-size: 20px;
    line-height: 31px;
  }
}
.policy-italic-text {
  font-size: 16px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .policy-italic-text {
    font-size: 18px;
    line-height: 27.9px;
  }
}
@media screen and (min-width: 1440px) {
  .policy-italic-text {
    font-size: 20px;
    line-height: 31px;
  }
}
.policy-text {
  font-size: 16px;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .policy-text {
    font-size: 18px;
    line-height: 27.9px;
  }
}
@media screen and (min-width: 1440px) {
  .policy-text {
    font-size: 20px;
    line-height: 31px;
  }
}
.policy ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin: 0;
}
.policy ol li {
  position: relative;
  counter-increment: item;
  padding-left: 25px;
}
.policy ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: var(--text-light);
  margin-right: 5px;
}

.why {
  padding: 155px 45px 52px;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .why {
    max-width: 1440px;
    padding: 155px 210px 54px;
  }
}
.why-container {
  display: flex;
  flex-direction: column;
}
.why-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .why-content {
    flex-direction: row-reverse;
    gap: 10px;
  }
}
.why-title {
  order: 0;
}
.why-image-wrapper {
  flex: 1;
  background-image: url("../../assets/images/bg-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .why-image-wrapper {
    align-items: center;
    background-size: auto;
  }
}
.why-image {
  height: 400px;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .why-image {
    height: 480px;
  }
}
@media screen and (min-width: 1440px) {
  .why-image {
    height: 640px;
  }
}
.why-bg {
  position: absolute;
  bottom: 0;
  -o-object-fit: fill;
  object-fit: fill;
}
.why-text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.why-title__price {
  text-transform: uppercase;
  text-align: center;
  margin-top: 83px;
}

.schedule {
  padding: 155px 35px 30px;
  background-color: var(--text-accent);
}
@media screen and (min-width: 1440px) {
  .schedule {
    padding: 134px 144px;
  }
}
.schedule-container {
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .schedule-container {
    max-width: 1440px;
    margin: 0 auto;
  }
}
.schedule-container h2 {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 36px;
  color: #ffffff;
}
.schedule-container h3 {
  font-weight: 400;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .schedule-container h3 {
    display: none;
  }
}
.schedule-item {
  display: flex;
  flex-direction: column;
  background-color: #3333ff;
  padding: 24px;
  margin-top: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule-item {
    padding: 40px;
  }
}
.schedule-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--text-light);
}
.schedule-interval {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: var(--text-light);
}
.schedule-time {
  margin-right: 10px;
}
.schedule-title__group {
  font-size: 20px;
  line-height: 31px;
}
.schedule .desktop-schedule .schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 20px;
}
.schedule .desktop-schedule .schedule-table th,
.schedule .desktop-schedule .schedule-table td {
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  position: relative;
  background-color: transparent;
  width: 190px;
}
.schedule .desktop-schedule .schedule-table th.filled::before,
.schedule .desktop-schedule .schedule-table th.empty-day::before,
.schedule .desktop-schedule .schedule-table td.filled::before,
.schedule .desktop-schedule .schedule-table td.empty-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--text-light);
}
.schedule .desktop-schedule .schedule-table th {
  font-size: 18px;
  text-wrap: balance;
}
.schedule .desktop-schedule .schedule-table td {
  font-size: 16px;
  min-width: 100px;
}
.schedule .desktop-schedule .schedule-table .filled {
  background-color: #3333ff;
}
.schedule .desktop-schedule .schedule-table .filled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--text-light);
}
.schedule .mobile-schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 1440px) {
  .schedule .mobile-schedule {
    display: none;
  }
}
.schedule .desktop-schedule {
  display: none;
}
@media screen and (min-width: 1440px) {
  .schedule .desktop-schedule {
    display: block;
  }
}
.schedule .group-schedule {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .schedule .group-schedule {
    max-width: 480px;
  }
}
.schedule .empty-day {
  background-color: #3333ff;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--text-light);
}
@media screen and (min-width: 1440px) {
  .pricing-container {
    flex-wrap: nowrap;
  }
}
.pricing-block {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .pricing-block {
    height: 640px;
  }
}
@media screen and (min-width: 1440px) {
  .pricing-block {
    height: 454px;
  }
}
.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--text-light);
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .pricing-overlay {
    padding: 70px 214px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1440px) {
  .pricing-overlay {
    padding: 82px 43px;
  }
}
.pricing-title {
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .pricing-title {
    text-wrap: nowrap;
  }
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin-top: 40px;
}
.pricing-list li {
  position: relative;
  display: flex;
  flex-flow: nowrap;
  align-items: center;
}
.pricing-text {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pricing-text {
    font-size: 24px;
    line-height: 37px;
  }
}
.pricing-price {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
}
@media screen and (min-width: 768px) {
  .pricing-price {
    font-size: 34px;
    line-height: 46px;
  }
}
@media screen and (min-width: 1440px) {
  .pricing-price {
    font-size: 46px;
    line-height: 62px;
  }
}
.pricing-lesson {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  margin-left: 12px;
}
@media screen and (min-width: 768px) {
  .pricing-lesson {
    font-size: 24px;
    line-height: 37px;
    margin-left: 15px;
  }
}
.pricing-button {
  margin-right: 0;
}
.pricing-button > a {
  color: var(--text-light);
  margin-top: 15px;
}
.pricing-button > a:hover {
  color: var(--text-light);
}
@media screen and (min-width: 768px) {
  .pricing-no-text-card {
    justify-content: center;
  }
}

.leaflet-map {
  height: 450px !important;
}

.leaflet-touch .leaflet-control-attribution {
  display: none;
}

.community {
  padding: 130px 45px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .community {
    padding: 96px 140px 186px;
    max-width: 1440px;
  }
}
.community-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .community-container {
    flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .community-container {
    gap: 100px;
  }
}
.community-text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.community-image {
  position: relative;
}
.community-image > img {
  height: 270px;
  width: auto;
  -o-object-fit: fill;
  object-fit: fill;
}
@media screen and (min-width: 768px) {
  .community-image > img {
    height: 314px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (min-width: 1440px) {
  .community-image > img {
    height: 508px;
  }
}
.community-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s linear forwards;
}
.community-svg-container.visible {
  opacity: 1;
}
.community-svg-container.visible .community-hand {
  animation: stamp 1.9s forwards linear;
}
.community-svg-container.visible .community-men {
  animation: stamp 0.9s forwards ease-in-out;
}
.community-hand,
.community-men {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: none;
}
.community-hand {
  bottom: -112px;
  right: -168px;
}
.community-men {
  bottom: -195px;
  right: -56px;
  width: 274px;
  height: 218px;
}
.community-frog {
  position: absolute;
  left: 0;
  top: 0;
  width: 155px;
  opacity: 0;
  transform: translate(0, 0) scale(1) rotate(0deg);
  animation: frog-animation 15s forwards infinite;
  animation-play-state: paused;
  z-index: 200;
}
.community.frog-visible .community-frog {
  animation-play-state: running;
}

@keyframes stamp {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes frog-animation {
  0% {
    transform: translate(0px, 0px) scale(1.4) rotate(30deg);
    opacity: 0;
  }
  3.75% {
    transform: translate(323px, 206px) scale(1) rotate(30deg);
    opacity: 1;
    animation-timing-function: ease-in;
  }
  5% {
    transform: translate(323px, 206px) scale(1) rotate(120deg);
  }
  7.5% {
    transform: translate(224px, 405px) scale(1.3) rotate(120deg);
  }
  10% {
    transform: translate(111px, 643px) scale(1) rotate(120deg);
  }
  11.25% {
    transform: translate(111px, 643px) scale(1) rotate(15deg);
  }
  13.75% {
    transform: translate(528px, 687px) scale(1.55) rotate(15deg);
  }
  16.25% {
    transform: translate(960px, 758px) scale(1) rotate(15deg);
  }
  17.5% {
    transform: translate(960px, 758px) scale(1) rotate(-45deg);
  }
  20% {
    transform: translate(1232px, 500px) scale(1.5) rotate(-45deg);
  }
  22.5% {
    transform: translate(1528px, 212px) scale(1) rotate(-45deg);
  }
  23.75% {
    transform: translate(1528px, 212px) scale(1) rotate(25deg);
  }
  30% {
    transform: translate(2108px, 591px) scale(1.55) rotate(25deg);
  }
  100% {
    transform: translate(2108px, 591px) scale(1.55) rotate(25deg);
  }
}
.video {
  padding: 114px 30px 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .video {
    padding: 164px 74px 0;
  }
}
@media screen and (min-width: 1440px) {
  .video {
    padding: 175px 140px 0;
    max-width: 1440px;
  }
}
.video-title {
  text-align: center;
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .video-title {
    font-size: 54px;
  }
}
@media screen and (min-width: 1440px) {
  .video-title {
    font-size: 60px;
  }
}
.video-image {
  background: url("../../assets/images/bg.svg");
  height: 285px;
  align-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (min-width: 768px) {
  .video-image {
    height: 426px;
  }
}
@media screen and (min-width: 1440px) {
  .video-image {
    height: 834px;
  }
}

.thanks {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 690px;
  background-color: var(--text-accent);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .thanks {
    height: 78vh;
    -o-object-fit: fill;
    object-fit: fill;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1440px) {
  .thanks {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: 88vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.thanks-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (min-width: 1440px) {
  .thanks-container {
    padding-left: 140px;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transform: none;
    left: 0;
    width: 80%;
    top: 0;
  }
}
.thanks-dojo {
  position: relative;
  top: 0;
  right: 0;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.thanks-title {
  text-transform: uppercase;
}
.thanks-black {
  position: absolute;
  bottom: -40px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .thanks-black {
    bottom: -58px;
  }
}
@media screen and (min-width: 768px) {
  .thanks-black {
    bottom: -103px;
  }
}
@media screen and (min-width: 992px) {
  .thanks-black {
    bottom: -136px;
  }
}
@media screen and (min-width: 1440px) {
  .thanks-black {
    bottom: -156px;
    width: 100vw;
    left: 0;
  }
}
@media screen and (min-width: 1800px) {
  .thanks-black {
    bottom: -256px;
  }
}
.thanks-btn {
  margin-top: 20px;
  background-color: var(--text-light);
  color: var(--text-dark);
  width: 100%;
  height: 70px;
  text-align: center;
  font-family: "Montserrat-Bold";
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  align-content: center;
}

.scroll-to-top {
  position: fixed;
  z-index: 100000;
  bottom: 50px;
  right: 50px;
  min-height: 30px;
  display: block;
  z-index: 1000;
  cursor: pointer;
}

.scroll-to-top img {
  width: 100%;
  height: auto;
}

.shop-container {
  margin: 100px 24px 100px;
}
@media screen and (min-width: 1440px) {
  .shop-container {
    margin: 200px 140px 100px;
  }
}

.products-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  max-width: 400px;
  margin: 0 auto;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}
@media screen and (min-width: 1440px) {
  .products-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1160px;
  }
}

.product {
  list-style: none;
  position: relative;
}

.product-card {
  width: 360px;
  height: 577px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .product-card {
    width: 320px;
    height: 500px;
  }
}
@media screen and (min-width: 1440px) {
  .product-card {
    width: 360px;
    height: 577px;
  }
}
.product-card__image {
  margin-bottom: 15px;
}
.product-card__image > a > img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .product-card__image > a > img {
    height: 320px;
  }
}
@media screen and (min-width: 1440px) {
  .product-card__image > a > img {
    height: 380px;
  }
}
.product-card__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.product-card-title {
  font-size: 24px;
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  margin-bottom: 15px;
}
.product-card-price {
  text-align: center;
  margin-bottom: 15px;
}
.product-card-price--regular > span > bdi {
  font-size: 16px;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-right: 10px;
}
.product-card-price--regular > span > bdi > span {
  font-size: 16px;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-right: 10px;
}
.product-card-price--normal {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
}
.product-card__link {
  margin-top: auto;
  background-color: var(--text-light);
  color: var(--text-dark);
  width: 100%;
  height: 70px;
  text-align: center;
  font-family: "Montserrat-Bold";
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  align-content: center;
}
.product-card__link > a {
  font-family: "Montserrat-Bold";
}

.onsale {
  background-color: var(--text-accent) !important;
  border-radius: 0% !important;
}

.product-categories-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  text-align: center;
  justify-content: center;
  margin-bottom: 85px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1440px) {
  .product-categories-buttons {
    flex-wrap: nowrap;
  }
}

.category-button {
  width: 150px;
  height: 70px;
  margin-right: 10px;
  padding: 10px 20px;
  background-color: var(--text-light);
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  align-content: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .category-button {
    width: 275px;
    font-size: 24px;
  }
}

.hero-catalog-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-catalog-text {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  align-items: baseline;
  position: absolute;
  bottom: 150px;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .hero-catalog-text {
    width: 83%;
    margin: auto 140px;
  }
}
.hero-catalog-text > h1 {
  width: 220px;
}
@media screen and (min-width: 768px) {
  .hero-catalog-text > h1 {
    width: 320px;
  }
}
.hero-catalog-text > p {
  width: 120px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .hero-catalog-text > p {
    width: 170px;
    margin-left: 20px;
  }
}
.hero-catalog-text > h1,
.hero-catalog-text > p {
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  .hero-catalog-text > h1,
  .hero-catalog-text > p {
    font-size: 56px;
  }
}
.hero-catalog-image {
  display: flex;
  align-self: flex-end;
}

.product_title {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .product_title {
    font-size: 56px;
  }
}
.product-description {
  margin-bottom: 20px;
}
.product-info__description > h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
.product-info__description > p {
  margin-bottom: 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #1a284d;
  border-radius: 30px;
  padding: 5px;
  max-width: 120px;
  justify-content: space-between;
}

.quantity-button {
  background: none;
  border: none;
  color: #1a284d;
  font-size: 18px;
  cursor: pointer;
}

.quantity-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.custom-product-page {
  max-width: 1200px;
  margin: 0 auto;
}

.product-header {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-sku {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.product-sku-span {
  font-size: 16px;
}

.product-options {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.product-options h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-options__variations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.additional-options label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.custom-quantity-wrapper {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.quantity-decrease,
.quantity-increase {
  display: inline-block;
  padding: 3px 10px;
  cursor: pointer;
  background-color: var(--text-gray);
  color: #333;
}

.single_add_to_cart_button {
  display: block;
  width: 100%;
  height: 70px;
  background-color: var(--background-secondary) !important;
  color: #fff;
  padding: 16px 44px !important;
  font-size: 18px;
  font-family: "Montserrat-Bold";
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.single_add_to_cart_button:hover {
  background-color: var(--text-gray);
}

.custom-quantity-price-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.qty {
  width: 60px;
  text-align: center;
  font-size: 16px;
  padding: 2px !important;
  border-radius: 0 !important;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
}

.woocommerce-variation-price {
  display: none !important;
}

.related {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.related > h2 {
  margin-bottom: 20px;
  padding-top: 30px;
}

.cart-link {
  position: fixed;
  right: 22px;
  top: 104px;
  z-index: 5;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: url("../images/static/cart.svg") #fff center center no-repeat;
  background-size: 26px;
  box-shadow: 0px 0px 15px rgba(164, 168, 180, 0.3);
  transition: 0.3s;
}

.cart-link__count {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  width: 24px;
  height: 24px;
  font-size: 10px;
  border-radius: 50%;
  background: var(--text-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cart-link__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .cart-link {
    right: 40px;
    width: 80px;
    height: 80px;
    background-size: 34px;
  }
  .cart-link__count {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
@media (min-width: 1920px) {
  .cart-link {
    right: calc(50% - 920px);
  }
}
.cart-link.higher {
  top: 22px;
}

@media (min-width: 992px) {
  .cart-link.higher {
    top: 40px;
  }
}
.cart-link.hide {
  display: none;
}

.cart-link__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .cart-link {
    right: 40px;
    width: 80px;
    height: 80px;
    background-size: 34px;
  }
}
.mini-cart-block.active {
  transform: translateX(0);
  opacity: 1;
  transition: 0.3s;
}

.mini-cart-block {
  transform: translateX(100%);
  opacity: 0;
  transition: 0.3s;
}

.quantity {
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  background: #f5f8fb;
}

.js-akita-mini-cart-plus,
.js-akita-mini-cart-minus {
  height: 38px;
  width: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  border: none;
  cursor: pointer;
  background: var(--text-gray);
  color: #001a2a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

form.cart .quantity:not(.custom-quantity) {
  display: none !important;
}

.woocommerce-product-gallery__image {
  background: var(--text-light);
  border-radius: 10px;
}

.sale-price > span {
  color: var(--text-accent);
}

.cfvsw-selected-label {
  font-size: 16px;
}

.reset_variation.woocommerce div.product form.cart .reset_variations {
  margin-left: 20px;
  font-size: 16px;
  color: var(--text-gray);
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 20px;
}

.checkout-page__title {
  color: var(--text-light);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; /* 140.625% */
  margin-bottom: 56px;
}
.checkout-page__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 992px) {
  .checkout-page__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    position: relative;
  }
}
.checkout-page__form,
.checkout-page__cart {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 4px 13px 0px rgba(76, 108, 112, 0.12);
}
@media (min-width: 1200px) {
  .checkout-page__form,
  .checkout-page__cart {
    border-radius: 20px;
  }
}
.checkout-page__form {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .checkout-page__form {
    flex: 1 1 auto;
  }
}
.checkout-page__cart {
  overflow: hidden;
}
@media (min-width: 992px) {
  .checkout-page__cart {
    width: 460px;
    flex: 0 0 auto;
  }
}
@media (min-width: 1200px) {
  .checkout-page__cart {
    width: 564px;
  }
}
.checkout-page__cart--sticky {
  color: var(--text-dark) !important;
  font-size: 16px !important;
}
.checkout-page__cart--sticky * {
  color: inherit;
  font-size: 16px;
}
@media (min-width: 992px) {
  .checkout-page__cart--sticky {
    position: sticky;
    top: 20px;
  }
}
.checkout-page__preloader {
  display: none;
  animation: fadeEffect 0.3s;
}
.checkout-page__preloader.active {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  display: block;
}

.checkout-form {
  color: var(--text-dark) !important;
  font-size: 16px !important;
}
.checkout-form * {
  color: inherit;
  font-size: 16px;
}
.checkout-form__header {
  padding: 25px 20px 15px 20px;
  border-bottom: 1px solid #bbc7d3;
  color: var(--text-dark);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
@media (min-width: 768px) {
  .checkout-form__header {
    padding: 25px 50px 15px 50px;
    font-size: 28px;
  }
}
.checkout-form__body {
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .checkout-form__body {
    padding: 50px;
  }
}
.checkout-form .form-row {
  color: var(--text-dark);
}
.checkout-form .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.checkout-form .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  padding: 20px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .checkout-form .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    padding: 20px 50px;
  }
}
@media (min-width: 1200px) {
  .checkout-form .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    border-radius: 20px;
  }
}
.checkout-form .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  background: #f9d2e2;
  color: var(--text-dark);
  color: var(--Text, #001a2a);
  font-size: 14px;
  font-style: normal;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
  margin-bottom: 30px;
}
.checkout-form .woocommerce-error {
  background-color: transparent !important;
}
.checkout-form__hidden {
  display: none;
}

.checkout-cart__block {
  border-bottom: 1px solid #bbc7d3;
}
.checkout-cart__block:last-child {
  border-bottom: none;
}
.checkout-cart__header {
  padding: 25px 20px 15px 20px;
  border-bottom: 1px solid #bbc7d3;
  color: var(--text-dark);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
@media (min-width: 768px) {
  .checkout-cart__header {
    padding: 25px 50px 15px 50px;
    font-size: 28px;
  }
}
.checkout-cart__body {
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .checkout-cart__body {
    padding: 50px;
  }
}
.checkout-cart__body--small {
  padding: 20px;
}
@media (min-width: 768px) {
  .checkout-cart__body--small {
    padding: 25px 50px;
  }
}

.mini-cart-checkout .woocommerce-mini-cart__total {
  margin-top: 40px;
}
.mini-cart-checkout .woocommerce-mini-cart__total strong {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.mini-cart-checkout .woocommerce-mini-cart__total .amount {
  color: var(--text-dark);
  font-size: 28px !important;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 114.286% */
}
.mini-cart-checkout .woocommerce-mini-cart__total .amount > bdi {
  font-size: 28px;
}
.mini-cart-checkout
  .woocommerce-mini-cart__total
  .woocommerce-Price-currencySymbol {
  color: var(--text-dark);
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 114.286% */
  margin-left: 0;
}
.mini-cart-checkout .woocommerce-mini-cart__buttons {
  display: none;
}
.mini-cart-checkout .woocommerce-mini-cart.cart_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mini-cart-checkout .woocommerce-mini-cart-item.mini_cart_item {
  position: relative;
  display: flex;
  flex-direction: row;
}
.mini-cart-checkout .woocommerce-mini-cart-item.mini_cart_item img {
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 25px;
  flex: 0 0 auto;
}
.mini-cart-checkout .woocommerce-mini-cart-item.mini_cart_item a:not([class]) {
  display: flex;
  flex-direction: row;
  color: #304481;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.mini-cart-checkout
  .woocommerce-mini-cart-item.mini_cart_item
  .remove_from_cart_button {
  display: none !important;
}
.mini-cart-checkout .item-remove-from-cart {
  padding: 0;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--text-gray) !important;
  font-size: 14px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.mini-cart-checkout .item-remove-from-cart path {
  fill: var(--text-accent);
}
.mini-cart-checkout .quantity {
  position: absolute;
  bottom: 5px;
  left: 160px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  background: #f5f8fb;
}
.mini-cart-checkout .quantity button {
  height: 38px;
  width: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  background: var(--text-gray);
  color: #001a2a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.mini-cart-checkout .quantity input.qty {
  background: transparent;
  outline: none;
  border: none;
  height: 38px;
  width: 40px;
  text-align: center;
  color: #001a2a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.mini-cart-checkout .quantity input[type="number"]::-webkit-outer-spin-button,
.mini-cart-checkout .quantity input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.mini-cart-checkout .quantity input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.mini-cart-checkout .quantity input[type="number"]:hover,
.mini-cart-checkout .quantity input[type="number"]:focus {
  -webkit-appearance: number-input;
  -moz-appearance: number-input;
  appearance: number-input;
}
.mini-cart-checkout .quantity input[type="number"]::-webkit-inner-spin-button,
.mini-cart-checkout .quantity input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.checkout-coupon {
  display: none;
}
.checkout-coupon__title {
  color: var(--text-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  margin-bottom: 8px;
}
.checkout-coupon__form form {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.checkout-coupon__input {
  flex: 1 1 auto;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--color-gray);
  background: var(--color-white-background);
  padding: 0 16px;
  color: var(--color-dark-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
}
.checkout-coupon__input::-moz-placeholder {
  color: #7685b4;
}
.checkout-coupon__input::placeholder {
  color: #7685b4;
}
.checkout-coupon__submit {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 48px;
  border-radius: 10px;
  background: var(--color-blue-second);
  color: var(--color-white-pure);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding: 0 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}
.checkout-coupon__submit:hover {
  background-color: var(--color-blue-hover);
}
.checkout-coupon__submit:disabled {
  background-color: var(--color-garay-unaviable);
  cursor: not-allowed;
}
.checkout-coupon__submit:disabled:hover {
  background-color: var(--color-garay-unaviable);
}

.checkout-terms {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.checkout-terms a {
  color: var(--color-blue-second);
  font-size: 16px !important;
  font-weight: 700;
}

.checkout-result {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout-result__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.checkout-result__row.order-total {
  margin-top: 24px;
}
.checkout-result__cell {
  color: var(--text-dark);
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 114.286% */
}
.checkout-result__cell .amount {
  color: var(--text-dark);
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 114.286% */
}
.checkout-result__cell .amount > bdi {
  font-size: 28px;
}
.checkout-result__cell .woocommerce-Price-currencySymbol {
  color: #001a2a;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 114.286% */
  margin-left: 0;
}
.checkout-result__cell:last-child {
  text-align: right;
}
.checkout-result__title {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.checkout-result #wcus-order-total {
  font-size: 28px;
  font-weight: 800;
}
.checkout-result a {
  color: var(--color-blue-second);
  transition: 0.3s;
}
.checkout-result a:hover {
  color: var(--color-blue-hover);
}

.main-checkout-btn {
  padding: 0;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 60px;
  padding: 16px 44px;
  background: var(--text-accent);
  border: 1px solid var(--text-accent);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 150% */
  transition: 0.3s;
}
.main-checkout-btn:hover {
  background: var(--text-gray);
  border: 1px solid var(--text-gray);
}

.checkout-billing #ship-to-different-address {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin: 28px 0;
}
.checkout-billing .form-row {
  padding: 0 !important;
  margin-bottom: 14px !important;
  max-width: 404px;
}
.checkout-billing .form-row label {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 10px;
}
.checkout-billing .form-row label.checkbox {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.checkout-payment .payment_methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.checkout-payment label {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.checkout-payment input[type="radio"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.checkout-payment input[type="radio"]::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #236f97;
  border-radius: 100%;
  background: #f7f7f9;
  transition: 0.1s;
}
.checkout-payment input[type="radio"]:checked:before {
  content: "";
  display: block;
  border: 1px solid #236f97;
  background: radial-gradient(circle, #236f97 38%, #e6e9f3 38%);
}
.checkout-payment .wc_payment_method {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.checkout-delivery__title {
  color: var(--text-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
}
.checkout-delivery__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.checkout-delivery__header .checkout-delivery-date {
  display: none;
}
@media (min-width: 768px) {
  .checkout-delivery__header .checkout-delivery-date {
    display: flex;
  }
}
.checkout-delivery__footer {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .checkout-delivery__footer {
    display: none;
  }
}
.checkout-delivery .woocommerce-shipping-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.checkout-delivery .woocommerce-shipping-methods li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.checkout-delivery label {
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.checkout-delivery input[type="radio"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.checkout-delivery input[type="radio"]::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #236f97;
  border-radius: 100%;
  background: #f7f7f9;
  transition: 0.1s;
}
.checkout-delivery input[type="radio"]:checked:before {
  content: "";
  display: block;
  border: 1px solid #236f97;
  background: radial-gradient(circle, #236f97 38%, #e6e9f3 38%);
}
.checkout-delivery #wcus_np_billing_fields {
  margin-top: 28px;
}
.checkout-delivery #wcus_np_billing_fields h3 {
  display: none !important;
}

.checkout-delivery-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #304481;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.blockUI.blockOverlay {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(4px);
}
.blockUI.blockOverlay::before {
  display: none !important;
}

.checkout-small-text {
  color: #3a4459;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.calendar-block {
  pointer-events: all;
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.calendar-block__header {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.calendar-block__title {
  color: #3a4459;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 10px 0;
  padding: 0;
}
.calendar-block__notice {
  color: #3a4459;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.calendar-block__message {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  color: #a00;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: none;
}
.calendar-block__message.active {
  display: block;
  animation: fadeEffect 0.1s;
}
.calendar-block #calendar {
  pointer-events: all;
  align-self: stretch;
  width: 100%;
}

.wc-reset-input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--color-gray);
  background: var(--color-white-pure);
  height: 58px;
  padding: 0 20px;
  color: var(--color-dark-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
}
.wc-reset-input:focus {
  border: 1px solid var(--color-blue-hover);
}

.wc-reset-textarea {
  width: 100%;
  height: 58px;
  padding: 20px;
  color: var(--color-dark-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
  height: 180px !important;
  resize: none;
}
.wc-reset-textarea:focus {
  border: 1px solid var(--color-blue-hover);
}

abbr[title] {
  text-decoration: none !important;
}

.address-field {
  display: none;
}

.screen-reader-text {
  color: var(--text-accent);
}

.section-empty-page {
  padding: 131px 0 120px 0;
}
@media screen and (min-width: 768px) {
  .section-empty-page {
    padding: 141px 0 120px 0;
  }
}
@media screen and (min-width: 1440px) {
  .section-empty-page {
    padding: 166px 140px 120px;
  }
}

@keyframes fights-slideIn {
  from {
    opacity: 0;
    transform: translateY(calc(10 / 1440 * 100vw));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fights-flash {
  0%,
  100% {
    color: #0001d8;
  }
  50% {
    color: #ff0040;
  }
}
@keyframes fights-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.fights {
  min-height: 100vh;
  background: #f3f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(70 / 1440 * 100vw) calc(20 / 1440 * 100vw);
  font-family: "Aeonik Pro", sans-serif !important;
}
.fights span {
  font-family: "Aeonik Pro", sans-serif !important;
}
.fights__container {
  display: flex;
  gap: calc(10 / 1440 * 100vw);
  width: 100%;
}
.fights__left {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1440 * 100vw);
  width: 50%;
}
.fights__right {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1440 * 100vw);
  width: 50%;
}
.fights__card {
  border-radius: calc(12 / 1440 * 100vw);
  background: linear-gradient(138deg, #0725e6 0%, #051094 100%);
  box-shadow: 0 calc(4 / 1440 * 100vw) calc(20 / 1440 * 100vw) 0
    rgba(0, 0, 0, 0.02);
  padding: calc(24 / 1440 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: calc(70 / 1440 * 100vw);
  position: relative;
  overflow: hidden;
}
.fights__card-top,
.fights__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.fights__card-bottom {
  align-items: flex-end;
}
.fights__kanji > svg {
  width: calc(157 / 1440 * 100vw);
  height: calc(49 / 1440 * 100vw);
}
.fights__number-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fights__number {
  animation: fights-slideIn 0.25s ease-in-out;
  color: #fff;
  text-align: center;
  font-size: calc(300 / 1440 * 100vw);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.fights__number.is-animating {
  animation: fights-slideIn 0.25s ease-in-out;
}
.fights__info-tag {
  display: flex;
  align-items: center;
  gap: calc(8 / 1440 * 100vw);
}
.fights__info-tag > i {
  padding: calc(10 / 1440 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 245, 249, 0.2);
  border-radius: calc(12 / 1440 * 100vw);
}
.fights__info-tag > i > svg {
  width: calc(24 / 1440 * 100vw);
  height: calc(24 / 1440 * 100vw);
  stroke-width: calc(2 / 1440 * 100vw);
  stroke: #fff;
}
.fights__info-tag > span {
  color: #fff;
  font-size: calc(21 / 1440 * 100vw);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.fights__info-tag--light {
  color: #fff;
}
.fights__info-tag--light > i {
  padding: calc(10 / 1440 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff3ff;
  border-radius: calc(12 / 1440 * 100vw);
}
.fights__info-tag--light > i > svg {
  width: calc(24 / 1440 * 100vw);
  height: calc(24 / 1440 * 100vw);
  stroke-width: 2px;
  stroke: #0001d8;
}
.fights__info-tag--light > span {
  color: #0001d8;
}
.fights__tatami {
  display: flex;
  gap: calc(8 / 1440 * 100vw);
}
.fights__pagination {
  border-radius: calc(12 / 1440 * 100vw);
  background: linear-gradient(138deg, #0725e6 0%, #051094 100%);
  box-shadow: 0 calc(4 / 1440 * 100vw) calc(20 / 1440 * 100vw) 0
    rgba(0, 0, 0, 0.02);
  padding: calc(26 / 1440 * 100vw) calc(24 / 1440 * 100vw);
  display: flex;
  gap: calc(8 / 1440 * 100vw);
  align-items: center;
}
.fights__border-btn {
  display: inline-flex;
  align-items: stretch;
  height: calc(45 / 1440 * 100vw);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.fights__border-btn.is-active > svg {
  fill: #fff;
}
.fights__border-btn.is-active > span {
  background-color: #fff;
  height: calc(44.5 / 1440 * 100vw);
}
.fights__border-btn.is-active > span > span {
  color: #00f;
}
.fights__border-btn:hover > svg {
  fill: #fff;
}
.fights__border-btn:hover > span {
  background-color: #fff;
  height: calc(44.5 / 1440 * 100vw);
}
.fights__border-btn:hover > span > span {
  color: #00f;
}
.fights__border-btn:hover > span > span > svg {
  stroke: #00f;
}
.fights__border-btn > svg path,
.fights__border-btn > svg line,
.fights__border-btn > span > svg path,
.fights__border-btn > span > svg line {
  stroke: #fff;
  stroke-width: calc(1.5 / 1440 * 100vw);
  transition: all 0.5s ease;
  vector-effect: non-scaling-stroke;
}
.fights__border-btn .fights__nav-side {
  display: block;
  height: 100%;
  transition: all 0.5s ease;
}
.fights__border-btn .fights__nav-center {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 calc(20 / 1440 * 100vw);
  margin-inline: calc(-2 / 1440 * 100vw);
}
.fights__border-btn .fights__nav-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.fights__border-btn .fights__nav-text {
  position: relative;
  z-index: 1;
  color: #fff;
  white-space: nowrap;
  transition: all 0.5s ease;
  text-align: center;
  font-size: calc(21 / 1440 * 100vw);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: calc(8 / 1440 * 100vw);
}
.fights__border-btn .fights__nav-text > svg {
  width: calc(20 / 1440 * 100vw);
  height: calc(20 / 1440 * 100vw);
  stroke: #fff;
  stroke-width: 2px;
  transition: all 0.5s ease;
}
.fights__border-btn-light > svg path,
.fights__border-btn-light > svg line,
.fights__border-btn-light > span > svg path,
.fights__border-btn-light > span > svg line {
  stroke: #0001d8;
}
.fights__border-btn-light .fights__nav-text {
  color: #0001d8;
}
.fights__border-btn-light .fights__nav-text > svg {
  stroke: #0001d8;
}
.fights__border-btn-light:hover > svg path,
.fights__border-btn-light:hover > svg line,
.fights__border-btn-light:hover > span > svg path,
.fights__border-btn-light:hover > span > svg line {
  stroke: #0001d8;
}
.fights__border-btn-light:hover > svg {
  fill: #0001d8;
}
.fights__border-btn-light:hover > span {
  background-color: #0001d8;
  height: calc(44.5 / 1440 * 100vw);
}
.fights__border-btn-light:hover > span > span {
  color: #fff;
}
.fights__border-btn-light:hover > span > span > svg {
  stroke: #fff;
}
.fights__border-btn-light.is-active > svg path,
.fights__border-btn-light.is-active > svg line,
.fights__border-btn-light.is-active > span > svg path,
.fights__border-btn-light.is-active > span > svg line {
  stroke: #0001d8;
}
.fights__border-btn-light.is-active > svg {
  fill: #0001d8;
}
.fights__border-btn-light.is-active > span {
  background-color: #0001d8;
  height: calc(44.5 / 1440 * 100vw);
}
.fights__border-btn-light.is-active > span > span {
  color: #fff;
}
.fights__border-btn-light.is-active > span > span > svg {
  stroke: #fff;
}
.fights__reset-btn {
  margin-left: auto;
}
.fights__timer {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1440 * 100vw);
  padding: calc(24 / 1440 * 100vw);
  border-radius: calc(12 / 1440 * 100vw);
  background: #fff;
  box-shadow: 0 calc(4 / 1440 * 100vw) calc(20 / 1440 * 100vw) 0
    rgba(0, 0, 0, 0.02);
}
.fights__timer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fights__logo > svg {
  width: calc(140 / 1440 * 100vw);
  height: calc(20 / 1440 * 100vw);
  fill: #0001d8;
}
.fights__timer-display {
  transition: all 0.5s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #0001d8;
  text-align: center;
  font-size: calc(210 / 1440 * 100vw);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: calc(-4.2 / 1440 * 100vw);
}
.fights__timer-display.is-finished {
  animation: fights-flash 1s ease-in-out 3;
}
.fights__timer-controls {
  display: flex;
  gap: calc(12 / 1440 * 100vw);
  justify-content: space-between;
}
.fights__presets {
  display: flex;
  gap: calc(10 / 1440 * 100vw);
}
.fights__presets > button {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  height: calc(175 / 1440 * 100vw);
  padding: calc(24 / 1440 * 100vw);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: calc(8 / 1440 * 100vw);
  background: #fff;
  transition: all 0.5s ease;
  box-shadow: 0 calc(4 / 1440 * 100vw) calc(20 / 1440 * 100vw) 0
    rgba(0, 0, 0, 0.02);
}
.fights__presets > button > span {
  color: #0001d8;
  transition: all 0.5s ease;
}
.fights__presets > button > span:first-child {
  font-size: calc(16 / 1440 * 100vw);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.fights__presets > button > span:last-child {
  font-size: calc(42 / 1440 * 100vw);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.fights__presets > button:hover {
  background: #00f;
}
.fights__presets > button:hover > span {
  color: #fff;
}
.fights__presets > button.is-active {
  background: #0001d8;
}
.fights__presets > button.is-active > span {
  color: #fff;
}
.fights__sound {
  border-radius: calc(12 / 1440 * 100vw);
  background: #fff;
  padding: calc(26 / 1440 * 100vw) calc(24 / 1440 * 100vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 calc(2 / 1440 * 100vw) calc(12 / 1440 * 100vw)
    rgba(0, 0, 40, 0.06);
}
.fights__sound > div:last-child {
  display: flex;
  gap: calc(10 / 1440 * 100vw);
} /*# sourceMappingURL=index.css.map */
