@charset "UTF-8";
section#hero {
  position: relative;
  aspect-ratio: 3/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 768px) {
  section#hero {
    aspect-ratio: 4/3;
  }
}
section#hero:has(.hero__video) {
  position: relative;
  height: min(100vh, 900px) !important;
}
section#hero .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section#hero .hero__video-button-container {
  display: flex;
  gap: 0.5rem;
  margin-top: 3.5rem;
}
section#hero .hero__video-button-container .btn {
  font-size: 0.85rem;
  box-shadow: color-mix(in srgb, var(--lybrae-color-primary) 35%, transparent) 0 2px 15px 0;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  section#hero .hero__video-button-container .btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.35rem;
  }
}
section#hero .hero__video-button-container .btn:hover {
  box-shadow: color-mix(in srgb, var(--lybrae-color-primary) 50%, transparent) 0 2px 20px 0;
  background: color-mix(in srgb, var(--lybrae-color-primary) 96.5%, black);
}
section#hero .hero__video-button-container .btn::after {
  margin-left: 0.75rem;
}
section#hero .hero__video-alt-button-container-item {
  background: var(--lybrae-color-secondary);
  padding: 2.5rem;
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section#hero .hero__video-alt-button-container-item {
    padding: 1.5rem;
    flex-direction: column;
    border-radius: 1.5rem;
    margin: 0 1rem;
  }
}
section#hero .hero__video-alt-button-container-item .button-container-buttons {
  display: flex;
  gap: 0.75rem;
  text-align: center;
}
section#hero .hero__video-alt-button-container-item .button-container-buttons .btn-white:hover {
  background-color: color-mix(in srgb, white 95%, black);
}
@media screen and (max-width: 447px) {
  section#hero .hero__video-alt-button-container-item .button-container-buttons {
    flex-direction: column;
  }
}
section#hero .hero__video-alt-button-container-item p {
  color: var(--lybrae-color-primary);
  font-size: 2rem;
  font-weight: 700;
  max-width: 35%;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  section#hero .hero__video-alt-button-container-item p {
    max-width: 100%;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
section#hero .hero__video-alt-button-container {
  position: absolute;
  width: 100%;
  bottom: -5rem;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 992px) {
  section#hero .hero__video-alt-button-container {
    bottom: -10rem;
  }
}
@media screen and (max-width: 768px) {
  section#hero .hero__video-alt-button-container {
    bottom: -5rem;
  }
}
section#hero .hero__video-alt-button-container .usp-list {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  section#hero .hero__video-alt-button-container .usp-list {
    display: none;
  }
}
section#hero .hero__video-alt-button-container .usp-list li {
  margin-left: 1rem;
  font-weight: bold;
  position: relative;
}
section#hero .hero__video-alt-button-container .usp-list li::before {
  content: "•";
  margin-right: 1rem;
  color: var(--lybrae-color-secondary);
}
section#hero .hero__video-alt-button-container .usp-list li:first-child {
  margin-left: 0;
}
section#hero .hero__video-alt-button-container .usp-list li:first-child::before {
  content: none;
}
section#hero .hero__video-secondary-button-container {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
section#hero .hero__video-secondary-button-container .btn {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--lybrae-color-secondary) 40%, transparent);
  color: #FFFFFF;
  text-transform: uppercase;
  backdrop-filter: blur(3px);
}
@media screen and (min-width: 768px) {
  section#hero .hero__video-secondary-button-container .btn {
    font-size: 0.75rem;
  }
}
section#hero .hero__video-secondary-button-container .btn:hover {
  background: var(--lybrae-color-secondary);
  color: #272727;
}
section#hero .hero__video-secondary-button-container .btn::after {
  display: none;
}
section#hero .hero__video-caption {
  z-index: 10;
  color: #FFFFFF;
}
@media screen and (max-width: 1600px) {
  section#hero .hero__video-caption {
    left: 1.5rem;
  }
}
section#hero .hero__video-caption .hero__video-caption-subtitle {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 800;
  max-width: 700px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  section#hero .hero__video-caption .hero__video-caption-subtitle {
    font-size: 3.75rem;
  }
}
section#hero .hero__video-caption .hero__video-caption-subtitle::after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 0;
  background-color: var(--lybrae-color-secondary);
  height: 5px;
  border-radius: 50px;
  -webkit-transition: all 0.75s ease-in-out;
  -moz-transition: all 0.75s ease-in-out;
  -o-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}
