@import url("https://fonts.googleapis.com/css2?family=Nata+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("../scss/mobile.scss");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Nata Sans;
}

body,
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-moz-selection {
  background: #A71A1C;
  color: #FFF;
}

::selection {
  background: #A71A1C;
  color: #FFF;
}

section {
  scroll-margin-top: 90px;
}

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

.navbar {
  padding: 5px 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar.navbar_scroll {
  position: fixed;
  background: #FFF;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar.navbar_scroll .navbar__lang_dropdown a {
  border: 0 !important;
}

.navbar.navbar_scroll a {
  color: #0F0F10;
}

.navbar.navbar_scroll .navbar__lang a {
  background: #A71A1C;
  color: #FFF;
}

.navbar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}

.navbar__logo {
  font-size: 0;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 32px;
  margin-left: auto;
}

.navbar__menu a {
  text-decoration: none;
  color: #FFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar__menu a:hover {
  color: #A71A1C;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar__lang {
  position: relative;
  margin-left: 20px;
}

.navbar__lang .navbar__lang_current {
  background: #FFF;
}

.navbar__lang .navbar__lang_current a {
  padding: 8px 19px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-weight: 600;
  text-decoration: none;
  color: #A71A1C;
}

.navbar__lang .navbar__lang_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar__lang .navbar__lang_dropdown a {
  border: 2px solid #FFF;
  background: transparent;
  padding: 8px 19px 11px;
  text-decoration: none;
  color: #FFF;
  font-weight: 600;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar__lang .navbar__lang_dropdown a:hover {
  background: #FFF;
  color: #A71A1C;
}

.navbar__lang:hover .navbar__lang_dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(7.62%, rgba(0, 0, 0, 0.6)), color-stop(29.17%, rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, left bottom, color-stop(-31.49%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 7.62%, rgba(0, 0, 0, 0) 29.17%), linear-gradient(180deg, rgba(0, 0, 0, 0) -31.49%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 9;
}

.header img {
  width: 130%;
  height: 140%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  top: 0;
}

.header__body {
  z-index: 9;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 45vh;
  gap: 40px;
}

.header__body h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  color: #FFFFFF;
}

.header__body p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

.header__body a {
  text-decoration: none;
  color: #FFF;
  padding: 16px 20px;
  border: 2px solid #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__body a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-color: #A71A1C;
}

.about {
  padding: 40px 0;
}

.about__body {
  padding: 10px 0;
  padding-left: 40px;
  position: relative;
}

.about__body::before {
  content: "";
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  background: #A71A1C;
  position: absolute;
}

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.about__body h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #0F0F10;
}

.about__body p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
}

.services {
  padding: 50px 0 80px;
}

.services_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.services__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.services__title h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
}

.slider__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider__buttons p {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: #FFF;
  background: #A71A1C;
  border: 1px solid #A71A1C;
  border-radius: 100%;
}

.swiper-button-disabled {
  background: transparent !important;
  border-color: #D6D6D6 !important;
}

.swiper-button-disabled i {
  color: #D6D6D6 !important;
}

.services__body {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.services__slide {
  min-width: 33%;
  max-width: 33%;
}

.services__item {
  width: 100%;
  position: relative;
  font-size: 0;
  overflow: hidden;
}

.services__item img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
}

.services__item:hover img {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-filter: brightness(50%) blur(10px);
  filter: brightness(50%) blur(10px);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.services__item:hover p {
  opacity: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}

.services__item_text {
  position: absolute;
  left: 5%;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 90%;
}

.services__item_text b {
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.services__item_text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.services__tip {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F1F1F1;
}

.services__tip_left p {
  position: relative;
  padding: 15px;
  padding-left: 20px;
}

.services__tip_left p::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #A71A1C;
  position: absolute;
  left: 0;
  top: 0;
}

.services__tip_right a {
  text-decoration: none;
  color: #FFF;
  padding: 16px 20px;
  background: #A71A1C;
  font-weight: 600;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #A71A1C;
}

.services__tip_right a:hover {
  color: #A71A1C;
  border-color: #A71A1C;
  background: transparent;
}

.why {
  padding: 50px 0;
  background: #F1F1F1;
}

.why__title {
  padding: 40px 0;
}

.why__title h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
}

.why__body {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.why__item {
  padding: 116px 32px 32px;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: calc(50% - 10px);
  flex-basis: calc(50% - 10px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline:2px solid transparent;
}

.why__item:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.011);
  transform: scale(1.011);
  outline: 2px solid #A71A1C;
}

.why__item b {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  color: #000000;
}

.why__item p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}

.why__item:nth-child(1) {
  background-image: url("../img/why_1.webp");
}

.why__item:nth-child(2) {
  background-image: url("../img/why_2.webp");
}

.why__item:nth-child(3) {
  background-image: url("../img/why_3.webp");
}

