/* Template Home CSS file */
/* ------------------------------------------------- */
header.homepage-header {
  display: flex
}
header.homepage-other {
  display: none;
}
/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 100svh;
    background: var(--black);
    color: var(--white);
    display: flex;
    overflow: hidden;
  }
  .banner-content h1 {
    font-size: 50px;
    max-width: 550px;
    font-weight: 500;
  }
  .banner-content a {
    color: var(--white);
    text-decoration: none;
  }
  .banner-buttons {
    display: flex;
    gap: 15px;
  }
  .banner .wrap {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
  .btn {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border: solid 1px var(--gold);
  }
  .banner-buttons a.btn:nth-of-type(2) {
    color: var(--gold);
    background: transparent;
  }
  section.banner video {
    display: flex;
    z-index: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Introduction */
.introduction {
    padding: clamp(50px, 5vw, 100px) 0;
    text-align: center;
  }
  .introduction .wrap {
    max-width: 900px;
  }
  .introduction-content {
    display: flex;
    flex-direction: column;
  }
  .introduction-content h2 {
    font-weight: 600;
    font-size: 32px;
  }
  section.introduction video {
    width: 100%;
    height: auto;
    margin-top: 40px;
    position: relative;
}
.copy-link {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin: auto;
}
.copy-link a.btn {
  display: flex;
  width: fit-content;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.copy-link a.btn svg {
  fill: var(--white);
  height: 20px;
  width: auto;
}

/* Content Section */
  .content-1, .content-2 {
    padding: clamp(50px, 5vw, 100px) 0;
  }
  .content-1 h2, .content-2 h2 {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    display: flex;
    width: fit-content;
  }
  .content-1 h2:after, .content-2 h2:after {
    background: var(--gold);
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
  }
  .content-1 .wrap, .content-2 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 4vw, 80px);
    max-width: 900px;
  }
.content-1-image img, .content-2-image img {
    aspect-ratio: 310 / 355;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 465px;
    max-height: 532.5px;
  }
  .content-1-content, .content-2-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.content-1-image, .content-2-image {
    display: flex;
  }
  /* Testimonials */
.testimonial-logo {
  display: flex;
  position: relative;
  justify-content: center;
  align-content: center;
  width: fit-content;
  margin: 40px auto;
}
.testimonial-logo img {
  display: flex;
  width: 150px;
  object-fit: contain;
  height: auto;
}
#testimonial-slider ul li {
  position: relative;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
#testimonial-slider ul li:after {
  content: '❝';
  font-size: 100px;
  top: 0;
  position: absolute;
}
#testimonial-slider ul li blockquote {
  margin: 0;
  font-size: 20px;
  font-style: italic;
}
#testimonial-slider-track {
  max-width: 70vw;
  margin: auto;
  width: 800px;
}
#testimonial-slider ul li p {
  font-weight: 600;
  position: relative;
  display: flex;
  width: fit-content;
  font-size: 22px;
}
#testimonial-slider ul li p:after {
  background: var(--gold);
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
}
#testimonial-slider button {
  background: transparent;
}
#testimonial-slider button svg {
  fill: var(--black);
}
/* Image Slider */
section#image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section#image-slider {
  background: var(--black);
  padding: 80px 0;
}
@media (max-width: 800px) {
  .content-1 .wrap, .content-2 .wrap {
    grid-template-columns: 1fr;
    align-items: center;
}

.content-1-content, .content-2-content {
    grid-row: 1;
}

.content-1-image, .content-2-image {
    justify-content: center;
}

#testimonial-slider ul li blockquote {
    font-size: 16px;
}

#testimonial-slider ul li p {
    font-size: 18px;
}

.banner-buttons {
    flex-direction: column;
    width: fit-content;
}
}