:root {
    --galleryTopPrimary: #000;
    --galleryTopPrimaryHover: #c4c4c4;
    --galleryTopScritte: #000;
    --galleryTopCtaScritte: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.galleryTopContainer {
    width: 100%;
    margin: 5px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.galleryTopImage {
    display: flex;
    align-items: center;
}

.galleryTopImage,
.galleryTopImage img,
.galleryTopImage video {
    width: 100%;
}

.galleryTopText {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    line-height: 1.3;
	text-align: center;
	justify-content: center;
    
}

.galleryTopText h3 {
    width: 100%;
    font-size: 30px;
    border-bottom: 1px solid var(--galleryTopPrimary);
    color: var(--galleryTopPrimary);
    text-rendering: optimizeLegibility;
    font-weight: 300;
       font-family: 'Abril Fatface', cursive;


}

.galleryTopText .galleryTopP {
    margin-top: 20px;
    text-rendering: optimizeLegibility;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--galleryTopScritte);
	width: 100%
}

.galleryTopCta {
    text-decoration: none;
    background: #fff;
    color: var(--galleryTopPrimary);
	border: 1px solid var(--galleryTopPrimary);
    padding: 10px 30px;
    margin-top: 20px;
    cursor: pointer;
    line-height: 28px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
	display: inline-flex
}

.galleryTopCta:hover {
    border-color: #fff;
	color: var(--galleryTopPrimary)
}


/* CAROUSEL */

.galleryTopCarouselItem {
    position: relative;
}

.galleryTopCarouselCtaCentered {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    line-height: 40px;
    color: var(--galleryTopCtaScritte);
	text-shadow: -1px -1px 2px #000;
	background: #c39557;
    border: 1px solid #c39557;
    padding: 0 30px;
    text-decoration: none;
	font-size: 13px;
    font-weight: 600;
	z-index: 200;
}

.galleryTopCarouselCtaCentered:hover {
    border: 1px solid transparent;
    color: var(--galleryTopCtaScritte);
	background: #c39557
}

@media screen and (min-width: 960px) {
    .galleryTopContainer.galleryTopRight {
        flex-direction: row-reverse;
    }
    .galleryTopImage {
        width: calc(100% - 600px);
    }
    .galleryTopText {
        width: 600px;
        padding: 20px 40px;
    }
    .galleryTopContainer.galleryTopRight .galleryTopText {
        text-align: center;
        justify-content: center;
    }
    /* carousel */
    .galleryTopCarouselRight,
    .galleryTopCarouselLeft {
        position: relative;
    }
    .galleryTopCarouselItem {
        position: relative;
    }
    .galleryTopCarouselItem .galleryTopCarouselItemPrev,
    .galleryTopCarouselItem .galleryTopCarouselItemNext {
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
		z-index: 100;
    }
    .galleryTopCarouselItem .galleryTopCarouselItemPrev {
        left: 0;
        cursor: url("../images/arrow-left.png"), auto;
    }
    .galleryTopCarouselItem .galleryTopCarouselItemNext {
        right: 0;
        cursor: url("../images/arrow-right.png"), auto;
    }
    .galleryTopCarouselRight .owl-dots,
    .galleryTopCarouselLeft .owl-dots {
        position: absolute;
        top: 0;
        width: 80px;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        z-index: 15;
    }
    .galleryTopCarouselRight .owl-dots {
        right: 0;
        align-items: flex-end;
        margin-right: 15px
    }
    .galleryTopCarouselLeft .owl-dots {
        left: 0;
        align-items: flex-start;
        margin-left: 15px
    }
    .galleryTopCarouselRight .owl-dots .owl-dot,
    .galleryTopCarouselLeft .owl-dots .owl-dot {
        width: 20px;
        height: 4px;
        background: #fff;
		display: block;
        margin: 5px 0;
        z-index: 20;
        -webkit-box-shadow: -15px 0px 25px 3px var(--galleryTopPrimary);
        box-shadow: -15px 0px 25px 3px var(--galleryTopPrimary);
    }
    .galleryTopCarouselRight .owl-dots .owl-dot.active,
    .galleryTopCarouselLeft .owl-dots .owl-dot.active {
        background: var(--galleryTopPrimary);
    }
    .galleryTopCarouselRight .owl-dots .owl-dot:hover,
    .galleryTopCarouselLeft .owl-dots .owl-dot:hover {
        background: var(--galleryTopPrimary);
    }
}