 /* ---------------------------------
 *  ZoOmTip - jQuery Plugin
 *  v1.0
 * ---------------------------------*/
.moura-tooltip {
    overflow: visible;
    position: relative;
}

.moura-tooltip-content {
    font-size: .82em;
    line-height: 1.5em;
    color: #fff;
    padding: 6px 10px;
    white-space: nowrap;
    background-color: var(--dark-color);
    border-radius: var(--second-border-radius);
}

.moura-tooltip-container-below {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 10px;
    border-radius: var(--second-border-radius);
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

.moura-tooltip-point-below {
    position: relative;
    background: var(--dark-color);
    border-radius: var(--second-border-radius);
}

.moura-tooltip-point-below:after, .moura-tooltip-point-below:before {
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    bottom: 100%;
    content: "";
    height: 0;
    width: 0;
}

.moura-tooltip-point-below:after {
    border-bottom-color: var(--dark-color);
    border-width: 3px;
    left: 50%;
    margin-left: -3px;
}

.moura-tooltip-point-below:before  {
    border-bottom-color: var(--dark-color);
    border-width: 3px;
    left: 50%;
    margin-left: -3px;
}



 /* ---------------------------------
 *  Magnific Popup - jQuery Plugin
 *  v1.1.0
 * ---------------------------------*/

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99991;
    overflow: hidden;
    position: fixed;
    background: rgba(255,255,255,0.98);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99992;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 99994;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur {
    cursor: pointer;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -20%) scale(0.95);
        -ms-transform: translate(-50%, -20%) scale(0.95);
            transform: translate(-50%, -20%) scale(0.95);
    -webkit-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    -o-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
}