.why__item:nth-child(4) {
  background-image: url("../img/why_4.webp");
}

.founder {
  padding: 60px 0;
  background: #FFF;
}

.founder__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.founder__left {
  width: 50%;
  font-size: 0;
}

.founder__left img {
  width: 100%;
  height: 660px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.founder__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background: #F1F1F1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 32px;
}

.founder__right span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #A71A1C;
}

.founder__right h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  color: #0F0F10;
}

.founder__right ul {
  margin-top: 30px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.founder__right ul li {
  vertical-align: middle;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #000000;
}

.founder__right ul li b {
  font-weight: 700;
}

.founder__right ul li::marker {
  color: #A71A1C;
  vertical-align: middle;
}

.founder__right p {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #000000;
  margin-top: 20px;
}

.founder__right p b {
  font-weight: 700;
}

.fav {
  padding: 60px 0;
  background-color: #F1F1F1;
}

.fav_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.fav__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fav__title h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
}

.fav__body {
  position: relative;
  overflow: hidden;
}

.fav__slide {
  min-width: 50%;
  max-width: 50%;
}

.fav__item {
  width: 100%;
  font-size: 0;
  position: relative;
}

.fav__item img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}

.fav__item_text {
  font-size: 16px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  background: #FFF;
  max-height: 160px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  bottom: 0;
  overflow: hidden;
}

.fav__item_text b {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #0F0F10;
}

.fav__item_text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}

.faq {
  padding: 60px 0;
}

.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.faq__title h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
}

.faq__title p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}

.faq__title p b {
  font-weight: 600;
}

.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #F1F1F1;
  overflow: hidden;
}

.faq__item button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 28px;
  background: transparent;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  outline: none;
  cursor: pointer;
}

.faq__item button b {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  text-align: left;
  line-height: 120%;
  color: #0F0F10;
}

.faq__item button i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #A71A1C;
  font-size: 20px;
}

.faq__item p {
  height: 0;
  overflow: hidden;
  padding: 0 28px;
  -webkit-transition: height 0.4s ease, padding 0.3s ease;
  transition: height 0.4s ease, padding 0.3s ease;
  line-height: 140%;
}

.faq__active p {
  margin-bottom: 20px;
  max-height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 28px 20px;
}

.form {
  padding: 40px 0;
  background: #F1F1F1;
}

.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form__title {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.form__title h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #000000;
}

.form__title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000000;
}

.form__body {
  width: 65%;
}

.form__body form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  text-align: center;
}

.form__row p {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #000000;
}

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

.form__col input {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  font-size: 16px;
  border: 1px solid #000;
  outline: none;
  background: transparent;
}

.form__col input::-webkit-input-placeholder {
  color: #000000;
}

.form__col input::-moz-placeholder {
  color: #000000;
}

.form__col input:-ms-input-placeholder {
  color: #000000;
}

.form__col input::-ms-input-placeholder {
  color: #000000;
}

.form__col input::placeholder {
  color: #000000;
}

.form__col button[type=submit] {
  color: #FFF;
  background: #A71A1C;
  border-color: #A71A1C;
  cursor: pointer;
  width: 100%;
}

.footer {
  padding: 80px 0;
  background: #0F0F10;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__left a {
  width: 219px;
}

.footer__left a img {
  width: 100%;
}

.footer__left p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer__right p {
  color: #FFF;
}

.footer__right_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.footer__right_top a {
  text-decoration: none;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1px);
}

.modal__dialog {
  position: relative;
  width: min(640px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 26px 28px 22px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 34px;
}

.modal__title {
  margin: 6px 0 8px;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #000000;
}

.modal__subtitle {
  margin: 0 0 28px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #000000;
}

.modal__form {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.modal__input {
  height: 44px;
  border: 1px solid #2b2b2b;
  border-radius: 2px;
  padding: 0 14px;
  outline: none;
  font-size: 16px;
  text-align: center;
}

.modal__input::-webkit-input-placeholder {
  color: #000;
}

.modal__input::-moz-placeholder {
  color: #000;
}

.modal__input:-ms-input-placeholder {
  color: #000;
}

.modal__input::-ms-input-placeholder {
  color: #000;
}

.modal__input::placeholder {
  color: #000;
}

.modal__input:focus {
  border-color: #A71A1C;
}

.modal__submit {
  height: 44px;
  border: 0;
  border-radius: 2px;
  background: #A71A1C;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  font-size: 16px;
}

.modal__footer {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.2;
}

html.modal-lock {
  overflow: hidden;
}

.modal__input:user-invalid {
  border: 1px solid #e53935;
}

.modal__input:focus:user-invalid {
  outline: none;
  border: 1px solid #e53935;
}

.form-error {
  border: 1px solid #e53935 !important;
}

.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input:focus{
	border:1px solid #A71A1C !important;
}