/*************** 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);
    }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    opacity: 0;
    transition: opacity .15s linear;
}
.modal.show {
    display: block;
    opacity: 1;
}
.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.88);
}
.modal-dialog {
    position: relative;
    width: 500px;
    max-width: 90%;
    top: 50%;
    margin: 0 auto;
    pointer-events: none;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    border-radius: .3rem;
    outline: 0;
    padding: 20px 15px;
    background-color: #000;
    border: 2px solid #fff;
}
.modal-title {
    width: 100%;
    display: inline-block;
    color: #f2e200;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}
.modal-body {
    color: #fff;
    padding: 0;
    line-height: 1.3;
    padding: 1rem 0;
}
.modal-content .close {
    position: absolute;
    right: -4%;
    bottom: 104%;
    z-index: 2;
    color: #f2e200;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}
.pulse {
	transform: scale(1);
	animation: pulse .3s linear infinite;
}
html, body {
	background-color: #340058;
}
html, body, #main, #wrapper, .jen-section {
    height: 100%;
}
body, #main, #wrapper {
    overflow: hidden;
}
.jen-section {
    max-width: 99%;
    margin: 0 auto;
}
body {
    background-image: url(../img/bg.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;
}
.col+.col .col-inner {
	margin: 0 auto !important;
}
p, img.size-full.alignnone {
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0;
}
.j-rik {
    position: relative;
    color: #FFE790;
    font-weight: bold;
}
.j-rik::after {
    content: "";
    position: absolute;
    background-color: #FFE790;
    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;
}
.slogan {
	text-transform: uppercase;
    color: white;
    font-size: 29px;
    font-weight: bold;
    text-shadow: 0px 0px 4px #FFC800;
}
/*************** CSS for landscape Desktop ***************/
@media (max-width: 1850px) and (orientation: landscape) {
    .slogan {
        font-size: 20px;
    }
}
/*************** CSS for Tablet ***************/
@media (max-width: 1023px) {
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0;
    }
    .slogan {
        font-size: 13px;
    }
    p {
        font-size: 0.7em;
    }
    .j-social img {
    	width: 25px;
        height: 30px;
        object-fit: cover;
    }
}

/*************** CSS for mobile ***************/
@media (max-width: 549px) {
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 10px;
    }
    .slogan {
        font-size: 20px;
    }
    body {
        background-image: url(../img/bg-mb.webp);
    	background-position: top center;
    }
    .jen-section {
        max-width: 99%;
    }	
    .j-social {
        display: block;
        bottom: auto;
        right: 0;
        top: 5px;
    }
    .j-social img {
    	width: 40px;
    }
    p {
        font-size: 0.8em;
    }
}

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

}