:root {
	--site-color-01: #c13584;
	--site-color-01-hover:rgb(87, 10, 10);
}


body{
	background-color:#c1c1c1;
}


body:after{
	position: absolute;
	width: 0;
	height:0;
	overflow:hidden;
	z-index: -1;
	content: url(facebook-color.png) url(instagram-color.png);
}

h1{
	font-size: 14px;
	line-height: 12px;
	color: #fff;
	font-family: Arial;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
}


p{
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	font-family: Arial;
	margin:20px;

}

a {
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	font-family: Arial;
	cursor: pointer;
}

.header-main{
	--white-background: #fff;
	position: fixed;
	top:0;
	width: calc(100%);
	height: 60px;
	background-color: var(--white-background);
	display: flex;
	justify-content: space-between;
	display: flex;
	align-items: center;
	z-index: 1000;
}

.header-main div{
	height: 30px;
}


.header-main-logo{
	width: fit-content;
	height: 100%;
	background-color: #fff;
	padding-left: 60px;
	display: flex;
}

.header-main-logo img{
	height: 30px;
	align-self: center;
}

.header-main-nav{
	width: 520px;
	height: 100%;
	background-color: #fff;
}


.header-main-sm{
	width: fit-content;
	height: 100%;
	background-color: #fff;
}


.header-main-nav ul{
	list-style: none;
	margin-left:30px;
}

.header-main-nav ul li{
	display:inline;
	float: left;
	margin-right: 10px;
}

.header-main-nav ul li a{
	padding: 0 10px;
	font-family: Arial;
	line-height: 5px;
	color:#bc3a3a;
	display: block;
	height:100%;
}
.header-main-nav ul li a:hover{
	color:#ccc;
	
}


.header-main-sm {
	width: fit-content;
	height: 100%;
	background-color: #fff;
	padding-right: 60px;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.header-main-sm-fb{
	width: 30px;
	height: 30px;
	background-image: url(facebook.png);
	background-repeat: no-repeat;
	background-size:cover;
}

.header-main-sm-fb:hover{
	background-image: url(facebook.jpg);
}
.header-main-sm-in{
	width: 30px;
	height: 30px;
	background-image: url(instragram-color.png);
	background-repeat: no-repeat;
	background-size:cover;
}

.header-main-sm-in:hover{
	background-image: url(instragram.jpg);
}


main{
	width:100%;
	height: calc(200vh - 60px);
	background-color: #1A253A;
	margin-top: 60px;
	background-image: url(don2.png), url(10.jpg);
	background-size: 16vh, cover;
	background-repeat: no-repeat;
	background-position: top, center;
	display: flex;
	justify-content: center;
	align-items: center
}

main .main-intro h1 {
	font-size:  72px;
	line-height: 690px
}


/*main .main-intro h1, main .main-quotes p {
	font-size:96px;
	line-height: 106px
} */

main a{
	margin-top: 30px;
	font-size: 18px;
	display:block;
	background-color: var(--site-color-01);
	padding:10px 20px;
	width: fit-content;
}

main .main-quotes p {
	border-left: 4px solid var(--site-color-01);
	padding-left:20px;
	margin: 40px 0;

}

main .main-intro {
	position: relative;
	left: 12vh;
	padding-bottom: 1vh;
}

main .main-quotes {
	position:relative;
	padding-bottom: 1vh;
}

/* category section*/

h2 {
	font-size: 20px;
	line-height: 32px;
	color: #00ff00;
	font-family: fantasy;
	font-weight: 100;
	text-transform: lowercase;

}
h3 {
	font-size: 20px;
	line-height: 32px;
	color: #b64352;
	font-family: fantasy;
	font-weight: 100;
	text-aline: center;
	
}

.index-category{
	width: 100% ;
	padding: 60px 0;
	background-color: #00ff00;
	display: flex ;
	justify-content: center;
	column-gap: 20px ;
	flex-wrap: wrap;

}

.index-category-box:nth-child(5){
	background-image: url(davelogo.jpg);
}

.index-category-box:nth-child(2){
	background-image: url(dave-logo.jpg);
}
.index-category-box:nth-child(3){
	background-image: url(park-copyright.jpg);
}
.index-category-box:nth-child(4){
	background-image: url(roi.jpg);
}

.index-category-box{
	width: 200px ;
	height:  160px;
	background-color: #111;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.index-category p{
	color: #111;
	text-aline: center;
	padding-bottom: 40px;
	flex-basis: 100%;
	text-transform:uppercase;
	font-size: 28px;
}

.index-category-box h3{
	font-size: 28px;
	line-height: 24px;
	text-aline: center;
	text-shadow: -2px 2px 4px #000;  /*   4th in blur*/
	z-index: 100;
}

.dark-overlay {
	position: absolute;
	top:0;
	right: 0;
	bottom:0;
	left:0;
	background-color: #000;
	opacity: 0.5;
	transition: all ease-in-out 200ms;
}

.index-category-box:hover .dark-overlay{
	opacity: 0;
}