.about-page {
  width: 70%;
  margin: 0 auto;
  padding: 0 40px;
}

.about-top {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
}

.about-top-title {
  font-size: 120px;
  font-family: "Buduj Black-Height", sans-serif;
  text-transform: uppercase;
  color: var(--main-text-color);
}

.about-top-subtitle {
  font-size: 30px;
  font-family: "Futura Bold", sans-serif;
  color: var(--alt-main-color);
}

.about-cta {
  padding: 15px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Buduj Bold", sans-serif;
  background-color: var(--bright-accent-color);
  color: var(--main-text-color);
  border: 2px solid var(--bright-accent-color);
}

.about-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-row {
  display: flex;
  gap: 30px;
}

.about-col {
  width: 50%;
}

.about-text {
  font-size: 20px;
  font-family: "Futura Bold", sans-serif;
  color: var(--alt-main-color);
  text-align: justify;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-contacts {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.about-contacts-title {
  text-align: center;
  font-size: 90px;
  font-family: "Buduj Bold", sans-serif;
  text-transform: uppercase;
  color: var(--main-text-color);
}

.about-socials {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.about-socials a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--alt-main-color);
}

.about-socials svg {
  width: 100%;
  height: 100%;
}

.about-map-wrap {
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 3/2;
  background-color: rgba(42, 61, 68, 1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.about-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-map-link {
  width: 50px;
  height: 80px;
  position: absolute;
  top: 28%;
  left: 47%;
}

@media screen and (max-width: 1440px) {
  .about-page {
    width: 80%;
  }
}

@media screen and (max-width: 1280px) {
  .about-page {
    width: 90%;
  }
}

@media screen and (max-width: 1160px) {
  .about-page {
    width: 100%;
  }
  .about-top-title {
    font-size: 100px;
  }
  .about-top-subtitle {
    font-size: 26px;
  }
  .about-contacts-title {
    font-size: 80px;
  }

  .about-socials a {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 868px) {
  .about-top-title {
    font-size: 80px;
  }

  .about-top-subtitle {
    font-size: 22px;
  }

  .about-contacts {
    gap: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .about-text {
    font-size: 16px;
    font-family: "Futura Demi", sans-serif;
    margin-top: 5px;
  }
}

@media screen and (max-width: 650px) {
  .about-row {
    flex-direction: column;
    gap: 20px;
  }

  .about-row.reverse {
    flex-direction: column-reverse;
  }

  .about-col {
    width: 100%;
  }

  .about-image {
    width: 50%;
    margin: 0 auto;
  }

  .about-page {
    padding: 0 20px;
  }
  .about-top {
    margin-top: 60px;
  }
  .about-top-title {
    font-size: 70px;
  }
  .about-top-subtitle {
    font-size: 20px;
  }

  .about-contacts-title {
    font-size: 55px;
  }

  .about-socials a {
    width: 35px;
    height: 35px;
  }

  .about-socials {
    gap: 20px;
  }

  .about-contacts {
    gap: 15px 0;
  }

  .about-map-wrap {
    padding: 10px;
  }
}

@media screen and (max-width: 425px) {
  .about-top {
    margin-top: 40px;
  }
  .about-top-title {
    font-size: 60px;
  }
  .about-image {
    width: 100%;
  }
  .about-contacts-title {
    font-size: 45px;
  }
}
