:root {
  --color-white: #fff;
  --color-black: #000;
  --color-title: #222121;
  --color-sub: #888;
  --color-disclamer: #7f9fa2;
  --color-accent-main: #ec6446;
  --color-accent-add: #6bb899;
  --bg-sections: #004045;
  --bg-section-lite: #f9f9f9;
  --bg: #f5f5f5;
  --border-color: #e8e8e8;
  --title-font: "Aeonik Pro", sans-serif;
  --title-weight: 500;
  --text-font: "Manrope", sans-serif;
  --text: 1.6rem/1.5;
  --big-fz: 13rem;
  --big-lh: 0.85;
  --title-fz-1: 8.8rem;
  --title-lh-1: 0.8;
  --title-fz-2: 6rem;
  --title-lh-2: 0.95;
  --title-fz-3: 3rem;
  --title-lh-3: 1.2;
  --title-fz-4: 2.2rem;
  --title-lh-4: 1.3;
  --title-fz-5: 1.8rem;
  --title-lh-5: 1.6;
  --mob-border-color: #2f3841;
  --mob-block-bg: rgba(255, 255, 255, 0.04);
}

/* -------------------------------------
 * Font face
 * ------------------------------------- */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Regular.woff2") format("woff2"), url("fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Medium.woff2") format("woff2"), url("fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-SemiBold.woff2") format("woff2"), url("fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Bold.woff2") format("woff2"), url("fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik Pro";
  src: url("fonts/Aeonik Pro Regular.woff2") format("woff2"), url("fonts/Aeonik Pro Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik Pro";
  src: url("fonts/Aeonik Pro Medium.woff2") format("woff2"), url("fonts/Aeonik Pro Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: var(--title-font);
  font: var(--text) var(--text-font), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-title);
  background-color: var(--bg-sections);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--bg-sections);
  /*color: #ff5e4b;*/
  padding: 2.4rem 0 0 0;
}

.logo {
  font-size: 1.8rem;
  text-decoration: none;
  /*color: #ff5e4b;*/
}

/* Hero */
.hero {
  background-color: var(--bg-sections);
  color: var(--color-white);
  padding: 5.2rem 0 2rem;
  position: relative;
}

