@import "/templates/pqd/css/reset.css";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {

  --color-white: #FFFFFF;

  /* Темно-синий, основной текст и фон */
  --color-dark-blue: #0B0F19;

  /* Мятный, основной акцент (кнопки) */
  --color-mint: #60D49A;

  /* Светло-голубой, второстепенный акцент */
  --color-light-blue: #9EB9FF;
  --color-light-blue-hover: #81A4FF;


  /* Розовый, креативный акцент */
  --color-pink: #FF94FA;

  /* Желтый, яркое выделение */
  --color-yellow: #F9FF59;

  /* Темный мятный, заголовки */
  --color-dark-mint: #2CA267;

  /* Светло-голубой, альтернативный фон */
  --color-light-bg: #f7f9ff;

  /* placeholder */
  --color-placeholder: rgba(11, 15, 25, .5);

  /* Цвет ссылок */
  --color-link: #3B5CDB;


  --color-border: #bfc6d6;

  --font-title: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-text: 'Inter', Arial, Helvetica, sans-serif;

  --radius-medium: 10px;
  --radius-default: 8px;
  --radius-small: 4px;
  --radius-circle: 50%;




  /* --color-body: #565973;
  --color-blue-accent: #2C8F63;
  --color-bg: #F6FCFA;
  --color-link: #2C8F63;
  --color-light: #f3f6ff;
  --color-dark: #0b0f19;
  --color-green: #22c55e;

  --color-dark-blue: #6366f1;
  --color-dark-blue-hover: #4044ee; */


}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-dark-blue);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.h1 span,
.h2 span,
.h3 span,
.h4 span,
.h5 span,
.h6 span {
  color: var(--color-dark-mint);
}

h1,
.h1 {
  font-size: 46px;
  font-weight: 725;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 40px;
  line-height: 1.2;
}

b,
strong {
  font-weight: 700;
}

/*   placeholder   */

::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
  transition: opacity 0.3s ease;
}

::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
  transition: opacity 0.3s ease;
}

:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
  transition: opacity 0.3s ease;
}

:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
  transition: opacity 0.3s ease;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

svg:not(:root) {
  overflow: hidden;
}

.icon {
  display: inline-block;
  -webkit-transition: fill .35s, transform .35s, filter .35s;
  -o-transition: fill .35s, transform .35s, filter .35s;
  transition: fill .35s, transform .35s, filter .35s;
}

:focus {
  outline: none;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-dark-blue);
  background: var(--color-white);
}

input,
textarea {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
}

button {
  font-family: var(--font-text);
  border: none;
  cursor: pointer;
}

section {
  margin: 120px 0;
}

.inner {
  padding: 120px 0;
}


.container {
  position: relative;
  width: 100%;
  max-width: 1256px;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width: 1279px) {

  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  .container {
    max-width: 960px;
  }

  section {
    margin: 90px 0;
  }

  .inner {
    padding: 90px 0;
  }

}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 767px) {

  .container {
    max-width: 540px;
  }

  h1,
  .h1 {
    font-size: 33px;
  }

  h2,
  .h2 {
    font-size: 27px;
  }

  section {
    margin: 70px 0;
  }

  .inner {
    padding: 70px 0;
  }

}

@media (max-width: 480px) {

  .container {
    max-width: 100%;
  }

}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 17px;
  font-weight: 550;
  padding: 0 25px;
  text-decoration: none;
  transition: background-color .25s, color .25s, transform .25s ease;
  border-radius: 10px;
}

.btn--primary {
  background-color: var(--color-mint);
  color: var(--color-dark-blue);
}

.btn--primary:hover {
  background-color: #34BD78;
  transform: translateY(-3px);
}


.btn--secondary {
  color: var(--color-dark-blue);
  background-color: var(--color-light-blue);
}

.btn--secondary:hover {
  background-color: var(--color-light-blue-hover);
}

.btn--secondary_outline {
  border: 1px solid var(--color-light-blue);
  color: var(--color-dark-blue);
}

.btn--secondary_outline:hover {
  background-color: var(--color-light-blue);
}

.btn--secondary_outline_dark {
  border: 1px solid var(--color-light-blue);
  color: var(--color-light-blue);
}

.btn--secondary_outline_dark:hover {
  color: var(--color-dark-blue);
  background-color: var(--color-light-blue);
}


/* .btn-outline-primary {
  border: 1px solid var(--color-dark-blue);
  color: var(--color-dark-blue);
  transition: background-color .3s, color .3s;
}

.btn-outline-primary:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
} */

.btn--size_l {
  font-size: 18px;
  font-weight: 550;
  height: 56px;
  padding: 0 35px;
  border-radius: 12px;
}

.btn--right_arrow i {
  font-size: 20px;
  margin: 0 0 0 10px;
}

.btn--right_arrow i::before {
  margin: 0;
}

@media (min-width: 1280px) {
  .btn {
    font-size: 16px;
    font-weight: 550;
  }

  .btn--size_l {
    font-size: 18px;
  }
}

/*   header   */

.header {
  position: relative;
  z-index: 99;
  padding: 15px 0;
  background-color: var(--color-light-bg);
}

.header__content {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 50px;
  overflow: hidden;
  margin-right: auto;
}

.header__logo-link {
  display: block;
  height: 50px;
}

.header__logo-image {
  display: block;
  width: 145px;
  max-width: 145px;
  height: 50px;
}

.header__language {
  margin: 0 20px;
}

.header__language-link {
  display: flex;
  align-items: center;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark-blue);
  letter-spacing: -0.01em;
  transition: color .25s;
}

.header__language-link::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-color: currentColor;
  --mask-url: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.332 15.948C23.764 14.71 24 13.382 24 12a11.948 11.948 0 0 0-.706-4.056C21.627 3.317 17.194 0 12 0 6.806 0 2.373 3.317.706 7.944A11.948 11.948 0 0 0 0 12a11.948 11.948 0 0 0 .706 4.056C2.373 20.683 6.806 24 12 24c5.194 0 9.627-3.317 11.294-7.944a.864.864 0 0 0 .038-.108ZM12 22.28c-.457 0-1.194-.827-1.81-2.675a18.842 18.842 0 0 1-.708-3.032h5.036a18.85 18.85 0 0 1-.708 3.032c-.616 1.848-1.353 2.675-1.81 2.675Zm-2.727-7.427A31.87 31.87 0 0 1 9.147 12c0-.98.043-1.936.126-2.853h5.454c.082.917.126 1.874.126 2.853 0 .98-.044 1.936-.126 2.853H9.273ZM1.72 12c0-.99.141-1.947.403-2.853h5.425a33.482 33.482 0 0 0 0 5.706H2.123A10.25 10.25 0 0 1 1.72 12ZM12 1.72c.457 0 1.194.827 1.81 2.675.297.892.535 1.917.708 3.031H9.481c.174-1.115.412-2.14.71-3.031C10.805 2.547 11.542 1.72 12 1.72Zm4.452 7.427h5.424c.262.906.403 1.863.403 2.853 0 .99-.14 1.947-.403 2.853h-5.424a33.477 33.477 0 0 0 0-5.706Zm4.752-1.72h-4.95c-.305-2.11-.83-4.003-1.567-5.35 2.855.774 5.22 2.75 6.517 5.35ZM9.312 2.077c-.736 1.347-1.261 3.24-1.567 5.35h-4.95a10.325 10.325 0 0 1 6.517-5.35ZM2.795 16.573h4.95c.306 2.11.83 4.003 1.567 5.35a10.325 10.325 0 0 1-6.517-5.35Zm11.892 5.35c.737-1.347 1.262-3.24 1.568-5.35h4.95a10.324 10.324 0 0 1-6.518 5.35Z" fill="%23000"/></svg>');
  mask-image: var(--mask-url);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
}

.header__language-link:hover {
  color: var(--color-dark-mint);
}

.header__language-flag {
  display: none;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  margin-right: 8px;
  border: 2.5px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0px 3px rgba(11, 15, 25, 0.25);
}

.header__auth {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background-color: var(--color-light-blue);
  color: var(--color-dark-blue);
  text-decoration: none;
  border-radius: var(--radius-medium);
  transition: background-color .25s, color .25s, transform .25s ease;
}

