/* assets/css/reset.css */
/* Minimal reset/normalize */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: var(--root-font-size);
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-primary);
  line-height: var(--line-height);
  color: var(--color-fg);
  background: var(--color-bg);
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
button {
  /* Remove default browser appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Remove default background and borders */
  background: none;
  border: none;
  box-shadow: none;

  /* Reset padding and margin */
  padding: 0;
  margin: 0;

  /* Inherit font and color from parent */
  font: inherit;
  color: inherit;
  text-align: inherit;

  /* Set cursor to pointer for clickable indication */
  cursor: pointer;

  /* Remove default border-radius */
  border-radius: 0;

  /* Corrects inability to style clickable input types in iOS */
  /* Remove default focus outline for better custom styling control */
  outline: none;
}

/* Specific reset for Firefox focus inner border */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* assets/css/helpers.css */
.grid {
  display: grid;
  gap: var(--space-4);
}
.flex {
  display: flex;
  gap: var(--space-3);
}
.hidden-visually {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 1399.98px) {
  .container {
    max-width: 1180px;
  }
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 740px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 560px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* assets/css/tokens.css */
/* You can import tokens from library or keep a copy per site */

/* assets/css/styles.css */

body {
  font-family: var(--font-primary);
  color: var(--color-fg);
  background-color: var(--color-bg);
  font-size: var(--font-size-md);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-fg);
}

:focus-visible {
  outline: 1px solid var(--color-primary);
  outline-offset: 0px;
}

header,
footer,
section {
  padding: 100px 0 100px 0;
}

h1 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: var(--color-fg);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-fg);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-5) var(--space-5);
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: var(--font-size-md);
  font-weight: bold;
  border-radius: var(--border-radius);
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background-color: color-mix(in srgb, var(--color-primary) 80%, white);
  color: #ffffff;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-primary);
  font-weight: 700;
  font-size: calc(var(--font-size-lg) * 1.3);
  font-family: var(--font-primary);
}

.phone-link__icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--color-primary);
}

.whatsapp-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: 10px 20px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  text-align: center;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  box-shadow: var(--shadow);
  color: #ffffff;
}

.whatsapp-button__text {
  font-size: var(--font-size-md);
  text-transform: uppercase;
}

.whatsapp-button__number {
  font-size: var(--font-size-md);
  font-weight: 700;
}

.text--accent {
  color: var(--color-primary);
  font-weight: 700;
}

.form-policy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-fg);
  cursor: pointer;
  text-align: left;
}

.form-policy__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.form-policy--invalid {
  outline: 3px solid var(--color-warning, #ff9800);
  outline-offset: 2px;
  box-shadow: 0 0 0 1px rgba(25, 46, 77, 0.35);
  border-radius: var(--border-radius);
}

.form-policy__text {
  flex: 1;
}

.form-policy__link {
  color: var(--color-secondary);
  text-decoration: underline;
}

.form-policy__link:hover,
.form-policy__link:focus-visible {
  color: var(--color-secondary);
}

.form-control_invalid {
  outline: 3px solid var(--color-warning, #ff9800);
  outline-offset: 2px;
  border-radius: var(--border-radius);
}

.buttom_telegram {
  background-color: #0088cc !important;
}

.buttom_telegram:hover {
  background-color: #08a4f2 !important;
}

.buttom_whatsapp {
  background-color: #25d366 !important;
}

.buttom_whatsapp:hover {
  background-color: #18e362 !important;
}

.telegram-icon {
  vertical-align: middle;
  display: inline-block;
  height: 24px;
  width: 24px;
  background: url("../images/telegram.png") no-repeat center center;
}

.whatsapp-icon {
  vertical-align: middle;
  display: inline-block;
  height: 24px;
  width: 24px;
  background: url("../images/whatsapp.png") no-repeat center center;
}

@media (max-width: 1399.98px) {
  :root {
    --font-size-xxl: 36px;
    --font-size-xl: 30px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    --font-size-sm: 15px;
    --font-size-xs: 14px;
    --font-size-xxs: 12px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --root-font-size: 16px;

    --font-size-xxl: 30px;
    --font-size-xl: 24px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;
    --font-size-xxs: 12px;

    --line-height: 1.2;
  }
}

@media (max-width: 991.98px) {
  :root {
    --root-font-size: 16px;

    --font-size-xxl: 30px;
    --font-size-xl: 24px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;
    --font-size-xxs: 12px;

    --line-height: 1.2;
  }
}

@media (max-width: 767.98px) {
  :root {
    --root-font-size: 16px;

    --font-size-xxl: 24px;
    --font-size-xl: 24px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;
    --font-size-xxs: 12px;

    --line-height: 1.2;
  }

  .button {
    padding: 10px 5px;
  }

  .whatsapp-button {
    padding: 5px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --root-font-size: 16px;

    --font-size-xxl: 20px;
    --font-size-xl: 18px;
    --font-size-lg: 16px;
    --font-size-md: 15px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;
    --font-size-xxs: 12px;

    --line-height: 1.2;
  }

  header,
  footer,
  section {
    padding: 40px 0 20px 0;
  }
}

/* assets/css/header.css */
.header {
  padding: 10px 0 4px 0;
}

.header__container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-2);
}

