.footer .container {
  padding: 80px 67px;
  background: var(--primary-bg2);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
} .footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
} .footer_left {
  max-width: 573px;
  width: 100%;
  height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} .footer_left_top svg {
  color: var(--primary2);
} .footer__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
} .footer__list-item a {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: var(--white);
} .footer_left_bottom p {
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  vertical-align: middle;
  color: var(--white);
} .footer_right {
  max-width: 354px;
  width: 100%;
  height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} .footer_right_top {
  display: flex;
  flex-direction: column;
} .footer_right_top a {
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  vertical-align: middle;
  color: var(--white);
} .footer_right_top p {
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  vertical-align: middle;
  color: var(--white);
  margin-top: 13px;
} .footer_right_bottom {
  display: flex;
  align-items: center;
  gap: 20px;
} .footer_right_bottom svg {
  color: var(--primary2);
} .footer_right > p {
  display: none;
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  vertical-align: middle;
  color: var(--white);
}

@media (max-width: 1100px) {
  .footer__content {
    flex-direction: column;
  } .footer_left, .footer_right {
    height: auto;
    max-width: 573px;
  } .footer_left_bottom p {
    display: none;
  } .footer_right > p {
    display: inline;
  } .footer_right_bottom {
    margin: 30px 0;
  }
} @media (max-width: 700px) {
  .footer_left_top svg {
    width: 100%;
  }
} @media (max-width: 470px) {
  .footer {
    padding: 50px 0;
  } .footer__list {
    margin-top: 15px;
  } .footer_right > p {
    display: flex;
    flex-direction: column;
  } .footer_right > p span.break {
    display: none;
  }
} @media (max-width: 400px) {
  .footer__list {
    margin-top: 0;
  }
}

.context-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  background: var(--primary-bg2);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px var(--primary);
  /* padding: 10px 0; */
  min-width: 170px;
}
.context-menu button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-radius: 10px;
  color: inherit;
  padding: 12px 20px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s linear;
}

.context-menu button:hover:enabled {
  background: #333;
}
.context-menu button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.context-menu button:hover {
  background: #333;
  color: var(--primary2);
}