.main {
  width: 100%;
}

.about {
  width: 70%;
  height: 100%;
  z-index: 10;
  margin: auto;
  position: relative;
}

@media (width <= 700px) {
  .about {
    margin-top: 10%;
  }
}

@media (width <= 640px) {
  .about {
    margin-top: 20%;
    margin-bottom: 20%;
  }
}

@media (width <= 430px) {
  .about {
    margin-top: 25%;
    margin-bottom: 20%;
  }
}

@media (width <= 350px) {
  .about {
    margin-top: 30%;
  }
}

.close-link {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  outline: none;
  top: 0%;
  right: 0%;
  margin: 1.5%;
  text-decoration: none;
  cursor: pointer;
  z-index: 11;
  transition: color 0.2s;
}

.close-link:hover {
  color: #ccc;
}

@media (width < 1040px) {
  .close-link {
    margin: 2%;
  }
}

@media (width < 800px) {
  .close-link {
    margin: 3%;
  }
}

@media (width < 500px) {
  .close-link {
    margin: 4%;
  }
}

.liquid-glass-card {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.04) 70%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
  color: #fff;
  padding: 30px 46px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (width <= 1000px) {
  .liquid-glass-card {
    padding: 20px 32px;
  }
}

.about-title {
  font-size: clamp(1.875rem, 1.7857rem + 0.4762vw, 2.5rem);
  margin-bottom: 24px;
}

.about-text {
  font-size: clamp(1rem, 0.9464rem + 0.2857vw, 1.375rem);
}

.docs {
  font-size: clamp(1rem, 0.9464rem + 0.2857vw, 1.375rem);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.docs-button {
  background-color: #c1a683;
  outline: none;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: clamp(0.875rem, 0.8393rem + 0.1905vw, 1.125rem);
  cursor: pointer;
  transition: scale 0.2s, box-shadow 0.2s;
}

.docs-button:hover {
  scale: 1.01;
  box-shadow: 1px 2px 15px #efbf8438;
}

.docs-button:focus {
  scale: 1.01;
  box-shadow: 1px 2px 15px #efbf8438;
}