html {
	scroll-padding-top: 5rem;
	scroll-behavior: smooth;
}

:root {
	--font-size: 1rem;
}


::marker {
	color: var(--contrast);
}


body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;

}


h1,
h2,
h3,
h4,
h5 {
	margin-bottom: 0.5rem;
	line-height: 1.4;
}


@media(max-width:768px) {

	.hide-mobile {
		display: none !important;
	}

}


@media(min-width:768px) {

	.hide-desktop {
		display: none !important;
	}

}



/*header */

.header {
	background: #000;
	padding: 1rem 0;
	border-bottom: solid 1px #000;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
	position: sticky;
	height: 100px;
	top: 0;
	z-index: 99;
}

.header-mobile-btn {
	width: 50px;
	height: 50px;
	padding: 0.4rem;
	margin: 0;
	background: red;
	border: none;
}

.header-mobile-btn img {
	width: 100%;
	height: 100%;
	filter: invert(100%)
}


.header-logo {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	font-style: italic;
}

.header-grid {
	align-items: center;
}

.header-nav a {
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
}

.header-nav .current a {
	color: #fff;
}


@media(min-width:768px) {

	.header {
		padding: 10px 0;
	}

}

@media(max-width:768px) {

	.header-grid {
		flex-wrap: wrap;
	}

	.header-nav {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 0;
		margin-right: 0 !important;
		margin-left: 0 !important;
		margin-top: 20px;
	}

	.header-nav li {
		width: 100%;
		padding: 8px 0;
		margin: 0;

	}

	.header-nav a {
		width: 100%;
		text-align: center;
		padding: 10px;
		margin: 0;
	}

	.header-nav a[role="button"] {
		margin-left: 0;
		margin-right: 0;
		padding: inherit;

	}

}


/*content and aside */


.content {
	padding: 2rem 0;
	padding-bottom: 0;
}

.content-grid {
	display: grid;
	grid-column: 1fr;
	margin: 2rem 0;
	gap: 1.3rem;
}

@media(min-width:768px) {
	.content-grid {
		grid-template-columns: 9fr 3fr;
	}
}

.content-sidebar ul::marker {
	color: #000;
}

.content-sidebar h2 {
	margin-bottom: 10px;
}


.content-title {
	padding-bottom: 1rem;
	border-bottom: solid 1px var(--muted-border-color);
}

.content-sidebar h2 {
	padding-bottom: 10px;
	border-bottom: solid 1px var(--muted-border-color);
	margin-bottom: 20px;
	display: block;
}


.content-sidebar ul {
	list-style-type: square !important;
	background: var(--primary);
	color: #fff;
	line-height: 1;
	border-radius: 5px;
	list-style-type: square;
}

@media(min-width:768px) {

	.content-sidebar {
		margin-top: 2.7rem;
	}

}

.content-main img {
	margin-bottom: 1.3rem;
	border-radius: 0.2rem;
}


.content-main nav[aria-label="breadcrumb"] li {
	padding: 0 0.5rem;
}

.content-main nav[aria-label="breadcrumb"] a {
	color: var(--muted-color);
}



/*footer */

.footer-grid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

@media(max-width:768px) {
	.footer-grid {
		flex-direction: column;
	}
}



/*grid variant */


@media(min-width:768px) {

	.content-grid-left {
		grid-template-columns: 3fr 9fr;
	}

	.content-grid-left .content-sidebar {
		order: 1;
	}

	.content-grid-left .content-main {
		order: 2;
	}

	.content-grid-nosidebar {
		grid-template-columns: 1fr;
	}


}


.content-grid-nosidebar .content-sidebar {

	display: none;
}


section {
	padding: 5rem 15px;
	display: block;
	margin: 0 !important;
}



.about h1 {
	text-align: center;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.offer :is(h1, h2, h3, h4, h5) {
	margin-bottom: 20px;
	text-transform: uppercase;
}

.offer :is(h1, h2, h3, h4, h5)::after {
	content: '';
	width: 60px;
	height: 3px;
	background: red;
	display: block;
	margin-top: 3px;
}

.offer ul {
	margin: 0;
	padding: 0;
}

.offer ul li {
	width: auto;
	padding: 15px;
	background: red;
	display: inline-block;
	color: #fff;
}

.about h1::after {
	content: '';
	width: 50px;
	height: 5px;
	margin: 0 auto;
	background: red;
	display: block;
}

.contact-more {
	width: 100%;
	background: white;
	border: solid 1px #ddd;
	padding: 15px 10px;
	border-bottom: solid 2px red;
	margin-top: 15px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.12);
}

