@font-face {
  font-family: "Gordita";
  src: url("../../fonts/Gordita-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input[type=checkbox],
input[type=radio],
input[type=file] {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-style: normal;
  font-weight: 400;
  font-family: "Gordita", sans-serif;
  background: #fff;
  color: #000;
}

button {
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1680px;
  margin: auto;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .container {
    padding: 0 8px;
  }
}

.header-wrap {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 1000;
}
@media (max-width: 767px) {
  .header-wrap {
    width: calc(100% - 16px);
    top: 16px;
  }
}

.header {
  position: relative;
  padding: 12px 16px 12px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  border-radius: 200px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
@media (max-width: 1280px) {
  .header {
    padding: 12px 16px;
    gap: 20px;
  }
}
.header__logo {
  width: 166px;
}
@media (max-width: 1280px) {
  .header__logo {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 166px;
  }
}
.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1280px) {
  .header__nav {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  white-space: nowrap;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #3ac582;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__nav-item:hover::after {
  width: 100%;
}
.header__nav-item.grey {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}
.header__nav-separator {
  display: block;
  width: 1px;
  height: 12px;
  background: #d9d9d9;
}
.header__contacts {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 200px;
  background: #fff;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .header__contacts {
    padding: 12px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .header__contacts {
    display: none;
  }
}
.header__contacts-link {
  position: relative;
  display: block;
  margin-left: 8px;
}
@media (max-width: 991px) {
  .header__contacts-link {
    margin-left: 0;
  }
}
.header__contacts-link span {
  color: #3ac582;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .header__contacts-link span {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__contacts-link span {
    display: block;
  }
}
.header__contacts-link img {
  display: none;
}
@media (max-width: 991px) {
  .header__contacts-link img {
    display: block;
  }
}
.header__contacts-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #3ac582;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__contacts-link:hover::after {
  width: 100%;
}
.header__burger {
  display: none;
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    width: 56px;
    height: 48px;
    border-radius: 200px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
.header__mob {
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__mob.open {
  opacity: 1;
  pointer-events: all;
}
.header__mob-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.header__mob-nav-item {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.header__mob-nav-separator {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.header__mob-nav-item.grey {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}
.header__mob-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 200px;
  background: #fff;
  margin-top: 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
}
@media (max-width: 1280px) {
  .dropdown {
    display: none;
  }
}
@media (max-width: 767px) {
  .dropdown {
    display: inline-block;
  }
}

.dropdown-toggle {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.arrow {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 2;
  border-radius: 16px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
@media (max-width: 767px) {
  .dropdown-menu {
    top: -130px;
    background: #fff;
  }
}

.dropdown-menu li {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding: 10px 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dropdown-menu li:hover {
  background: rgba(58, 197, 130, 0.6);
}
@media (max-width: 767px) {
  .dropdown-menu li {
    padding: 10px;
  }
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.dropdown.open .arrow {
  transform: rotateX(180deg);
}

.hero-wrap {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .hero-wrap {
    padding: 8px 0;
  }
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  background-image: url(../../img/hero.jpg);
  padding: 20px;
  width: 100%;
  height: 720px;
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .hero {
    padding: 8px;
    height: 600px;
  }
}
.hero__title {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    padding: 0 8px 8px 8px;
  }
}

.devices {
  padding-top: 40px;
  padding-bottom: 40px;
}
.devices__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .devices__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    margin-bottom: 16px;
  }
}
.devices__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1280px) {
  .devices__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .devices__list {
    flex-direction: column;
    gap: 8px;
  }
}
.devices__item {
  position: relative;
  width: 385px;
  height: 672px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  padding: 28px;
  background: linear-gradient(150deg, #b3d5d0 0%, #fff 100%);
}
@media (max-width: 1024px) {
  .devices__item {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .devices__item {
    width: 100%;
    height: 396px;
  }
}
.devices__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 400px;
  background: #fff;
  filter: blur(50px);
  z-index: 1;
}
@media (max-width: 767px) {
  .devices__item::after {
    width: 240px;
    height: 240px;
    border-radius: 400px;
  }
}
.devices__item-img {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .devices__item-img {
    max-height: calc(100% - 32px);
  }
}
.devices__item-info {
  position: relative;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  padding: 4px;
  width: 100%;
  height: auto;
  border-radius: 200px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .devices__item-info {
    height: 44px;
  }
}
.devices__item-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .devices__item-name {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
  }
}
.devices__item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 400px;
  background: rgba(58, 197, 130, 0.6);
  backdrop-filter: blur(12px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 1280px) {
  .devices__item-link {
    width: 36px;
    height: 36px;
    border-radius: 300px;
  }
}
.devices__item-link:hover {
  transform: rotate(-45deg);
}

.about-wrap {
  background: linear-gradient(150deg, #b3d5d0 0%, #fff 100%);
  padding: 40px;
}
@media (max-width: 767px) {
  .about-wrap {
    padding: 40px 8px;
  }
}

.about {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .about {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about {
    gap: 8px;
  }
}
.about__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .about__left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about__left {
    gap: 8px;
  }
}
.about__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 767px) {
  .about__top {
    gap: 12px;
    padding: 8px;
  }
}
.about__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 767px) {
  .about__bottom {
    padding: 16px;
    padding: 8px;
  }
}
.about__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .about__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
  }
}
.about__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .about__list {
    gap: 12px;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .about__item {
    gap: 8px;
  }
}
.about__item-img {
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .about__item-img {
    width: 36px;
    height: 36px;
  }
}
.about__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
@media (max-width: 767px) {
  .about__item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
  }
}
.about__right {
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}
.about__right img {
  object-fit: cover;
}
@media (max-width: 1024px) {
  .about__right {
    width: 100%;
  }
  .about__right img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about__right {
    height: 400px;
  }
  .about__right img {
    height: 100%;
  }
}

