@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
		
body {
	margin: 0;
	padding: 0;
	font-family: "Quicksand", sans-serif;
	background: #82929b;
	background: url('../img/bg.jpg') center right;
	background-size: cover;
}



.main-content {
	display: block;
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
	.logo {
		display: block;
		margin: 0 auto;
		height: 250px;
		margin-top: 50px;
	}
		
	h1 {
		font-size: 4rem;
		margin: 0;
		display: block;
		font-size: 36px;
		font-weight: 600;
		margin-bottom: 20px;
		color: #d2bb3c;
	}
	h2 {
		font-size: 2rem;
		margin: 10px 0;
		display: block;
		font-size: 40px;
		font-weight: 700;
		margin: -10px auto 0;
		color: #fff;
	}
	h3 {
		font-size: 24px;
		font-weight: 500;
		margin-bottom: 10px;
		margin-top: 0px;
	}
	p {
		font-size: 22px;
		line-height: 32px;
	}
	p strong {
		font-weight: 500;
	}

	
	.mid_box { display: block;  background: rgba(130,146,155,0.5); padding: 40px 20px 40px 20px; color: #ebebeb; border-bottom: 10px solid #ae5c56; border-top: 4px solid #d2bb3c; margin-top: 60px; margin-bottom: 60px; border-radius: 10px; box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;}

	.newsletter_box { display: block; width: 60%; margin: 0 auto; padding: 20px; color: #fff; font-size: 20px; }
		.newsletter_box i { font-size: 35px; margin-left: 5px;}


a { font-weight: 500; color: #fff; text-transform: none; }
		.contact-info {
			margin-top: 50px;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}
.contact-info p { font-size: 17px; }

.newsletter-signup {text-align: center; margin-top: 20px;}
.newsletter-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    color: #9f985d;
    background-color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
	border-radius: 5px;
}
.newsletter-button i { font-size: 20px; margin-right: 5px; margin-left: -10px; }
.newsletter-button:hover {
  background-color: #837C4A;
  color: #ffffff; 
}

.footer {
	display: block; width: 100%; margin-top: 40px; margin-bottom: 20px;
}
	.footer-in { display: block; width: 90%; border-top: 1px solid rgba(255,255,255,0.2); margin: 0 auto; padding: 10px 0px 20px 0px; font-size: 14px;}
		.footer-in .lang { display: block; float: left; width: 40%; text-align: left;}
			.footer-in a { dolor: #fff; text-decoration: none;}
				.footer-in a:hover { text-decoration: underline; }
			.footer-in .lang a { margin-right: 10px;}
		.footer-in .copy { display: block; float: right; width: 40%; text-align: right; color: #fff;}

.newsletter {
	background: rgba(0,0,0,0.5);
	display: none;
	width: 100%; height: 100%;
	position: fixed;
	top: 0px; left: 0px;
}
	.newsletter_in {
		background: #fff;
		display: block;
		width: 350px;
		height: 400px;
		margin: 0 auto;
		box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
		border-radius: 10px; padding: 10px;
		margin-top: 40px; text-align: right;
	}
		.newsletter_in i {
			font-size: 20px;
			cursor: pointer;
		}


@media (max-width: 768px) {

	.logo {height: 150px;}
	.newsletter_box { width: 90%; font-size: 19px;}
	h1 { font-size: 30px; }
	p {font-size: 20px;}
	.main-content { width: 90%; }
	.newsletter_in { width: 90%; }
}