.header__logo {
  max-width: 316px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 316px;
  background: url("../images/logo2.png") no-repeat left center;
  background-size: contain;
  height: 68px;
}

.logo__text {
  padding-left: 74px;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
}

.header__contacts {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: flex-end;
  text-align: right;
}

.header__cta {
  min-width: 260px;
  width: 320px;
  text-align: center;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  border: 2px #f95a5a solid;
  padding: var(--space-3);
  gap: var(--space-2);
  display: flex;
  flex-direction: column;
}

.header__contacts-text {
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  color: var(--color-fg);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.header__contacts-working-hours {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0;
  font-family: var(--font-secondary);
}

@media (max-width: 991px) {
  .header__container {
    flex-wrap: wrap;
  }

  .header__logo {
    order: 1;
  }

  .header__cta {
    order: 3;
    margin: auto;
  }

  .header__contacts {
    order: 2;
  }
}

@media (max-width: 767.98px) {
  .header__container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 5px;
    max-width: 370px;
  }

  .header__logo {
    order: 1;
  }

  .header__cta {
    width: 100%;
    min-width: 0;
    order: 2;
  }

  .header__contacts {
    order: 3;
    text-align: center;
  }

  .header__contacts .phone-link {
    font-size: 32px;
  }
}

/* assets/css/footer.css */
.footer {
  background-color: var(--color-bg-2);
  padding: 40px 0;
  color: var(--color-fg);
  color: var(--color-white);
  color: var(--color-muted);
}

.footer__policy a,
.footer__policy a:hover,
.footer__policy a:focus-visible {
  color: var(--color-white);
  text-decoration: underline;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* assets/css/form.css */
.form {
  display: grid;
  gap: var(--space-3);
}

.form__body {
  display: grid;
  gap: var(--space-3);
}

.form__field {
  position: relative;
  display: flex;
  align-items: center;
}

.form__field::before {
  content: "";
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.form__field--phone::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011-.26 11.72 11.72 0 003.68.59 1 1 0 011 1v3.61a1 1 0 01-1 1A17 17 0 013 5a1 1 0 011-1h3.61a1 1 0 011 1 11.72 11.72 0 00.59 3.68 1 1 0 01-.26 1z' fill='%23192E4D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.form__field--question::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zm2.92 1.33h-.01v-1.84l8.04-8.04 1.84 1.84-8.04 8.04zM20.71 7.04a1 1 0 000-1.41L18.37 3.29a1 1 0 00-1.41 0l-1.02 1.02 3.75 3.75z' fill='%23192E4D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.form__field--location::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 00-7 7c0 5.44 6.41 12.63 6.68 12.92a0.5 0.5 0 00.77 0C12.71 21.63 19 14.44 19 9a7 7 0 00-7-7zm0 10a3 3 0 110-6 3 3 0 010 6z' fill='%23192E4D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.form__input {
  width: 100%;
  min-height: 60px;
  padding: 15px 20px 15px 52px;
  border: 1px solid rgba(25, 46, 77, 0.18);
  border-radius: var(--border-radius);
  background-color: #ffffff;
  box-shadow: 0 24px 40px rgba(9, 38, 90, 0.18);
  font-family: var(--font-secondary);
  font-size: var(--font-size-md);
  color: var(--color-fg);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.form__input::placeholder {
  color: rgba(26, 26, 26, 0.45);
}

.form__input:focus-visible {
  outline: 3px solid rgba(25, 46, 77, 0.35);
  outline-offset: 2px;
}

.form__field--invalid .form__input {
  border-color: var(--color-secondary);
  box-shadow:
    0 0 0 1px rgba(199, 4, 4, 0.25),
    0 20px 32px rgba(199, 4, 4, 0.08);
}

.form__submit {
  width: 100%;
  min-height: 60px;
  text-align: center;
}

.form__note {
  margin: 0;
  font-size: var(--font-size-xs);
  line-height: 1.6;
  color: var(--color-fg);
  text-align: center;
}

.form--hero .form__body {
  width: 100%;
}

/* assets/css/flipclock.css */
/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc;
}

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table;
}

.flip-clock-wrapper.clearfix:after {
  clear: both;
}

.flip-clock-wrapper.clearfix {
  *zoom: 1;
}

/* Main */
.flip-clock-wrapper {
  font: normal 12px;
  -webkit-user-select: none;
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: 400px;
}

.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important;
}

