/*
 * style
 */
/*
 * global
 */
/*
 * variables
 */
:root {
  --bg-color: #fff;
  --text-color: #000;
}
a {
  color: inherit;
}
a:hover {
  color: inherit;
}
p {
  line-height: 1.2;
  margin-bottom: 0;
}
h1,
h2,
h3,
h4 {
  margin: inherit;
}
h1 {
  font-size: 32px;
  font-weight: 500;
}
h2 {
  font-size: 20px;
  font-weight: 500;
}
h3 {
  font-size: 18px;
  font-weight: 500;
}
h4 {
  font-size: 16px;
  font-weight: 500;
}
h5 {
  font-size: 15px;
  font-weight: 500;
}
h6 {
  font-size: 14px;
  font-weight: 500;
}
img {
  max-width: 100%;
  height: auto;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Roboto', sans-serif, Arial, Helvetica, sans-serif;
  font-size: 100%;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden;
}
.container {
  min-width: 320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1360px;
  }
}
#wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
.main {
  margin: auto 0;
}
.overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0,0,0,0.3);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.overlay.active {
  opacity: 1;
}
/*
 * header
 */
.header {
  display: contents;
}
.header .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}
.header .dropdown__selected-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2px;
  position: relative;
}
.header .dropdown__selected-nav:before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(#4778ee), to(#fff));
  background: linear-gradient(to left, #4778ee, #fff);
  opacity: 0;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.header .dropdown__selected-nav:after {
  content: "";
  position: absolute;
  top: calc(100% - 0.5px);
  left: 0;
  opacity: 0;
  width: 4px;
  height: 4px;
  background-color: #4778ee;
  border-radius: 50%;
  -webkit-transition: left 0.3s ease, opacity 0.3s ease;
  transition: left 0.3s ease, opacity 0.3s ease;
  -webkit-box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
          box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
}
.header .dropdown__selected-nav.active .dropdown__selected,
.header .dropdown__selected-nav:hover .dropdown__selected {
  color: #4778ee;
}
.header .dropdown__selected-nav.active .dropdown__toggler,
.header .dropdown__selected-nav:hover .dropdown__toggler {
  background-color: #4778ee;
}
@media (min-width: 1000px) {
  .header .dropdown__selected-nav.active:before {
    width: 100%;
    -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
            animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
  }
  .header .dropdown__selected-nav.active:after {
    left: calc(100% - 4px);
    -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
            animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
  }
}
.header .dropdown__selected {
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #272a36;
}
.header .dropdown__toggler {
  -webkit-mask-image: url("../images/icons/dropdown.svg");
          mask-image: url("../images/icons/dropdown.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #8e8e93;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.header .dropdown__list {
  position: absolute;
  z-index: 3;
  top: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08), 0 0 6px 0 rgba(0,0,0,0.02);
          box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08), 0 0 6px 0 rgba(0,0,0,0.02);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.header .dropdown__list.active {
  top: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__first {
  max-height: 45px;
  border-bottom: 1px solid #e2e2e2;
}
.header__first-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  padding: 12px 0;
}
.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px 0;
  width: 30px;
  padding: 4px 0;
  cursor: pointer;
}
@media (min-width: 1000px) {
  .header__burger {
    display: none;
  }
}
.header__burger.active .header__burger-line:nth-child(1) {
  -webkit-transform: translateX(3%) translateY(130%) rotate(-45deg);
      -ms-transform: translateX(3%) translateY(130%) rotate(-45deg);
          transform: translateX(3%) translateY(130%) rotate(-45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
  -webkit-transform: translateX(3%) translateY(-115%) rotate(45deg);
      -ms-transform: translateX(3%) translateY(-115%) rotate(45deg);
          transform: translateX(3%) translateY(-115%) rotate(45deg);
}
.header__burger-line {
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__sub-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (min-width: 1000px) {
  .header__sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__sub-link {
  position: relative;
  font-size: 12px;
  color: #8e8e93;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}
.header__sub-link:after {
  content: "";
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background-color: #4778ee;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__sub-link:hover {
  color: #4778ee;
}
.header__sub-link:hover:after {
  width: 60%;
}
.header__sub-link.active {
  color: #4778ee;
}
.header__sub-link.active:after {
  width: 60%;
}
.header__enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
}
.header__account {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #272a36;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 1000px) {
  .header__account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__account:hover {
  color: #4778ee;
}
.header__account:hover .header__account-icon {
  background-color: #4778ee;
}
.header__account-icon {
  width: 16px;
  height: 16px;
  -webkit-mask: url("../images/icons/mail.svg");
          mask: url("../images/icons/mail.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #272a36;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header__login {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #4778ee;
  text-decoration: none;
}
@media (min-width: 1000px) {
  .header__login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__login:hover {
  color: #4778ee;
}
.header__login-icon {
  width: 16px;
  height: 16px;
  -webkit-mask: url("../images/icons/login.svg");
          mask: url("../images/icons/login.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #4778ee;
}
.header__account,
.header__login {
  position: relative;
}
.header__account:after,
.header__login:after {
  content: "";
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background-color: #4778ee;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__account:hover:after,
.header__login:hover:after {
  width: 60%;
}
.header__lang.is-disabled {
  pointer-events: none;
}
.header__lang.is-disabled .dropdown__toggler {
  display: none;
}
.header__lang .dropdown__selected {
  line-height: 1;
  color: #8e8e93;
}
@media (min-width: 1000px) {
  .header__lang .dropdown__selected {
    font-size: 12px;
  }
}
.header__lang .dropdown__toggler {
  width: 20px;
  height: 20px;
}
@media (min-width: 1000px) {
  .header__lang .dropdown__toggler {
    width: 16px;
    height: 16px;
  }
}
.header__lang .dropdown__toggler.active {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.header__lang .dropdown__list {
  right: 0;
  gap: 20px;
  padding: 20px 12px;
  border-radius: 8px;
}
.header__lang .dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 16px;
  text-decoration: none;
  color: #272a36;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 1000px) {
  .header__lang .dropdown__link {
    font-size: 14px;
  }
}
.header__lang .dropdown__link:hover .lang {
  color: #4778ee;
}
.header__lang .dropdown__link.active .lang {
  color: #272a36;
}
.header__lang .dropdown__link .flag {
  width: 16px;
  height: 12px;
}
.header__lang .dropdown__link .lang {
  font-size: 12px;
  line-height: 1;
  color: #8e8e93;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__lang .dropdown__link[data-lang="EN"] .flag {
  background: url("../images/flags/gb.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="EN"] .lang:before {
  content: "EN";
}
.header__lang .dropdown__link[data-lang="RU"] .flag {
  background: url("../images/flags/ru.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="RU"] .lang:before {
  content: "RU";
}
.header__lang .dropdown__link[data-lang="ZH"] .flag {
  background: url("../images/flags/cn.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="ZH"] .lang:before {
  content: "ZH";
}
.header__lang .dropdown__link[data-lang="FR"] .flag {
  background: url("../images/flags/fr.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="FR"] .lang:before {
  content: "FR";
}
.header__lang .dropdown__link[data-lang="DE"] .flag {
  background: url("../images/flags/de.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="DE"] .lang:before {
  content: "DE";
}
.header__lang .dropdown__link[data-lang="HI"] .flag {
  background: url("../images/flags/in.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="HI"] .lang:before {
  content: "HI";
}
.header__lang .dropdown__link[data-lang="PL"] .flag {
  background: url("../images/flags/pl.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="PL"] .lang:before {
  content: "PL";
}
.header__lang .dropdown__link[data-lang="ES"] .flag {
  background: url("../images/flags/es.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="ES"] .lang:before {
  content: "ES";
}
.header__lang .dropdown__link[data-lang="TR"] .flag {
  background: url("../images/flags/tr.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="TR"] .lang:before {
  content: "TR";
}
.header__lang .dropdown__link[data-lang="UK"] .flag {
  background: url("../images/flags/ua.png") no-repeat center;
  background-size: cover;
}
.header__lang .dropdown__link[data-lang="UK"] .lang:before {
  content: "UK";
}
.header__second {
  margin: 0 0 8px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media (max-width: 991px) {
  .header.active .header__first  {
    position: sticky;
    z-index: 5;
    top: 0;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-bottom: 1px solid #e2e2e2;
 }
 .header.active .header__first:before {
    content: "";
    opacity: .9;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
 }
}
@media (min-width: 992px) {
  .header.active .header__second  {
    position: sticky;
    z-index: 5;
    top: 0;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-bottom: 1px solid #e2e2e2;
 }
 .header.active .header__second:before {
    content: "";
    opacity: .9;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
 }
}
.header__second-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 32px;
  padding: 16px 0;
}
.header__menu {
  display: none;
}
@media (min-width: 1000px) {
  .header__menu {
    display: block;
  }
  .header__menu.hide {
    display: none;
  }
}
@media (max-width: 1000px) {
  .header__menu.active {
    /* position: absolute; */
	position: fixed;
    z-index: 2;
    top: 45px;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100% - 45px);
    padding: 20px;
    background-color: #fff;
    overflow: auto;
  }
  .header__menu.active .nav {
    margin: 0 0 20px;
  }
  .header__menu.active .nav__list {
    display: grid;
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
    grid-template-areas: "one five" "two five" "three five" "four six" "seven seven";
    gap: 20px;
  }
  .header__menu.active .nav__link {
    width: 100%;
    padding: 20px;
    border: 1px solid #e5e6ee;
    border-radius: 12px;
  }
  .header__menu.active .nav .dropdown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: default;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
    border: 1px solid #e5e6ee;
    border-radius: 12px;
  }
  .header__menu.active .nav .dropdown__selected-nav {
    width: 100%;
  }
  .header__menu.active .nav .dropdown__selected-nav:hover .dropdown__selected {
    color: #8e8e93;
  }
  .header__menu.active .nav .dropdown__selected {
    margin: 0 0 32px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #8e8e93;
    pointer-events: none;
  }
  .header__menu.active .nav .dropdown__toggler {
    display: none;
  }
  .header__menu.active .nav .sub-dropdown .dropdown__toggler {
    display: block;
  }
  .header__menu.active .nav .dropdown__list {
    position: static;
    gap: 20px;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
  }
}
.header__menu .nav [nav-data="1"] {
  grid-area: one;
  z-index: 0;
}
@media (min-width: 1000px) {
  .header__menu .nav [nav-data="1"] {
    display: none;
  }
}
.header__menu .nav [nav-data="2"] {
  grid-area: two;
}
.header__menu .nav [nav-data="3"] {
  grid-area: three;
}
.header__menu .nav [nav-data="4"] {
  grid-area: four;
}
.header__menu .nav [nav-data="5"] {
  grid-area: five;
}
.header__menu .nav [nav-data="6"] {
  grid-area: six;
}
.header__menu .nav [nav-data="7"] {
  grid-area: seven;
}
.header__menu .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu .nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1000px) {
  .header__menu .nav__buttons {
    display: none;
  }
}
.header__menu .nav__buttons .button {
  width: 100%;
}
.header__menu .nav__item {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
}
@media (min-width: 1000px) {
  .header__menu .nav__item {
    display: block;
    min-height: unset;
  }
}
.header__menu .nav__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 40px;
  padding: 0 4px 0 0;
  margin: 0 0 8px;
}
@media (min-width: 1000px) {
  .header__menu .nav__icon-wrap {
    display: none;
  }
}
.header__menu .nav__link {
  position: relative;
  font-size: 16px;
  color: #272a36;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background-color: #fff;
}
@media (min-width: 1000px) {
  .header__menu .nav__link {
    font-weight: 500;
    font-size: 14px;
    background-color: transparent;
  }
}
.header__menu .nav__link:before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(#4778ee), to(#fff));
  background: linear-gradient(to left, #4778ee, #fff);
  opacity: 0;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.header__menu .nav__link:after {
  content: "";
  position: absolute;
  top: calc(100% + 2.5px);
  left: 0;
  opacity: 0;
  width: 4px;
  height: 4px;
  background-color: #4778ee;
  border-radius: 50%;
  -webkit-transition: left 0.3s ease, opacity 0.3s ease;
  transition: left 0.3s ease, opacity 0.3s ease;
  -webkit-box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
          box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
}
.header__menu .nav__link:hover {
  color: #4778ee;
}
@media (min-width: 1000px) {
  .header__menu .nav__link:hover:after {
    left: calc(100% - 4px);
    -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
            animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
  }
  .header__menu .nav__link:hover:before {
    width: 100%;
    -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
            animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
  }
}
.header__menu .nav .dropdown__toggler {
  width: 16px;
  height: 16px;
}
.header__menu .nav .dropdown__toggler.active {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.header__menu .nav .dropdown__list {
  gap: 20px;
  width: auto;
  padding: 16px;
  border-radius: 12px;
}
@media (min-width: 1000px) {
  .header__menu .nav .dropdown__list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 24px;
  }
}
.header__menu .nav .dropdown__item.sub-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.header__menu .nav .dropdown__item.sub-dropdown .sub-dropdown {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.header__menu .nav .dropdown__item.sub-dropdown .sub-dropdown__selected-nav {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__menu .nav .dropdown__item.sub-dropdown .sub-dropdown__selected-nav.active,
.header__menu .nav .dropdown__item.sub-dropdown .sub-dropdown__selected-nav:hover {
  color: #4778ee;
}
.header__menu .nav .sub-dropdown__list .sub-dropdown__list {
  padding: 0 0 0 16px;
}
.header__menu .nav .dropdown__item.sub-dropdown:hover .sub-dropdown__link {
  left: inherit;
}
.header__menu .nav .dropdown__item .sub-dropdown__selected-nav:hover .dropdown__toggler,
.header__menu .nav .dropdown__item.sub-dropdown:hover .dropdown__icon {
  background-color: #4778ee;
}
.header__menu .nav .dropdown__item.sub-dropdown:hover .dropdown__icon-wrap {
  background-color: #edf2fd;
}
.header__menu .nav .dropdown__item.sub-dropdown:hover .sub-dropdown__selected-nav .dropdown__link-title {
  color: #4778ee;
}
.header__menu .nav .dropdown__item.sub-dropdown:hover .dropdown__link-subtitle {
  color: #272a36;
}
.header__menu .nav .dropdown__item.sub-dropdown.active .dropdown__toggler.active,
.header__menu .nav .dropdown__item.sub-dropdown.active .dropdown__icon {
  background-color: #4778ee;
}
.header__menu .nav .dropdown__item.sub-dropdown.active .dropdown__link-title {
  color: #4778ee;
}
.header__menu .nav .dropdown__item.sub-dropdown.active .dropdown__link-subtitle {
  color: #272a36;
}
.header__menu .nav .sub-dropdown__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}
.header__menu .nav .sub-dropdown__selected-nav {
  display: flex;
  justify-content: space-between;
  gap: 0 2px;
}
.header__menu .nav .sub-dropdown__list {
  display: none;
  flex-direction: column;
  gap: 16px 0;
  padding: 0;
  list-style: none;
}
.header__menu .nav .sub-dropdown__list.active {
  display: flex;
}
.header__menu .nav .sub-dropdown__link {
  font-size: 14px;
  color: #272a36;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}
.header__menu .nav .sub-dropdown__list .sub-dropdown__link:hover {
  color: #4778ee;
}
.header__menu .nav .dropdown__link {
  position: relative;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
@media (min-width: 1000px) {
  .header__menu .nav .dropdown__link:hover {
    left: 10px;
  }
}
.header__menu .nav .dropdown__link:hover .dropdown__icon-wrap {
  background-color: #edf2fd;
}
.header__menu .nav .dropdown__link:hover .dropdown__link-title {
  color: #4778ee;
}
.header__menu .nav .dropdown__link:hover .dropdown__link-subtitle {
  color: #272a36;
}
.header__menu .nav .dropdown__icon-wrap {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
        flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #f7f7f7;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (min-width: 1000px) {
  .header__menu .nav .dropdown__icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__menu .nav .dropdown__icon {
  width: 20px;
  height: 20px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header__menu .nav .dropdown__icon[data-icon="lock"] {
  -webkit-mask-image: url("../images/icons/lock.svg");
          mask-image: url("../images/icons/lock.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="search"] {
  -webkit-mask-image: url("../images/icons/search_box.svg");
          mask-image: url("../images/icons/search_box.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="rates"] {
  -webkit-mask-image: url("../images/icons/rates.svg");
          mask-image: url("../images/icons/rates.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="messenger"] {
  -webkit-mask-image: url("../images/icons/messenger.svg");
          mask-image: url("../images/icons/messenger.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="articles"] {
  -webkit-mask-image: url("../images/icons/articles.svg");
          mask-image: url("../images/icons/articles.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="editors"] {
  -webkit-mask-image: url("../images/icons/editors.svg");
          mask-image: url("../images/icons/editors.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="experts"] {
  -webkit-mask-image: url("../images/icons/experts.svg");
          mask-image: url("../images/icons/experts.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__icon[data-icon="categories"] {
  -webkit-mask-image: url("../images/icons/categories.svg");
          mask-image: url("../images/icons/categories.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #8E8E93;
}
.header__menu .nav .dropdown__link:hover .dropdown__icon {
  background-color: #4778EE;
}
.header__menu .nav .dropdown__link-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.header__menu .nav .dropdown__link-title {
  font-size: 14px;
  color: #272a36;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__menu .nav .dropdown__link-subtitle {
  font-size: 12px;
  color: #8e8e93;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__mobile {
  display: block;
}
@media (min-width: 1000px) {
  .header__mobile {
    display: none;
  }
}
.header .mobile__sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin: 0 auto 20px;
}
.header .mobile__sub-link {
  font-weight: 500;
  font-size: 14px;
  color: #8e8e93;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}
.header .mobile__sub-link:hover {
  color: #4778ee;
}
.header .mobile__sub-link.active {
  color: #4778ee;
}
.header .mobile__sub-separator {
  font-weight: 500;
  font-size: 14px;
  color: #8e8e93;
}
.header .mobile__footer {
  border-top: 1px solid #e5e6ee;
}
.header .mobile .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
.header .mobile .contacts__email {
  font-weight: 500;
  font-size: 14px;
  color: #4778ee;
  text-decoration: none;
}
.header .mobile .contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header .mobile .contacts__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .mobile .contacts__social-icon {
  border-radius: 50%;
  border: 1px solid #dddee3;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.header .mobile .contacts__social-icon:hover {
  border: 1px solid #4778ee;
}
.header .mobile .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.header .mobile .copyright__text {
  font-size: 14px;
  color: #272a36;
}
.header .mobile .copyright__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.header .mobile .copyright__link {
  font-size: 14px;
  color: #8e8e93;
  text-decoration: none;
}
.header__action {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media (min-width: 480px) {
  .header__action {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
    width: auto;
	gap: 0 20px;
  }
}
@media (min-width: 768px) {
  .header__action {
    gap: 0 32px;
  }
}
.header__action.active {
  width: 100%;
}
.header__action.active .search {
  max-width: 100%;
}
.header__action.active .search__form {
  width: 100%;
}
.header__action .button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media (min-width: 480px) {
  .header__action .button {
	width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.header .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 auto;
}
@media (min-width: 480px) {
  .header .search {
    max-width: 272px;
  }
}
.header .search__form {
  display: block;
  width: 100%;
}
@media (min-width: 480px) {
  .header .search__form {
    display: none;
    width: 270px;
  }
}
@media (min-width: 1200px) {
  .header .search__form {
    display: block;
  }
}
@media (min-width: 480px) {
  .header .search__form.active {
    display: block;
  }
}
.header .search__wrapper {
  position: relative;
  width: 100%;
  height: 40px;
}
.header .search__input {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 8px 46px;
  border: 1px solid #e5e6ee;
  border-radius: 4px;
  outline: none;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.header .search__input::-webkit-search-cancel-button {
  display: none;
}
.header .search__input::-webkit-input-placeholder {
  font-size: 14px;
}
.header .search__input::-moz-placeholder {
  font-size: 14px;
}
.header .search__input:-ms-input-placeholder {
  font-size: 14px;
}
.header .search__input::-ms-input-placeholder {
  font-size: 14px;
}
.header .search__input::placeholder {
  font-size: 14px;
}
.header .search__input:focus {
  border: 1px solid #4778ee;
}
.header .search__button {
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  padding: 0;
  -webkit-mask: url("../images/icons/search.svg");
          mask: url("../images/icons/search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #8e8e93;
  border: none;
  outline: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.header .search__button:hover {
  background-color: #272a36;
}
.header .search__options {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4px;
  height: 24px;
  margin: auto;
}
.header .search__close {
  display: none;
  width: 24px;
  height: 24px;
  -webkit-mask: url("../images/icons/close.svg");
          mask: url("../images/icons/close.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #8e8e93;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media (min-width: 480px) {
  .header .search__close {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header .search__close {
    display: none;
  }
}
.header .search__close:hover {
  background-color: #272a36;
}
.header .search__close.active {
  display: none;
}
@media (min-width: 480px) {
  .header .search__close.active {
    display: block;
  }
}
.header .search__backspace {
  display: none;
  width: 24px;
  height: 24px;
  -webkit-mask: url("../images/icons/backspace.svg");
          mask: url("../images/icons/backspace.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #8e8e93;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.header .search__backspace:hover {
  background-color: #272a36;
}
.header .search__backspace.active {
  display: block;
}
.header .search__toggler {
  display: none;
  width: 24px;
  height: 24px;
  -webkit-mask: url("../images/icons/search.svg");
          mask: url("../images/icons/search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #272a36;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media (min-width: 480px) {
  .header .search__toggler {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header .search__toggler {
    display: none;
  }
}
.header .search__toggler:hover {
  background-color: #4778ee;
}
.header .search__toggler.hide {
  display: none;
}
.scroll-progress {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#4778EE), color-stop(#2079ed), to(#1ea2f2));
  background: -o-linear-gradient(left, #4778EE, #2079ed, #1ea2f2);
  background: linear-gradient(90deg, #4778EE, #2079ed, #1ea2f2);
  -webkit-box-shadow: 1px 1px 2px 0px #88c7ec78;
          box-shadow: 1px 1px 2px 0px #88c7ec78;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.scroll-progress__first {
  display: block;
}
@media (min-width: 992px) {
  .scroll-progress__first {
    display: none;
  }
}
.scroll-progress__second {
  display: none;
}
@media (min-width: 992px) {
  .scroll-progress__second {
    display: block;
  }
}
@-webkit-keyframes link-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes link-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * footer
 */
.footer {
  margin: auto 0 0;
}
.footer__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px 0;
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  .footer__main {
    gap: 30px;
  }
}
.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.footer__first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__first {
    gap: 30px;
    max-width: calc(100% - 250px);
  }
}
.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__sub-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (min-width: 480px) {
  .footer__sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__sub-link {
  position: relative;
  font-size: 12px;
  color: #8e8e93;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer__sub-link:after {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background-color: #4778ee;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer__sub-link:hover {
  color: #4778ee;
}
.footer__sub-link:hover:after {
  width: 60%;
}
.footer__sub-link.active {
  color: #4778ee;
}
.footer__sub-link.active:hover:after {
  width: 0;
}
.footer__menu {
  width: 100%;
  max-width: 50%;
}
@media (min-width: 768px) {
  .footer__menu {
    max-width: calc(100% - 250px);
  }
}
.footer__menu .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px 48px;
}
@media (min-width: 768px) {
  .footer__menu .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1000px) {
  .footer__menu .nav {
    gap: 0 80px;
  }
}
.footer__menu .nav__list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu .nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__menu .nav__link {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: #8e8e93;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer__menu .nav__link:before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(#4778ee), to(#fff));
  background: linear-gradient(to left, #4778ee, #fff);
  opacity: 0;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.footer__menu .nav__link:after {
  content: "";
  position: absolute;
  top: calc(100% + 0.5px);
  left: 0;
  opacity: 0;
  width: 4px;
  height: 4px;
  background-color: #4778ee;
  border-radius: 50%;
  -webkit-transition: left 0.3s ease, opacity 0.3s ease;
  transition: left 0.3s ease, opacity 0.3s ease;
  -webkit-box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
          box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
}
.footer__menu .nav__link.active,
.footer__menu .nav__link:hover {
  color: #4778ee;
}
.footer__menu .nav__link:hover {
  -webkit-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}
.footer__menu .nav__link:hover:before {
  width: 100%;
  -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
          animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
}
.footer__menu .nav__link:hover:after {
  left: calc(100% - 4px);
  -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
          animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
}
.footer__second {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  max-width: 220px;
}
@media (min-width: 480px) {
  .footer__second {
    top: 70px;
    right: 0;
  }
}
@media (min-width: 768px) {
  .footer__second {
    position: static;
  }
}
.footer__enter {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  max-width: 220px;
}
@media (min-width: 480px) {
  .footer__enter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #4778ee;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer__login:hover {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  color: #4778ee;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
  width: 100%;
  max-width: 120px;
}
.footer__email {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: #4778ee;
  text-decoration: none;
}
.footer__email:before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(#4778ee), to(#fff));
  background: linear-gradient(to left, #4778ee, #fff);
  opacity: 0;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.footer__email:after {
  content: "";
  position: absolute;
  top: calc(100% - 0.5px);
  left: 0;
  opacity: 0;
  width: 4px;
  height: 4px;
  background-color: #4778ee;
  border-radius: 50%;
  -webkit-transition: left 0.3s ease, opacity 0.3s ease;
  transition: left 0.3s ease, opacity 0.3s ease;
  -webkit-box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
          box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
}
.footer__email:hover {
  color: #4778ee;
}
.footer__email:hover:before {
  width: 100%;
  -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
          animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
}
.footer__email:hover:after {
  left: calc(100% - 4px);
  -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
          animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__social-icon {
  border-radius: 50%;
  border: 1px solid #dddee3;
  -webkit-transition: border 0.3s ease, -webkit-transform 0.3s ease;
  transition: border 0.3s ease, -webkit-transform 0.3s ease;
  transition: border 0.3s ease, transform 0.3s ease;
  transition: border 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer__social-icon:hover {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  border: 1px solid #4778ee;
}
.footer__payments {
  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;
  gap: 8px;
  width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .footer__payments {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
  }
}
.footer__copyright {
  padding: 24px 0;
}
.footer__copyright .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.footer__copyright .copyright__text {
  font-size: 12px;
  color: #272a36;
}
.footer__copyright .copyright__links {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 32px;
}
.footer__copyright .copyright__link {
  position: relative;
  font-size: 12px;
  color: #8e8e93;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__copyright .copyright__link:before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(#4778ee), to(#fff));
  background: linear-gradient(to left, #4778ee, #fff);
  opacity: 0;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.footer__copyright .copyright__link:after {
  content: "";
  position: absolute;
  top: calc(100% - 0.5px);
  left: 0;
  opacity: 0;
  width: 4px;
  height: 4px;
  background-color: #4778ee;
  border-radius: 50%;
  -webkit-transition: left 0.3s ease, opacity 0.3s ease;
  transition: left 0.3s ease, opacity 0.3s ease;
  -webkit-box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
          box-shadow: 0px 0px 8px 2px rgba(71,120,238,0.5);
}
.footer__copyright .copyright__link:hover {
  color: #4778ee;
}
.footer__copyright .copyright__link:hover:before {
  width: 100%;
  -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
          animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
}
.footer__copyright .copyright__link:hover:after {
  left: calc(100% - 4px);
  -webkit-animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
          animation: link-animation cubic-bezier(0.9, 0.3, 0, 1) 1s forwards;
}
@-webkit-keyframes link-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes link-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * buttons
 */
.btn {
  position: relative;
  padding: 0;
  text-decoration: none;
  border: none;
  border-radius: 38px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*
 * to top
 */
#toTop {
  position: fixed;
  z-index: 4;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  outline: none;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}
#toTop svg .circle {
  transition: fill 0.3s;
}
#toTop:hover svg .circle {
  fill: #3667DD;
}
#toTop.show {
  opacity: 1;
  visibility: visible;
}