.benefits {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .benefits {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.benefits__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .benefits__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    margin-bottom: 8px;
  }
}
.benefits__text {
  max-width: 1200px;
  margin: auto;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .benefits__text {
    max-width: 100%;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
  }
}
.benefits__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .benefits__content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .benefits__content {
    gap: 8px;
  }
}
.benefits__block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  width: 590px;
  height: 402px;
  border-radius: 12px;
  background: linear-gradient(150deg, #b3d5d0 0%, #fff 100%);
}
@media (max-width: 1024px) {
  .benefits__block {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .benefits__block {
    padding: 16px;
    gap: 8px;
  }
}
.benefits__block-img {
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .benefits__block-img {
    width: 36px;
    height: 36px;
  }
}
.benefits__block-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .benefits__block-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
  }
}
.benefits__block-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  list-style-type: disc;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .benefits__block-list {
    gap: 8px;
  }
}
.benefits__block-item {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .benefits__block-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
  }
}

.advantages-wrap {
  background-image: url(../../img/advantages.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .advantages-wrap {
    background-position: center;
  }
}

.advantages {
  width: 100%;
  height: 980px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .advantages {
    height: 1040px;
    padding-bottom: 8px;
  }
}
.advantages__top {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .advantages__top {
    padding: 16px;
  }
}
.advantages__top-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .advantages__top-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
  }
}
.advantages__bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 1024px) {
  .advantages__bottom {
    flex-direction: column;
  }
}
.advantages__left {
  width: 50%;
  height: 348px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
@media (max-width: 1280px) {
  .advantages__left {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .advantages__left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .advantages__left {
    padding: 16px;
    height: auto;
  }
}
.advantages__left-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .advantages__left-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
  }
}
.advantages__left-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  list-style-type: decimal;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .advantages__left-list {
    gap: 8px;
  }
}
.advantages__left-item {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .advantages__left-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
  }
}
.advantages__right {
  width: 50%;
  height: 348px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
@media (max-width: 1280px) {
  .advantages__right {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .advantages__right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .advantages__right {
    padding: 16px;
    gap: 8px;
  }
}
.advantages__right-logo {
  width: 218px;
  height: 118px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .advantages__right-logo {
    width: 140px;
    height: 76px;
    margin: auto;
  }
}
.advantages__right-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .advantages__right-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
  }
}

.footer-wrap {
  padding: 40px;
  background: #003a31;
}
@media (max-width: 767px) {
  .footer-wrap {
    padding: 40px 36px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  width: 224px;
  height: 48px;
  object-fit: cover;
}
.footer__list {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid rgba(58, 197, 130, 0.1);
  border-bottom: 1px solid rgba(58, 197, 130, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__item {
  width: 590px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  .footer__item {
    width: 400px;
  }
}
@media (max-width: 991px) {
  .footer__item {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .footer__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }
}
.footer__item-icon {
  width: 32px;
  height: 32px;
}
@media (max-width: 767px) {
  .footer__item-icon {
    width: 24px;
    height: 24px;
  }
}
.footer__item-link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__item-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
  }
}
.footer__privacy {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__privacy {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
  }
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.modal__content {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .modal__content {
    padding: 8px;
    width: 95%;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .modal__close {
    top: 8px;
    right: 8px;
  }
}
.modal__content-form {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.modal__content-input {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding: 16px;
  width: 100%;
  height: auto;
  border-radius: 200px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.modal__content-textarea {
  width: 100%;
  height: 100px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding: 16px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  resize: none;
  overflow: hidden;
}
.modal__content-submit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  padding: 16px;
  width: 100%;
  height: auto;
  border-radius: 200px;
  border: 1px solid #3ac582;
  background: rgb(58, 197, 130);
  backdrop-filter: blur(8px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.modal__content-submit:hover {
  background: rgba(58, 197, 130, 0.6);
}