* {
	margin: 0;
	padding: 0;
}

body, html {
	font-family: "Roboto", sans-serif;
	color: #1f1f1f;
}

a {
	text-decoration: none;
	color: #1f1f1f;
}

.main {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #cecdd1;
}

.bg {
	background: url('../img/bg3.jpg') no-repeat;
	background-position: center;
	background-size: cover;	
}

.centerflex {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
}

.main .centered {
	margin: 0 auto;
    width: 1200px;
    text-align: center;
    margin-top: 20px;
}

.main .logo {
	margin: 0 auto;
	font-size: 40px;
	margin-bottom: 2%;
}

.main .buttons {
	display: block;
}

.main .buttons .btn {
	padding: 10px 20px;
	margin: 0 20px;
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
	transition: color 0.5s;
}

.main .buttons .btn:hover {
	color: #d72230;
}

.social {
	position: absolute;
	left: 50px;
    top: 50px;
}

.social-ico {
	background-size: 100% 100% !important;
	height: 40px;
	width: 40px;
	display: inline-block;
	margin-left: 8px;
	opacity: 0.8;
	transform: opacity 0.5s;
	cursor: pointer;
	filter: invert(1);
	position: relative;
}

.social-ico:hover {
	opacity: 0.9;
}

.social-ico.facebook { background: url('../img/social/facebook-r.png'); }
.social-ico.youtube { background: url('../img/social/youtube-r.png'); }
.social-ico.instagram { background: url('../img/social/instagram-r.png'); }
.social-ico.tiktok { background: url('../img/social/tiktok-r.png'); }
.social-ico.twitter { background: url('../img/social/twitter-r.png'); }

.latest {
	margin: 0 auto;
	text-align: center;
	position: fixed;
	left: 0;
	right: 0;
	top: 58%;
	transform: translateY(-58%);
}

.latest span {
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;	
}

.latest .single {
	width: 400px;
	height: 400px;
	background-size: 100% 100% !important;
	margin: 15px auto;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
	opacity: 0.85;
	transition: opacity 0.5s;
}

.latest .single:hover {
	opacity: 1;
}

.offline {
	font-weight: bold;
	margin: 0 auto;
	text-align: center;
	margin-top: 10%;
}

footer {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 12px;
}