/*************** CSS for Desktop ***************/
@keyframes pulse_old {
	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);
    }
}
.pulse {
	transform: scale(1);
	animation: pulse .5s linear infinite;
}
html, body, #main, #wrapper, .jen-section {
    height: 100%;
}
html, body {
    background-color: #0f0800 !important;
}
#main, #wrapper {
    background-color: transparent !important;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    max-width: 96%;
    margin: 0 auto;
    padding: 1.5% 0 !important;
}
/* .jen-section .section-content {
    height: 97%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */
body {
    background-image: url(../img/bg-v2.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;
}
.slider-style-focus {
    padding: 0;
}
.slider-style-focus .flickity-slider>:not(.is-selected) {
    transform: scale(0.85);
}
.slider-style-focus .flickity-slider>.is-selected {
    opacity: 1 !important;
    transform: scale(1);
    z-index: 99;
}
.j-note {
    font-size: 70%;
}
.j-slider .img {
	max-width: 33.333333%;
}
.j-slider .img img {
    transition: opacity 3s
}
/*************** 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) {
    .jen-section {
        height: 100dvh;
        min-height: auto !important;
    }
    .j-note {
        font-size: 5px;
    }
}

/*************** 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: center;
    }
    .slider-style-focus {
        padding: 0;
    }
    .slider-style-focus .flickity-viewport {
        padding: 13px 0;
        min-height: 200px !important;
    }
    .slider-style-focus .flickity-slider>:not(.is-selected) {
        opacity: 0.5 !important;
        filter: brightness(50%);
    }
    /* .slider-style-focus .flickity-slider>:not(.is-selected)::after {
        content: "";
        background-color: #000;
        opacity: 0.7;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    } /**/
    .slider-style-focus .flickity-slider>.is-selected {
        opacity: 1 !important;
        filter: brightness(100%);
        transform: scale(1.1);
    }
    .slider-style-focus .flickity-slider>.is-selected img {
         opacity: 1;
     }
}

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

}