/* -------------------------- */
/*  1. Hero Section           */
.about_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 5%;
}
.about_frame {
}
.links {
  margin-top: 5%;
}
.content_links {
  padding: 4% 0 0;
}
.content_links a {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: var(--secondary);
}
.links span {
  color: var(--secondary);
}
.about_content {
  margin-top: 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 10%));
  justify-content: center;
}
.about_content.active {
  display: grid;
}
.about_text {
  grid-area: 2 / 6 / 7 / 11;
  padding: 0 0 0 5%;
}
.about_img {
  grid-area: 1 / 1 / 7 / 6;
}
.about_text h2 {
  font-size: clamp(28px, 2vw, 40px);
  font-family: "Poppins", sans-serif;
}
.about_text p {
  margin: 15px 0 30px;
  line-height: 27px;
}
.about_text a {
  letter-spacing: 2px;
}
.about_details {
  padding: 2% 0 0;
  border-top: 1px solid grey;
}
.about_details span {
  font-weight: bold;
}
.about_details h3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 22px;
}
.about_price {
  margin-bottom: 30px;
}
.about_size {
}
.about_details ul {
  margin-top: 6%;
  margin-left: 7%;
  font-size: 15px;
}
.about_details li {
  margin-top: 8px;
}
.about_anchors {
  margin-top: 25px;
}
.about_anchors a {
  color: #fff;
  padding: 9px 20px;
  background-color: var(--secondary);
  border-radius: 4px;
  font-weight: 500;
}
.about_anchors a:last-child {
  background: #000;
  color: #fff;
}
.about_note {
  color: #fff;
  border-radius: 0 10px 0 10px;
  background: var(--secondary);
  padding: 12px 12px;
  font-style: italic;
}
/* Automatic and manual slider */
.hero_sliders {
  font-family: monospace;
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
/* Hide the images by default */
.hero_sliders img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transition: 0.5s;
}
.hero_sliders img:hover {
  scale: 1.03;
}
@media screen and (max-width: 1225px) {
  .about_anchors a {
    flex-wrap: wrap;
    /* width: inherit; */
    text-align: center;
  }
  .about_anchors a:last-child {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1030px) {
  .about_content {
    grid-template-columns: 1fr;
  }
  .about_text {
    grid-area: 6 / 1 / 9 / 9;
    padding: 6% 0 0 0;
  }
  .about_img {
    grid-area: 1 / 1 / 6 / 9;
  }
}
@media screen and (max-width: 750px) {
  .content_links {
    display: flex;
    flex-direction: column;
  }
  .content_links a {
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 360px) {
  .about_anchors {
    display: flex;
    flex-direction: column;
  }
  .about_anchors a {
    margin-top: 2px;
    width: 150px;
    text-align: center;
  }
  .social-links {
    flex-wrap: wrap;
  }
}
