/*************** 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: #0a140c !important;
}
#main, #wrapper {
    background-color: transparent !important;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    margin: 0 auto;
    max-width: 92%;
}
/* .jen-section .section-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */
body {
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-position: center top;
    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: 0;
}
.j-slider .img {
    width: 24.75% !important;
}
.j-slider .img-inner {
    min-height: 7vw;
    display: flex;
    align-items: end;
}
/*************** CSS for landscape Desktop ***************/
@media (max-width: 1750px) and (orientation: landscape) {
    
}
@media (max-height: 660px) and (orientation: landscape) {

}
/*************** 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;
    }
    .jen-section .row {
        /* max-width: 65% !important; */
    }
    .col, .row-collapse>.col {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 5% !important;
    }
    .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);
    }
    .jen-section {
        max-width: 100%;
    }
    .j-slider .img {
        width: 33% !important;
    }
    .j-slider .img-inner {
        min-height: 18.5vw;
    }
}

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

}