.hero-title {
  font-family: var(--title-font);
  font-size: 6.4rem;
  font-weight: normal;
  margin: 5rem 0 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-title span {
  font-size: 17.7rem;
  display: block;
  line-height: 0.6;
  letter-spacing: -0.03em;
}

.hero-images {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-img-left,
.hero-img-right {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.hero-img-right {
  width: calc(100% - 300px);
  height: 700px;
}

.hero-img-map {
  width: 300px;
  height: 300px;
  object-fit: cover;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(1.2);
}

.hero-subtitle {
  font-size: 1.2rem;
  /*margin-top: 1rem;*/
}

.hero-section {
  background-color: var(--bg-sections);
  padding-bottom: 6.8rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*grid-auto-rows: 33rem;*/
  /*grid-template-rows: 331px 284px;*/
  gap: 4rem;
}
.hero-about__img-1 img,
.hero-about__img-2 img {
  height: 100%;
  object-fit: cover;
}
.hero-about__img-2 {
  /*height: 65.6rem;*/
  grid-row-end: span 2;
}
.hero-about__img-3 {
  height: 100%;
}
.image-large {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.text-block {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 3.7rem;
  padding: 0;
}

.text-block img {
  /*width: 150px;*/
  height: auto;
}

.text-block p {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: -0.04em;
  color: #ffffff;
}

/* Правая колонка: одно большое изображение */
.right-column {
  flex: 1;
  min-width: 300px;
}

.image-right {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* Payment Section */

.btn-close {
  padding: 0;
  width: 24px;
  height: 24px;
  background: none;
  position: absolute;
  right: 10px;
  top: 10px;
  margin: 0;
  border: 0;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.btn-close:after,
.btn-close:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff1450;
}

.btn-close:before {
  transform: rotate(45deg);
}

.btn-close:after {
  transform: rotate(-45deg);
}

.btn-close span {
  display: block;
}

.qr-desc,
.qr-img {
  text-align: center;
}

.qr-desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 65%;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.qr-desc._success {
  color: #5cb85c;
}

.qr-desc._error {
  color: #ff1450;
}

.tabs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs-button {
  position: relative;
  margin: 0;
  padding: 55px 50px 55px 50px;
  display: block;
  width: 100%;
  font-family: var(--title-font);
  font-style: normal;
  line-height: 28px;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 2px solid rgba(0, 0, 0, 0.05);
  background-color: transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 30px;
  color: var(--color-black);
}

.tabs-button._active {
  background-color: var(--color-accent-main);
  border: 1px solid;
  border-color: #cccccc;
  cursor: default;
  color: var(--color-white);
}

.tabs-button._active:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: -24px;
  background: var(--color-accent-main);
  z-index: 1;
  transform: translateX(-50%) rotate(45deg);
}

.tabs-icon {
  position: absolute;
  top: 50%;
  right: 32px;
  z-index: 1;
  width: 32px;
  transform: translateY(-50%);
}

.tabs-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}

.tabs-content {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.payment-content {
  padding: 70px 50px 80px;
  border: 2px solid #ff1450;
}

.payment-row {
  display: flex;
}

.payment-row,
.payment-row *,
.payment-row :after,
.payment-row :before {
  box-sizing: border-box;
}

.payment-row h3 {
  margin: 0;
  margin-bottom: 39px;
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;

  color: #222121;
}

.payment-row__form {
  position: relative;
  width: 425px;
  padding: 40px 50px;
  background: var(--bg);
  border: 1px solid #e8e8e8;
}

.payment-row__input-block {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  background-color: none;
  transition: all 0.1s linear;
}

.payment-row__input-block + .payment__error {
  margin-top: -5px;
}

.payment-row__input {
  display: block;
  width: 100%;
  min-width: 1px;
  height: 60px;
  padding: 16px 20px 16px 0;
  box-sizing: border-box;
  font-size: 16px;
  color: var(--color-black);
  border: none;
  border-bottom: 1px solid var(--color-black);
  background: none;
  outline: none;
  transition: all 0.1s linear;
}

.payment-row__input:not(:-moz-placeholder-shown) {
  padding-top: 18px;
  padding-bottom: 4px;
}

.payment-row__input:focus,
.payment-row__input:not(:placeholder-shown) {
  padding-top: 18px;
  padding-bottom: 4px;
}

.payment-row__input:focus {
  border-color: rgb(99.5, 99.5, 99.5);
}

.payment-row__input::-moz-placeholder {
  opacity: 0;
}

.payment-row__input::placeholder {
  opacity: 0;
}

.payment-row__input._error {
  border-color: #ff1450;
}

.payment-row__input._disabled {
  background-color: #f1f4f7;
  border-color: #f1f4f7;
}

.payment__error {
  font-size: 11px;
  font-weight: 600;
  color: #ff1450;
  opacity: 0.6;
}

.payment-row__input:not(:-moz-placeholder-shown) + .payment-row__input-placeholder {
  top: 8px;
  z-index: 1;
  font-size: 12px;
}

.payment-row__input:focus + .payment-row__input-placeholder,
.payment-row__input:not(:placeholder-shown) + .payment-row__input-placeholder {
  top: 8px;
  z-index: 1;
  font-size: 12px;
}

.payment-row__input-placeholder {
  position: absolute;
  z-index: -1;
  top: 20px;
  display: block;
  font-size: 16px;
  line-height: 1;
  color: var(--color-black);
  transition: all 0.15s ease-in-out;
}

.payment-row__form-submit {
  margin-top: 15px;
}

.payment-row__button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  padding: 19px 36px 19px 36px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--color-accent-main);
  box-shadow: none;
  cursor: pointer;
  transition: all 0.1s linear;
  border: none;
  border-radius: 51px;
}

.payment-row__button:hover {
  background-color: var(--color-accent-add);
  border-color: var(--color-accent-add);
}

.payment-row__button:active,
.payment-row__button:focus {
  opacity: 0.8;
  background-color: var(--color-accent-add);
  border-color: var(--bg-sections);
}
.payment-row__button:after {
  content: "";
  display: block;
  width: 8px;
  min-width: 8px;
  height: 14px;
  margin-left: 8rem;
  background: url(images/arr.svg) no-repeat 50% 50% / contain;
}

.payment-row__button:before {
  background: var(--color-accent-main);
}
.payment-row__button:before {
  content: "";
  width: 120%;
  left: -10%;
  -webkit-transform: skew(30deg);
  -ms-transform: skew(30deg);
  transform: skew(30deg);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  -o-transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1), -webkit-transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
}
.payment-row__form .form-checkbox {
  margin-top: 20px;
}

.payment-row__form .form-checkbox .checkbox {
  margin-bottom: 10px;
}

.payment-row__checkbox-wrapper {
  margin-top: 20px;
}

.payment-row__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.payment-row__checkbox input {
  display: none;
}

.payment-row__checkbox input:checked + .payment-row__checkbox-wrap:before {
  transform: scale(1);
}

.payment-row__checkbox-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-right: 15px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
}