.header__auth::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 24px;
  background-color: currentColor;
  background-repeat: no-repeat;
  mask-image: var(--mask-url);
  mask-size: auto 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  --mask-url: url('data:image/svg+xml,<svg width="342" height="428" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M300.936 427.335H107a21.336 21.336 0 0 1 0-42.67h191.539c.231-.604.461-1.5.461-2.662v-336c0-1.157-.23-2.053-.461-2.668H107a21.335 21.335 0 0 1 0-42.67h193.936c22.456 0 40.729 20.332 40.729 45.333v335.999c0 25.001-18.268 45.338-40.729 45.338ZM235 214c-.005 5.545-1.976 11.003-6.057 15.084l-64 64c-8.335 8.335-21.831 8.335-30.167 0-8.335-8.336-8.335-21.832 0-30.167l27.582-27.582H21.665a21.336 21.336 0 0 1 0-42.67h140.693l-27.582-27.581c-8.335-8.336-8.335-21.832 0-30.167 8.336-8.336 21.832-8.336 30.167 0l64 64c4.081 4.08 6.052 9.538 6.057 15.083Z" fill="%23000"/></svg>');
}

@media (any-hover: hover) {
  .header__auth:hover {
    transform: translateY(-2px);
    background-color: var(--color-light-blue-hover);
  }
}

.header__auth span {
  display: none;
}


@media (min-width: 400px) {
  .header__logo {
    width: 145px;
  }
}

@media (min-width: 768px) {

  .header__auth {
    width: auto;
    padding: 0 20px;
  }

  .header__auth::before {
    width: 16px;
    height: 20px;
    margin-right: 13px;
  }

  .header__auth span {
    display: inline;
  }

}


@media (min-width: 1280px) {

  .header__language-link {
    font-weight: 550;
  }

  .header__language {
    margin: 0 30px;
  }

}


/*   nav   */

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__info {
  display: flex;
  align-items: center;
}

.nav__overlay {
  display: contents;
}

.nav__list {
  display: flex;
  gap: 30px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 5px 0;
  font-weight: 550;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--color-dark-blue);
  text-decoration: none;
  transition: color .25s;
}

.nav__item--open .nav__link,
.nav__link:hover {
  color: var(--color-dark-mint);
}

.nav__link--arrow {
  display: flex;
  align-items: center;
}

.nav__link--arrow::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 7px;
  margin-left: 7px;
  transition: transform .25s;
  background-color: currentColor;
  mask-image: var(--mask-url);
  mask-size: auto 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  --mask-url: url('data:image/svg+xml,<svg width="13" height="8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.618 2.282 7.422 7.607A1.3 1.3 0 0 1 6.5 8a1.274 1.274 0 0 1-.922-.393L.382 2.282A1.34 1.34 0 0 1 0 1.337 1.366 1.366 0 0 1 .382.392 1.303 1.303 0 0 1 1.304 0a1.277 1.277 0 0 1 .923.392L6.5 4.785 10.774.392C11.018.14 11.35 0 11.696 0c.346 0 .677.14.922.392.245.25.382.59.382.945 0 .354-.137.694-.382.945Z" fill="%23000"/></svg>');
}

.nav__item--open .nav__link--arrow::after {
  transform: scaleY(-1);
}

.nav.unstick {
  transform: translateY(-130%);
  transition: transform .3s ease;
}

.nav.fixed {
  position: fixed;
  transform: translateY(0);
  background: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 4px 12px 1px rgba(11, 15, 25, .06), 0 2px 6px -1px rgba(11, 15, 25, .03);
  /*  box-shadow: 0 15px 20px rgba(99, 102, 241, .1);*/
}

@supports (backdrop-filter: saturate(180%) blur(20px)) or (-webkit-backdrop-filter: saturate(180%) blur(20px)) {
  .nav.fixed {
    background: rgba(255, 255, 255, .8);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.nav.fixed>.container {
  height: 60px;
}

.nav.fixed .nav__logo-link {
  display: block;
  width: 112px;
  height: 40px;
}

.nav.fixed .nav__logo {
  height: 40px;
}


.nav__item--open .sub-menu {}

/*   sub-menu   */

.sub-menu {
  display: none;
}

.sub-menu__link {
  display: block;
  font-size: 18px;
  color: var(--color-dark-blue);
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 0;
  transition: color .25s linear, background-color .25s linear;
}

@media (any-hover: hover) {
  .sub-menu__link:hover {
    background-color: #EBF0FF;
  }
}

@media (min-width: 1280px) {

  .sub-menu {
    padding: 10px;
    background: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.05);
    will-change: height;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-medium);
  }

  .sub-menu__link {
    font-size: 16px;
    padding: 8px 15px;
    border-radius: var(--radius-default);
  }

}

/*   menu-btn   */

.menu-btn {
  display: none;
  position: relative;
  height: 50px;
  width: 50px;
  background: none;
  z-index: 1;
  outline: 0;
  padding: 0;
  border: 0;
  margin-left: 10px;
  margin-right: -10px;
  transition: .1s transform linear;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  position: absolute;
  background: var(--color-dark-blue);
  margin: auto;
  width: 30px;
  height: 3px;
  content: "";
  top: 50%;
  left: calc(50% - 15px);
  border-radius: 2px;
  transition: .1s background .1s linear, .1s top .1s linear, .1s transform linear;
}

.menu-btn span {
  margin-top: -1px;
}

.menu-btn span:before {
  top: -9px;
}

.menu-btn span:after {
  top: 9px;
}

.menu-btn span:before,
.menu-btn span:after {
  transform: rotate(0deg);
}

.menu-btn.open span {
  background: 0;
}

.menu-btn.open span:before {
  transform: rotate(45deg);
}

.menu-btn.open span:after {
  transform: rotate(-45deg);
}

.menu-btn.open span:before,
.menu-btn.open span:after {
  top: 0;
}

.menu-btn.open span,
.menu-btn.open span:before,
.menu-btn.open span:after {
  transition: .1s background linear .1s, top .1s linear, .1s transform linear .1s;
}

@media (max-width: 1279px) {


  .nav.open {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: calc(100% + 20px);
    max-width: 320px;
    width: 100%;
    background: #fff;
    overflow-y: scroll;
    transform: translateX(0);
    transition: transform .65s cubic-bezier(.2, 1, .2, 1);
    border-radius: 24px;
    box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.05);
    padding: 15px 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__item {
    padding: 0 30px;
  }

  .nav__link {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
    line-height: 1;
  }

  .menu-btn {
    display: block;
  }

  .sub-menu__link {
    padding: 10px 0;
    font-weight: 500;
  }


}


/*   hero   */

.hero {
  margin-top: 0;
}

.hero--main {
  background-color: var(--color-light-bg);
  padding: 0 0 70px;
}

.hero__box {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 50px;
  /* 
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px; */
}

.hero__info {
  /* flex-shrink: 0;
  width: 600px; */
}