.mfp-ready .mfp-preloader {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.mfp-s-ready .mfp-preloader {
    opacity: 0;
    -webkit-transform: translate(-50%, -20%) scale(0.95);
        -ms-transform: translate(-50%, -20%) scale(0.95);
            transform: translate(-50%, -20%) scale(0.95);
}

.mfp-preloader  .spinner {
    display: inline-block;
}

.mfp-preloader .spinner {
    border: 3px solid #ddd;
    border-top: 3px solid #3db4f5;
    height: 55px;
    width: 55px;
    border-radius: var(--circle-border-radius);
    -webkit-animation: projects-loader 1.2s cubic-bezier(.82,.11,.26,.92) infinite;
            animation: projects-loader 1.2s cubic-bezier(.82,.11,.26,.92) infinite;
}

.mfp-s-error .mfp-content {
    display: none;
}

.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 9994;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

.mfp-close {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mfp-close span {
    display: block;
    position: absolute;
    top: 8px;
    left: 15px;
    width: 20px;
    height: 2px;
    background-color: var(--dark-color);
    border-radius: var(--circle-border-radius);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(.35, .15, .03, .95);
    transition: -webkit-transform 0.3s cubic-bezier(.35, .15, .03, .95);
    -o-transition: transform 0.3s cubic-bezier(.35, .15, .03, .95);
    transition: transform 0.3s cubic-bezier(.35, .15, .03, .95);
    transition: transform 0.3s cubic-bezier(.35, .15, .03, .95), -webkit-transform 0.3s cubic-bezier(.35, .15, .03, .95);
}

.mfp-close span.line-1 {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.mfp-close span.line-2 {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.mfp-close:hover span {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}

.mfp-close-btn-in .mfp-close {
    position: absolute;
    top: 0;
    right: -4px;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
}

.mfp-counter {
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
}

.mfp-arrow {
    border: none;
    color: var(--dark-color);
    font-size: 60px;
    position: absolute;
    margin: 0;
    top: 50%;
    padding: 10px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mfp-arrow-left {
    left: 24px;
}

.mfp-arrow-left:hover {
    left: 16px;
}

.mfp-arrow-right {
    right: 24px;
}

.mfp-arrow-right:hover {
    right: 16px;
}

.mfp-arrow:after {
    font-family: 'moura-ui' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mfp-arrow-left:after {
    content: "\f3d5";
}

.mfp-arrow-right:after {
    content: "\f3d6";
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 980px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: var(--first-border-radius);
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    max-height: 85vh !important;
    border-radius: var(--first-border-radius);
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    color: var(--dark-color);
    font-size: 14px;
    line-height: 1;
    position: relative;
    margin-top: 20px;
}

.mfp-title {
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    -o-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 1;
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    will-change: transform;
    -webkit-transform: translate3d(0, 14px, 0);
        -ms-transform: translate3d(0, 14px, 0);
            transform: translate3d(0, 14px, 0);
    -webkit-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    -o-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    -webkit-transform: translate3d(0, 14px, 0);
        -ms-transform: translate3d(0, 14px, 0);
            transform: translate3d(0, 14px, 0);
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}

.mfp-fade.mfp-wrap .mfp-arrow {
    opacity: 0;
    background: transparent !important;
    -webkit-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    -o-transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
    transition: all 0.4s cubic-bezier(.32, 0, .13, 1);
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-arrow {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-arrow {
    opacity: 0;
}



 /* ---------------------------------
 *  Split Text Animation
 * ---------------------------------*/
.split-text-animate-top {
    will-change: transform, opacity;
    opacity: 0;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
    clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
}

.split-text-animate-bottom {
    will-change: transform, opacity;
    opacity: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
        clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
}

.split-text-animate-right {
    will-change: transform, opacity;
    -webkit-clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
    clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
}

.split-text-animate-left {
    will-change: transform, opacity;
    -webkit-clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
    clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
}

.split-text-animate-top.start-animate {
    animation-timing-function: ease;
    animation-name: splitTextTop;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: forwards;
}

.split-text-animate-bottom.start-animate {
    animation-timing-function: ease;
    animation-name: splitTextBottom;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: forwards;
}

.split-text-animate-right.start-animate {
    animation-timing-function: ease;
    animation-name: splitTextRight;
    animation-duration: 1600ms;
    -webkit-animation-fill-mode: forwards;
}

.split-text-animate-left.start-animate {
    animation-timing-function: ease;
    animation-name: splitTextLeft;
    animation-duration: 1600ms;
    -webkit-animation-fill-mode: forwards;
}

@keyframes splitTextTop {
    0% {
        opacity: 0;
        -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
        clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
        -webkit-transform: translateY(100%);
            -ms-transform: translateY(100%);
                transform: translateY(100%);
    }
    99% {
        opacity: 1;
        -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        opacity: 1;
        -webkit-clip-path: none;
        clip-path: none;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes splitTextBottom {
    0% {
        opacity: 0;
        -webkit-clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
        -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    99% {
        opacity: 1;
        -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        opacity: 1;
        -webkit-clip-path: none;
        clip-path: none;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes splitTextRight {
    0% {
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    99% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    100% {
        -webkit-clip-path: none;
        clip-path: none;
    }
}

@keyframes splitTextLeft {
    0% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    99% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    100% {
        -webkit-clip-path: none;
        clip-path: none;
    }
}



 /* ---------------------------------
 *	Slick Slider - jQuery Plugin
 *	v1.9.0
 * ---------------------------------*/

 /* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-slide a {
	display: block !important;
}

.slider-top .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: var(--first-border-radius);
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before, .slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    width: 100%;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slider-top {
    margin: 0 0 25px 0 !important;
}

.slider-thumbs {
	margin: 0 -4px;
}

.slider-thumbs .slick-track {
	margin: 0;
}

.slider-thumbs .slick-slide {
	padding: 10px;
}

.slider-thumbs .slick-slide > div {
	position: relative;
	overflow: hidden;
	cursor: pointer;
    border-radius: var(--second-border-radius);
}

.slider-thumbs .slick-slide > div:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.6);
	transition: background 0.4s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: background 0.4s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: background 0.4s cubic-bezier(.45, .24, .03, .93);
	-o-transition: background 0.4s cubic-bezier(.45, .24, .03, .93);
}

.slider-thumbs .slick-slide.slick-current > div:after {
	background: rgba(255,255,255,0);
}

/* Arrows */
.slick-prev, .slick-next {
	font-size: 26px;
	line-height: 50px;
	position: absolute;
	display: block;
	width: 40px;
	height: 50px;
	padding: 0;
	cursor: pointer;
	border: none;
	outline: none;
	z-index: 5;
	color: var(--dark-color);
	background: transparent;
}

.slick-prev {
	top: 10%;
	left: -40px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-next {
	top: 90%;
	right: -40px;
}

[dir='rtl'] .slick-next {
	right: auto;
	left: -2px;
}

.slick-prev:before, .slick-next:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: 12px;
	background: #fff;
	transition: all 0.25s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: all 0.25s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: all 0.25s cubic-bezier(.45, .24, .03, .93);
	-o-transition: all 0.25s cubic-bezier(.45, .24, .03, .93);
}

.slick-prev:before {
	right: 0;
}

.slider-top:hover .slick-prev:before {
	right: -12px;
}

.slick-next:before {
	left: 0;
}

.slider-top:hover .slick-next:before {
	left: -12px;
}

.slick-next i, .slick-prev i {
	position: relative;
}

.slick-next i:before, .slick-prev i:before {
	display: inline-block;
	position: relative;
	opacity: 0;
	transform: scale(0.4);
	transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
	-o-transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
}

.slider-top:hover .slick-next i:before, .slider-top:hover .slick-prev i:before {
	opacity: 1;
	transform: scale(1);
	transition-delay: 0.38s;
}

.slick-next i:after, .slick-prev i:after {
	content: '';
	display: block;
	height: 2px;
	width: 0;
	position: absolute;
	top: 12px;
	opacity: 0;
    background: var(--dark-color);
    border-radius: var(--first-border-radius);
	transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
	-o-transition: all 0.3s cubic-bezier(.45, .24, .03, .93);
}

.slick-next i:after {
	left: -32px;
}

.slick-prev i:after {
	right: -32px;
}

.slider-top:hover .slick-next i:after, .slider-top:hover .slick-prev i:after {
	width: 50px;
	opacity: 1;
	transition-delay: 0.2s;
}

/* Dots */
.slick-dots {
	position: absolute;
	bottom: 8px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 3px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	position: relative;
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(0,0,0,0.7);
	background: transparent;
	text-indent: 9999;
	overflow: hidden !important;
	padding: 0;
    border-radius: var(--circle-border-radius);
	transition: border-color 0.4s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: border-color 0.4s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: border-color 0.4s cubic-bezier(.45, .24, .03, .93);
	-o-transition: border-color 0.4s cubic-bezier(.45, .24, .03, .93);
}

.slick-dots li.slick-active button {
	border-color: var(--dark-color);
}

.slick-dots li button::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--dark-color);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
	-o-transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
}

.slick-dots li.slick-active button::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--dark-color);
	transform: translate(0);
	transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
	-moz-transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
	-webkit-transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
	-o-transition: transform 0.4s cubic-bezier(.45, .24, .03, .93);
}



/*!
 * fullPage 3.0.7
 * https://github.com/alvarotrigo/fullPage.js
 *
 * @license GPLv3 for open source use only
 * or Fullpage Commercial License for commercial use
 * http://alvarotrigo.com/fullPage/pricing/
 *
 * Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-section.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: hidden;
    position: relative;
}
.fp-scroller{
    overflow: hidden;
}
.iScrollIndicator{
    border: 0 !important;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}
.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}


/* Navigation */
#fp-nav {
    position: fixed;
    z-index: 12;
    top: 50%;
    right: -400px;
    opacity: 1;
    margin: 0 !important;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 1s ease !important;
    -o-transition: all 1s ease !important;
    transition: all 1s ease !important;
}
body.page-loaded #fp-nav {
    right: 30px;
}
#fp-nav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li {
    display: block;
    position: relative;
}
#fp-nav ul li a {
    display: block;
    position: relative;
    cursor: pointer;
}

#fp-nav ul li a span {
    display: block; 
}
#fp-nav ul li a span.fp-sr-only {
    display: none !important
}
#fp-nav .fp-tooltip {
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

/* Navigation: Style 1 */
.fp-navigation-style-1 #fp-nav ul li {
    margin: 15px 0;
}
.fp-navigation-style-1 #fp-nav a {
    display: block;
    padding: 6px;
}
.fp-navigation-style-1 #fp-nav span:not(.fp-sr-only) {
    height: 6px;
    width: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    border-radius: var(--circle-border-radius);
    -webkit-transition: background 0.25s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.25s cubic-bezier(.45, .35, .2, 1);
    transition: background 0.25s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.25s cubic-bezier(.45, .35, .2, 1);
    -o-transition: background 0.25s cubic-bezier(.45, .35, .2, 1), transform 0.25s cubic-bezier(.45, .35, .2, 1);
    transition: background 0.25s cubic-bezier(.45, .35, .2, 1), transform 0.25s cubic-bezier(.45, .35, .2, 1);
    transition: background 0.25s cubic-bezier(.45, .35, .2, 1), transform 0.25s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.25s cubic-bezier(.45, .35, .2, 1);
}
.fp-navigation-style-1 #fp-nav li:hover span:not(.fp-sr-only) {
    background: var(--dark-color);
}
.fp-navigation-style-1 #fp-nav .active span:not(.fp-sr-only), .fp-navigation-style-1 #fp-nav li:hover .active span:not(.fp-sr-only) {
    background: var(--dark-color);
    -webkit-transform: scale(2);
        -ms-transform: scale(2);
            transform: scale(2);
}
.fp-navigation-style-1 #fp-nav .fp-tooltip {
    font-weight: 700;
    position: absolute;
    right: 100%;
    top: 50%;
    color: #fff;
    padding: 10px 8px 10px 12px;
    opacity: 0;
    background: var(--dark-color);
    border-radius: var(--second-border-radius);
    -webkit-transform: translate(-24px, -50%);
        -ms-transform: translate(-24px, -50%);
            transform: translate(-24px, -50%);
    -webkit-transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.4s cubic-bezier(.45, .35, .2, 1);
    -o-transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), transform 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), transform 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), transform 0.4s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.25s cubic-bezier(.45, .35, .2, 1);
}
.fp-navigation-style-1 #fp-nav li:hover .fp-tooltip {
    opacity: 1;
    -webkit-transform: translate(-15px, -50%);
        -ms-transform: translate(-15px, -50%);
            transform: translate(-15px, -50%);
}
.fp-navigation-style-1 #fp-nav .fp-tooltip:after {
    content: '\f363';
    font-family: 'moura-ui' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--dark-color);
    -webkit-transform: translate(6px, -50%);
        -ms-transform: translate(6px, -50%);
            transform: translate(6px, -50%);
}

