@keyframes shake {
    0%,
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(calc(-50% - 2px), -50%) rotate(-2deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(2deg);
    }
    75% {
        transform: translate(calc(-50% + 2px), -50%) rotate(-2deg);
    }
}

:root {
  --white-color: #ffffff;
  --grey-color: #ececec;
  --dark-grey-color: rgba(236, 236, 236, 0.65);
  --black-color: #2c2c2c;
  --accent-color: #933ffe;
  --btn-color: linear-gradient(225deg, #18c8ff 14.89%, #933ffe 85.85%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  object-fit: cover;
}

body {
  padding: 0;
  margin: 0;
  font-family: Montserrat, sans-serif;
  position: relative;
  overflow: auto;
  scrollbar-width: none;
  background: #0b0121;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
button,
input,
textarea,
select {
  color: var(--grey-color);
  font-family: Montserrat, sans-serif;
  font-feature-settings: "liga" off, "clig" off;
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

button,
a {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-width: 0;
  font-family: sans-serif;
  font-weight: normal;
  font-size: inherit;
  text-decoration: none;
  cursor: pointer;
  font-family: Montserrat;
  transition: 0.3s;
}

.container {
  padding: 40px 80px;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.btn {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  text-align: center;
  line-height: 1.5;
  transition: 0.3s;
}

.color-btn {
  background: var(--btn-color);
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.05) inset,
    0px 2px 2px 0px rgba(255, 255, 255, 0.15) inset;
  backdrop-filter: blur(20px);
  max-width: 210px;
}

.color-btn:hover {
  color: var(--white-color);
  transform: translateY(2px);
  opacity: 0.7;
}

@media (max-width: 1350px) {
  .container {
    padding: 80px 60px;
  }
}

@media (max-width: 1040px) {
  .container {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  .color-btn {
    max-width: 100%;
    width: 100%;
  }
}

/* Header-Menu */

.header-section {
}

.header-container {
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
}

nav {
  display: flex;
  gap: 46px;
  justify-content: center;
  align-items: center;
}

.logo,
.logo-img {
  height: 29px;
}

.menu {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.menu-item {
}
.menu-link {
  font-size: 16px;
  line-height: 1.5;
}

.header-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #18c8ff, #933ffe);
  -webkit-mask: linear-gradient(var(--grey-color) 0 0) content-box,
    linear-gradient(var(--grey-color) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.menu-mob-open {
  background: transparent;
  display: none;
}

.menu-btn-mob {
  width: 44px;
  height: 44px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 50%;
  fill: #ececec;
}

.close-img-mob {
  fill: #ececec;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.close-img-mob:hover,
.menu-btn-mob:hover {
  fill: #ececec;
  background-color: var(--accent-color);
  border: solid 1px var(--accent-color);
}

@media (max-width: 1350px) {
  .header-container {
    padding: 24px 60px;
  }
}

@media (max-width: 1040px) {
  .header-container {
    padding: 24px 40px;
  }
}

@media (max-width: 950px) {
  nav {
    gap: 24px;
  }
  .menu {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .menu-mob-open {
    display: block;
  }
  .menu,
  .header-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 16px 16px 4px 16px;
  }
}

/* Banner Info */

.banner {
  display: flex;
  padding: 10px;
  justify-content: center;
  background: var(--btn-color);
}
.banner-text {
  color: #f2f4f8;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .banner-text {
    font-size: 14px;
  }
}

/* Hero */

.hero-section {
  background: url("../img/hero-bg.jfif");
  background-size: cover;
}

.hero-container {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.4px;
  background: linear-gradient(
    146deg,
    var(--grey-color) 20.35%,
    rgba(236, 236, 236, 0) 128.73%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: rgba(236, 236, 236, 0.65);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 18px;
  line-height: 1.6;
}

.hero-btn {
}

.hero-img {
  max-height: 600px;
  border-radius: 24px;
  background: lightgray 50% / cover no-repeat, rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset,
    0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15);
}

@media (max-width: 1350px) {
  .hero-container {
    padding: 60px;
  }
}

@media (max-width: 1290px) {
  .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 1135px) {
  .hero-title {
    font-size: 64px;
  }
}
@media (max-width: 1040px) {
  .hero-container {
    padding: 60px 40px;
  }
  .hero-title {
    font-size: 54px;
  }
}

@media (max-width: 850px) {
  .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero-container {
    padding: 16px;
    gap: 24px;
  }
  .hero-text-block {
    align-items: center;
  }
  .hero-title {
    text-align: center;
    font-size: 36px;
    letter-spacing: -1.08px;
  }

  .hero-text {
    text-align: center;
    font-size: 16px;
  }

  .hero-btn {
    display: none;
  }

  .hero-img {
    max-height: 300px;
  }
}

/* Trade Bot */

.trade-section {
}

.trade-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.trade-text-block {
  text-align: center;
}

.trade-subtitle {
  color: rgba(236, 236, 236, 0.65);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.trade-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}
.trade-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 852px;
  margin: auto;
}
.trade-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  padding: 10px;
}
.trade-item {
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15),
    0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset;
  padding: 20px;
  position: relative;
}
.trade-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 16px;
}
.trade-item:first-child .trade-icon {
  border: 2px solid #6933e0;
  background: #591ddd;
  box-shadow: 0px 0px 36.455px 0px rgba(89, 29, 221, 0.75);
}
.trade-item:nth-child(2) .trade-icon {
  border: 2px solid #69d6ec;
  background: #1dbddd;
  box-shadow: 0px 0px 36.455px 0px rgba(29, 189, 221, 0.75);
}
.trade-item:nth-child(3) .trade-icon {
  border: 2px solid #cc32b0;
  background: #c925ab;
  box-shadow: 0px 0px 36.455px 0px rgba(201, 37, 171, 0.75);
}
.trade-item:nth-child(4) .trade-icon {
  border: 2px solid #9d37cd;
  background: #9426c9;
  box-shadow: 0px 0px 36.455px 0px rgba(149, 37, 201, 0.75);
}

.trade-item-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.16px;
  margin-bottom: 10px;
}
.trade-item-text {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 26px;
}
.learn-more {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration-line: underline;
  position: absolute;
  bottom: 14px;
}

@media (max-width: 1024px) {
  .trade-list {
    gap: 40px 24px;
  }
  .trade-item {
    padding: 40px;
  }
  .learn-more {
    position: relative;
  }
}

@media (max-width: 768px) {
  .trade-container {
    padding-top: 10px;
  }

  .trade-text-block {
    /* text-align: start; */
  }

  .trade-subtitle {
    font-size: 12px;
    margin-bottom: 48px;
  }
  .trade-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .trade-text {
    font-size: 16px;
    line-height: 1.4;
  }
  .trade-list {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 26px;
    padding: 0;
  }
  .trade-item {
    padding: 16px;
  }
  .trade-item-title {
    font-size: 20px;
  }
}

/* About */

.about-section {
}

.about-container {
  justify-content: space-between;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 66px;
}
.about-img {
  max-height: 640px;
  width: 600px;
  border-radius: 24px;
  background: lightgray 50% / cover no-repeat, rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset,
    0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15);
}
.expert-info {
}