.hero__title {
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero__title span {
  color: var(--color-dark-mint);
}

.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero__button {
  width: 100%;
}

.hero__picture {
  /* flex-grow: 1;
  height: 400px; */
}

.hero__image {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  /* 
  width: 100%;
  max-width: 400px;
  transform: scale(1.35);
  margin: 0 auto; */
}

@media (min-width: 768px) {

  .hero--main {
    padding-bottom: 70px;
  }

  .hero__title {
    margin-bottom: 20px;
  }

  .hero__text {
    font-size: 20px;
  }

  .hero__button {
    width: auto;
  }

}


@media (min-width: 993px) {

  .hero--main {
    padding: 70px 0;
  }

  .hero__box {
    column-gap: 30px;
    align-items: center;
    flex-direction: row;
  }

  .hero__info {
    width: 520px;
    flex-shrink: 0;
  }

  .hero__image {
    transform: scale(1.2);
  }


}


@media (min-width: 1280px) {

  .hero--main {
    padding: 80px 0 100px;
  }

  .hero__box {
    margin-bottom: 70px;
  }

  .hero__info {
    width: 600px;
  }

  .hero__picture {
    flex-grow: 1;
    height: 400px;
  }

  .hero__image {
    max-width: 400px;
    transform: scale(1.35);
    margin: 0 auto;
  }

}



@media (max-width: 1279px) {

  /* .hero {
    padding-top: 50px;
  }

  .hero--main {
    padding-bottom: 50px;
  }

  .hero__box {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
  }

  .hero__title {
    text-align: center;
  }

  .hero__text {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
  }

  .hero__info {
    width: 100%;
    margin-bottom: 40px;
  }

  .hero__image {
    display: none;
  }

  .hero__bottom {
    display: flex;
    flex-direction: column-reverse;
  } */

}

/* @media (max-width: 767px) {

  .hero__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 20px;
  }

  .hero__info {
    margin-bottom: 0;
  }

  .hero__image {
    display: block;
  }

} */


/*   search-domain   */

.search-domain {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.search-domain__field {
  display: block;
  height: 56px;
  color: var(--color-dark-blue);
  background: var(--color-white);
  border-radius: 12px;
  border: 2px solid var(--color-link);
  padding: 0 20px;
  font-weight: 400;
  font-size: 18px;
}

.search-domain__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  font-weight: 550;
  font-size: 18px;
  padding: 0 20px;
  flex-shrink: 0;
  background-color: var(--color-light-blue);
  color: var(--color-dark-blue);
  text-decoration: none;
  border-radius: 12px;
  transition: background-color .25s;
}

@media (any-hover: hover) {

  .search-domain__btn:hover {
    background-color: var(--color-light-blue-hover);
  }

}

@media (min-width: 768px) {

  .search-domain {
    flex-direction: row;
  }

  .search-domain__field {
    flex-grow: 1;
  }

  .search-domain__btn {
    width: auto;
    padding: 0 35px;
  }

}


@media (min-width: 1280px) {

  .search-domain {
    flex-grow: 1;
    align-items: center;
  }

}


/*   domain-preview   */

.domain-preview {
  display: none;
  /* margin-top: 15px; */
}

.domain-preview__list {
  display: flex;
}

.domain-preview__item {
  padding: 0 15px;
}

.domain-preview__item:nth-child(1) {
  padding-left: 0;
}

.domain-preview__item:last-child {
  padding-right: 0;
}

.domain-preview__item:not(:last-child) {
  border-right: 1px solid #E2E8F6;
}

.domain-preview__zona {
  font-family: var(--font-title);
  font-weight: 650;
  color: var(--color-dark-mint);
}

html:lang(ru) .domain-preview__price::after {
  content: '€';
  margin-left: 3px;
  font-size: 0.9em;
}

html:not(:lang(ru)) .domain-preview__price::before {
  content: '€';
  margin-right: 3px;
  margin-left: 3px;
  font-size: 0.9em;
}


@media (min-width: 1280px) {

  .domain-preview {
    display: inherit;
    margin: 30px 0;
  }

}

/* @media (max-width: 1279px) {

  .domain-preview {
    margin-top: 0;
    margin-bottom: 20px
  }

  .domain-preview__list {
    justify-content: center;
  }

}

@media (max-width: 767px) {

  .domain-preview {
    display: none;
  }

} */

/*   benefits-header   */

.benefits-header__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.benefits-header__item {
  display: flex;
  align-items: center;
  width: 100%;
}

.benefits-header__icon {
  flex-shrink: 0;
  margin-left: -10px;
  margin-right: 15px;
}

.benefits-header__image {
  display: block;
  width: 90px;
  margin: 0 auto;
}

.benefits-header__text {
  text-align: left;
}

.benefits-header__title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 650;
  color: var(--color-dark-blue);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
}


@media (min-width: 768px) {

  .benefits-header__item {
    width: calc(50% - 15px);
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits-header__icon {
    margin: 0 0 15px;
  }

  .benefits-header__image {
    width: 120px;
  }

  .benefits-header__text {
    max-width: 320px;
  }

}

@media (min-width: 993px) {

  .benefits-header__item {
    align-items: center;
  }

  .benefits-header__text {
    text-align: center;
  }

}


@media (min-width: 1280px) {

  .benefits-header__list {
    gap: 30px;
  }

  .benefits-header__item {
    width: calc((100% - 90px) / 4);
  }

  .benefits-header__title {
    font-weight: 650;
  }

}


/*   domain-main   */

.domain-main__head {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.domain-main__title {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.domain-main__title::after {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 60px;
  height: 60px;
  background: url("/templates/pqd/img/decor-arrow-1.svg") 0 0 no-repeat;
  background-size: cover;
  margin-left: 10px;
}

@media (min-width: 1280px) {

  .domain-main__head {
    flex-direction: row;
    gap: 0;
    margin-bottom: 0;
  }

}


/*   tabs   */

.tabs {}

.tabs-nav {
  position: relative;
  margin-bottom: 15px;
}

.tabs-nav::after {
  content: '';
  display: block;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.tabs-nav__list {
  display: flex;
}

.tabs-nav__item {
  margin-right: 10px;
}

.tabs-nav__item.swiper-slide {
  width: auto;
}

.tabs-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-dark-blue);
  background: #eef3ff;
  border-radius: var(--radius-medium);
  transition: background-color .25s;
}

.tabs-nav__link.js-tab-trigger--active::before {
  background-color: currentColor;
}

.tabs-nav__link::before {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: var(--color-link);
  mask-image: var(--url-icon);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
}

.tabs-nav__link:hover {
  background-color: #d7e2ff;
}


.tabs-nav__link--icon-fire::before {
  content: '';
  margin-right: 7px;
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)"><path d="M20.949 14.052c-.275-3.58-1.942-5.823-3.412-7.802C16.176 4.418 15 2.835 15 .5a.5.5 0 0 0-.791-.406c-2.208 1.58-4.05 4.243-4.694 6.784-.447 1.769-.506 3.757-.514 5.07-2.04-.435-2.501-3.485-2.506-3.518a.503.503 0 0 0-.713-.38c-.107.052-2.625 1.332-2.771 6.44C3 14.658 3 14.83 3 15c0 4.962 4.038 9 9 9H12.026c4.95-.015 8.974-4.047 8.974-9 0-.25-.051-.948-.051-.948ZM12 22.999c-1.654 0-3-1.433-3-3.195 0-.06 0-.12.004-.195.02-.743.161-1.25.316-1.588.29.623.808 1.196 1.65 1.196a.5.5 0 0 0 .5-.5c0-.712.015-1.533.193-2.274.157-.658.534-1.357 1.012-1.917.212.727.626 1.316 1.03 1.89.58.823 1.177 1.673 1.282 3.122.007.087.013.173.013.266 0 1.762-1.346 3.195-3 3.195Z" fill="%23000"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24v24H0z"/></clipPath></defs></svg>');
}


.tabs-nav__link--icon-business::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.606 5.446h-5.169V3.363a1.8 1.8 0 0 0-1.799-1.799H9.361a1.8 1.8 0 0 0-1.798 1.799v2.083h-5.17A2.39 2.39 0 0 0 .007 7.834c0 1.196-.123 2.27.783 3.478a3.887 3.887 0 0 0 2.038 1.41l7.967 2.32c.789.229 1.623.229 2.411 0l7.967-2.32a3.887 3.887 0 0 0 2.038-1.41c.91-1.214.784-2.299.784-3.478a2.39 2.39 0 0 0-2.388-2.388ZM9.086 3.363c0-.152.123-.275.275-.275h5.277c.152 0 .276.123.276.275v2.083H9.086V3.363Z" fill="%23000"/><path d="M21.598 14.184c-8.593 2.502-8.481 2.553-9.598 2.553-1.108 0-.845-.004-9.598-2.553a5.394 5.394 0 0 1-2.396-1.446v7.31a2.39 2.39 0 0 0 2.388 2.388h19.212a2.39 2.39 0 0 0 2.388-2.388v-7.31a5.395 5.395 0 0 1-2.396 1.446Z" fill="%23000"/></svg>');
}

.tabs-nav__link--icon-technology::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)" fill="%23000"><path d="M18.844 19.969c-.786 0-1.46.485-1.738 1.172h-1.637v1.406h1.637a1.878 1.878 0 0 0 1.738 1.172 1.877 1.877 0 0 0 1.875-1.875 1.877 1.877 0 0 0-1.875-1.875ZM22.125 15.984c-.308 0-.599.076-.856.208l-1.74-1.45a.703.703 0 0 0-.45-.164h-3.61v1.406h3.354l1.527 1.272a1.877 1.877 0 0 0 1.775 2.478A1.877 1.877 0 0 0 24 17.86a1.877 1.877 0 0 0-1.875-1.875ZM22.125 10.125c-.785 0-1.459.485-1.738 1.172H15.47v1.406h4.918a1.878 1.878 0 0 0 1.738 1.172A1.877 1.877 0 0 0 24 12a1.877 1.877 0 0 0-1.875-1.875ZM19.528 9.259l1.741-1.45A1.877 1.877 0 0 0 24 6.141a1.877 1.877 0 0 0-1.874-1.876 1.877 1.877 0 0 0-1.775 2.478l-1.527 1.272H15.47v1.406h3.61a.703.703 0 0 0 .45-.163ZM18.844 4.031a1.877 1.877 0 0 0 1.875-1.875A1.877 1.877 0 0 0 18.844.281c-.786 0-1.46.486-1.738 1.172h-1.637V2.86h1.637a1.878 1.878 0 0 0 1.738 1.172ZM7.031 12a4.927 4.927 0 0 0 4.922 4.922c.755 0 1.47-.171 2.11-.476V7.554a4.893 4.893 0 0 0-2.11-.476A4.927 4.927 0 0 0 7.031 12Z"/><path d="M13.36.047h-2.813a.703.703 0 0 0-.703.703v.915a10.55 10.55 0 0 0-3.707 1.536l-.647-.647a.703.703 0 0 0-.995 0L2.507 4.542a.703.703 0 0 0 0 .995l.647.647A10.55 10.55 0 0 0 1.618 9.89H.703a.703.703 0 0 0-.703.703v2.812c0 .389.315.703.703.703h.915a10.55 10.55 0 0 0 1.536 3.707l-.647.648a.703.703 0 0 0 0 .994l1.988 1.989c.275.274.72.274.995 0l.647-.648a10.55 10.55 0 0 0 3.707 1.536v.915c0 .388.315.703.703.703h2.812a.703.703 0 0 0 .704-.703v-5.284c-.66.234-1.37.362-2.11.362A6.335 6.335 0 0 1 5.625 12a6.335 6.335 0 0 1 6.328-6.328c.74 0 1.45.128 2.11.362V.75a.703.703 0 0 0-.704-.703Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24v24H0z"/></clipPath></defs></svg>');
}