/* Navigation: Style 2 */
.fp-navigation-style-2 #fp-nav ul li {
    margin: 6px 0;
    counter-increment: step-counter;
}
.fp-navigation-style-2 #fp-nav span:not(.fp-sr-only) {
    padding: 5px;
    color: rgba(0,0,0,0.3);
    font-size: 12px;
    -webkit-transition: color 0.4s cubic-bezier(.45, .35, .2, 1);
    -o-transition: color 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: color 0.4s cubic-bezier(.45, .35, .2, 1);
}
.fp-navigation-style-2 #fp-nav li:hover span:not(.fp-sr-only), .fp-navigation-style-2 #fp-nav .active span:not(.fp-sr-only), .fp-navigation-style-2 #fp-nav li:hover .active span:not(.fp-sr-only) {
    color: var(--dark-color);
}
.fp-navigation-style-2 #fp-nav span:not(.fp-sr-only)::before {
  content: '0'counter(step-counter);
}
.fp-navigation-style-2 #fp-nav .fp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    color: #fff;
    padding: 10px 8px 10px 12px;
    opacity: 0;
    background: var(--dark-color);
    border-radius: var(--second-border-radius);
    -webkit-transform: translate(-26px, -50%);
        -ms-transform: translate(-26px, -50%);
            transform: translate(-26px, -50%);
    -webkit-transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.4s cubic-bezier(.45, .35, .2, 1);
    -o-transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), transform 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), transform 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: opacity 0.4s cubic-bezier(.45, .35, .2, 1), transform 0.4s cubic-bezier(.45, .35, .2, 1), -webkit-transform 0.25s cubic-bezier(.45, .35, .2, 1);
}
.fp-navigation-style-2 #fp-nav li:hover .fp-tooltip {
    opacity: 1;
    -webkit-transform: translate(-18px, -50%);
        -ms-transform: translate(-18px, -50%);
            transform: translate(-18px, -50%);
}
.fp-navigation-style-2 #fp-nav .fp-tooltip:after {
    content: '\f0da';
    font-weight: 900;
    font-family: Font Awesome\ 5 Free;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--dark-color);
    -webkit-transform: translate(6px, -50%);
        -ms-transform: translate(6px, -50%);
            transform: translate(6px, -50%);
}