.flip-clock-meridium a {
  color: #313333;
}

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}
.flip-clock-wrapper:after {
  clear: both;
}

/* Skeleton */
.flip-clock-wrapper ul {
  list-style: none;
  padding: 0;
  position: relative;
  float: left;
  margin: 3px;
  width: 36px;
  height: 45px;
  font-size: 60px;
  font-weight: bold;
  line-height: 48px;
  border-radius: 5px;
  background: #fff;
}

.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 45px;
  line-height: 45px;
  text-decoration: none !important;
}

.flip-clock-wrapper ul li:first-child {
  z-index: 2;
}

.flip-clock-wrapper ul li a {
  /*display: block;*/
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}

.flip-clock-wrapper a:hover {
  color: #fff;
}

.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden;
  outline: 1px solid transparent;
}

.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}

.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}

.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  /*  text-shadow: 0 1px 2px #000; */
  text-align: center;
  background-color: #292929;
  border-radius: 5px;
  border: 1px solid #a2a2a2;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
}

.flip-clock-wrapper ul li a div.up div.inn {
  top: 0;
}

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0;
}

.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}

/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}

.flip-clock-wrapper .flip {
  /*  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); */
}

.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}

.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 53px;
}

.flip-clock-divider:first-child {
  width: 0;
}

.flip-clock-dot {
  display: block;
  background: #fff;
  width: 0px;
  height: 0px;
  position: absolute;
  border-radius: 50%;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); */
  left: 8px;
}

.flip-clock-divider .flip-clock-label {
  position: absolute;
  top: 3.7em;
  right: -54px;
  color: #292929;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}

.flip-clock-divider.minutes .flip-clock-label {
  right: -60px;
}

.flip-clock-divider.seconds .flip-clock-label {
  right: -60px;
}

.flip-clock-dot.top {
  top: 18px;
}

.flip-clock-dot.bottom {
  bottom: 18px;
}

@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

@-moz-keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

@-o-keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

@keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }

  100% {
    -webkit-transform: rotateX(0deg);
  }
}

@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }

  100% {
    -moz-transform: rotateX(0deg);
  }
}

@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }

  100% {
    -o-transform: rotateX(0deg);
  }
}

@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }

  100% {
    -webkit-transform: rotateX(-90deg);
  }
}

@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }

  100% {
    -moz-transform: rotateX(-90deg);
  }
}

@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }

  100% {
    -o-transform: rotateX(-90deg);
  }
}

/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0.1)),
    color-stop(100%, black)
  );
  background:
    linear,
    top,
    rgba(0, 0, 0, 0.1) 0%,
    black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background:
    linear,
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    black 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0.1)),
    color-stop(100%, black)
  );
  background:
    linear,
    top,
    rgba(0, 0, 0, 0.1) 0%,
    black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background:
    linear,
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}