.tabs-nav__link--icon-finance::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.757 6.988c.07-.04.14-.076.212-.108v4.205c-1.698-.75-1.857-3.147-.212-4.097Zm1.777 10.556V13.34c1.698.75 1.857 3.147.212 4.097-.07.04-.14.076-.212.108Z" fill="%23000"/><path fill-rule="evenodd" clip-rule="evenodd" d="M.534 12.212C.534 6.017 5.556.995 11.752.995c6.195 0 11.217 5.022 11.217 11.217s-5.022 11.217-11.218 11.217C5.556 23.43.534 18.407.534 12.212Zm12-7.304a.783.783 0 0 0-1.565 0v.321a3.87 3.87 0 0 0-.994.403c-2.84 1.64-2.48 5.848.599 6.98l.395.146v4.9A2.296 2.296 0 0 1 9.6 16.593l-.392-.678a.783.783 0 0 0-1.355.782l.391.679a3.861 3.861 0 0 0 2.725 1.883v.257a.783.783 0 0 0 1.565 0v-.321a3.91 3.91 0 0 0 .994-.403c2.84-1.64 2.48-5.848-.598-6.98l-.396-.146v-4.9a2.296 2.296 0 0 1 1.37 1.065l.391.678a.783.783 0 0 0 1.356-.782l-.392-.679a3.86 3.86 0 0 0-2.725-1.883v-.257Z" fill="%23000"/></svg>');
}

.tabs-nav__link--icon-media::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)"><path d="M21.793 5.834h-8.441l4.276-4.22-.773-.773L12.414 5.2 7.972.814l-.772.772 4.276 4.22h-9.27A2.213 2.213 0 0 0 0 8.015v12.965c0 1.214.993 2.207 2.207 2.207h19.586A2.213 2.213 0 0 0 24 20.98V8.014c0-1.186-.993-2.18-2.207-2.18Zm-6.896 12.304a1.66 1.66 0 0 1-1.656 1.655H4.69a1.66 1.66 0 0 1-1.656-1.655v-7.173c0-.91.745-1.655 1.656-1.655h8.551c.91 0 1.656.745 1.656 1.655v7.173Zm4.138.993a1.92 1.92 0 0 1-1.932-1.931 1.92 1.92 0 0 1 1.932-1.931c1.075 0 1.93.855 1.93 1.93a1.919 1.919 0 0 1-1.93 1.932Zm2.206-5.6h-4.413v-1.104h4.413v1.104Zm0-2.759h-4.413V9.67h4.413v1.103Z" fill="%23000"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24v24H0z"/></clipPath></defs></svg>');
}

.tabs-nav__link--icon-education::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)" fill="%23000"><path d="M13.54 16.638c-.427.262-.974.406-1.54.406-.566 0-1.113-.144-1.54-.406l-6.974-4.277s-.63-.386-.63.488v4.271c0 2.25 4.094 4.676 9.144 4.676s9.144-2.426 9.144-4.676v-4.512c0-.701-.448-.358-.448-.358l-7.155 4.388Z"/><path d="M23.598 8.959c.536-.329.536-.867 0-1.195L12.974 2.45c-.536-.329-1.412-.329-1.948 0L.402 7.764c-.536.328-.536.866 0 1.195l10.624 6.515c.536.33 1.412.33 1.948 0M23.159 18.616v-7.195s.005-.341-.197-.229c-.163.09-.56.312-.7.434-.162.14-.126.456-.126.456v6.534c0 .093-.08.138-.117.16a1.241 1.241 0 0 0 .629 2.314 1.243 1.243 0 0 0 .624-2.317c-.036-.02-.113-.064-.113-.157Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24v24H0z"/></clipPath></defs></svg>');
}

.tabs-nav__link--icon-professions::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)" fill="%23000"><path d="M22.432 10.34H1.12a1.114 1.114 0 0 0 0 2.227h21.312a1.113 1.113 0 1 0 0-2.228ZM21.494 9.672A9.719 9.719 0 0 0 12.73 0c1.286.648 3.63 2.238 4.168 5.419a.334.334 0 0 1-.273.385h-.057a.334.334 0 0 1-.338-.274C15.633 1.953 12.398.546 11.776.307c-.62.24-3.857 1.646-4.454 5.223a.335.335 0 0 1-.33.278h-.055a.334.334 0 0 1-.283-.39C7.186 2.239 9.53.649 10.817 0a9.718 9.718 0 0 0-8.76 9.672h19.437ZM11.777 18.655a5.425 5.425 0 0 1-5.425-5.422H1.007v1.164l2.937.956c.182.678.453 1.33.807 1.937L3.39 20.074l1.595 1.595 2.75-1.4c.61.353 1.264.62 1.944.8L10.686 24h2.255l.957-2.937a8.022 8.022 0 0 0 1.94-.803l2.784 1.356 1.595-1.593-1.4-2.752c.35-.61.618-1.262.798-1.942l2.931-1.001v-1.094h-5.344a5.423 5.423 0 0 1-5.423 5.422h-.002Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24v24H0z"/></clipPath></defs></svg>');
}

.tabs-nav__link--icon-local::before {
  content: '';
  --url-icon: url('data:image/svg+xml,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)"><path d="M22.035 17.085a11.309 11.309 0 0 1-6.383 5.55c.93-1.358 1.665-3.263 2.123-5.55h4.26Zm-6.03 0c-.78 3.63-2.4 6.172-4.005 6.172s-3.225-2.55-4.005-6.172h8.01Zm-7.658 5.55a11.309 11.309 0 0 1-6.382-5.55h4.26c.457 2.287 1.192 4.192 2.122 5.55ZM5.745 12c0 1.155.09 2.272.225 3.352H1.26A11.183 11.183 0 0 1 .742 12c0-1.155.18-2.273.518-3.353h4.71A26.955 26.955 0 0 0 5.745 12Zm10.777 0c0 1.155-.09 2.272-.232 3.352H7.717A24.337 24.337 0 0 1 7.485 12c0-1.155.09-2.273.232-3.353h8.573c.15 1.08.232 2.198.232 3.353Zm6.735 0c0 1.155-.18 2.272-.517 3.352h-4.71c.135-1.095.225-2.197.225-3.352 0-1.155-.09-2.273-.225-3.353h4.71c.337 1.08.517 2.198.517 3.353Zm-1.222-5.085h-4.26c-.458-2.288-1.193-4.193-2.123-5.55a11.309 11.309 0 0 1 6.383 5.55Zm-6.03 0H8.002C8.775 3.285 10.395.742 12 .742c1.605 0 3.225 2.55 4.005 6.173Zm-7.658-5.55c-.93 1.357-1.665 3.262-2.122 5.55h-4.26a11.309 11.309 0 0 1 6.382-5.55Z" fill="%23000"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24v24H0z"/></clipPath></defs></svg>');
}



.tabs-nav__link.js-tab-trigger--active {
  background: var(--color-light-blue);
  cursor: default;
}

.tabs-nav__link>i {
  margin: 0 7px 0 0;
  text-align: right;
}

.tabs-nav__link>i:before {
  margin: 0;
}

/*   domain-list   */

.domain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.domain-list__item {
  width: calc(50% - 7.5px);
}