.expert-info-mob {
  display: none;
}

.expert-position-text {
  color: #f2f4f8;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.expert-name {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}
.expert-text {
  color: rgba(236, 236, 236, 0.65);
  font-size: 18px;
  line-height: 1.6;
  max-width: 474px;
  margin-bottom: 48px;
}
.about-expert-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.about-expert-item {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.5;
}

.about-expert-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: url("../img/list-point.svg") no-repeat center / contain;
}

@media (max-width: 1024px) {
  .about-container {
    gap: 28px;
  }
  .expert-text {
    margin-bottom: 24px;
  }
  .about-expert-list {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .about-container {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 32px;
  }

  .about-img {
    max-height: 365px;
    width: 100%;
  }
  .expert-info .expert-position-text,
  .expert-info .expert-name,
  .expert-info .expert-text {
    display: none;
  }

  .expert-info-mob {
    display: block;
    text-align: center;
  }

  .expert-position-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .expert-name {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .expert-text {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  .about-expert-list {
    gap: 10px;
  }
  .about-expert-item {
    padding-left: 26px;
    font-size: 16px;
  }

  .about-expert-item::before {
    top: 6px;
    width: 10px;
    height: 10px;
  }
}

/* Swiper Feedback */

.swiper {
  display: none;
  width: 100%;
  margin-bottom: 26px;
}

.swiper-wrapper {
  position: relative;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  border: 4px solid #18c8ff;
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}

/* Feedback */

.feedback-section {
}
.feedback-container {
  padding: 40px 0;
  text-align: center;
}
.feedback-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}
.feedback-subtitle-block {
  margin-bottom: 60px;
}
.feedback-evaluation {
}
.feedback-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 24px;
}
.feedback-cart {
  padding: 32px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset,
    0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15);
  width: calc((100% / 3)-48px);
}
.feedback-autor {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.feedback-autor-img {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  /* border: 1px solid var(--grey-color); */
  background: lightgray 50% / cover no-repeat;

  box-shadow: 0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset,
    0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15);
}
.feedback-info {
  text-align: left;
}
.feedback-name {
  font-size: 20px;
  line-height: 1.5;
}
.feedback-city {
  color: rgba(236, 236, 236, 0.65);
  font-size: 18px;
  line-height: 1.6;
}
.feedback-numbers-list {
  display: flex;
  gap: 12px;
}
.feedback-number-block {
  width: 125px;
  padding: 23px;
  box-sizing: border-box;
  border-radius: 22px;
  /* border: 1px solid #e4eaf8; */
  /* background: rgba(255, 255, 255, 0.3); */
  backdrop-filter: blur(17px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;

  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset,
    0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15);
}

