@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
section 
{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 8em;
	font-weight: 800;
	color: rgba(0,0,0,0.25);
	text-transform: uppercase;
	background: #323e4a;
	background: var(--clr);
}
header
{
	position: fixed;
	top: 0;
	width: 100%;
	background: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 50px 0;
	z-index: 105;
}
.logo 
{
	position: relative;
	top: -5px;
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	text-decoration: none;
}
header nav
{
	display: flex;
	gap: 10px;
}

header nav a 
{
	position: relative;
	text-decoration: none;
	padding: 12px 20px;
	color: #fff;
	font-weight: 500;

}
header nav a.active 
{
	background: var(--clr);
	color: wheat;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
header nav a.active::before 
{
	content: '';
	position: absolute;
	left: -20px;
	bottom: 0;
	width: 20px;
	height: 20px;
	border-bottom-right-radius: 20px;
	background: transparent;
	box-shadow: 5px 5px 0 5px var(--clr);
}
header nav a.active::after 
{
	content: '';
	position: absolute;
	right: -20px;
	bottom: 0;
	width: 20px;
	height: 20px;
	border-bottom-left-radius: 20px;
	background: transparent;
	box-shadow: -5px 5px 0 5px var(--clr);
}

.img-wrapper {
	position: absolute;
	/* left: 50%;
	transform: translate(-50%); */
	margin-left: 10vw;
	margin-top: 60px;
}

.img-box {
	margin-top: 50px;
}

section #slider
{
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 80%;
	margin-top: 110px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgb(255, 255, 255);
}
section .navigation
{
	position: absolute;
	width: 100%;
	height: auto;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}
section .navigation li
{
	list-style: none;
	cursor: pointer;
	margin: 10px;
}
section .navigation li img
{
	width: 150px;
	border: 4px solid #fff;
	border-radius: 4px;
}
section h2
{
	position: relative;
	z-index: 100;
	font-size: 4em;
	color: #fff;
	text-align: center;
	max-width: 1000px;
	text-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.section-box {
	min-width: 80%;
	min-height: 85%;
	margin-top: 50px;
	position: absolute;
	left: 50%;
	transform: translate(-50%);

}

.about-title {
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin-top: 1rem;
	color: black;
}

.about {
	font-size: 22px;
	color: black;
	padding: 1rem;
	text-transform: none;
	font-weight: 100;
	font-family: 'Times New Roman', Times, serif;
}

.review-title {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	margin-top: 3rem;
	color: black;	
	text-decoration: underline;
}
.reviews {
	display: flex;
	justify-content: space-evenly;
	margin-top: 20px;

}

.review-card {
	width: 30%;
	padding: 2rem;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 5px 15px rgba(0,0,0,1);

}

.review-name {
	font-size: 20px;
	font-family: 'Courier New', Courier, monospace;
	font-weight: 400;
	margin-bottom: 10px;
	color: black;
}

.review-text {
	font-size: 18px;
	text-transform: none;
	font-family: 'Times New Roman', Times, serif;
	color: black;
	margin-top: 10px;
}

.reviewer-title {
	display: grid;
	grid-template-columns: 3fr 1fr;
}


.photos {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	text-align: center;
	grid-gap: 10px;
}

.photo-img {
	width: auto;
	height: 200px;
}

.stars {
	width: 100px;
	height: auto;
	margin-bottom: 10px;
}

.contact {
	width: 40vw;
	height: 30vw;
}

.contact-us {
	display: flex;
	justify-content: center;
	align-content: center;
	font-size: 18px;
	text-transform: none;
	font-family: 'Times New Roman', Times, serif;
}

.phone {
	font-size: 40px;
	text-transform: none;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 600;
	margin-top: 30px;
	width: 100%;
	text-align: center;
	color: black;
}

.contact-text {
	text-transform: none;
	font-family: 'Times New Roman', Times, serif;
	font-size: 20px;
	color: black;
	padding: 1rem5;
}