/*************** 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 .3s linear infinite;
}
html, body, #main, #wrapper, .jen-section {
    height: 100%;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    width: 110%;
    left: -5%;
    margin: 0 auto;
}
.jen-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
body {
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #020219;
    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;
}
/*************** CSS for landscape Desktop ***************/
@media (max-width: 1599px) and (orientation: landscape) {
	
}
/*************** CSS for Tablet ***************/
@media (max-width: 1023px) {
    .jen-section {
        width: 98%;
        margin-top: 3%;
        left: 0%;
        min-height: 0 !important;
        height: auto;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 549px) {
    body {
        background-image: url(../img/bg-mb.webp);
    }
    .jen-section {
        max-width: 95%;
        height: auto;
    }
}

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

}