.payment-row__checkbox-wrap:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: var(--color-accent-main);
  transform: scale(0);
  transition: all 0.1s;
}

.payment-row__checkbox-text {
  display: inline-block;
  font-size: 13px;
  font-family: var(--text-font);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--color-sub);
}

.payment-row__checkbox-text a:hover {
  text-decoration: underline;
}

.payment-row__col {
  flex: 1 0 0;
  max-width: 100%;
  padding-left: 37px;
}

.payment-row__text {
  color: var(--color-title);
}

.payment-row__text p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.payment-row__text p a {
  color: var(--color-accent-main);
  text-decoration: none;
}

.payment-row__text ol,
.payment-row__text ul {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
  list-style: none;
  color: var(--color-title);
  font-weight: 500;
}

.payment-row__text ol li,
.payment-row__text ul li {
  position: relative;
  margin-bottom: 0.6em;
}

.payment-status {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px;
  opacity: 1;
  visibility: visible;
  text-align: center;
  background-color: #f1f4f7;
  transition: all 0.25s;
}

.payment-status__ic {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.payment-status__title {
  margin-bottom: 16px;
  font-weight: 600;
}

.payment-status__txt {
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.5;
}

.notfound .title[data-v-12d4b32d] {
  margin: 0;
  margin-bottom: 20px;
  font: inherit;
  font-size: 65px;
  font-weight: 700;
  color: #ff354f;
}

.notfound .subtitle[data-v-12d4b32d] {
  margin: 0;
  margin-bottom: 20px;
  font: inherit;
  font-size: 21px;
  font-weight: 400;
  color: #151723;
}

.notfound a[data-v-12d4b32d] {
  display: inline-block;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  color: #ff354f;
}

.payment-section {
  padding: 12rem 0 10.5rem 0;
  background-color: #f9f9f9;
}

.section-title {
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 400;
  font-size: 6rem;
  line-height: 56px;
  letter-spacing: -0.04em;
  color: #222121;
  margin-bottom: 4rem;
}

.payment-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.payment-tabs {
  flex: 1;
  min-width: 200px;
}

.tab-btn {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  background-color: #ff5e4b;
  color: white;
  border-color: #ff5e4b;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #ff5e4b;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tab-btn:not(.active)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 10px solid #ccc;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tab-btn:hover {
  background-color: #f0f0f0;
}

.payment-form {
  flex: 2;
  min-width: 300px;
  background-color: #f0f0f0;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.payment-form input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.checkboxes {
  margin: 1rem 0;
}

.checkboxes label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.checkboxes input {
  margin-right: 0.5rem;
}

.btn-pay {
  background-color: #ff5e4b;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.btn-pay:hover {
  background-color: #e54d3c;
}

.payment-info {
  flex: 2;
  min-width: 300px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Support Section */
.support-section {
  /*padding: 6rem 0;*/
  position: relative;
  /*overflow: hidden;*/
  margin-bottom: 0;
  /*margin-top: 15px;*/
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-section-lite)), color-stop(50%, var(--bg-section-lite)), color-stop(50%, var(--bg-sections)), to(var(--bg-sections)));
  background: -o-linear-gradient(top, var(--bg-section-lite), var(--bg-section-lite) 50%, var(--bg-sections) 50%, var(--bg-sections));
  background: linear-gradient(180deg, var(--bg-section-lite), var(--bg-section-lite) 50%, var(--bg-sections) 50%, var(--bg-sections));
}

.support-content {
  position: relative;
  padding: 11rem 3rem 10rem 84rem;
  background-color: var(--color-accent-add);

  z-index: 1;
}

.support-img-block {
  max-width: 39%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 11rem;
}

.support-text {
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 56px;
  letter-spacing: -0.04em;
  color: var(--bg-sections);
}

.support-text span {
  color: var(--color-white);
}

/* Footer */

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer .logo img {
  width: 150px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--color-disclamer);
}

.contact-number,
.footer-emails {
  font-family: "Aeonik Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 0.5em;
  display: inline-block;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.lang-select {
  background-color: #003d43;
  color: white;
  border: 1px solid #333;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-accent-main);
}

.footer {
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-sections);
  color: var(--color-white);
  padding: 6rem 0 2rem;
}

.footer a {
  color: var(--color-white);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-accent-main);
}