/* Navigation: Style 3 */
.fp-navigation-style-3 #fp-nav ul li {
    margin: 6px 0;
    counter-increment: step-counter;
}
.fp-navigation-style-3 #fp-nav span:not(.fp-sr-only) {
    padding: 5px;
    color: rgba(0,0,0,0.3);
    font-size: 12px;
    -webkit-transition: color 0.4s cubic-bezier(.45, .35, .2, 1);
    -o-transition: color 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: color 0.4s cubic-bezier(.45, .35, .2, 1);
}
.fp-navigation-style-3 #fp-nav .active span:not(.fp-sr-only), .fp-navigation-style-3 #fp-nav li:hover .active span:not(.fp-sr-only) {
    color: var(--dark-color);
}
.fp-navigation-style-3 #fp-nav span:not(.fp-sr-only)::before {
  content: '0'counter(step-counter);
}
.fp-navigation-style-3 #fp-nav ul li a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    width: 0;
    height: 1px;
    background: var(--dark-color);
    -webkit-transform: translate(-6px, -50%);
        -ms-transform: translate(-6px, -50%);
            transform: translate(-6px, -50%);
    -webkit-transition: width 0.4s cubic-bezier(.45, .35, .2, 1);
    -o-transition: width 0.4s cubic-bezier(.45, .35, .2, 1);
    transition: width 0.4s cubic-bezier(.45, .35, .2, 1);
}
.fp-navigation-style-3 #fp-nav ul li:hover a:after, .fp-navigation-style-3 #fp-nav ul li a.active:after, .fp-navigation-style-3 #fp-nav ul li:hover a.active:after {
    width: 14px;
}
.fp-navigation-style-3 #fp-nav .fp-tooltip {
    display: none;
}


 /* ---------------------------------
 *  Spotlight instagram feed plugin
 * ---------------------------------*/