.feedback-number-title {
  font-size: 18px;
  line-height: 1.6;
}
.feedback-amount {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 1440px) {
  .feedback-list {
    justify-content: center;
  }
}

@media (max-width: 1040px) {
  .feedback-container {
    padding: 60px 0;
  }
}

@media (max-width: 970px) {
  .swiper {
    display: block;
  }
  .feedback-list {
    display: none;
  }
  .feedback-cart {
    width: 463px;
  }
}

@media (max-width: 768px) {
  .feedback-container {
    padding: 32px 16px 16px 16px;
  }
  .feedback-title {
    font-size: 24px;
  }

  .feedback-subtitle-block {
    margin-bottom: 0;
  }

  .feedback-cart {
    padding: 16px;
    border-radius: 24px;
    width: 100%;
    margin-left: 8px;
    margin-right: 8px;
  }

  .feedback-numbers-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .feedback-number-block:nth-child(3) {
    grid-column: span 2;
  }
  .feedback-number-block {
    width: 100%;
  }
}

/* FAQ */

.faq-section {
}

.faq-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.32px;
  margin-bottom: 40px;
  text-align: center;
}
.faq-list {
  border-radius: 20px;
  padding: 60px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15),
    0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 66px;
}
.faq-cart {
  margin: 32px 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--white-color);
}
.faq-cart-title {
  position: relative;
  font-family: Roboto;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  padding-right: 32px;
  cursor: pointer;
}

.faq-cart-title::after {
  cursor: pointer;
  content: "";
  background: url("../img/faq-down.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 7px;
  transition: transform 0.3s ease;
}
.faq-cart-title.active::after {
  background: url("../img/minus.svg") no-repeat center;
  background-size: contain;
}
.faq-text {
  color: rgba(236, 236, 236, 0.65);
  font-size: 18px;
  line-height: 1.6;
  padding-top: 24px;
  transition: height 0.3s ease;
  overflow: hidden;
  height: 0;
}

.faq-text.active {
  height: auto;
}

@media (max-width: 1024px) {
  .faq-title {
    margin-bottom: 60px;
  }
  .faq-list {
    padding: 40px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    padding-top: 32px;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 26px;
    /* text-align: start; */
  }
  .faq-list {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-left-column .faq-cart:last-child {
    margin-bottom: 0;
  }
  .faq-right-column .faq-cart:last-child {
    border: none;
    margin-bottom: 0;
  }

  .faq-cart-title {
    font-size: 20px;
  }

  .faq-cart-title::after {
    top: 4px;
  }
  .faq-text {
    font-size: 16px;
  }
}

/* Form */

.form-section {
}
.form-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 60px;

  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0px -2px 10px 0px rgba(233, 223, 255, 0.3),
    0px -2px 40px 0px rgba(187, 155, 255, 0.15),
    0px 0.5px 0px 0px rgba(255, 255, 255, 0.5) inset;
}
.form-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.32px;
  margin-bottom: 8px;
}
.form-subtitle {
  color: rgba(236, 236, 236, 0.65);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 66px;
}
#modalForm {
  /* display: flex;  */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 66px;
  width: 365px;
}

.input-wrapper {
  position: relative;
  width: 100%;
  z-index: 12;
  border-radius: 10px;
  margin-bottom: 16px;
  /* box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.05) inset,
    0px 2px 2px 0px rgba(255, 255, 255, 0.15) inset; */

  backdrop-filter: blur(20px);
}