.flex,
.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer .logo {
  max-width: 15rem;
}
.footer__col a.title {
  display: inline-block;
  margin-bottom: 0.1em;
}
.footer-label {
  color: rgba(255, 255, 255, 0.5);
}
.soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.soc.list {
  list-style: none;
}
.soc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.9rem;
  height: 4.9rem;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 50%;
}
.maito {
  height: 34px;
  padding: 8px 1.6rem;
  border: 1px solid var(--color-white);
  line-height: 1;
  color: var(--color-white);
}
.footer .soc li {
  margin-right: 1.5rem;
}

.footer .soc li:last-child {
  margin-right: 0;
}
.footer__col a.title {
  display: inline-block;
  margin-bottom: 0.1em;
}

.footer .logo {
  max-width: 15rem;
}
.footer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-btns .lang {
  margin-left: 2.4rem;
}
.lang {
  height: 34px;
  background-color: #0d4a4e;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.lang__trigger {
  min-width: 61px;
  height: 100%;
  padding: 1rem 3.2rem 1rem 1.2rem;
}
.lang__trigger,
.geo__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.lang__trigger::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  margin-top: -1px;
  background: url(../img/icons/chevron-down-sm.svg) no-repeat 50% 50% / contain;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.lang .list {
  background-color: var(--color-accent-main);
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.lang .list a {
  padding: 1rem 1.2rem;
  display: block;
}
.footer .soc {
  margin-top: 2rem;
}
.footer__bottom {
  margin-top: 6rem;
  padding-bottom: 7rem;
}

.footer__bottom .lang {
  margin-bottom: 1.4rem;
}
  .footer__col:last-child {
    margin-left: auto;
  }
      .footer__col {
        padding-right: 2rem;
    }
@keyframes fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Responsive Design */

@media screen and (min-width: 768px) {
  .show-md {
    display: none !important;
  }

}
@media screen and (min-width: 991px) {
  .tabs-list {
    position: relative;
    flex-basis: 30%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1024px) {
  .footer__col {
    padding-right: 2rem;
  }
  .footer__col:last-child {
    padding-right: 0;
  }

  .footer__col:nth-child(1) {
    min-width: 25rem;
  }
    .empty__col {
    min-width: 0;
  }
  .footer__col:nth-child(2) {
    min-width: 32rem;
  }

  .footer .dev {
    text-align: right;
  }
  .footer-btns {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .footer .soc {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .payment-tabs {
    display: flex;
    flex-wrap: wrap;
  }
  .payment-row__button:hover:before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .tabs-list {
    position: relative;
    flex-basis: 21%;
    box-sizing: border-box;
  }

  .tabs-content {
    flex-basis: 70%;
    display: block;
  }
  .maito:hover {
    background-color: var(--color-accent-main);
    border-color: var(--color-accent-main);
    color: var(--color-white) !important;
  }
  .soc a:hover {
    background-color: var(--color-accent-main);
    border-color: var(--color-accent-main);
  }
  .footer__bottom a:hover {
    color: var(--color-white);
  }
  .footer a:hover {
    color: var(--color-accent-main);
  }
  .footer__col:nth-child(1) {
    /*min-width: 30rem;*/
  }
  .footer__col:nth-child(2) {
    min-width: 37rem;
  }
    .policy {
    max-width: 200px;
  }
}
@media screen and (min-width: 1400px) {
  .footer__col:nth-child(2) {
    min-width: 38.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .footer__col:nth-child(1) {
    min-width: 39rem;
  }

}
@media screen and (min-width: 1920px) {
  .tabs-content {
    flex-basis: 79%;
  }
}


@media screen and (max-width: 1599px) {
  .footer .fz-36 {
    font-size: 3rem;
  }
      .support-content {
    padding: 11rem 3rem 10rem 38%;
  }
      .support-img-block {
        max-width: 42%;
        left: 0;
    }
}
@media (max-width: 1200px) {
  .hero-img-right {
    width: 100%;
    height: 500px;
  }
  .hero-img-map {
    right: 5%;
    width: 250px;
    height: 250px;
  }
  .payment-container {
    flex-direction: column;
  }
  .payment-tabs {
    order: 1;
  }
  .payment-form {
    order: 2;
  }
  .payment-info {
    order: 3;
  }
  .payment-row__col {
    padding-left: 50px;
    padding-top: 50px;
  }
  .tabs-button {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .tabs-list {
    padding-bottom: 0;
  }
    .support-img-block {
    max-width: 42%;
    left: 0;
  }
    .footer__bottom {
    padding-top: 2.5rem;
    padding-bottom: 0;
    position: relative;
    /*margin-bottom: 5rem;*/
    display: block;
  }
      .footer .dev {
        text-align: left;
    }

}
@media screen and (min-width: 620px) and (max-width: 1200px) {
        .footer .soc {
        max-width: 200px;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 30px 0px;
    }
    .footer .soc li:last-child {
    margin-right: 1.1rem;
}
}
@media screen and (max-width: 1023px) {
  .footer__row {
    /*display: block;*/
    /*padding-left: 2rem;
    padding-right: 2rem;*/
  }
  .footer__col:first-child {
    padding-right: 0;
}
  .hero {
    padding: 2rem 0 2rem;
  }
  .hero-container {
    grid-auto-rows: 12rem;
    gap: 2rem;
  }
  .footer__bottom .footer__col {
    margin-bottom: 1rem;
  }
  .policy {
    /*margin-left: 5rem;*/
  }
  .footer__bottom {
    /*margin-top: 2.4rem;*/
  }
  .footer .soc {
    margin-top: 2.4rem;
  }
  .footer .grid,
  .footer .grid-lg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2.4rem;
  }
  .footer .logo {
    display: none;
  }
  .footer .address {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .payment-row {
    display: block;
  }

  .payment-row__col {
    padding: 50px 0 0;
  }

  .payment-row__form {
    width: 100%;
    margin: 0 auto;
  }
        .support-content {
        padding: 5rem 3rem 5rem 38%;
    }
    .support-text {
    font-size: 44px;
    line-height: 44px;
}
    .footer__row:first-child .footer__col:nth-child(3) {
        margin-left: 5rem;
    }
}
@media screen and (max-width: 767px) {
  .footer .grid .fz-36 {
    font-size: 2.4rem;
  }
  .footer .grid-lg {
    display: block;
  }
  .footer-label {
    font-size: 1.3rem;
  }

  .footer__bottom::before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    z-index: 0;
    left: -14px;
    right: -14px;
    top: 0;
    background: var(--color-white);
    opacity: 0.05;
  }
  .footer .soc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .maito {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 11px;
  }
  .soc a {
    width: 4.2rem;
    height: 4.2rem;
  }
  .footer__bottom .footer-label {
    font-size: 1.2rem;
  }
  .footer .soc li {
    margin-right: 1.1rem;
  }
    .container {
    flex-direction: column;
  }
  .tabs-button._active:after {
    content: none;
  }
  .tabs-button {
    padding: 30px;
  }
  .hero-container {
    grid-template-columns: auto;
    grid-auto-rows: 16rem;
    grid-template-rows: unset;
    gap: 1.5rem 0;
  }
  .left-column,
  .right-column {
    min-width: auto;
  }

  .hero-about__img-2 {
    grid-row-end: initial;
  }
  .hero-about__img-3 {
    height: 100%;
  }
  .text-block img {
    margin: 0 auto;
  }
  .text-block p {
    max-width: 100%;
    font-size: 26px;
    line-height: 28px;
  }
  .payment-section {
    padding: 6rem 0 8.5rem 0;
  }
  .payment-row h3 {
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-main {
    font-size: 3.5rem;
  }
  .hero-images {
    flex-direction: column;
  }
  .hero-img-left,
  .hero-img-right {
    width: 100%;
    height: 300px;
  }
  .hero-img-map {
    width: 200px;
    height: 200px;
    right: 2%;
  }
  .payment-form {
    padding: 1.5rem;
  }
  .support-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 3rem 2rem 8rem;
  }
  .support-text {
    font-size: 20px;
    line-height: 1;
    text-align: right;
  }
    .support-img-block {
        max-width: 160px;
    }
  .tabs-list > li + li {
    margin-top: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-contact {
    gap: 0.5rem;
  }
  .contact-number {
    font-size: 2.2rem;
  }
  .footer-social {
    align-items: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer__row {
    /*padding-left: 1.6rem;
    padding-right: 1.6rem;*/
  }
  .footer__row:first-child .footer__col:nth-child(3) {
    margin-left: 3rem;
  }
  .payment-content {
    padding: 24px 0;
    border: none;
    border-radius: 0;
  }

  .payment-row__form {
    padding: 30px;
  }

  .payment-row__button {
    height: 51px;
  }

  .payment-row__col {
    padding-top: 25px;
  }
  .policy {
    margin-left: 0;
  }
.creator {
    margin-left: 0;
}
}
@media (max-width: 500px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-title span {
    font-size: 6rem;
  }
  .hero-main {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 4rem;
  }
  .btn-pay {
    font-size: 0.9rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}