.domain-list__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 56px;
  padding: 0 15px;
  text-decoration: none;
  background-color: transparent;
  background-image: url('/templates/pqd/img/arrow-right.svg');
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-size: 24px auto;
  border: 1px solid #D4DFFF;
  border-radius: 12px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}


@media (any-hover: hover) {

  .domain-list__link:hover {
    transform: translateY(-2px);
    border-color: var(--color-link);
    box-shadow: 0 0 0 1px var(--color-link);
    /* border-color: var(--color-light-blue-hover); */
    /* border-color: rgba(99, 102, 241, .35);
  box-shadow: 0 6px 10px rgba(99, 102, 241, .15); */
  }

}

.domain-list__zone {
  font-family: var(--font-title);
  color: var(--color-dark-blue);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: color .25s ease-in-out;
}

@media (any-hover: hover) {
  .domain-list__link:hover .domain-list__zone {
    color: var(--color-link);
  }
}

.domain-list__price {
  position: relative;
  /* padding-right: 36px; */
}

.domain-list__price::before,
.domain-list__price::after {
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
  top: calc(50% - 13px);
  transition: opacity .3s ease;
}

.domain-list__price::before {
  background: url("/templates/pqd/img/arrow-right.svg") 0 0 no-repeat;
  background-size: cover;
  transform: translateX(0px);
}

.domain-list__price::after {
  opacity: 0;
  background: url("/templates/pqd/img/arrow-right-hover.svg") 0 0 no-repeat;
  background-size: cover;
}

@media (any-hover: hover) {
  .domain-list__link:hover .domain-list__price::before {
    opacity: 0;
  }

  .domain-list__link:hover .domain-list__price::after {
    opacity: 1;
  }
}

.domain-list__price span,
.domain-list__price i {
  display: block;
  line-height: 1;
  color: var(--color-dark-blue);
}

.domain-list__price span {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-dark-mint);
  letter-spacing: -0.01em;
}

html:lang(ru) .domain-list__price span::after {
  content: '€';
  margin-left: 3px;
}

html:not(:lang(ru)) .domain-list__price span::before {
  content: '€';
  margin-right: 3px;
}

.domain-list__price i {
  position: relative;
  opacity: .6;
  font-style: normal;
  font-size: 13px;
  margin-top: 3px;
  text-align: center;
}

.domain-list__price i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  opacity: .6;
  background: var(--color-body);
}

@media (min-width: 768px) {

  .domain-list__item {
    width: calc(33.33% - 10.5px);
  }

}


@media (min-width: 993px) {

  .domain-list__item {
    width: calc(25% - 11.5px);
  }

}

@media (min-width: 1280px) {

  .domain-list__item {
    width: calc(20% - 12px);
  }

  .domain-list__link {
    gap: 10px;
    height: auto;
    padding: 12px 15px;
    background-size: 28px auto;
  }

  @media (any-hover: hover) {
    .domain-list__link:hover {
      background-image: url("/templates/pqd/img/arrow-right-hover.svg");
    }
  }

}


/* @media (max-width: 1279px) {

  .domain-list__item {
    width: calc(33.33% - 20px);
  }

}

@media (max-width: 960px) {

  .domain-list {
    margin: 0 -5px -10px;
  }

  .domain-list__item {
    width: calc(33.33% - 10px);
    margin: 0 5px 10px;
  }

}

@media (max-width: 960px) {

  .domain-list__item {
    width: calc(100% - 10px);
  }

} */

/*   benefits   */

.benefits__content {}

.benefits__left {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 50px;
}

.benefits__head {
  margin-top: 30px;
}

.benefits__title {
  margin-bottom: 30px;
}

.benefits__title::after {
  display: inline-block;
  vertical-align: middle;
  width: 144px;
  height: 26px;
  background: url("/templates/pqd/img/big-arrow-right.svg") 0 0 no-repeat;
  background-size: cover;
  margin-left: 10px;
  animation: benefits-arrow 0.8s linear infinite alternate both;
  animation-delay: 50ms;
}

@keyframes benefits-arrow {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(14px);
  }
}

.benefits__button {
  border-width: 1.5px;
  width: 100%;
}

.benefits__photo {
  display: block;
  margin: 0 auto;
  max-width: 372px;
  width: 100%;
}

.benefits__list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 30px;
}

.benefits__item {
  display: flex;
  width: 100%;
}

.benefits__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: #EBF0FF;
  border-radius: 12px;
  margin-right: 20px;
}

.benefits__icon img {
  display: block;
  height: 38px;
}

.benefits__text {
  flex-grow: 1;
  letter-spacing: -0.01em;
}

.benefits__label {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

@media (min-width: 768px) {


  .benefits__left {
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 40px;
  }

  .benefits__photo {
    max-width: 300px;
  }

  .benefits__item {
    width: calc(50% - 15px);
  }

}

@media (min-width: 993px) {

  .benefits__left {
    flex-direction: row;
  }

}

@media (min-width: 1280px) {

  .benefits__content {
    display: flex;
    column-gap: 60px;
  }

  .benefits__left {
    width: 400px;
    flex-shrink: 0;
    flex-direction: column;
  }

  .benefits__head {
    margin: 0 0 50px;
  }

  .benefits__title::after {
    content: '';
  }

  .benefits__photo {
    max-width: 400px;
  }

  .benefits__button {
    width: auto;
  }

  .benefits__list {
    gap: 60px 30px;
  }

  .benefits__icon {
    margin-right: 30px;
  }


}


/*   payments-main   */

.payments-main {
  background: var(--color-dark-blue);
}

.payments-main__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}

.payments-main__head {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.payments-main__head-button {
  border-width: 2px;
  white-space: nowrap;
}

.payments-main__title {
  color: var(--color-light-blue);
}


@media (min-width: 768px) {


  .payments-main__content {
    gap: 60px;
  }

  .payments-main__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {

  .payments-main__content {
    flex-direction: column;
  }

}


@media (min-width: 1280px) {

  .payments-main {
    max-width: 1500px;
    width: calc(100% - 40px);
    border-radius: 32px;
    margin-left: auto;
    margin-right: auto;
  }

}

/*   payments-slider   */

.payments-slider .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
  gap: 15px;
}

.payments-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 7.5px);
  aspect-ratio: 2/1;

  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-default);
  transition: border-color .3s, background-color .3s, transform .3s;
}

@media (any-hover: hover) {
  .payments-slider .swiper-slide:hover {
    background-color: #1f222b;
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-2px);
  }
}

.payments-slider .swiper-slide img {
  display: block;
  max-width: calc(100% - 60px);
}

.payments-slider__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.payments-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
}

.payments-slider .swiper-pagination-bullet-active {
  background: var(--color-dark-blue);
  width: 16px;
  height: 16px;
}


@media (min-width: 540px) {
  .payments-slider .swiper-slide {
    width: calc(33.33% - 10px);
  }
}

@media (min-width: 992px) {
  .payments-slider .swiper-slide {
    width: calc(25% - 15px);
  }
}

@media (min-width: 1280px) {
  .payments-slider .swiper-slide {
    width: calc(20% - 12.5px);
  }
}


/*   steps-main   */

.steps-main__title {
  text-align: center;
  margin-bottom: 70px;
}

.steps-main__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 60px;
}

.steps-main__list::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 800px;
  height: 2px;
  background: var(--color-light-blue);
  opacity: 0.2;
}

.steps-main__item {
  width: calc(33.33% - 60px);
  margin: 0 30px;
}

.steps-main__number {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  text-align: center;

  margin: 0 auto 30px;

  background-color: var(--color-white);
  border: 4px solid var(--color-light-blue);
  box-shadow: 0 0 0 15px var(--color-white);
  border-radius: 24px;
  /* box-shadow: 0 0 0 6px #EBF0FF; */
}

.steps-main__text {
  text-align: center;
}

.steps-main__label {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: 10px;
}

.steps-main__text p {}

@media (max-width: 1279px) {

  .steps-main__list::before {
    width: 660px;
  }

  .steps-main__item {
    width: 264px;
  }

  .steps-main__text p {
    font-size: 16px;
    line-height: 140%;
  }

}

@media (max-width: 960px) {

  .steps-main__list::before {
    display: none;
  }

  .steps-main__item {
    width: 280px;
    margin-bottom: 40px;
  }

  .steps-main__item:last-child {
    margin-bottom: 0;
  }

}

/*   last-news   */

.last-news {
  background: var(--color-light);
}

.last-news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.last-news__title p {
  font-size: 20px;
  font-weight: 300;
  margin-top: 5px;
}

.last-news__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}

