body {
	overflow-y: scroll;
	position: absolute;
	width: 100%;
	color: #4a4a4a;
	font-size: 16px;
	line-height: 26px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	background-color: #490004;	
}

.page_content {
	float: left;
	width: 100%;
	position: relative;
	z-index: 999;
}

.page_content.move_top {
	margin-top: -250px;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

h1 {
	width: 100%;
	font-size: 40px;
	text-align: center;
	line-height: 45px;
	font-family: 'Raleway', sans-serif;
	font-style: normal;
	font-weight: 700;
}

h2 {
	width: 100%;
	font-size: 25px;
	text-align: center;
	line-height: 35px;
	margin-top: 10px;
	font-family: 'Raleway', sans-serif;
	font-style: normal;
	font-weight: 400;
}

h4 {
	width: 100%;
	font-size: 30px;
	text-align: left;
	line-height: 35px;
	padding-bottom: 30px;
	font-family: 'Raleway', sans-serif;
	font-style: normal;
	font-weight: 700;
}

main {
	float: left;
	width: 100%;
	margin-top: 80px;
	padding-bottom: 80px;
	background-color: black;
}

.main_text {
	width: 70%;
	margin: auto;
	margin-top: 40px;
}

/* Image slider */
.websites_slider_white{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
	background-color: black;
}

.slider_image {
	width: 100%;
	height: 100vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative; 
}

/* Shadow Overlay */
.slider_image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); 
	pointer-events: none; 
}

.slider {
    position: relative;
	width: 100%;
	background-color: #272727;
}

.slider_content {
	position: absolute;
	z-index: 9;
	width: 100%;
	padding-top: 100px;
	text-align: center;
	color: white;
}

.slider_content .logo {
	float: left;
	width: 70%;
	margin-left: 15%;
	margin-right: 15%;
}

.slider_content .logo img {
	width: 100%;
}

.social_media {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: -30px;
}

.social_media i {
	font-size: 50px;
	margin-left: 12px;
	margin-right: 12px;
}

.slider_follow_us {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: 25px;
}

.slider_follow_us img {
	width: 22%;
	margin-left: 45%;
}

.slider_contact {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.content_center {
	float: left;
	width: 100%;
	text-align: center;
}

.content_left {
	float: left;
	width: 100%;
	text-align: left;
}

.content_right {
	float: left;
	width: 100%;
	text-align: right;
}

/* Scrolling arrow header */
.scrolling {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px; /* Adds space between the arrow and the text */
	color: #fff; /* Ensure text is visible if background changes */
	text-decoration: none; /* Remove underline from link */
}

.scrolling span {
	position: relative;
	transform: rotate(-45deg);
	width: 24px;
	height: 24px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	animation: sdb05 1.5s infinite;
	box-sizing: border-box;
}

@media screen and (max-width: 400px) {
	.scrolling {
		display: none;
	}
}

@keyframes sdb05 {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}

/* Add styles to position the scroll indicator effectively */
#scroll {
	position: absolute; /* Position relative to the nearest positioned ancestor (websites_slider_white or body) */
	bottom: 30px; /* Adjust as needed for vertical position from the bottom */
	left: 50%;
	transform: translateX(-50%); /* Center horizontally */
	z-index: 10; /* Ensure it's above other content */
	width: auto; /* Allow width to adjust to content */
	padding: 10px; /* Add some padding around the text/arrow */
}


.margin_top {
	margin-top: 40px;
}

.margin_top_20 {
	margin-top: 20px;
}

.small_line {
	width: 40px;
	margin: auto;
	border-bottom: 4px solid #ed1c24;
}

.window_full {
	float: left;
	width: 100%;
}

.window_container_quarter {
	float: left;
	width: 25%;
}

.window_container_third {
	float: left;
	width: 33.33%;
}

.window_container_half {
	float: left;
	width: 50%;
}

.window_container_big {
	float: left;
	width: 100%;
}

.window_picture {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center top;
    opacity: 0.9;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
    outline: none;
}

.special{
    background-position: right top;
    background-size: 200% !important;
}

.window_picture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background-color 0.4s ease;
}

.window_picture:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.window_picture > img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    padding-left: 15%;
	padding-right: 15%;
	padding-top: 50px;
	padding-bottom: 50px;
    z-index: 2;
}

.gender_icon {
	position: absolute;
	right: 0;
	z-index: 9;
	width: 65px;
}