/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, black),
    color-stop(100%, rgba(0, 0, 0, 0.1))
  );
  background:
    linear,
    top,
    black 0%,
    rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background:
    linear,
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, black),
    color-stop(100%, rgba(0, 0, 0, 0.1))
  );
  background:
    linear,
    top,
    black 0%,
    rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background:
    linear,
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 0;
  }
}

@-moz-keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .flip-clock-wrapper {
    width: 350px;
  }
  .flip-clock-wrapper ul {
    width: 30px;
    height: 40px;
    line-height: 40px;
    margin: 3px;
  }
  .flip-clock-wrapper ul li {
    width: 30px;
    height: 40px;
    line-height: 40px;
  }
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 27px;
    line-height: 40px;
  }
  .flip-clock-dot.top {
    top: 15px;
  }
  .flip-clock-dot.bottom {
    bottom: 15px;
  }
  .flip-clock-divider .flip-clock-label {
    right: -53px;
  }
  .flip-clock-divider.minutes .flip-clock-label {
    right: -53px;
  }
  .flip-clock-divider.seconds .flip-clock-label {
    right: -53px;
  }
}

@media (max-width: 575.98px) {
  .flip-clock-wrapper {
    width: 290px;
  }
  .flip-clock-wrapper ul {
    margin: 1px;
  }
  .flip-clock-divider .flip-clock-label {
    font-size: 10px;
    right: -49px;
  }
  .flip-clock-divider.minutes .flip-clock-label {
    right: -49px;
  }
  .flip-clock-divider.seconds .flip-clock-label {
    right: -49px;
  }
  .flip-clock-dot.top {
    top: 10px;
  }
  .flip-clock-dot.bottom {
    bottom: 20px;
  }
  .flip-clock-divider {
    width: 10px;
    height: 40px;
  }
}

/* assets/css/hero.css */
.header-bg {
  background: url("../images/header-bg2.jpg") center center no-repeat;
  background-size: cover;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  z-index: 2;
}

.hero__title {
  gap: 7px;
  margin: 0;
  font-family: var(--font-secondary);
  text-align: left;
  line-height: 1.4;
}

.hero__title--font-size-bigger {
  font-size: calc(var(--font-size-xxl) * 1.2);
}

.hero__title .space-left {
  display: block;
}

.hero__subtitle,
.hero__cta {
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  text-align: left;
  font-weight: normal;
  margin-bottom: var(--space-2);
}

.hero__cta-description {
  font-size: var(--font-size-sm);
}

.hero__left-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__right-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-12) var(--space-6);
  justify-content: flex-end;
}

.hero__form {
  max-width: 510px;
  display: flex;
  flex-direction: column;
  padding: var(--space-8) 58px;
  gap: var(--space-4);
  text-align: center;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 79%,
    #052c51 68%,
    #052c51 100%
  );
  box-shadow:
    0 2px 5px rgba(3, 11, 22, 0.15),
    0 -0 15px rgba(5, 28, 51, 0.15);
  overflow: hidden;
}

.hero__form .form__note {
  color: var(--color-white);
}

.hero__form-title {
  margin: 0;
  font-size: var(--font-size-lg);
  text-align: center;
}

.hero__form-title .b {
  font-weight: bold;
}

.hero__visual {
  position: absolute;
  bottom: 0px;
  right: -185px;
  width: 60%;
  margin-bottom: 56px;
}

.timer__wrapper {
  margin-bottom: var(--space-4);
}

@media (max-width: 1199px) {
  .hero__layout {
    gap: var(--space-6);
  }
}

@media (max-width: 991px) {
  .hero__layout {
    gap: var(--space-6);
  }

  .hero__layout::after {
    top: -32px;
    right: -24px;
    bottom: -32px;
    left: -24px;
  }
}