.last-news__item {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  background: var(--color-white);
  border-radius: var(--radius-default);
  transition: box-shadow .3s, transform .3s;
}

.last-news__item:hover {
  box-shadow: 0 15px 20px rgba(99, 102, 241, .1);
  transform: translateY(-5px);
}

.last-news__item:nth-child(n+4) {
  display: none;
}

.last-news__info {
  padding: 30px;
}

.last-news__link {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: var(--color-dark-blue);
  text-decoration: none;
  transition: color .3s;
  margin-bottom: 10px;
}

.last-news__link:hover {
  color: var(--color-dark-blue);
}

.last-news__pic {
  position: relative;
  height: 180px;
  /*padding-top: 56.25%;*/
  overflow: hidden;
}

.last-news__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px 8px 0 0;
}

.last-news__info p {
  font-weight: 300;
}

.last-news__info .btn {
  margin-top: 20px;
}

@media (max-width: 1279px) {

  .last-news__item {
    width: calc(50% - 20px);
  }

  .last-news__pic {
    height: 220px;
  }

  .last-news__item:nth-child(n+4) {
    display: block;
  }

}

@media (max-width: 767px) {

  .last-news__head {
    flex-direction: column;
  }

  .last-news__title {
    text-align: center;
  }

  .last-news__title p {
    font-size: 17px;
  }

  .last-news__head .btn {
    display: none;
  }

  .last-news__item {
    width: calc(100% - 20px);
  }

  .last-news__pic {
    height: auto;
    padding-top: 56.25%;
  }

  .last-news__info {
    padding: 20px;
  }

  .last-news__link {
    font-size: 18px;
  }

  .last-news__info p {
    font-size: 16px;
    line-height: 140%;
  }

  .last-news__info .btn {
    width: 100%;
    margin-top: 15px;
  }

}

/*   faq-main   */

.faq-main__content {
  display: flex;
}

.faq-main__left {
  flex-shrink: 0;
  width: 400px;
  margin-right: 60px;
}

.faq-main__head {
  margin-bottom: 60px;
}

.faq-main__title {
  margin-bottom: 20px;
}

.faq-main__head p {
  font-weight: 400;
}

.faq-main__left .btn {
  margin-bottom: 70px;
}

.faq-main__photo {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

.faq-main__info {
  flex-grow: 1;
}

/*   faq   */

.faq__item {
  position: relative;
  background-color: var(--color-white);
  border: 1.5px solid #D4DFFF;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 12px;
  transition: border-color .2s ease-in, box-shadow .2s ease-in;
}

.faq__item:hover {
  border-color: var(--color-light-blue);
  box-shadow: 0 4px 6px rgba(99, 102, 241, .15);
}

.faq__item--open {
  border-color: rgba(99, 102, 241, .35);
  box-shadow: 0 6px 10px rgba(99, 102, 241, .15);
}

.faq__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding: 12px 15px 12px 25px;
  cursor: pointer;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq__title::after {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 36px;
  height: 36px;
  margin-left: 30px;

  background-color: var(--color-light-blue);
  background-image: var(--url-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  border-radius: var(--radius-circle);

  transition: transform .25s ease, box-shadow .25s ease;
  --url-icon: url('data:image/svg+xml,<svg width="13" height="8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.618 2.282 7.422 7.607A1.3 1.3 0 0 1 6.5 8a1.274 1.274 0 0 1-.922-.393L.382 2.282A1.34 1.34 0 0 1 0 1.337 1.366 1.366 0 0 1 .382.392 1.303 1.303 0 0 1 1.304 0a1.277 1.277 0 0 1 .923.392L6.5 4.785 10.774.392C11.018.14 11.35 0 11.696 0c.346 0 .677.14.922.392.245.25.382.59.382.945 0 .354-.137.694-.382.945Z" fill="%23000"/></svg>');
}

.faq__item--open .faq__title::after {
  /* background-color: var(--color-dark-blue); */
  transform: rotate(180deg);
  /* box-shadow: 0 -4px 6px rgba(99, 102, 241, .2); */
}

.faq__desc {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 0 25px 20px 25px;
}

.faq__desc p:not(:last-child) {
  margin-bottom: 15px;
}

.faq__desc ol {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
}

.faq__desc ol li:not(:last-child) {
  margin-bottom: 7px;
}

@media (max-width: 1279px) {

  .faq__title {
    font-size: 16px;
  }

  .faq-main__photo {
    max-width: 300px;
    width: auto;
    margin: 0 auto;
  }

}

@media (max-width: 960px) {

  .faq-main__content {
    flex-direction: column;
  }

  .faq-main__left {
    position: relative;
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .faq-main__head {
    max-width: 60%;
  }

  .faq-main__left .btn {
    margin-bottom: 0;
  }

  .faq-main__photo {
    position: absolute;
    right: 0;
    top: -5px;
    max-width: 170px;
  }

}

@media (max-width: 767px) {

  .faq-main__left {
    flex-direction: column;
  }

  .faq-main__left .btn {
    display: none;
  }

  .faq-main__head {
    max-width: 100%;
    text-align: center;
  }

  .faq-main__photo {
    position: static;
    max-width: 200px;
  }

}

/*   reviews-main   */

.reviews-main__content {
  display: flex;
}

.reviews-main__text {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  padding: 30px;
  background-color: #EBF0FF;
  border-radius: 24px;
}

.reviews-main__icon {
  display: block;
  margin: 0 auto;
}

.reviews-main__label {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.reviews-main__label::before {
  content: '';
  display: block;
  height: 80px;
  margin-bottom: 20px;
  background-image: var(--url-icon);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  --url-icon: url('data:image/svg+xml,<svg width="80" height="80" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)" fill="%233B5CDB"><path d="M66.9 1.787a203.337 203.337 0 0 0-53.673-.017A13.264 13.264 0 0 0 1.787 13.1a203.337 203.337 0 0 0-.018 53.667 13.316 13.316 0 0 0 11.463 11.466A203.292 203.292 0 0 0 39.804 80c9.018.009 18.027-.582 26.967-1.77A13.267 13.267 0 0 0 78.213 66.9a203.36 203.36 0 0 0 .017-53.673A13.265 13.265 0 0 0 66.9 1.787Zm-4.074 39.349-4.756 4.635a3.832 3.832 0 0 0-1.104 3.404l1.12 6.548a7.172 7.172 0 0 1-10.416 7.57L41.79 60.2a3.847 3.847 0 0 0-3.58 0l-5.88 3.09a7.18 7.18 0 0 1-10.416-7.57l1.12-6.544a3.834 3.834 0 0 0-1.104-3.405l-4.756-4.635a7.178 7.178 0 0 1 3.979-12.246l6.572-.957a3.843 3.843 0 0 0 2.897-2.1l2.94-5.957a7.18 7.18 0 0 1 12.877 0l2.94 5.956a3.84 3.84 0 0 0 2.893 2.104l6.576.956a7.178 7.178 0 0 1 3.978 12.246v-.002Z"/><path d="m58.367 32.188-6.573-.955a7.16 7.16 0 0 1-5.404-3.93l-2.94-5.954a3.85 3.85 0 0 0-6.9 0l-2.94 5.956a7.161 7.161 0 0 1-5.407 3.928l-6.57.955A3.85 3.85 0 0 0 19.5 38.75l4.756 4.636a7.173 7.173 0 0 1 2.067 6.355l-1.12 6.545a3.845 3.845 0 0 0 5.58 4.054l5.878-3.089a7.157 7.157 0 0 1 6.68 0l5.879 3.09a3.846 3.846 0 0 0 5.58-4.053l-1.12-6.548a7.173 7.173 0 0 1 2.067-6.355L60.5 38.75a3.85 3.85 0 0 0-2.133-6.562Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h80v80H0z"/></clipPath></defs></svg>');
}

.reviews-main__label span {
  color: var(--color-dark-blue);
}

.reviews-main__btn i {
  font-size: 20px;
  margin: 0 10px 0 0;
}

.reviews-main__btn i::before {
  margin: 0;
}

.reviews-main__slider {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 804px;
  margin-left: 30px;
  background: var(--color-white);
  border-radius: 24px;
  border: 2px solid var(--color-light-blue);
  box-shadow: 0 15px 20px rgba(99, 102, 241, .1);
}

/*   reviews-slider   */

.reviews-slider {
  height: 100%;
}

.reviews-slider__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 50px 50px;
  text-align: center;
}

.reviews-slider__slide::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  background-image: var(--url-icon);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto 15px;
  --url-icon: url('data:image/svg+xml,<svg width="80" height="80" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M63.5 31.9c1.65-4.15 4.25-8.25 7.725-12.2 1.1-1.25 1.25-3.05.35-4.45a3.62 3.62 0 0 0-3.1-1.7c-.35 0-.7.025-1.05.15-7.35 2.15-24.525 9.775-25 34.225-.175 9.425 6.725 17.525 15.7 18.45 4.975.5 9.925-1.125 13.6-4.425A17.594 17.594 0 0 0 77.5 48.925c0-8.25-5.85-15.475-14-17.025ZM18.225 66.375c4.95.5 9.9-1.125 13.575-4.425a17.594 17.594 0 0 0 5.775-13.025c0-8.25-5.85-15.475-14-17.025 1.65-4.15 4.25-8.25 7.725-12.2 1.1-1.25 1.25-3.05.35-4.45a3.62 3.62 0 0 0-3.1-1.7c-.35 0-.7.025-1.05.15-7.35 2.15-24.525 9.775-25 34.225v.35c0 9.275 6.825 17.175 15.725 18.1Z" fill="%233B5CDB"/></svg>');
}


.reviews-slider__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.reviews-slider .swiper-pagination {
  bottom: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-light-blue);
  opacity: 1 !important;
}

.reviews-slider .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: var(--color-link);
}

