/* ----------------------- */
/* Slideshow custom styles */
/* ----------------------- */

.slideshow_swiper {
    height: 100%;
}


.slideshow_swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(70, 70, 70);
}
.slideshow_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
}
.slideshow_swiper .swiper-slide .slideshow_caption h2 {
    opacity: 0;
    transform: translate(0px, 2em);
    transition: 1s transform .5s ease, 1s opacity .5s ease;
}

.slideshow_swiper .swiper-slide.swiper-slide-active .slideshow_caption h2 {
    opacity: 1;
    transform: translate(0px, 0px);
    transition: 1s transform .5s ease, 1s opacity .5s ease;
}
.slideshow_caption span {

color: #f36020;
}

.slideshow_caption {

width: 100%;

height: 100%;

display: flex;

align-items: center;

justify-content: center;

flex-direction: column;

position: relative;

z-index: 999999999999999;
}

.slideshow_swiper .slideshow_caption h2 {
    border-bottom: none;
    color: var(--mr-color-light);
    text-shadow: 0 0 10px black, 0 0 10px black, 0 0 10px black;
    font-size: 3.5vw;
    line-height: 1;
    transition: 1s transform .5s ease, 1s opacity .5s ease;
    margin-top: 0;
    text-align: center;
}

.slideshow_swiper .slideshow_caption h3 {
    border-bottom: none;
    color: var(--mr-color-accent-shade);
    text-shadow: 0 0 10px black, 0 0 10px black, 0 0 10px black;
    font-size: 2vw;
    line-height: 1;
    opacity: 0;
    text-align: center;
}

.slideshow_swiper .swiper-slide.swiper-slide-active .slideshow_caption h3 {
    opacity: 1;
    transition: .5s opacity 1.5s ease;
}


.slideshow_caption p {
    color: black;
}

.swiper-slide>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.swiper {
    width: 100%;
}

.slideshow_caption::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: var(--mr-color-secondary-murky) transparent transparent transparent;
    position: absolute;
    border-width: 40vw 0 0 150px;
    border-top-width: clamp(40rem, 43vw, 10000px);
    right: 100%;
}

.swiper-slide {
    overflow: hidden;
}.slideshow_caption h1 {
    font-size: 3em;
    color: white;
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 2.75vh;
}

span.title_belize::before {
    content: ' • ';
    display: inline-block;
    margin: 0 1rem;
    color: white;
}

.slideshow_caption h2 {
    text-transform: none;
    font-weight: 400;
    color: white;
    letter-spacing: 0.15em;
    margin-bottom: 5.5vh;
}

span.title_experience {
    color: #f6ef2c;
}.slideshow_caption .btn {
    background: white;
    border: 0;
    font-family: 'Dosis';
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0.15em;
}
.scroll-down {
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 24px;
    height: 40px;
    margin-left: -12px;
    border-radius: 12px;
    border: 2px solid white;
    z-index: 999;
    bottom: 40px;
    visibility: visible;
    animation-delay: 2s;
    animation-name: bounce;
}.scroll-down:before {
	content: "";
	display: block;
	width: 2px;
	height: 6px;
	margin: 5px auto;

	-webkit-animation-duration: 1s;
			animation-duration: 1s;

	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;

	-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;

	-webkit-animation-name: scroll;
			animation-name: scroll;
}.scroll-down:before {
    background-color: #fff;
}
@keyframes bounce {
    20%,53%,80%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.050,.855,.060);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.050,.855,.060);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

@-webkit-keyframes scroll {
	0% {
		opacity: 1;

		-webkit-transform: translateY(0);
				transform: translateY(0);
	}

	100% {
		opacity: 0;

		-webkit-transform: translateY(25px);
				transform: translateY(25px);
	}
}

@keyframes scroll {
	0% {
		opacity: 1;

		-webkit-transform: translateY(0);
				transform: translateY(0);
		}

		100% {
			opacity: 0;

			-webkit-transform: translateY(25px);
					transform: translateY(25px);
		}
}
.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}