.FeedLayout__col-footer {
    margin-top: 0!important;
}
.MediaTile__overlay {
    display: none !important;
}
.MediaTile__root {
    overflow: hidden;
}
.MediaTile__root {
    overflow: hidden !important;
    border-radius: var(--second-border-radius);
    -webkit-animation: none !important;
            animation: none !important;
}
.MediaThumbnail__root:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(17, 17, 17, .3);
    -webkit-transition: opacity .35s cubic-bezier(.45, .35, .2, 1);
    -o-transition: opacity .35s cubic-bezier(.45, .35, .2, 1);
    transition: opacity .35s cubic-bezier(.45, .35, .2, 1);
}
.FeedGridLayout__media-container:hover .MediaThumbnail__root:after {
    opacity: 1;
}
.MediaTile__type-icon {
    font-size: 16px;
    width: auto !important;
    height: auto !important;
    line-height: 1;
    background: none !important;
    top: auto !important;
    bottom: 9px !important;
    right: 10px !important;
    color: rgba(255, 255, 255, .85);
    opacity: 0;
    -webkit-transition: opacity .35s cubic-bezier(.45, .35, .2, 1);
    -o-transition: opacity .35s cubic-bezier(.45, .35, .2, 1);
    transition: opacity .35s cubic-bezier(.45, .35, .2, 1);
}
.FeedGridLayout__media-container:hover .MediaTile__type-icon {
    opacity: 1;
}
.MediaTile__type-icon:before {
    font-family: 'moura-ui' !important;
    content: '\ea92';
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}