html {
	font-size: 15px;
}

*,
*::after,
*::before {
	box-sizing: border-box;
 
}

:root {

	--primary: #8dc63f;
	--secondary: #000;
}

.btn {
	border-radius: 5rem;
}

.bg-dark {
	background: #111 !important;
}

::marker {
	color: var(--contrast);
}



body {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: rgba(0, 0, 0, 0.5);
	line-height: 1.8;
}


.btn {
	border-radius: 0;
}

.btn-primary {
	border: unset;
	background: unset;
	background: var(--primary);
	border: none;
}


.btn-primary:hover {
	background: var(--secondary);
	border: none;
}



h1,
h2,
h3,
h4,
h5 {
	font-family: 'Roboto Slab', serif;
	font-weight: 400;
	margin-bottom: 0.5rem;
	color: #303030;
}


p {
	margin: 15px 0;
}




.toper {
	padding: 10px 15px;
	background: #f7f7f7;
}

.toper a {
	color: inherit;
	text-decoration: none;
}

.toper p {
	margin: 0;
}

.toper .uil {
	color: var(--primary)
}

section {
	padding-left: 15px;
	padding-right: 15px;
}


.nav {
	padding: 20px 0;
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 22;
}


.nav-logo {
	width: auto;
	display: block;
}


.nav-menu .parent>a:after {
	content: '❯';
	display: inline-block;
	font-size: 0.6rem;
	margin-left: 10px;

	transform:translate(0,-3px) rotate(90deg);
}

.nav-menu {
	width: auto;
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px;
	background: #fff;
}

.nav-menu li {
	margin-right: 15px;
	position: relative;
}

.nav-menu li:after {
	content: '•';
	margin-left: 15px;
	color: var(--primary);
}

.nav-menu ul {
	position: absolute;
	width: 250px;
	list-style: none;
	margin: 0;
	padding: 0;
	padding: 10px;
	background: #fafafa;
	border: solid 1px #ddd;
	z-index: 3;
	border-top: solid 2px var(--primary);
}

.nav-menu li:last-child:after {
	display: none;
}

.nav-menu a {
	color: #000;
	text-decoration: none;
	transition: all 250ms linear;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary)
}


.nav-menu ul {
	font-weight: 400;
	padding: 0;
	background: #fff;
	display: none;
}

.nav-menu ul li {
	border-bottom: solid 1px #ddd;
	margin: 0;
}

.nav-menu ul li a {
	width: 100%;
	height: auto;
	padding: 10px;
	display: block;
}

.nav-menu ul li a:hover {
	background: var(--primary);
	color: #fff;
}

.nav-menu ul li:after {
	display: none;
	font-weight: 300;
}



.nav-menu li:hover ul {
	display: block;
}


.nav-mobile-btn {
	width: 50px;
	height: 50px;
	background: var(--primary);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-mobile-btn img {
	width: 30px;
	height: 30px;
	filter: invert(100%);
}


span {
	color: var(--primary)
}

.text-justify {
	text-align: justify;
}

.text-right {
	text-align: right;
}

@media(max-width:968px) {
	.nav {
		padding: 10px;
	}

	.nav-menu {
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		margin-top: 20px;
	}

	.nav-menu li:after {
		display: none;
	}

	.nav-menu li {
		width: 100%;
		border-bottom: solid 1px rgba(0, 0, 0, 0.2);

	}

	.nav-menu li a {
		padding: 10px;
		display: block;
		height: auto;
	}

	.nav-menu li ul {
		width: 100%;
		display: block;
		position: relative;
	}
}

/*title */

.title {
	background: var(--primary);

}

.title :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.title ul {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

@media(min-width:968px) {

	.title ul {
		justify-content: flex-end;
	}

}

.title ul li {
	margin-left: 10px;
}

.title ul a {
	text-decoration: none;
	color: #fff;
}

.title ul li:after {
	content: '»';
	margin-left: 10px;
	color: #fff;
}

.title ul li:last-child:after {
	display: none;
}

/*about */



.about-item {
	width: 100%;
	height: 250px;
	display: block;
	margin-bottom: 20px;
	border-bottom: solid 5px var(--primary);
	object-fit: cover;
	object-position: center;
}


.about-item{
transition:all 250ms ease-in-out;
}


.about-box:hover .about-item {
filter:brightness(50%)}


/*more*/

.more h3 {
	border-left: solid 3px var(--primary);
	padding-left: 10px;
	margin-top: 10px;
	margin-left: 10px;
}


.more-item figure {
	width: 100%;
	height: 300px;
	background: var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
	position: relative;
	color: #fff;
	margin: 0;

}

.more-item :is(h1, h2, h3, h4, h5) {
	font-weight: 500;
	color: #fff;
}

.more-item img {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	object-fit: cover;
	filter: brightness(50%);
	transition: all 250ms linear;
}

.more-item-content {
	text-align: center;
	height: auto;
	position: absolute;
	z-index: 2;
}

.more-item:hover img {
	transform: scale(1.2);
	filter: brightness(40%);
}



@media(max-width:768px) {

	.hide-mobile {
		display: none !important;
	}

}


@media(min-width:768px) {

	.hide-desktop {
		display: none !important;
	}

}

/*main*/

main ::marker {
	color: var(--primary);
}

main ul {
	margin: 0;
	
	padding: 0;
	list-style-type: none;
}

main ul li{
 
 border-bottom: dashed 1px var(--primary);
    padding: 5px;
}

 main ul li:nth-child(2n){
 	
}


main :is(b, strong) {
	font-weight: 500;
	color: var(--primary)
}

main :is(a) {
	color: var(--primary)
}

main :is(h1, h2, h3, h4, h5, h6) {
	border-left: solid 3px var(--primary);
	padding-left: 10px;
	margin-bottom: 1rem;
	margin-top: 1.2rem;
}

/*contact*/


.contactwithus {
	background: #000;
	text-align: center;
	position: relative;
	height: 250px;
	overflow: hidden;
	width: 100%;
}

.contactwithus-fog {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 50px 15px;
	background: rgba(0, 0, 0, 0.5);
	left: 0;

}

@supports(background-attachment: fixed) {

	.contactwithus {
		background-attachment: fixed !important;
	}

}


.contactwithus :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.contactwithus p {
	color: #fff;
}



/*footer */

.footer {
	background: #000;
	color: #fff;
}

.footer :is(h1, h2, h3, h4, h5) {
	color: #fff;
	margin-bottom: 10px;
	border-left: solid 3px var(--primary);
	padding-left: 10px;
}


.footer ul {
	list-style-type: square;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	font-size: 1rem;
	line-height: 1.5;
}

.footer ::marker {
	color: var(--primary)
}

.footer ul li {
	margin-left: 20px;
	width: 100%;
}

.footer a {
	color: var(--primary);
	list-style-type: none;
	text-decoration: none;
}

.footer ul a {
	color: #fff;
}

.footer .uil {
	color: var(--primary)
}


.monsterGallery-grid {
	justify-content: center;
}

@media(max-width:968px) {


	.monsterGallery-grid a {
		width: 48% !important;
	}

	.monsterGallery-grid img {
		width: 100% !important;
	}

}