body {
	background-color: #0C0E3F;
}

body:after {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: -1;
	content: url("../img/facebook-color.png") url("../img/instagram-color.png");
}

.wrapper-main {
	width: 1100px;
	margin: 0 auto;
}

h1 {
	font-size: 22px;
	line-height: 20;
	color: #2F2A2A;
	font-family: Roboto;
	font-weight: 600;
	text-transform: uppercase;
}

h2 {
	font-size: 18px;
	line-height: 20px;
	color: #2F2A2A;
	font-family: Roboto;
	font-weight: 600;
	text-transform: uppercase;
}

h3 {
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	font-family: Roboto;
	font-weight: 600;
	text-transform: uppercase;
}

p {
	font-size: 11px;
	line-height: 30px;
	color: #2F2A2A;
	font-family: Roboto;
}
	
a {
	font-size: 18px;
	line-height: 18px;
	color: #000;
	font-family: Roboto;
	cursor: pointer;
	
}

.header-main {
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	z-index: 1000;
}

.header-main-logo{
	width: fit-content;
	height: 60px;
	background-color: #fff;
	padding-left: 60px;
	Display: flex;
}

.header-main-logo img{
	height: 30px;
	align-self: center;
}

.header-main-nav{
	width: fit-content;
	height: 60px;
	font-family: Roboto;
	font-size: 10px;
	
}

.header-main-nav ul{
	margin-left: 30px;
	
}

.header-main-nav ul li{
	display: inline;
	float: left;
}

.header-main-nav ul li a{  /* If I want to change the text, not the positioning, do it inside the anchor tag <a>  */
	padding: 0 10px;
	font-family: 'Roboto', sans-serif; 
	line-height: 60px;
	color: #000;
	display: block;
	height: 100;
}

.header-main-nav ul li a:hover {
	color: #c13584;
}

.header-main-sm{
	width: fit-content;
	height: 60px;
	padding-right: 60px;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.header-main-sm-fb {
	width: 30px;
	height: 30px;
	background-image: url("../img/facebook.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.header-main-sm-fb:hover {
	background-image: url("../img/facebook-color.png");
}

.header-main-sm-in {
	width: 30px;
	height: 30px;
	background-image: url("../img/instagram.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.header-main-sm-in:hover {
	background-image: url("../img/instagram-color.png");
}

/* CATEGORY SECTION OF ORDINARY PAGES */

.section-category {
	width: 100%;
	padding: 60px;
	background-color: #fff;
}

.section-category-box {
	width: 120px;
	height: 120px;
	background-color: #F9060A;
}

.section-category-box h3 {
	
}

/* FOOTER */

.footer-main {
	width: 100%;
	padding: 60px 0 100px;
	background-color: #F8080C
}

.footer-main-flex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-testimony {
	flex-basis: 20%;
}

.footer-testimony img {
	width: 60%;
	border-radius: 20%;
}




