@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900;&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
}


hr{
	width: 450px;
	height: 2px;
  	background: grey;
}

.navbar{
	font-size: 16px;
	top:0;
	left:0;
}

.navbar-light .navbar-nav .nav-link{
	padding:0 20px;
	color:black;
	transition: 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar i.active{
	color:CORAL;
}

.navbar i{
	font-size:1.2rem;
	padding: 0 7px;
	cursor:pointer;
	font-weight: 500;
	transition: 0.3s ease;
}

#bar{
	font-size:1.5rem;
	padding:7px;
	cursor:pointer;
	font-weight:500;
	transition:0.3s ease;
	color: black;
}

#bar:hover,
#bar.active{
	color: lightgray;
}

@media only screen and (max-width:991px){
	body > nav > div > button:hover,
	body > nav > div > button:focus{
		background-color:white; 
	}

	body > nav > div > button:hover #bar,
	body > nav > div > button:focus #bar{
		background-color:white; 
	}


	#navbarSupportedContent > ul{
		margin: 1rem;
		justify-content: flex-end;
		align-items: flex-end;
		text-align:right;
	}

	#navbarSupportedContent > ul > li:nth-child(n) > a{
		padding:10px 0;
	}
}

/*Mobile Nav*/
.navbar-light .navbar-toggler{
	border:none;
	outline:none;
}


/*CONTENT*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.section{
	width: 100%;
	min-height: 105vh;
	background-color: #f0f0f0;
}

.container_section{
	width: 80%;
	display: block;
	margin: auto;
	padding-top: 100px;
}

.content-section{
	float: left;
	width: 55%;
}

.image-section{
	float: right;
	width: 39%;
}

.image-section img{
	width: 100%;
	height: auto;
}

.content-section .title{
	text-transform: uppercase;
	font-size: 28px;
}

.content-section .content h3{
	margin-top: 20px;
	font-family: 'Aref Ruqaa', serif;
	font-style: Reguler;
}

.content-section .social{
	margin-top: 30px;

}

.content-section .social i{
	font-size: 20px;
	padding: 0px 10px;
}
