@charset "UTF-8";
/*!
Here is the core styles for the design page

*/

html {
  height: 100%;
}

body {
  /* height: 100%; */
  position: relative;
  overflow: auto;

}

div.debug {
  position: relative;
  z-index: 1;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #22819E;
  opacity: 0.7;
  z-index: 1;
}

.text-justify {
    text-align: justify;
    text-align-last: justify;
    -ms-text-align-last: justify;
    -moz-text-align-last: justify;
}

video.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

@media (pointer: coarse) and (hover: none) {
  body {
    background: url("../assets/img/bg-mobile-fallback.jpg") #22819E no-repeat center center fixed;
    background-size: cover;
  }
  body video {
    display: none;
  }
}

@media (min-width: 576px) {
    video.bg-video {
        background-size: cover
    }
}

@media (min-width: 992px) {
  .h-lg-100 {
    height: 100% !important;
  }
}

.btn-primary {
  --bs-btn-bg: #22819E;
  --bs-btn-border-color: #22819E;
  --bs-btn-hover-bg: #22819E;
  --bs-btn-hover-border-color: #87C7EC;
  --bs-btn-active-bg: #22819E;
  --bs-btn-active-border-color: #87C7EC;
  --bs-btn-disabled-bg: #22819E;
  --bs-btn-disabled-border-color: #22819E;
}

.slrc-yellow {
  color: #FFB607;
}

.masthead {
  position: relative;
  /* overflow: hidden; */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(89, 89, 91, 0.85);
}
.masthead .masthead-content {
  position: relative;
  max-width: 40rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
/* .masthead .masthead-content h1, .masthead .masthead-content .h1 {
  font-size: 2.5rem;
}
.masthead .masthead-content p {
  font-size: 1.2rem;
} */
.masthead .masthead-content p strong {
  font-weight: 700;
}
.masthead .masthead-content .input-group-newsletter input {
  height: auto;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
}
.masthead .masthead-content .input-group-newsletter button {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: calc(1rem + 2px);
}

@media (min-width: 992px) {
  .masthead {
    height: 100%;
    width: 75vw;
    min-height: 0;
    /* padding-bottom: 0; */
  }
  .masthead:before {
    transform: skewX(-9deg);
    transform-origin: top right;
  }
  .masthead .masthead-content {
    /* padding-top: 0;
     padding-bottom: 0; */
    padding-left: 2rem;
    padding-right: 9rem;
  }
  /* .masthead .masthead-content h1, .masthead .masthead-content .h1 {
    font-size: 3.5rem;
  }
  .masthead .masthead-content p {
    font-size: 1.3rem;
  } */
}
@media (min-width: 1200px) {
  .masthead {
    width: 65vw;
  }
}
.social-icons {
  position: relative;
  z-index: 2;
}
.social-icons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 4rem;
  width: 4rem;
  border-radius: 100rem;
}

@media (min-width: 992px) {
  .social-icons {
    position: absolute;
    height: 100%;
    top: 0;
    right: 2.5rem;
    width: auto;
  }
}