@media (max-width: 767px) {
  .hero__layout {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
  }

  .hero__layout::after {
    top: -24px;
    right: -16px;
    bottom: -24px;
    left: -16px;
  }

  .hero__visual {
    display: none;
  }

  .hero__title {
    text-align: center;
  }

  .hero__title .space-left {
    padding: var(--space-1) 0;
  }

  .hero {
    padding-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .hero__container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__form {
    max-width: 100%;
    padding: var(--space-8) var(--space-6);
    margin: auto;
  }
}

/* assets/css/limited-offer.css */
.limited-offer {
  position: relative;
  background: url("../images/footer-bg.jpg") center/cover no-repeat;
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}

.limited-offer .text--accent {
  color: #f9525d;
}
.limited-offer__notice {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: #f9525d;
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-5);
}

.limited-offer__title {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: var(--line-height-heading);
}

.limited-offer__highlight {
  display: block;
  color: var(--color-primary);
}

.limited-offer__cta {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-normal);
  color: #f9525d;
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
  margin: var(--space-6) auto;
}

.limited-offer__form-wrapper {
  max-width: 450px;
  margin: auto;
}

.limited-offer .form-policy__text {
  color: var(--color-white);
}

.limited-offer .form-policy__link {
  color: var(--color-white);
}

@media (max-width: 991.98px) {
  .limited-offer {
    padding: 90px 0 60px;
  }

  .limited-offer__cta {
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .limited-offer {
    padding: 60px 0 50px;
  }

  .limited-offer__form-wrapper {
    padding: 0;
  }
}

/* assets/css/guarantees.css */
.guarantees {
  position: relative;
  background: url("../images/guarantees-bg.jpg") center center no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.guarantees__container {
  position: relative;
  z-index: 1;
}

.guarantees__title {
  margin: 0 auto;
  max-width: 720px;
  color: var(--color-white);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-heading);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
}

.guarantees__cards {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-16);
}

.guarantees__card {
  display: flex;
  flex-direction: column;
  max-width: 335px;
  background-color: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 0;
  padding: var(--space-6) var(--space-4);
  gap: var(--space-1);
  color: var(--color-white);
  text-transform: none;
  align-items: center;
  align-items: flex-start;
}

.guarantees__number {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  text-align: left;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.guarantees__card-title {
  margin: 0;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-text);
  text-transform: uppercase;
  padding-left: var(--space-16);
}

.guarantees__divider {
  display: block;
  width: 70px;
  height: 3px;
  margin: 12px 0 18px;
  background-color: #ffffff;
  visibility: hidden;
}

.guarantees__number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + var(--space-6));
  width: 70px;
  height: 3px;
  background-color: #ffffff;
}

.guarantees__card-description {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-text);
  padding-left: var(--space-16);
}

@media (max-width: 991.98px) {
  .guarantees {
    padding: 50px 0 70px 0;
  }

  .guarantees__cards {
    flex-direction: column;
    align-items: center;
  }

  .guarantees__card {
    max-width: 520px;
    width: 100%;
  }
  .guarantees__number::after {
    display: none;
  }
  .guarantees__divider {
    visibility: visible;
  }
}

@media (max-width: 575.98px) {
  .guarantees {
    padding: 40px 0 60px 0;
  }

  .guarantees__card {
    padding: 24px;
  }
}

/* assets/css/countries.css */
.countries {
  position: relative;
  background: url("../images/garantbg.jpg") center center no-repeat;
  background-position: 50% 25%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.countries__container {
  position: relative;
  z-index: 1;
}

.countries__title {
  margin-bottom: var(--space-24);
}

.countries__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: var(--space-4);
  justify-items: center;
}

.countries__item {
  width: 100%;
  text-align: center;
}

