html {
  color: rgba(8, 15, 23, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.body {
  background: url(../assets/gradient.webp);
  background-size: cover;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 952px) {
    height: auto;
    padding: 16px;
    align-items: start;
  }
}

.content {
  width: 912px;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(55, 45, 79, 0.08);
  padding: 24px 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;

  @media (max-width: 952px) {
    padding: 12px;
    width: 100%;
  }
}

.img-logo {
  @media (max-width: 952px) {
    width: 319px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.links {
  align-items: center;
  gap: 24px;
  width: 384px;

  @media (max-width: 952px) {
    flex-wrap: wrap;
    width: auto;
    gap: 16px;
  }
}

.bot {
  display: none;
  @media (max-width: 952px) {
    display: flex;
  }
}

.top {
  display: flex;
  @media (max-width: 952px) {
    display: none;
  }
}

.link {
  text-decoration: underline;
  font-weight: 500;
  font-size: 12px;
  a {
    color: rgba(8, 15, 23, 1);
  }
}

.cols {
  display: flex;
  justify-content: space-between;
  height: 100%;
  gap: 80px;
  @media (max-width: 952px) {
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }
}

.col1,
.col2 {
  width: 384px;
  @media (max-width: 952px) {
    width: 100%;
  }
}

.col1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 45px;
  height: 100%;
}

.col1-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col1-text-item {
  font-size: 18px;
  font-weight: 700;
  @media (max-width: 952px) {
    font-size: 18px;
  }
}

.contact {
  width: 100%;
  background-color: rgba(186, 244, 105, 1);
  padding: 16px 20px;
  border-radius: 16px;
  flex-direction: column;
  gap: 10px;
}

.contact-title {
  font-weight: 700;
  font-size: 16px;
}

.contact-text {
  font-size: 14px;
}

.contact-mail {
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;

  a {
    color: rgba(8, 15, 23, 1);
  }
  @media (max-width: 952px) {
    font-size: 18px;
  }
}

.col2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media (max-width: 952px) {
    gap: 24px;
  }
}

.col2-texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.col2-text-item {
  font-weight: 500;
  font-size: 12px;
  color: rgba(125, 125, 125, 1);
  margin-bottom: 12px;

  a {
    color: rgba(125, 125, 125, 1);
  }
}

.col2-text-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.copyright {
  color: rgba(125, 125, 125, 1);
  font-size: 14px;
  font-weight: 500;
  @media (max-width: 952px) {
    font-size: 12px;
  }
}
