.homeslide {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.homeslide > a {
  display: block;
}
.homeslide_container {
  position: relative;
  overflow: hidden;
  background-color: var(--box-bg);
  /*
  * Here you can choose which behaviour to use in which media queries
  */
  height: var(--slider-height-computed) !important;
  min-height: 300px;
  max-height: 75vh;
}
#top_column.mode-fullwidth .homeslide_container {
  height: calc(100vw / var(--slider-ratio)) !important;
  flex-shrink: 0;
}

.homeslide_image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.homeslide_css {
  background-position: center center;
  background-size: cover;
}
.homeslide_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
.homeslide_desc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 737.98px) {
  .homeslide_desc {
    position: initial;
    display: flex;
    justify-content: center;
    padding: var(--container-padding);
  }
}
.homeslide_desc .container {
  width: 100%;
  max-width: 960px;
  padding: 0 var(--box-padding);
}
.homeslide_desc_content {
  max-width: 75%;
  -webkit-text-shadow: 2px 5px 9px rgba(0, 0, 0, 0.2);
  -moz-text-shadow: 2px 5px 9px rgba(0, 0, 0, 0.2);
  text-shadow: 2px 5px 9px rgba(0, 0, 0, 0.2);
}
@media (min-width: 738px) {
  .homeslide_desc_content {
    max-width: 100%;
  }
  .homeslide_desc_content .row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .homeslide_desc_content .slider-presentation {
    background: linear-gradient(to right, #F36C32 0%, #EE4043 100%);
    padding: 1.5rem;
    border-radius: 30px;
    border: 10px solid white;
  }
}
@media (max-width: 737.98px) {
  .homeslide_desc_content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: black;
  }
  .homeslide_desc_content h2 {
    line-height: 1.5 !important;
    margin-bottom: 0.25rem !important;
  }
  .homeslide_desc_content .row img {
    display: none;
  }
}
.homeslide_desc_content .btn {
  background: black;
}
.homeslide_desc_content > * {
  margin-top: 0.6em;
}
.homeslide_desc_content > *:first-child {
  margin-top: 0;
}
.homeslide_desc h2 {
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  line-height: 1;
  color: white;
  margin: 0;
  padding: 0;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
}
@media (max-width: 737.98px) {
  .homeslide_desc h2 {
    color: black;
  }
}
.homeslide_desc h2 span {
  color: #4c4d5a;
}
.homeslide_desc p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 737.98px) {
  .homeslide_desc p {
    color: black;
  }
}
.homeslide_desc .btn {
  margin-top: 1em;
  letter-spacing: 0;
  font-size: var(--font-size-large);
  font-weight: 900;
  border-color: transparent;
  border-radius: 40px;
  padding: 0.5em 1.5em;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
}

.homeslider-loading .homeslide {
  display: none;
}
.homeslider-loading .homeslide:first-child {
  display: block;
}
.homeslider-loading .homeslide_image {
  opacity: 0;
}
@media (max-width: 737.98px) {
  .homeslider-loading .homeslide_desktop {
    display: none;
  }
}
@media (min-width: 738px) {
  .homeslider-loading .homeslide_mobile {
    display: none;
  }
}

#homeslider {
  overflow: hidden;
  position: relative;
  z-index: 1;
  --slider-height-computed: var(--slider-height-smallest);
  --slider-height-smallest: calc(370 / var(--slider-ratio) * 1px);
  --slider-height-xs: calc(555 / var(--slider-ratio) * 1px);
  --slider-height-sm: calc(825 / var(--slider-ratio) * 1px);
  --slider-height-md: calc(1128 / var(--slider-ratio) * 1px);
  --slider-height-lg: calc(1296 / var(--slider-ratio) * 1px);
}
@media (max-width: 737.98px) {
  #homeslider {
    --slider-ratio: calc(var(--slider-width-mobile) / var(--slider-height-mobile));
    padding-top: 0 !important;
  }
}
@media (min-width: 738px) {
  #homeslider {
    --slider-ratio: calc(var(--slider-width) / var(--slider-height));
  }
}
@media (min-width: 420px) {
  #homeslider {
    --slider-height-computed: var(--slider-height-xs);
  }
}
@media (min-width: 738px) {
  #homeslider {
    --slider-height-computed: var(--slider-height-sm);
  }
}
@media (min-width: 1008px) {
  #homeslider {
    --slider-height-computed: var(--slider-height-md);
  }
}
@media (min-width: 1368px) {
  #homeslider {
    --slider-height-computed: var(--slider-height-lg);
  }
}
#homeslider_list {
  overflow: hidden;
}
@media (max-width: 737.98px) {
  #homeslider_list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  #homeslider_list > li {
    grid-column: 1/2;
    grid-row: 1/2;
    position: relative !important;
    display: flex;
    flex-direction: column;
  }
}
#homeslider .lSPrev,
#homeslider .lSNext {
  display: none;
  top: auto;
  bottom: var(--grid-gap);
  left: 50%;
  right: auto;
  background: var(--dark-color);
  color: var(--dark-color-inverse);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#homeslider .lSPrev {
  margin-left: calc(var(--icon-size) * -0.5 - 8px);
}
#homeslider .lSNext {
  margin-left: calc(var(--icon-size) * 0.5 + 8px);
}
@media (max-width: 737.98px) {
  #homeslider .lSPrev,
  #homeslider .lSNext {
    --icon-size: 40px;
  }
}

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