.countries__image {
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(8, 26, 58, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.countries__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.countries__label {
  margin-top: 10px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: none;
  color: var(--color-fg);
}

@media (max-width: 991.98px) {
  .countries {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .countries__image {
    width: 130px;
    height: 130px;
  }

  .countries__grid {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .countries__grid {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 18px 16px;
  }
}

@media (max-width: 575.98px) {
  .countries {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .countries__image {
    width: 110px;
    height: 110px;
  }

  .countries__grid {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 16px 12px;
  }
}

/* assets/css/why-us.css */
.why-us {
  position: relative;
  background: #032754 url("../images/bg_priem.jpg") center center no-repeat;
  background-size: cover;
  background-position: center;
  padding: 140px 0 120px;
  overflow: hidden;
  color: var(--color-white);
  margin-top: -56px;
}

.why-us::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-us__container {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.why-us__title {
  margin-bottom: 60px;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-16) var(--space-8);
  margin: 0 auto;
  max-width: 1140px;
}

.why-us__item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.why-us__icon-ring {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1) inset;
}

.why-us__icon-ring img {
  width: 100%;
  height: 100%;
}

.why-us__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  line-height: 22px;
  max-width: 260px;
  color: #ffffff;
}

.why-us__text span {
  display: block;
}

.why-us__item:hover,
.why-us__item:focus-within {
  transform: translateY(-6px);
}

@media (max-width: 1199.98px) {
  .why-us__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .why-us {
    padding: 100px 0 80px;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .why-us__item {
    flex-direction: column;
    text-align: center;
  }
  .why-us__text {
    align-items: center;
  }
  .why-us__icon-ring {
    width: 90px;
    height: 90px;
  }
}

/* assets/css/specialist-help.css */
.specialist-help {
  position: relative;
  padding: 120px 0 100px;
  background: url("../images/form2-bg.jpg") center center no-repeat;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
}

.specialist-help__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: center;
  margin: 0 auto;
}

.specialist-help__title {
  margin: 0;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--color-white);
}

.specialist-help__description {
  margin: 0 auto;
  max-width: 640px;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-text);
  color: rgba(255, 255, 255, 0.9);
}

.specialist-help__phone-link {
  font-size: calc(var(--font-size-lg) * 1.2);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.specialist-help__phone-link:hover,
.specialist-help__phone-link:focus-visible {
  color: var(--color-white);
}

.specialist-help__form-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.specialist-help .form-policy__text {
  color: var(--color-white);
}

.specialist-help .form-policy__link {
  color: var(--color-white);
}

@media (max-width: 767.98px) {
  .specialist-help {
    padding: 80px 0 60px;
  }

  .specialist-help__description {
    font-size: var(--font-size-md);
    padding: 0 var(--space-2);
  }

  .specialist-help__form-wrapper {
    padding: 0;
  }
}

/* assets/css/contacts-map.css */
.contacts-map {
  --contacts-map-height: 580px;
  position: relative;
  padding: 0 0 0 0;
  background-color: var(--color-bg);
}

.contacts-map__map-wrapper {
  position: relative;
  width: 100%;
  height: var(--contacts-map-height);
  background-color: var(--color-muted);
  overflow: hidden;
}

.contacts-map__map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 90% 25%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
  pointer-events: none;
}

.contacts-map__canvas {
  width: 100%;
  height: 100%;
  border: none;
}

.contacts-map__container {
  position: absolute;
  top: calc(var(--space-12) * -1);
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
  pointer-events: none;
}

.contacts-map__card {
  pointer-events: auto;
  overflow: hidden;
  background-color: #fafcfe;
}

.contacts-map__card-body {
  padding: var(--space-16) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contacts-map__card-body p {
  margin: 0;
}

.contacts-map__title {
  margin: 0;
  font-size: var(--font-size-xl);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: left;
}

.contacts-map__phone {
  display: flex;
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1.2;
}

.contacts-map__phone:hover,
.contacts-map__phone:focus-visible {
  color: var(--color-primary);
}

.contacts-map__schedule,
.contacts-map__row {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-fg);
}

.contacts-map__row-title {
  font-weight: var(--font-weight-bold);
}

.contacts-map__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.contacts-map__link {
  color: var(--color-primary);
  font-weight: 600;
}

.contacts-map__link:hover,
.contacts-map__link:focus-visible {
  color: var(--color-primary);
}

@media (max-width: 1399.98px) {
  .contacts-map {
    --contacts-map-height: 600px;
  }

  .contacts-map__card {
    width: 480px;
  }
}

@media (max-width: 1199.98px) {
  .contacts-map {
    --contacts-map-height: 560px;
  }

  .contacts-map__card {
    width: 440px;
  }

  .contacts-map__card-body {
    padding: 36px 32px 42px;
  }

  .contacts-map__phone {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .contacts-map {
    padding-bottom: 80px;
    --contacts-map-height: 480px;
  }

  .contacts-map__container {
    position: static;
    top: auto;
    transform: none;
    padding: 0 15px;
    margin-top: 24px;
    justify-content: center;
    pointer-events: auto;
  }

  .contacts-map__card {
    width: 100%;
    max-width: 100%;
  }

  .contacts-map__card-body {
    max-width: 400px;
    margin: auto;
  }
}

@media (max-width: 767.98px) {
  .contacts-map {
    --contacts-map-height: 420px;
  }

  .contacts-map__phone {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .contacts-map {
    --contacts-map-height: 360px;
  }

  .contacts-map__card-body {
    padding: 28px 24px 32px;
    max-width: 320px;
    margin: auto;
  }
}

/* assets/css/modal.css */
.modal {
  font-family: var(--font-primary);
  color: var(--color-fg);
}

.modal[aria-hidden="true"] {
  display: none;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(25, 46, 77, 0.86);
  display: flex;
  padding: 40px 20px;
  overflow-y: auto;
  z-index: 1200;
}

.modal__dialog {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 560px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px 48px 48px 48px;
  box-shadow: 0 60px 120px rgba(25, 46, 77, 0.32);
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-muted);
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.modal__close::before {
  content: "\00d7";
  font-size: 18px;
  line-height: 1;
}

.modal__close:hover,
.modal__close:focus-visible {
  border-color: var(--color-primary);
  background-color: rgba(25, 46, 77, 0.08);
}

.modal__eyebrow {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--color-secondary);
  margin: 0;
}

.modal__title {
  margin: 0;
  font-size: 36px;
  color: var(--color-secondary);
  text-align: left;
  text-transform: none;
  line-height: 1.2;
}

.modal__subtitle {
  margin: 0;
  font-size: var(--font-size-md);
  color: var(--color-fg-2);
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.modal__text {
  margin: 0;
  font-size: var(--font-size-md);
  color: var(--color-fg-2);
  line-height: 1.5;
}

.modal__link {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: underline;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.modal__button {
  min-width: 220px;
  text-transform: none;
  letter-spacing: normal;
}

.modal__button--outline {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

.modal__button--outline:hover,
.modal__button--outline:focus-visible {
  background-color: rgba(25, 46, 77, 0.08);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

.modal__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.modal__icon::before,
.modal__icon::after {
  content: "";
  position: absolute;
}

.modal__icon--success {
  background-color: var(--color-secondary);
}

.modal__icon--success::before {
  width: 26px;
  height: 14px;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(-45deg);
  border-radius: 1px;
}

.modal__icon--error {
  background-color: var(--color-primary);
}

.modal__icon--error::before,
.modal__icon--error::after {
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.modal__icon--error::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__icon--error::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__icon--warning {
  background-color: #f0ad4e;
}

.modal__icon--warning::before {
  content: "!";
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

.modal--success .modal__dialog,
.modal--error .modal__dialog,
.modal--warning .modal__dialog {
  max-width: 520px;
  padding: 48px 40px 40px;
}

.modal--success .modal__body,
.modal--error .modal__body,
.modal--warning .modal__body {
  align-items: center;
  text-align: center;
}

.modal--success .modal__content,
.modal--error .modal__content,
.modal--warning .modal__content {
  width: 100%;
}

.micromodal-slide[aria-hidden="false"] .modal__dialog {
  animation: modal-slide-in 0.35s ease;
}

.micromodal-slide[aria-hidden="true"] .modal__dialog {
  animation: modal-slide-out 0.2s ease;
}

@keyframes modal-slide-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

@media (max-width: 767.98px) {
  .modal__dialog {
    padding: 32px 20px;
  }

  .modal__title {
    font-size: 28px;
  }

  .modal__close {
    width: 36px;
    height: 36px;
  }

  .modal__actions {
    flex-direction: column;
  }

  .modal__button {
    width: 100%;
  }
}