.input-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(190deg, #18c8ff, #933ffe);
  -webkit-mask: linear-gradient(var(--grey-color) 0 0) content-box,
    linear-gradient(var(--grey-color) 0 0);
  -webkit-mask-composite: xor;

  mask-composite: exclude;
  pointer-events: none;
}

.form-input {
  font-size: 14px;
  height: 48px;
  padding: 16px 20px;
  border-radius: 10px;
  background: transparent;
  outline: none;
  border: 1px solid #933ffe;
  width: 100%;
}

.form-input::placeholder {
  color: #ececec;
  font-size: 16px;
  line-height: 1.5;
}

.submit_btn {
  font-size: 16px;
  line-height: 1.5;
  max-width: 365px;
  width: 100%;
}

.form-footnote {
  color: rgba(236, 236, 236, 0.65);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.oval-background {
  position: relative;
  overflow: hidden;
}

.oval-background::before {
  content: "";
  position: absolute;
  width: 2378.984px;
  height: 1032.064px;
  border-radius: 2378.984px;
  border: 1px solid var(--gradient-dark, #484848);
  transform: rotate(165.79deg);
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(165.79deg);
  z-index: 0;
}

@media (max-width: 768px) {
  .form-container {
    padding: 16px;
  }
  .form-title {
    font-size: 24px;
  }
  .form-subtitle {
    font-size: 14px;
    margin-bottom: 26px;
  }
  #modalForm {
    margin-bottom: 26px;
    max-width: 445px;
    width: 100%;
  }

  .submit_btn {
    max-width: 445px;
  }

  .form-footnote {
    font-size: 12px;
  }
}

/* Footer */

.footer {
}
.footer-container {
  padding: 24px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer-left-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.footer-text {
  font-size: 16px;
  line-height: 1.5;
}
.footer-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-item {
}
.footer-link {
  font-size: 16px;
  line-height: 1.5;
}

.oval-bg {
  background-image: url("../img/oval-web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1350px) {
  .footer-container {
    padding: 24px 60px;
  }
}

@media (max-width: 1150px) {
  .footer-container {
    flex-direction: column;
    align-items: start;
    gap: 36px;
  }
}

@media (max-width: 1040px) {
  .footer-container {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 56px 16px 42px 16px;
    gap: 20px;
  }
  .footer-left-block {
    flex-direction: column;
    align-items: start;
  }

  .footer-list {
    flex-direction: column;
    gap: 20px;
  }
  .oval-bg {
    background-image: url("../img/oval-mob.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/* 
.dummy-btn {
  max-width: 310px;
  position: fixed;
  bottom: 7vh;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 5;
}
@media (max-width: 768px) {
  .dummy-btn {
    display: block;
  }
} */

/* Menu Mob */

.header-menu-mob {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #0b0121;
  background-image: url("../img/oval-mob.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
  height: 100vh;
  z-index: 10;
  padding: 16px;
}

.header-menu-mob.active {
  display: block;
}

.header-menu-mob-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-mob {
  width: 153px;
  padding-top: 14px;
}

.close-mob-menu {
}

.close-img-mob {
  position: absolute;
  right: 20px;
  fill: #ececec;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.close-img-mob:hover,
.menu-btn-mob:hover {
  fill: #ececec;
  background-color: var(--accent-color);
  border: solid 1px var(--accent-color);
}

.menu-mob {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding-left: 40%;
  height: 80vh;
  white-space: wrap;
}

.menu-mob-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  white-space: wrap;
}
.menu-mob-link {
  display: block;
  font-size: 20px;
  line-height: 1.5;
}

.menu-btn {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .menu-mob {
    padding-left: 25%;
  }
}

.input-wrapper.error::before {
  display: none;
}

.input-wrapper.error input {
  border: 1px solid red;
}

.article__video-vrapper {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 200px;
}
.article__video-vrapper video {
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 500px;
}
.article__unmute,
.article__video-vrapper p {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}
.article__video-vrapper p {
    left: 50%;
    transform: translateX(-50%);
}
.article__unmute {
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 125px;
    height: 125px;  background: var(--btn-color);
    border: 1px solid #014eb3;
    border-radius: 50%;
    animation: shake 0.2s infinite ease-in-out;
}
.article__unmute svg {
    fill: #fff;
}

.article__unmute:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
    .article__unmute {
        width: 75px;
        height: 75px;
    }
    .article__unmute svg {
        width: 100%;
        height: auto;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}