.section-hero {
  height: 100svh;
  background-color: rgb(17, 17, 17);
  position: relative;
}
.section-hero .text-container {
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(10px, 10svh, 300px);
  padding-left: var(--pm);
  z-index: 2;
}
.section-hero .text-container h2 {
  color: white;
  font-family: "Altform TRIAL";
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
}
.section-hero .text-container h2 strong {
  font-weight: 600;
}
.section-hero .text-container h2.line-1 {
  padding-bottom: 0;
}
.section-hero .text-container h2.h-line-2 {
  padding-bottom: 25px;
}
.section-hero .text-container button {
  color: white;
  font-family: "Pitch sans";
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  border: 1px solid;
  padding: 7px 10px;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
}
.section-hero .text-container button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transform: scale(1.01);
}
.section-hero .background-video {
  background-color: black;
  z-index: 1;
  position: relative;
  opacity: 0;
}
.section-hero .background-video .aspectholder, .section-hero .background-video .desktop-video, .section-hero .background-video .mobile-video {
  height: 100%;
  width: 100%;
}
.section-hero .background-video video, .section-hero .background-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-hero .background-video .mobile-video {
  display: none;
}
@media (max-width: 960px) {
  .section-hero .background-video .desktop-video {
    display: none;
  }
  .section-hero .background-video .mobile-video {
    display: block;
  }
}
.section-hero .hidden-full-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 300px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.section-hero .hidden-full-video video {
  width: 250px;
}
.section-hero .hidden-full-video .close-icon {
  display: none;
}
.section-hero .hidden-full-video.customFullScreen {
  opacity: 1;
  background-color: #EBE6ED;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100dvh;
  width: 100vw;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-hero .hidden-full-video.customFullScreen video {
  width: 100%;
  max-height: 90%;
  padding: 0 10px;
}
.section-hero .hidden-full-video.customFullScreen .close-icon {
  position: absolute;
  top: 20px;
  right: 0px;
  display: block;
  padding-right: 10px;
  padding-left: 20px;
}
.section-hero .hidden-full-video.customFullScreen .close-icon svg path {
  fill: black;
}
.section-hero .hidden-full-video.customFullScreen .close-icon svg {
  width: 18px;
}

section.content {
  padding-top: 53px;
  position: relative;
}
section.content .left {
  grid-column: 1/9;
  padding-top: 35svh;
}
section.content .right {
  grid-column: 10/19;
}
section.content .right .aspectholder {
  width: 100%;
}
section.content .right .aspectholder img {
  aspect-ratio: 4/5.5;
  object-fit: cover;
}
section.content .bodyTitle {
  color: var(--black);
  font-family: "Pitch Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30.377px;
}
section.content .lrg-paragraph {
  color: #000;
  font-family: "Altform TRIAL";
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 30.377px;
  padding: 19px 0 27px;
}
section.content .bodyText {
  font-family: "Altform TRIAL";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

@media (max-width: 960px) {
  .template__home .section-hero {
    height: unset;
    aspect-ratio: 9/16;
  }
  .template__home .section-hero .text-container {
    padding-left: var(--pm);
    padding-bottom: 35px;
  }
  .template__home .section-hero .text-container h2 {
    font-size: 44px;
    line-height: 49px;
  }
  .template__home .section-hero .text-container h2.h-line-2 {
    padding-bottom: 38px;
  }
  .template__home .section-hero .text-container button {
    font-size: 14px;
    padding: 5px 12px;
  }
  .template__home section.content .right {
    order: 1;
    grid-column: 1/-1;
  }
  .template__home section.content .left {
    order: 2;
    grid-column: 1/-1;
    padding-top: 20px;
    padding-right: 30px;
  }
  .template__home section.content .lrg-paragraph {
    font-size: 20px;
    line-height: 1.2;
    padding-top: 31px;
  }
}
