/*************** CSS for Desktop ***************/
@keyframes pulseOld {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}
@-webkit-keyframes pulse {
    0% {
		transform: scale(0.95);
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }

    50% {
        transform: scale(1);
        -webkit-filter: brightness(1);
        filter: brightness(1);
    }

    100% {
		transform: scale(0.95);
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }
}
@-webkit-keyframes zoom {
    0% {
		transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    100% {
		transform: scale(1.2);
    }
}
@-webkit-keyframes cta {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
.pulseOld {
	transform: scale(1);
	animation: pulseOld .5s linear infinite;
}
.pulse {
	transform: scale(1);
	animation: pulse .5s linear infinite;
}
.zoom1 {
	transform: scale(1);
	animation: zoom 3s linear infinite;
}
.zoom2 {
	transform: scale(1);
	animation: zoom 1s linear infinite;
}
html, body, #main, #wrapper, .jen-section {
    height: 100%;
}
html, body {
    background-color: #a53315 !important;
}
#main, #wrapper {
    background-color: transparent !important;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    max-width: 96%;
    margin: 0 auto;
    padding: 3% 0 !important;
}
body {
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
#main, #wrapper {
    background-color: transparent;
}
.col-inner>.img:not(:last-child), .col>.img:not(:last-child), blockquote, dl, figure, form, ol, p, pre, ul {
    margin-bottom: 5px;
}
.j-slider {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.flickity-page-dots {
	bottom: 0;
}
.slider-nav-light .flickity-page-dots .dot {
	background-color: #fff;
    opacity: 1;
}
.slider-nav-light .flickity-page-dots .dot.is-selected, .slider-nav-light.slider-nav-dots-simple .flickity-page-dots .dot {
    background-color: red;
    border-color: red;
}
/*************** CSS for landscape Desktop ***************/
@media (max-width: 1599px) and (orientation: landscape) {
    .jen-section {
        max-width: 90%;
    }
}
@media (max-height: 660px) and (orientation: landscape) {
    .jen-section {
        max-width: 76%;
    }
}
/*************** CSS for Tablet ***************/
@media (max-width: 1023px) and (orientation: landscape) {
    .jen-section {
        height: 100dvh;
        min-height: auto !important;
    }
}
@media (min-width: 750px) and (orientation: portrait) {
    .j-section {
        min-height: 0 !important;
        max-width: 65%;
    }
    .col {
        flex-basis: 100%;
        max-width: 70%;
    }
    .hide-for-small, [data-show=hide-for-small], .hide-for-medium, [data-show=hide-for-medium] {
        display: none !important;
    }
    .show-for-small, [data-show=show-for-small] {
        display: block !important;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 549px) {
    body {
        background-image: url(../img/bg-mb.webp);
        /* background-position: center bottom; */
    }
    .jen-section {
        max-width: 100%;
        align-items: start;
    }
    .j-slider {
        width: 80%;
        top: 50%;
        left: 50%;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 390px) {

}