:root {
  --font-size-1: 2.2em;
  --font-size-2: 1.3em;
  --font-size-3: 0.9em;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  font-size: 14px !important;
}

a:hover {
  text-decoration: underline;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 70rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.brand-logo {
  max-width: 8rem;
}

.main-hero {
  padding-top: 2rem;
}

.main-hero > * {
  z-index: 2;
}

.main-hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  backdrop-filter: brightness(0.2) /* blur(1.5px) */;
}

.caption {
  font-weight: bold;
}
.main-caption {
  font-size: var(--font-size-1);
  padding-top: max(min(6rem), 10vw);
}
.second-caption {
  font-size: var(--font-size-2);
}
.third-caption {
  margin-top: auto;
  font-size: var(--font-size-3);
}
.fourth-caption {
  font-size: var(--font-size-3);
}
.fifth-caption {
  font-size: 1.25em;
}

.second-hero {
  --padding-size: 5rem;
  background-color: #333;
}

/* .chalet-content { */
/*  */
/* } */

.chalet-highlights {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.chalet-highlights li {
  font-size: 1.1em;
  display: list-item;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.chalet-highlights li::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-image: url("img/icons/icons-check.svg");
  transform: scale(0.4);
  left: -0.85rem;
  top: -0.95rem;
}
.chalet-highlights li:last-child {
  margin-bottom: 0;
}

.chalet-img {
  /* background-image: url("img/12-f4u_mediumThumb.jpg"); */
  width: 100%;
  height: 100%;
  min-width: 20rem;
  min-height: 20rem;
  max-width: 50rem;
  aspect-ratio: 4/3;
}

footer {
  background-color: #222;
}

.footer-logo {
  max-width: 6rem;
}

.connect-with-us-now {
  background-color: #222;
  padding: 1.5rem;
  border-radius: 0.3rem;
  display: block;
  margin-bottom: 1.5rem;
}

.pulsate-fwd {
  -webkit-animation: pulsate-fwd 0.6s ease-in-out infinite both;
  animation: pulsate-fwd 0.6s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media screen and (min-width: 50rem) {
  :root {
    --font-size-1: 2.6em;
    --font-size-2: 1.2em;
    --font-size-3: 0.9em;
  }

  .chalet-highlights li {
    font-size: 1.2em;
  }

  .chalet-content {
    flex-direction: row !important;
  }

  .fifth-caption  {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 70rem) {
  :root {
    --font-size-1: 3em;
    --font-size-2: 1.7em;
    --font-size-3: 1.2em;
  }
  .chalet-higlights-container {
    max-width: 20rem;
  }
  .fifth-caption  {
    font-size: 1.75em;
  }
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 1s both;
  animation: slide-in-bottom 1s both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.contact .contact-form .field-text
/* .contact .contact-form .field-textarea  */
{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  margin: 0;
  font: inherit;
  outline: none;
  border-radius: 0;
  font-family: Montserrat;
  appearance: none;
  background: none;
  background-color: #fff;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 2px solid #232323;
  color: #232323;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.contact h3 {
  font-size: 1.2em;
} 

.fs-1 {
  font-size: var(--font-size-1);
}
.fs-2 {
  font-size: var(--font-size-2);
}
.fs-3 {
  font-size: var(--font-size-3);
}