.contact-more a {
	color: white;
	background: red;
	padding: 10px 15px;
	margin-top: 10px;
	font-size: 15px;
	display: inline-block;
	transition: all 250ms linear;
}

.contact-more a:hover {
	text-decoration: none;
	background: rgb(151, 3, 3);
}

.contact-more>p {
	font-size: 1.5rem;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #000;
	text-transform: uppercase;
}

.real h4 {
	text-align: center;
	font-family: "Roboto", sans-serif;
	font-weight: 300 !important;
	font-style: normal;
	line-height: 1.8;
	margin-top: 10px;
}

.real a {
	text-decoration: none;
}

.real a:hover {
	text-decoration: none;
}

.real .thumb-real {
	transition: all 250ms linear;
	width: 100%;
	height: 250px;
	margin: 0;
	overflow: hidden;
}

.real .thumb-real:before {
	content: "\2b";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-size: 2rem;
	background: transparent;
	color: #fff;
	position: absolute;
	top: 25%;
	left: 45%;
	z-index: 99;
	opacity: 0;
	transition: all 250ms linear;
}

.real .thumb-real img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 10;
	transition: filter 500ms linear;
}


.real a:hover .thumb-real img {

	filter: brightness(40%)
}


.real .thumb-real:hover:before {
	opacity: 1;
	top: 35%;
}

.real a:hover h4 {
	color: red !important;
	text-decoration: none;
}


.fig-video img {
	position: relative;
	z-index: 2;
	transition: all 500ms linear;
}

.fig-video {
	position: relative;
	overflow: hidden;
	margin: 0;
}

.fig-video img {
	filter: brightness(30%);

}

.fig-video:hover img {
	transform: scale(1.1);
	filter: brightness(50%);
}

.fig-video h3 {
	color: #fff;
	position: absolute;
	bottom: 40%;
	left: 5%;
	z-index: 10;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.2;
	font-size: 3rem;
	transition: all 250ms linear;

	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);

}

.fig-video h3:after {
	content: '';
	width: 1px;
	height: 5px;
	background: red;
	color: #fff;
	opacity: 0;
	margin-top: 20px;
	display: block;
	transition: all 250ms linear;
}

.fig-video h3 span {
	font-weight: 600;
	color: red;
}

.fig-video:hover h3 {
	bottom: 43%;
}

.fig-video:hover h3:after {
	content: '';
	width: 100px;
	font-size: 13px;
	opacity: 1;

}


.contact {
	background: #fafafa;
}

.monsterGallery-grid {
	justify-content: center;
}

.real-content h1 {
	font-weight: 300 !important;
	text-align: center;
}

.real-content h1:after {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	background: red;
}

.contact i {
	color: red;
	width: 20px;
	text-align: center;
}

.contact h3:after {
	content: '';
	width: 100px;
	height: 3px;
	background: red;
	display: block;
	margin-bottom: 50px;
}

#sliderslider {
	background: #000;
}

.toper {
	padding: 15px;
	text-transform: uppercase;
	font-size: 10px !important;
}

.toper i {
	color: red;
	width: 20px;
	text-align: center;
}

.toper p {
	margin: 0;
	font-size: 14px;
}

.toper .text-right {
	text-align: right;
}

.subfooter {
	text-align: center;
	font-size: 13px;
	background: #000;
	padding: 10px;
}

.subfooter p {
	padding: 0;
	margin: 0;
	font-size: 13px;
}

.subfooter a {
	color: red !important;
}


@media(max-width:968px) {
	.toper {
		display: none;
	}

	section,
	footer {
		padding: 2rem 15px;
	}

	.slider-item-content {
		width: 90% !important;
	}


	.slider-item h4 {
		font-size: 2rem !important;
	}

	.slider-item p {
		font-size: 1rem !important;
	}

	.slider-prev,
	.slider-next {
		display: none !important;
	}

	.slider-item {
		height: 60vh !important;
	}

	.thumb {
		margin-bottom: 20px;
		display: block;
	}

	.fig-video {
		height: 50vh !important;
	}

	.fig-video h3 {
		font-size: 2rem !important;
	}


	.header-nav {
		background: #000;
		width: 100%;
	}

	.header .container {
		background: #000;
	}

	
	.footer :is(.col-md-4,.col-md-8){
	margin:10px 0;	
	}
	
}