/*************** 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: #000710 !important;
}
#main, #wrapper {
    background-color: transparent !important;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    margin: 0 auto;
    align-items: flex-end;
}
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-co {
    position: absolute;
    left: 0;
    bottom: 0;
}
.j-slider {
    position: relative;
    z-index: 9;
    min-height: 15vh;
}
.j-slider .img {
	transition: all .3s;
    cursor: pointer;
}
.j-slider .img:first-child:hover {
    width: 33.75% !important;
}
.j-slider .img:nth-child(2):hover {
    width: 45% !important;
}
.j-slider .img:nth-child(3):hover {
    width: 37% !important;
}

/*************** CSS for landscape Desktop ***************/
@media (max-width: 1599px) and (orientation: landscape) {
    .jen-section .row {
        max-width: 96% !important;
    }
}
@media (max-height: 660px) and (orientation: landscape) {
    .jen-section .row {
        max-width: 86% !important;
    }
}
/*************** 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%;
    }
    .jen-section .section-content {
    	height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .j-slider {
        min-height: 11.5vh;
    }
}

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

}