/*************** 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, .jen-section {
    overflow: hidden;
}
html, body {
    background-color: #020219 !important;
}
#main, #wrapper {
    background-color: transparent !important;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    max-width: 90%;
    margin: 0 auto;
}
body {
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.col-inner>.img:not(:last-child), .col>.img:not(:last-child), blockquote, dl, figure, form, ol, p, pre, ul {
    margin-bottom: 5px;
}
.col+.col .col-inner {
    margin: 0 auto;
}
p, img.size-full.alignnone {
    margin: 0;
}
.j-rik {
    position: relative;
    color: white;
    font-weight: bold;
}
.j-rik::after {
    content: "";
    position: absolute;
    background-color: white;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
}
.j-rik:hover {
    color: #e47815;
}
.j-rik:hover::after {
    background-color: #e47815;
}
.j-footer {
    position: absolute;
    bottom: 0;
    left: 0;
}
.j-social {
    display: flex;
    position: absolute;
    bottom: calc(100% + 20px);
    right: 20px;
}
.j-social img {
	width: 50px;
    height: 60px;
    object-fit: none;
}
/*************** CSS for landscape Desktop ***************/
@media (max-width: 1599px) and (orientation: landscape) {
    .jen-section {
        max-width: 82%;
    }	
}
/*************** CSS for Tablet ***************/
@media (max-width: 1023px) {
    .jen-section {
        max-width: 80%;
    }	
    .j-social img {
    	width: 25px;
        height: 30px;
        object-fit: cover;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 549px) {
    body {
        background-image: url(../img/bg-mb.webp);
    	background-position: top center;
    }
    .jen-section {
        max-width: 95%;
    }	
    .j-social {
        display: block;
        bottom: auto;
        right: 0;
        top: 5px;
    }
    .j-social img {
    	width: 40px;
    }
}

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

}