@media (max-width: 1279px) {

  .reviews-main__content {
    flex-direction: column;
  }

  .reviews-main__text {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .reviews-main__slider {
    max-width: 920px;
    margin-left: 0;
  }

  .reviews-slider .swiper-slide::before {
    margin-bottom: 10px;
  }

  .reviews-slider .swiper-slide {
    padding: 50px 50px 100px;
  }

}

@media (max-width: 960px) {

  .reviews-main__label {
    max-width: 400px;
  }

  .reviews-slider .swiper-slide {
    font-size: 18px;
    padding: 40px 40px 90px;
  }

}

@media (max-width: 767px) {

  .reviews-main__label {
    font-size: 17px;
  }

  .reviews-slider .swiper-slide {
    font-size: 17px;
    padding: 20px 20px 70px;
  }

  .reviews-slider .swiper-slide::before {
    width: 60px;
    height: 60px;
  }

}

/*   notification   */

.notification__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 180px;
  background: var(--color-light);
  border-radius: var(--radius-default);
}

.notification__title {
  display: flex;
  align-items: center;
}

.notification__title::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 80px;
  height: 80px;
  background: url("/templates/pqd/img/notification-icon.svg") 0 0 no-repeat;
  background-size: cover;
  margin-right: 30px;
}

.notification__title p {
  font-size: 20px;
  font-weight: 300;
  margin-top: 5px;
}

.notification__form {
  display: flex;
  width: 480px;
}

.notification__field {
  flex-grow: 1;
  font-weight: 400;
  padding: 0 20px;
  border: 1px solid var(--color-border);
  border-right: 0;
  background: var(--color-white);
  border-radius: 8px 0 0 8px;
}

.notification__form .btn {
  border-radius: 0 8px 8px 0;
}

@media (max-width: 1279px) {

  .notification__title::before {
    margin-right: 20px;
  }

  .notification__content {
    padding: 50px;
    height: auto;
    flex-direction: column;
  }

  .notification__form {
    width: 500px;
    margin-top: 20px;
  }

}

@media (max-width: 767px) {

  .notification__title {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .notification__content {
    padding: 20px;
  }

  .notification__title::before {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
  }

  .notification__title p {
    font-size: 18px;
  }

  .notification__form {
    flex-direction: column;
    width: 100%;
  }

  .notification__field {
    height: 50px;
    margin-bottom: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-default);
  }

  .notification__form .btn {
    border-radius: var(--radius-default);
  }

}

/*   pre-footer   */

.pre-footer {
  background: rgba(11, 15, 25, .96);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.pre-footer__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pre-footer__text {}

.pre-footer__title {
  font-family: var(--font-title);
  color: var(--color-yellow);
}

.pre-footer__text p {
  font-size: 20px;
  font-weight: 350;
  line-height: 1.4;
  color: var(--color-white);
  margin-top: 15px;
}

.pre-footer__contact p:nth-child(1) {
  margin-bottom: 5px;
}

.pre-footer__phone {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.25;
  color: var(--color-white);
  text-decoration: none;
}

.pre-footer__email {
  font-size: 20px;
  font-weight: 550;
  color: var(--color-dark-mint);
  text-decoration: none;
}

.pre-footer__buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.pre-footer__buttons a {
  border-width: 1.5px;
}

.pre-footer__btn-chat i {
  margin-right: 10px;
  font-size: 20px;
}

.pre-footer__btn-chat i::before {
  margin: 0;
}

@media (max-width: 1279px) {

  .pre-footer {
    padding: 40px 0;
  }

  .pre-footer__content {
    flex-wrap: wrap;
    gap: 15px;
  }

  .pre-footer__contact {
    margin-left: auto;
  }

  .pre-footer__contact p {
    text-align: right;
  }

  .pre-footer__buttons {
    flex-grow: 1;
    justify-content: space-between;
    margin: 20px auto 0;
  }

  .pre-footer__buttons a {
    margin: 0;
  }

  .pre-footer__buttons a:nth-child(1) {
    order: 2;
  }

  .pre-footer__phone {
    font-size: 28px;
  }

}

@media (max-width: 767px) {

  .pre-footer__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pre-footer__contact {
    margin: 0 auto;
  }

  .pre-footer__contact p {
    text-align: center;
  }

  .pre-footer__text {
    text-align: center;
    margin: 0 auto 10px;
  }

  .pre-footer__buttons {
    flex-direction: column;
    width: 100%;
  }

  .pre-footer__buttons a {
    width: 100%;
  }

  .pre-footer__buttons a:nth-child(1) {
    order: 0;
    margin-bottom: 10px;
  }

  .pre-footer__phone {
    font-size: 24px;
  }

  .pre-footer__email {
    font-size: 18px;
  }

}

/*   footer   */

.footer {
  background: var(--color-dark-blue);
}

.footer__content {
  display: flex;
  padding: 60px 0;
  gap: 40px;
}

.footer__logo {
  display: block;
  margin-bottom: 15px;
}

.footer__copyright {}

.footer__copyright p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  opacity: .3;
}

/*   f-menu   */

.f-menu {
  /* margin-left: 40px; */
}

.f-menu__title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-pink);
  margin-bottom: 15px;
}

.f-menu__item:not(:last-child) {
  margin-bottom: 15px;
}

.f-menu__link {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  color: var(--color-white);
  transition: color .25s;
  text-decoration: none;
}

.f-menu__link:hover {
  color: var(--color-mint);
}

/*   f-contact   */

.f-contact {
  margin-left: auto;
}

.f-contact p {
  margin-bottom: 5px;
}

.f-contact__title {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-white);
  opacity: .3;
  margin-bottom: 10px;
}

.f-contact__phone {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-white);
}

.f-contact__email {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-dark-mint);
}

/*   f-social   */

.f-social {
  display: flex;
  margin-top: 15px;
}

.f-social__item:not(:last-child) {
  margin-right: 10px;
}

.f-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, .06);
  border-radius: var(--radius-small);
  text-decoration: none;
  transition: background-color .25s;
}

.f-social__link::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-image: var(--url-icon);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.f-social__link i {
  line-height: 100%;
  color: var(--color-white);
  opacity: .85;
  transition: opacity .25s;
}

.f-social__link:hover i {
  opacity: 1;
}

.f-social__link i::before {
  width: auto;
}

.f-social__link--tg::before {
  background-size: 18px auto;
  --url-icon: url('data:image/svg+xml,<svg width="16" height="14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m1.013 6.28 3.448 1.287 1.345 4.325c.058.292.41.35.643.175l1.928-1.578c.176-.175.468-.175.702 0l3.448 2.513c.235.176.586.059.644-.233L15.742.494c.059-.292-.235-.585-.527-.468L1.014 5.52c-.35.117-.35.643 0 .76V6.28Zm4.617.644 6.78-4.15c.117-.06.235.117.117.175L6.976 8.15c-.176.175-.35.41-.35.7l-.176 1.404c0 .175-.293.234-.35 0l-.703-2.572c-.175-.292-.058-.642.234-.76Z" fill="%23fff"/></svg>');
}

.f-social__link--tg:hover {
  background: #53a8e5;
}

