/* General Styles */
.hero-block {
    position: relative;
}
.hero-block .block-inner {
    position: relative;
}
.hero-overlay-container {
    flex: 1;
    max-width: 65%;
    margin-left: 0;
    margin-right: auto;
}
.hero-overlay-container-inner {
  width: 100%;
  padding-top: 8vh;
}
.hero-block :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0;
    text-align: left;
}

.hero-block.hero-semi-transparent-overlay::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: multiply;
  transform: rotate(180deg);
}
.hero-overlay-container-inner h2 {
    position: relative;
}
/*
@keyframes increaseWidth {
    from {
        width: 0;
    }
    to {
        width: 19%;
    }
}*/



.hero-image-wrap {
    order: 2;
    min-width: 290px;
    flex-basis: 35%;
    max-width: 500px;
}
/* Height */
/* .hero-height-full-screen .hero-image-wrap img {
    aspect-ratio: 1920 / 1080;
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 550px;
    max-height: clamp(550px, 100vh, 1080px);
    display: block;
} */
.hero-height-full-screen .hero-image-wrap img {

}
.hero-height-full-screen .block-inner {
    display: flex;
    gap: 50px;
    gap: clamp(50px, 9%, 200px);
}
.hero-height-medium .hero-image-wrap img {
    aspect-ratio: 1920 / 613;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    max-height: 613px;
    display: block;
}
.hero-height-medium.bg-green-pattern .block-inner {
    aspect-ratio: 1920 / 613;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    max-height: 613px;
    display: block;
}
.hero-height-narrow .hero-image-wrap img {
    aspect-ratio: 1920 / 520;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    max-height: 520px;
    display: block;
}


/* Content alignment */
.hero-content-alignment-center .hero-overlay-container {
	text-align: center;
}
.hero-content-alignment-left .hero-overlay-container {
	text-align: left;
}
.hero-content-alignment-right .hero-overlay-container {
	text-align: right;
}

.hero-content-alignment-center .hero-buttons-container-inner, .hero-content-alignment-center .block-inner {
	justify-content: center;
}
.hero-content-alignment-left .hero-buttons-container-inner, .hero-content-alignment-left .block-inner {
	justify-content: flex-start;
}
.hero-content-alignment-right .hero-buttons-container-inner, .hero-content-alignment-right .block-inner {
	justify-content: flex-end;
}


/* Buttons */
.hero-buttons-container {
	margin-top: 40px;
}
.hero-buttons-container-inner {
	display: flex;
}
.hero-buttons-container-inner button {
	margin-left: 7.5px;
	margin-right: 7.5px;
}
.hero-buttons-container-inner button:first-of-type {
	margin-left: 0;
}
.hero-buttons-container-inner button:last-of-type {
	margin-right: 0;
} 



.hero-overlay-image {
  width: 50%;
  max-width: 750px;
}
.hero-overlay-image img {
    width: 100%;
}

button.scroll-down {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  width: fit-content;
  bottom: 40px;
}

@media all and (max-width: 1780px) {
}
@media all and (max-width: 1640px) {
}
@media all and (max-width: 1450px) {
}
@media all and (max-width: 1366px) {
}
@media all and (max-width: 768px) {
}

/* Image */

/* Video */

/* Slider */
.hero-block.hero-type-slider::after {
    display: none;
}
.hero-block.hero-type-slider .hero-slider-container li::before {
    background: rgba(0, 0, 0, 0.2);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        z-index: 1;
}

/* Slider nav */
.hero-slider-nav-outer {
    max-width: 1920px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.hero-slider-nav-inner {
    line-height: 0;
    width: 100%;
}
#prev-hero, #next-hero {
    position: relative;
    padding: 0;
    border: none;
        pointer-events: all;
    background: none;
    outline: none;
-webkit-animation: fadein ease 1.4s;
animation: fadein ease 1.4s;
}
#prev-hero {
    position: relative;
    left: 30px;
}
#next-hero {
    float: right;
    position: relative;
    right: 30px;
}
#prev-hero svg, #next-hero svg {
    height: 60px;
    opacity: 0.6;
    color: #fff;
	transition: all 0.3s ease;
    display: block;
}
#prev-hero svg:hover, #next-hero svg:hover {
    opacity: 1;
}


/* dots navigation */
.hero-block .tns-nav {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
.hero-block .tns-nav button {
    border-radius: 30px;
    width: 13px;
    height: 13px;
    padding: 0;
    background: none;
    border: 1px solid #FFF;
    margin-left: 4px;
    margin-right: 4px;
}
.hero-block .tns-nav button.tns-nav-active {
    background: #fff;
}


.block.breadcrumbs {
}
.block.breadcrumbs {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: 20px auto 0 auto;
  text-transform: uppercase;
  font-size: 12px;
}

@media all and (max-width: 1366px) {
.hero-overlay-container-inner {
    padding-top: 6vh;
}
}
@media all and (max-width: 1280px) {
.hero-overlay-container-inner {
    padding-top: 4vh;
}
}
@media all and (max-width: 1024px) {
.hero-height-full-screen .block-inner {
    gap: 50px;
}
.hero-overlay-container-inner {
    padding-top: 0;
}
.hero-image-wrap {
    min-width: 250px;
    flex-basis: 30%;
}
.hero-overlay-container {
    max-width: 70%;
}
}
@media all and (max-width: 768px) {
.hero-height-full-screen .block-inner {
    flex-direction: column;
    gap: 40px;
}
.hero-image-wrap {
    order: 2;
    min-width: 100%;
    flex-basis: 100%;
    display: flex;
    width: 100%;
}
.hero-overlay-container {
    order: 1;
}
.hero-height-full-screen .hero-image-wrap img {
    width: 480px;
    max-width: 100%;
}
.hero-overlay-container {
    max-width: 100%;
}
}
@media all and (max-width: 480px) {
}