@font-face{
	font-family: "Greenth dots";
	src: url(Greenth Dots.otf);
}
html{
	font-size: 62.5%;
}
body{
	padding-top: 70px ;
	margin-left: 0px;
	margin-right: 0px;
}


.header{
	position: fixed;
	background-color: #b87d4b;
	border: 2px solid #523A34;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	z-index: 100;
	box-shadow: 0px 0px 10px #b87d4b;
}
.logo{
	font-size: 4.0rem;
	text-decoration: none;
	font-weight: 600px;
	color: #222;
	vertical-align: top;
	font-family: "Greenth-dots", arial;
}
.logo-img{
	height: 50px;
	width: 50px;
	border-radius: 25px;
}
.logo,
.logo-img{
	opacity: 0;
	animation: slideRight 1s ease forwards;
}
.navbar a{
	font-size: 1.8rem;
	color: #222;
	text-decoration: none;
	font-weight: 500px;
	margin: 0px 20px;
	transition: .3s;

	opacity: 0;
	animation: slideTop .6s ease forwards;
	animation-delay: calc( .2s * var(--i));
	display: inline-block;
}
.navbar a:hover,
.navbar a.active {
	color: #F2DD6E;
}


.body{
	width: 100%;
	background-color: #FCEFCB;
	position: relative;
	display: flex;
	justify-content: center;
}
.image{
	border: 1px solid #A86523;
	box-shadow: 0px 0px 6px #A86523;
	border-radius: 5px;
}
.body-text{
	width: 100%;
	background-color: #FCEFCB;
	position: relative;
	display: flex;
	justify-content: center;
	padding-top: 5px;
	padding-bottom: 5px;
}
.text{
	width: 900px;
	border: 1px solid #A86523;
	box-shadow: 0px 0px 6px #A86523;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.para1,
.para2,
.para3{
	width: 700px;
	font-family: "Quattrocento";
	font-size: 1.8rem;
}
.text p{
	margin-top: 10px;
	line-height: 1.6;
}


.footer{
	background-color: #787163;
	display: flex;
	width: 100%;
	align-items: center;
	flex-direction: column;
}
.footer-content{
	display: flex;
	align-items: center;
	flex-direction: column;
}
.contact{
	color: white;
	font-size: 2.5rem;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 300;
	letter-spacing: 5px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.contact-icons{
	display: flex;
}
.icon1,
.icon2{
	margin-left: 10px;
	padding-right: 5px;
	position: relative;
}
.icon1 .tooltip,
.icon2 .tooltip{
	position: absolute;
	background-color: gray;
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	padding-left: 2px;
	padding-right: 2px;
	border-radius: 2px;
	bottom: -8px;
	opacity: 0;
	transition: opacity 0.15s;
	pointer-events: none;
}
.icon1:hover .tooltip,
.icon2:hover .tooltip{
	opacity: 1;
}
.email{
	display: flex;
	color: white;
}
.email-content{
	display: flex;
	margin-top: 4px;
	flex-direction: column;
	align-items: center;
}
.email-content p{
	font-size: 1.6rem;
	font-family: "Barlow Condensed", sans-serif;
	margin-top: 0px;
	margin-bottom: 0px;
	letter-spacing: 2px;
}
.email-content a{
	font-size: 1.6rem;
	text-decoration: none;
	color: white;
	letter-spacing: 1px;
}

.burger-menu, 
.burger-menu-btn{
	display: none;
}


@keyframes slideRight {
	0%{
		transform: translateX(-100px);
		opacity: 0;
	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideTop {
	0%{
		transform: translateY(100px);
		opacity: 0;
	}
	100%{
		transform: translateY(0);
		opacity: 1;
	}
}

@media only screen and (max-width: 600px) {

	.logo{
		font-size: 2.0rem;
	}
	.logo-img{
	height: 20px;
	width: 20px;
	border-radius: 10px;
	}

	
	.burger-menu-btn{
		display: block;
		width: 25px;
		height: 25px;
		background-image: url(Icons/menu_25dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg), url(Icons/close_25dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center, center left 50px;
	}
	.burger-menu{
		display: none;
		position: fixed;
		width: 100%;
		height: 100vh;
		z-index: 300;
		background-color: #D1A980;
	}
	.burger-menu ul{
		width: 100%;
		height: calc(100vh - 80px);
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
		padding-left: 0;
	}
	.burger-menu ul li{
		flex-basis: 100%;
		border-top: 2px solid #000;
	}
	.burger-menu ul li:last-child {
		border-bottom: 2px solid #000;
	}
	.burger-menu ul li a{
		display: block;
		height: 8vh;
		font-size: 3rem;
		padding-top: 7%;
		flex-basis: 100%;
		text-align: center;
		text-decoration: none;
		color: #F8F8F8;
	}

	.navbar{
		display: none;
	}

	body{
		background-color: #FCEFCB;
	}
	.body{
		padding-top: 10px;
	}
	.image{
		width: calc(100% - 10vw);
	}
	.body-text{
		max-width: 90vw;
		margin-left: 5%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.text{
		max-width: 90vw;
	}
	.para1,
	.para2,
	.para3{
		max-width: 80vw;
		padding-left: 1%;
	}
	.text p{
		font-size: 1.2rem;
	}

}

@media only screen and (max-width: 1024px) and (min-width: 600px){

	.logo{
		font-size: 2.9rem;
	}
	.logo-img{
	height: 30px;
	width: 30px;
	border-radius: 15px;
	}
	.navbar a{
		font-size: 1.6rem;
		margin: 0px 10px;
	}


	body{
		background-color: #FCEFCB;
	}
	.body{
		padding-top: 10px;
	}
	.image{
		width: calc(100% - 10vw);
	}
	.body-text{
		max-width: 90vw;
		margin-left: 5%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.text{
		max-width: 90vw;
	}
	.para1,
	.para2,
	.para3{
		max-width: 80vw;
		padding-left: 1%;
	}
	.text p{
		font-size: 1.8rem;
	}


}