section#hero .hero__video-caption .hero__video-caption-subtitle.line::after {
  width: 100px;
}
section#hero #HeroSliderNew {
  position: relative;
}
section#hero #HeroSliderNew .carousel-indicators {
  justify-content: flex-start;
  margin: 0 0 5rem 7.5%;
}
section#hero #HeroSliderNew .carousel-indicators li {
  position: relative;
  height: 5px;
  width: 40px;
  background-color: #fff;
}
section#hero #HeroSliderNew .carousel-indicators li::after {
  position: absolute;
  inset: 0;
  width: 0;
  content: "";
  background: var(--lybrae-color-secondary);
}
section#hero #HeroSliderNew .carousel-indicators li.active::after {
  animation: timeIndicate 7000ms linear forwards;
}
@keyframes timeIndicate {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
section#hero #HeroSliderNew .carousel-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: absolute;
  padding: 0 25px 0 7.5%;
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(750px, 900px, 90%);
  max-width: 100%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lybrae-color-primary) 85%, transparent) 0%, color-mix(in srgb, var(--lybrae-color-primary) 0%, transparent) 85%);
}
@media screen and (min-width: 768px) {
  section#hero #HeroSliderNew .carousel-caption {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 200px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 200px) 100%, 0% 100%);
    padding: 0 200px 0 7.5%;
  }
}
section#hero #HeroSliderNew .carousel-caption * {
  max-width: 600px;
}
section#hero #HeroSliderNew .carousel-caption .btn {
  color: #FFFFFF;
  font-size: 0.9rem;
}
section#hero #HeroSliderNew .carousel-caption h1 {
  position: relative;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#hero #HeroSliderNew .carousel-caption h1 {
    font-size: 1.65rem;
  }
}
section#hero #HeroSliderNew .carousel-caption h1::after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 100px;
  background-color: var(--lybrae-color-secondary);
  height: 5px;
}
section#hero .hero__image, section#hero .hero__image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section#hero .hero__caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  position: absolute;
  padding: 0 25px 5rem 7.5%;
  top: 0;
  left: 0;
  bottom: 0;
  color: #FFFFFF;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lybrae-color-primary) 85%, transparent) 0%, color-mix(in srgb, var(--lybrae-color-primary) 0%, transparent) 85%);
}
@media screen and (min-width: 768px) {
  section#hero .hero__caption {
    width: auto;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 200px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 200px) 100%, 0% 100%);
    padding: 0 400px 3rem 7.5%;
  }
}
@media screen and (max-width: 768px) {
  section#hero .hero__caption {
    padding: 0 25px 25px 7.5%;
  }
}
section#hero .hero__caption * {
  max-width: 600px;
}
section#hero .hero__caption h1 {
  position: relative;
  margin-bottom: 2.5rem;
}
section#hero .hero__caption h1::after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 100px;
  border-radius: 50px;
  background-color: var(--lybrae-color-secondary);
  height: 5px;
}

body.home section#hero {
  height: 750px;
}

section.blue-fade {
  position: relative;
}
section.blue-fade::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  background: linear-gradient(40deg, color-mix(in srgb, var(--lybrae-color-accent) 0%, transparent), color-mix(in srgb, var(--lybrae-color-accent) 60%, transparent));
  clip-path: polygon(150px 0, 100% 0, 100% 100%, 0% 100%);
  background-size: 100% 200%;
}
@media screen and (max-width: 1200px) {
  section.blue-fade::after {
    background: linear-gradient(40deg, color-mix(in srgb, var(--lybrae-color-accent) 0%, transparent), color-mix(in srgb, var(--lybrae-color-accent) 60%, transparent));
    clip-path: polygon(100% 60%, 100% 60%, 100% 100%, 0% 100%);
  }
}

.dropdown {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-secondary:not(:disabled):not(.disabled):active {
  background-color: var(--lybrae-color-secondary);
  outline: 0;
}

.btn-secondary:focus {
  box-shadow: none !important;
}

.hero-video.alt {
  background: linear-gradient(90deg, color-mix(in srgb, var(--lybrae-color-primary) 85%, transparent) 0%, color-mix(in srgb, var(--lybrae-color-primary) 0%, transparent) 85%);
}
.hero-video.alt .hero__video-caption-subtitle {
  max-width: 800px !important;
}

/*# sourceMappingURL=style.css.map */
