#popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 50%;
	width: 100%;
	background-color: none;
	z-index: 9999999999;
    animation: appear 0.8s forwards linear 4s;
    transform: translateY(200%);
}

#popup-content {
    width: 100%;
	position: absolute;
	bottom: 0;
    left: 0;
	background-color: #fff;
	padding: 20px;
	background-color: #113600;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#popup-content img{
    width: 100%;
    height: auto;
}

#close-btn {
	position: absolute;
	top: 5px;
	right: 5px;
    font-family: 'Urbanist';
    letter-spacing: 0.8px;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	background-color: #790a0a;
	border: none;
	width: 75px;
	height: 35px;
	cursor: pointer;
}

@keyframes appear {
    0%{transform: translateY(200%);}
    100%{transform: translateY(100%);}
}

.slog{
	width: 100%;
	padding: 40px 0px;
	background-color: #113600;
	color: #bda146;
	font-family: 'Poppins';
	font-size: 20px;
	text-align: center;
	border: solid 2px #bda146;
}

/* Mobile styles */
@media (max-width: 1000px) {

.slog{
	padding: 12px;
}

}