.f-social__link--vk::before {
  background-size: 20px auto;
  --url-icon: url('data:image/svg+xml,<svg width="17" height="10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.354 8.837c0-.063-.062-.063-.062-.125-.25-.498-.81-1.12-1.557-1.806-.373-.31-.56-.56-.684-.684-.187-.25-.187-.436-.125-.686.062-.186.31-.498.747-1.058.25-.311.374-.498.56-.685.935-1.245 1.37-2.055 1.246-2.428l-.062-.063c-.063-.062-.125-.124-.25-.124-.124-.062-.31-.062-.498 0h-2.802l-.062.062c-.062.062-.062.062-.062.125-.25.685-.56 1.245-.872 1.868-.187.31-.373.622-.56.87-.187.25-.312.437-.436.56-.125.126-.25.189-.311.313-.063.062-.187.125-.187.062-.063 0-.125 0-.125-.062l-.187-.187c-.062-.062-.062-.187-.124-.311V1.365c0-.063-.062-.187-.062-.25L9.692.929c-.063-.063-.187-.063-.25-.125A5.59 5.59 0 0 0 8.322.68c-.996 0-1.681.062-1.93.187-.125.062-.25.124-.312.249-.124.124-.124.186-.062.186.31.063.56.187.685.374l.062.124c.063.063.063.187.125.374s.062.374.062.623v.996c0 .31-.062.498-.062.685 0 .187-.063.31-.125.374-.062.124-.062.186-.124.186 0 0 0 .063-.063.063-.062 0-.124.062-.25.062a.472.472 0 0 1-.248-.125.75.75 0 0 1-.311-.31 2.172 2.172 0 0 1-.374-.561c-.124-.25-.311-.498-.435-.872l-.125-.25a8.815 8.815 0 0 1-.311-.684c-.125-.311-.25-.56-.374-.872-.062-.124-.125-.187-.187-.25H3.9s-.062-.061-.125-.061c-.062 0-.124-.062-.186-.062H1.348c-.25 0-.374.062-.436.124l-.062.062v.125c0 .062 0 .124.062.249.31.747.685 1.494 1.059 2.242.373.684.747 1.307.996 1.743.31.436.56.872.872 1.245.31.374.498.623.56.748l.25.249.186.187c.124.124.31.31.56.498.25.186.56.373.872.56.31.187.685.31 1.059.436.435.124.81.187 1.183.124h.934a.565.565 0 0 0 .436-.186l.062-.063c0-.062.062-.062.062-.124v-.25c0-.248 0-.435.062-.622.063-.187.063-.311.125-.436a.845.845 0 0 1 .187-.25l.124-.123h.063c.124-.063.31 0 .435.124.187.125.374.312.498.498.125.187.312.374.56.623.25.249.437.436.56.498l.188.125c.125.062.25.124.436.186.187.063.31.063.436.063l2.117-.063c.187 0 .374-.062.498-.124.125-.062.187-.125.187-.25v-.248c-.125-.125-.125-.186-.125-.25Z" fill="%23fff"/></svg>');
}

.f-social__link--vk:hover {
  background: #3278f6;
}

.f-social__link--inst::before {
  background-size: 16px auto;
  --url-icon: url('data:image/svg+xml,<svg width="13" height="13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.934-.001h-9.12A1.78 1.78 0 0 0 0 1.813v9.122a1.78 1.78 0 0 0 1.814 1.814h9.121a1.78 1.78 0 0 0 1.815-1.814V1.813A1.783 1.783 0 0 0 10.934 0v-.001Zm-4.56 10.2c2.108 0 3.825-1.667 3.825-3.678 0-.343-.05-.735-.147-1.03h1.08v5.198c0 .246-.198.49-.49.49H2.106a.491.491 0 0 1-.49-.49V5.442h1.128a3.736 3.736 0 0 0-.147 1.03c-.05 2.06 1.667 3.727 3.776 3.727Zm0-1.471c-1.373 0-2.452-1.08-2.452-2.403 0-1.324 1.08-2.403 2.452-2.403 1.373 0 2.452 1.079 2.452 2.403 0 1.373-1.08 2.403-2.452 2.403Zm4.707-5.247c0 .294-.245.54-.539.54H9.17a.544.544 0 0 1-.54-.54V2.157c0-.294.246-.54.54-.54h1.373c.294 0 .54.245.54.54V3.48Z" fill="%23fff"/></svg>');
}

.f-social__link--inst:hover {
  background: #f09433;
}

.f-social__link--yt::before {
  background-size: 18px auto;
  --url-icon: url('data:image/svg+xml,<svg width="14" height="11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.535 4.185c0-.291-.049-.63-.049-1.018a66.622 66.622 0 0 0-.145-1.115c-.097-.388-.243-.68-.534-.922a1.638 1.638 0 0 0-.92-.436C10.771.548 9.122.5 6.892.5S2.965.549 1.898.694c-.34.048-.679.194-.921.436-.26.251-.445.57-.533.921-.097.34-.146.68-.146 1.116C.25 3.555.25 3.894.25 4.185v2.23c0 .291.048.63.048 1.018.049.388.097.776.146 1.116.097.387.242.678.533.92.242.243.582.389.921.437 1.115.146 2.764.194 4.994.194s3.928-.049 4.994-.194c.34-.048.679-.194.921-.436.243-.243.437-.534.534-.921a3.89 3.89 0 0 0 .145-1.116c.049-.387.049-.727.049-1.018v-2.23ZM9.462 5.688l-3.83 2.376a.37.37 0 0 1-.243.097c-.097 0-.145 0-.242-.049a.51.51 0 0 1-.243-.436v-4.8a.51.51 0 0 1 .486-.51.44.44 0 0 1 .242.073l3.83 2.376c.145.097.242.243.242.388 0 .146-.097.388-.242.485Z" fill="%23fff"/></svg>');
}

.f-social__link--yt:hover {
  background: #ea3323;
}

/*   f-buttons   */

.f-buttons {
  margin-left: 0;
}

.f-buttons__auth::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 20px;
  background-color: currentColor;
  background-repeat: no-repeat;
  mask-image: var(--mask-url);
  mask-size: auto 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-right: 12px;
  --mask-url: url('data:image/svg+xml,<svg width="342" height="428" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M300.936 427.335H107a21.336 21.336 0 0 1 0-42.67h191.539c.231-.604.461-1.5.461-2.662v-336c0-1.157-.23-2.053-.461-2.668H107a21.335 21.335 0 0 1 0-42.67h193.936c22.456 0 40.729 20.332 40.729 45.333v335.999c0 25.001-18.268 45.338-40.729 45.338ZM235 214c-.005 5.545-1.976 11.003-6.057 15.084l-64 64c-8.335 8.335-21.831 8.335-30.167 0-8.335-8.336-8.335-21.832 0-30.167l27.582-27.582H21.665a21.336 21.336 0 0 1 0-42.67h140.693l-27.582-27.581c-8.335-8.336-8.335-21.832 0-30.167 8.336-8.336 21.832-8.336 30.167 0l64 64c4.081 4.08 6.052 9.538 6.057 15.083Z" fill="%23000"/></svg>');
}



/*   f-payments   */

.f-payments {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.f-payments__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-payments__item {
  margin: 0 10px;
}

.f-payments__icon {
  flex-shrink: 0;
  display: block;
}

@media (max-width: 1279px) {

  .footer__content {
    padding: 40px 0;
    flex-wrap: wrap;
  }

  .footer__copyright {
    flex-shrink: 0;
  }

  .f-menu {
    margin-left: 30px;
  }

  .f-contact {
    margin-left: 30px;
  }

  .f-menu__title {
    margin-bottom: 10px;
  }

  .f-contact {
    margin-left: auto;
  }

  .f-buttons {
    margin: 30px auto 0;
  }

}

@media (max-width: 960px) {

  .footer__copyright {
    flex-grow: 1;
  }

  .f-contact {
    margin-left: 0;
    margin-top: 30px;
  }

  .f-buttons {
    margin-left: auto;
    margin-right: 0;
  }

  .f-payments__item {
    margin: 0 5px;
  }

  .f-payments__icon {
    transform: scale(.9);
  }

}

@media (max-width: 767px) {

  .footer__content {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .footer__logo {
    margin: 0 auto 10px;
  }

  .footer__copyright {
    margin-bottom: 20px;
  }

  .footer__copyright p {
    text-align: center;
  }

  .f-menu {
    margin: 0 0 20px;
    text-align: center;
  }

  .f-contact {
    text-align: center;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
  }

  .f-social {
    justify-content: center;
  }

  .f-buttons {
    margin: 20px auto 0;
  }

  .f-payments__list {
    flex-wrap: wrap;
    margin-bottom: -10px;
  }

  .f-payments__item {
    margin-bottom: 10px;
  }

}