.window_content {
	float: left;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 20px;
	line-height: 29px;
	padding: 40px;
	background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

.window_content img {
	max-width: 60%;
	left: 50%;
	position: absolute; /* Don't forget to add position: relative; to your container. */
	top: 50%;
	transform: translate(-50%, -50%);
}

.window_container_big .window_content img {
	max-width: 30%;
}

.window_content .height_logo {
	width: auto;
	height: 70%;
}

.window_picture:hover {
	opacity: 1;
}

.window_text {
	float: left;
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

.p_small {
	float: left;
	width: 100%;
	height: 350px;
	position: relative;
}

.p_normal {
	float: left;
	width: 100%;
	height: 700px;
	position: relative;
}

.bg_white {
	background-color: white;
}

.bg_black {
	background-color: #0c0c0c;
}

.special_banner {
	float: left;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #540004;
	color: white;
	font-size: 16px;
}

.special_banner .content_center {
	margin-top: 40px;
}

footer {
	float: left;
	width: 100%;
	padding-top: 80px;
	padding-bottom: 60px;
	background-color: #540004;
	color: white;
	font-size: 16px;
}

footer a {
	color: white;
}

.footer_contact_right {
	float: right;
	width: 50%;
}

.footer_contact_left {
	float: right;
	width: 50%;
	padding-right: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.footer_picture img {
	width: 100%;
    border-radius: 10px;
}

.footer_menu {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: 60px;
	font-size: 14px;
}

.footeritem {
	float: left;
	width: 25%;
}

.footeritem_left {
	width: 50%;
}

.footeritem i {
	float: left;
	font-size: 30px;
	margin-right: 20px;
}
.footeritem form .label {
	color: white !important;
}

.opening_hour {
	float: left;
	width: 100%;
	line-height: 25px;
	margin-top: 10px;
}

.opening_hour strong {
	float: left;
	width: 130px;
	font-weight: bold;
}

/* Copyright */
.copyright {
	float: left;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #490004;
	color: #e4e4e4;
	font-size: 12px;
	text-align: right;
}

.button {
	border: 1px solid white;
	color: white;
	border-radius: 5px;
	padding: 10px 24px;
	background-color: transparent;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
    outline: none;
	-webkit-appearance: none;
    appearance: none;
}

.button:hover {
	border: 1px solid #cbcbcb;
	text-decoration: none;
	color: #cbcbcb;
	cursor: pointer;
}

a {
	color: white;
}

a:hover {
	text-decoration: underline;
}

.last {
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}

.tooltip {
	max-width: 200px;
	display:none;
	position:absolute;
	border:1px solid #333;
	background-color:#171717;
	border-radius:5px;
	padding:10px;
	color:#fff;
	font-size: 10px !important;
}

@media only screen and (max-width: 1210px) {	
	.container {
		width: 92%;
		padding-left: 4%;
		padding-right: 4%;
	}
	
	.p_small {
		height: 300px;
	}
	
	.p_normal {
		height: 600px;
	}
}

@media only screen and (max-width: 959px) {		
	#menu {
		display: block;
	}
	
	body{
		-webkit-text-size-adjust: none;
	}
	
	.p_small {
		height: 250px;
	}
	
	.p_normal {
		height: 500px;
	}
	
	.gender_icon {
		width: 50px;
	}
	
	.slider_follow_us img {
		width: 40%;
		margin-left: 60%;
	}
	
	.footeritem {
		width: 50%;
	}
}

@media only screen and (max-width: 767px) {	
	.mobile {
		display: inline !important;
	}
	
	.desktop {
		display: none;
	}
	
	#menu {
		display: none;
	}
	
	.page_content.move_top {
		margin-top: -350px;
	}
	
	h1 {
		font-size: 30px;
		line-height: 35px;
	}
	
	h2 {
		font-size: 16px;
		line-height: 23px;
	}
	
	.slider_follow_us {
		margin-top: 100px;
	}
	
	.main_text {
		width: 90%;
	}
	
	.slider_content .logo {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
	}
	
	.p_small {
		height: 150px;
	}
	
	.p_normal {
		height: 300px;
	}
	
	.slider_contact {
		margin-top: 20px;
	}
	
	.slider_follow_us img {
		width: 37%;
		margin-left: 60%;
	}
	
	.gender_icon {
		width: 40px;
	}
	
	.footeritem_left {
		width: 100%;
		margin-bottom: 80px;
	}
}

@media only screen and (max-width: 479px) {
	.container {
		width: 90%;
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.main_text {
		width: 100%;
	}
	
	.slider_content .logo {
		width: 96%;
		margin-left: 2%;
		margin-right: 2%;
	}
	
	.social_media {
		text-align: left;
	}
	
	.social_media i {
		margin-left: 0;
		margin-right: 20px;
	}
	
	.slider_follow_us {
		margin-top: 180px;
	}
	
	.slider_follow_us img {
		width: 60%;
		margin-left: 30%;
	}
	
	.slider_contact {
		text-align: left;
		font-size: 13px;
	}
	
	h1 {
		font-size: 25px;
		line-height: 31px;
	}
	
	h2 {
		font-size: 13px;
		line-height: 20px;
	}
	
	.order_change {
		display: -webkit-box;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: -webkit-flex;
	    display: flex;
		flex-flow: row wrap;
	}
	
	.window_container_quarter {
		width: 50%;
	}
	
	.order_first {
		-webkit-box-ordinal-group: 2;
	    -moz-box-ordinal-group: 2;
	    -ms-flex-order: 2;
	    -webkit-order: 2;
		order: 2;
	}
	
	.order_second {
		-webkit-box-ordinal-group: 1;
	    -moz-box-ordinal-group: 1;
	    -ms-flex-order: 1;
	    -webkit-order: 1;
		order: 1;
	}
	
	.window_container_third {
		width: 100%;
	}
	
	/*.window_container_half {
		width: 50%;
	}*/
	.window_container_half {
		width: 100%;
	}
	
	.p_small {
		height: 150px;
	}
	
	.p_normal {
		height: 200px;
	}
	
	.gender_icon {
		width: 30px;
	}
	
	.fixed_mobile_width {
		width: 100%;
	}
	
	.fixed_mobile_height {
		height: 300px;
	}
	
	.window_content img {
		max-width: 40%;
	}
	
	.window_container_quarter .window_content img {
		max-width: 80%;
	}
	
	.window_container_half .window_content img {
		max-width: 60%;
	}
	
	.window_container_big .window_content img {
		max-width: 40%;
	}
	
	.fixed_mobile_height .window_content .height_logo {
		max-width: 90%;
	}
	
	.fixed_mobile_width .window_content img {
		width: 40%;
	}
	
	.opening_hour strong {
		width: 160px;
	}	
	.footer_contact_right {
		width: 100%;
		padding: 0;
	}
	.footer_contact_left {
		width: 100%;
		padding: 0;
	}
	.footeritem {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.footer_picture img {
		width: 80%;
	}
}

@media only screen and (max-width: 360px) {
	.footer_picture img {
		width: 100%;
	}
}