@font-face {
  font-family: "AudiNormal";
  src: url(/assets/fonts/AudiType-Normal.ttf) format("truetype");
}

@font-face {
  font-family: "AudiBold";
  src: url(/assets/fonts/AudiType-Bold.ttf) format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "AudiExtendedBold";
  src: url(/assets/fonts/AudiType-ExtendedBold.ttf) format("truetype");
  font-weight: bold;
}

:root {
  font-size: 10px;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "AudiNormal", sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  color: black;
  background-color: transparent;
}

h1 {
  font-size: 2rem;
  line-height: 2.4rem;
  color: black;
  margin-bottom: 0;
}

.location-description{
  background-color: white;
}

.location-description h2 {
    margin-top: 0;
    padding-top: .83em;
}

.location-subtitle{
  font-size: 1.8rem;
  margin-bottom: 0;
  margin-top: 50px;
}

h2, h2 a{
  font-size: 3rem;
  line-height: 3.2rem;
  font-family: "AudiBold", sans-serif;
  color: #231f20;
  text-decoration: none;
}

h3 {
  font-size: 2rem;
  line-height: 2.4rem;
  font-family: "AudiExtendedBold", sans-serif;
}

p {
  font-size: 1.8rem;
  line-height: 2.2rem;
}

.callout {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #868686;
}

.button {
  background: none;
  text-decoration: none;
  color: white;
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 1px;
  border: 1px solid white;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  display: block;
  font-family: "AudiNormal", sans-serif;
}

.footnote {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #868686;
  margin-top: 0px;
}

.lines {
  border-top: 1.5px solid black;
  border-bottom: 1.5px solid black;
}

.content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#overlay {
  background: black;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  z-index: 99;
  position: absolute;
  left: 0;
  top: 0;
}

.overlay-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-content .audi-rings {
  width: 75%;
  height: 100px;
  margin-bottom: 50px;
}

.overlay-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.overlay-title{
  margin-top: 100px;
  margin-bottom: 0;
  font-size: 18px;
  text-align: left;
  width: 100%;
  color: #7f7e83;
}

.overlay-link{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: white;
}

.overlay-buttons .button {
  width: 100%;
  border-radius: 30px;
  transition: color .25s, background-color .25s;
}

.overlay-buttons .button:hover{
  background-color: white;
  color: black;

}

#trails, #mammothTrails {
  width: 100%;
  padding: 120px 30px 100px 30px;
  display: none;
}

#mammothTrails h2{
  margin-bottom: 0 !important;
}

#mammothTrails .callout{
  margin-top: 8px !important;
}

#mammothTrails .location-description{
  margin-bottom: 24px !important;
}

#mammothTrails .description{
  margin-bottom: 3em;
}

#mammothTrails .description:last-child{
  margin-bottom: 0;
}

#mammothTrails .location-subtitle:first-child{
  margin-top: 0px;
}

.trails-top, .open-road{
  position: relative;
}

.trails-top {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 75px 0;
}

.trails-top.lines h1{
  font-weight: normal;
}

.trails-top.lines{
  border-top: none;
  padding-top: 0;
  padding-bottom: 15px;
}

.trails-top__rings {
  background: white;
  width: 50%;
  height: 100px;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: 2;
}

.trails-top__rings img {
  width: calc(100% - 30px);
  height: 100%;
}

.mountain {
  position: absolute;
  bottom: -1px;
  right: 15px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: flex-end;
}

.mountain img {
  width: 100%;
}

.location {
  width: 100%;
  margin-top: 100px;
  position: relative;
}

.location-image {
  width: 250px;
  height: 250px;
  border: 2px solid black;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: block;
}

.location::before {
  content: "";
  position: absolute;
  left: 125px;
  top: 0px;
  width: 1.5px;
  height: calc(100% + 100px);
  border-left: 2px dashed black;
}

.trails-top::before, .open-road::before {
  content: "";
  position: absolute;
  left: 125px;
  top: 100%;
  width: 1.5px;
  height: 83px;
  border-left: 2px dashed black;
}

.location-image::after {
  content: url(/assets/svg/LocationIcon.svg);
  position: absolute;
  left: 50%;
  top: 0;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -70%);
}

.location-description {
  padding-bottom: 16px;
  position: relative;
}

.open-road, .concierge {
  position: relative;
  padding: 15px 0;
  padding-bottom: 15px;
  margin-top: 100px;
}

.open-road .location-subtitle{
  margin-top: 0;
}

/* .open-road::before, .concierge::before {
  content: "";
  position: absolute;
  left: 125px;
  top: -100px;
  width: 1.5px;
  height: 100px;
  border-left: 2px dashed black;
} */

.concierge img {
  width: 40px;
  height: 40px;
  margin-top: 20px;
}

.concierge h3 {
  margin-bottom: 4px;
}

.concierge p {
  margin-top: 0;
}

.location-cta{
  position: absolute;
  height: 100%;
  aspect-ratio: 1;
  transform: scale(1.02);
}

#trails.denver .open-road{
  display: none;
}

.location-description a{
  position: relative;
}

.location-description__pin{
    width: 33px;
    padding-right: 5px;
    padding-left: 10px;
    display: block;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width: 767px){
  .location-description .footnote{
    position: absolute;
    bottom: -95px;
    width: 50%;
    right: 0;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  .lines {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
  }

  .overlay-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 45px;
  }

  .overlay-content .audi-rings {
    height: 150px;
    margin-bottom: 75px;
  }

  .overlay-buttons .button {
    width: 100%;
    padding: 3rem 1rem;
    border-radius: 40px;
  }

  .trails-top__rings {
    width: 33%;
  }

  .mountain {
    width: 125px;
    height: 125px;
    right: 30px;
  }

  .location {
    display: flex;
    flex-direction: row;
  }

  .location-description {
    width: calc(100% - 300px);
    margin-left: 50px;
    padding-bottom: 0;
  }

  .location-description .footnote{
    position: absolute;
    top: calc(100% + 50px);
  }

  .location-description h2 {
    margin-top: 0;
    padding-top: 0;
  }

  .concierge {
    display: flex;
    flex-direction: row;
    align-content: center;
  }

  .concierge img {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 40px;
  }

  .location-description__pin{
      width: 43px;
      padding-right: 10px;
      padding-left: 10px;
      display: inline-block;
      position: absolute;
      left: auto;
      right: 100%;
      top: 50%;
      transform: translateY(-50%);
  }

}

#mammothTrails{
  max-width: 100vw;
  overflow: hidden;
}

.tag-request{
  font-size: 2rem;
}

.aspen .location-subtitle{
  display: none;
}

.aspen .open-road.lines{
  display: none;
}