
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&display=swap');

:root {
	--main-color: #ed1c24;
    --black-color: #000000;
    --white-color: #ffffff;
    --title-color: #ffffff;
    --text-color: #ffffff;
    --body-color: #ffffff;
	--footer-color: #193755;



	--text-font: 'Montserrat', sans-serif;
    --title-font: 'Montserrat', sans-serif;
    --text-font-size: 10px;
    --title-font-size: 2rem;
    --biggest-font-size: 5rem;
    --bigger-font-size: 3.5rem;
    --big-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    --text-line-height: 2rem;


}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: var(--text-font-size);
	font-family: var(--text-font);
	scroll-behavior: smooth;
}

body
{
	
	background-attachment: fixed;
}

a {
	text-decoration: none;
}
.container {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.5rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0rem;
	text-align: center;
}
.section-title span {
	color: var(--main-color);
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid var(--main-color);
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: var(--main-color);
}
.brand h1 {
	font-family: var(--text-font);
	font-size: 4rem;
	color: var(--main-color);
}
.brand h1 span {
	
	color: white;
}

#popup
{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}

#popup div
{
	padding: 3rem;
	background: var(--white-color);
	width: 95vw;
	min-width: 300px;
	height: auto;
	text-align: right;

}

#popup div p
{
	text-align: center;
	padding: 1rem;
}

#popup div p a
{
	color: var(--main-color);
}

#popup .btn1
{
	padding: 1rem;
	border-bottom: 2px solid var(--main-color);
	background-color: transparent;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
	font-weight: 600;
	margin-bottom: 1rem;
	cursor: pointer;
}

#popup .btn2
{
	border: 0;
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 2rem 6rem;
	cursor: pointer;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	
}
#header .header {
	min-height: 8vh;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	padding: 0 10px;
}

#header .brand {
	display: flex;
	align-items: center;
	justify-content:center;
	width: 100%;
	height: 100%;
	padding: 15px 10px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
	background-color: rgb(31, 30, 30);
}
#header .nav-list ul.active {
	left: 0%;
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
	text-align: center;
;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: var(--main-color);
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}

#header .lang
{
	background-color: var(--main-color);
	border:0;
	padding: 0.5rem;
	color: var(--white-color);
	cursor: pointer;
	opacity: 0.8;
}

#header .lang:hover
{
	opacity: 1;
}
/* End Header section */

/* Hero Section */
#hero {
	
	position: relative;
	z-index: 1;
	background-image: url(../img/hero-bg.jpg);
	background-position: center center;
	background-size: cover;
}
/* #hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
} */
#hero .hero {
	margin: 0 auto;
	padding: 0 0px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	height: 100vh;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	margin: 10px auto;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
	font-weight: 200;
	margin: 0 auto;
}
#hero h1:nth-child(2) {
	
	animation: text_reveal_1 0.5s ease forwards;
	animation-delay: 2s;
	font-family: var(--title-font);
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: var(--main-color);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

#hero .col-right
{
	width: 100%;
	height: auto;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	right:0;
	bottom: 0;
	padding: 2rem;
}

#hero .col-right p
{
	padding: 0.5rem;
	color: var(--white-color);
	text-align: center;
}

#hero .logo
	{
		display: flex;
		height: 40%;
		justify-content: center;
		align-items: center;
		padding: 3rem;
	}
	#hero .logo img
	{
		width: auto;
		height: auto;
	}
/* End Hero Section */

/* About Section */
#about
{
	
	height: 100%;
	background-image: url(../img/about-bg.jpg);
	background-position-x:calc(100vw - 35%);
	background-position-y: top;
	background-repeat: no-repeat;
	background-size: contain;
	
}
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 80px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}

#about .col-right ul
{
	font-size: 1.5rem;
	padding-left: 40px;
	padding-right: 10px;
	margin:10px 0;
}


#about .col-right ul li
{
	padding-left: -20px;
	text-align: left;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 5rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid var(--main-color);
	z-index: -1;
}
/* End About Section */


/* Gallery */

#gallery {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap:wrap;
}

.modal
		{
			height: 1px;
			width: 1px;
			overflow: hidden;
		}
/* End Gallery */

/* eventy */

#event {
	background-color: var(--main-color);
	width: 100%;
	height: auto;
	padding: 20px 0px;
}

#event .event
{
	color: var(--white-color);
	display: flex;
	flex-direction:column;
}

#event .event .col-left{
	padding: 20px;
}

#event .event .col-left h1.section-title
{
color: var(--white-color);
}

#event .event .col-left p
{
	color: var(--white-color);
	text-align: center;
	padding-bottom: 20px;
}

#event .event .col-right img
{
	border-top: 10px solid var(--white-color);
	border-bottom: 10px solid var(--white-color);
}
/* end eventy */

.foto{
width: 100%;
height: auto;
padding: 0px 0;
}
.foto .container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.foto h1 
{
	text-transform: capitalize;
}
.foto h1 span
{
	text-transform: uppercase;
}
.foto img
{
	width: 100%;
}


.s1
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: auto;
	padding-top: 3rem;
	padding-bottom: 3rem;
	border-top: var(--footer-color) solid 5px;
	flex-wrap: wrap;
}

.s1 img
{
	height: 100px;
	width: auto;
}

.s2
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: auto;
	padding-top: 1rem;
	padding-bottom: 1rem;
	flex-wrap: wrap;
}

.s2 img
{
	height: 70px;
	width: auto;
	margin-left: 1rem;
	margin-right: 1rem;
}

.map {
	position: relative;
	top: 0;
}

.map img
{
	width: 100%;
	z-index: 9;

}

.map svg
{
	width: 100%;
	z-index: 99;
	position: absolute;
}

.svg-butelkownia
{
	fill:var(--main-color);
	animation: butelkownia 1s ease infinite;
}


#drive .table{
	display: flex;
	width: 90%;
	flex-direction: row;
	font-size: 1.5rem;
	margin: 2rem 0;
}
#drive .table .row
{
	width: 20%;
	border-right: 1px solid #ccc;
	text-align: center;
}

#drive .table .row:nth-last-child(1)
{
	border-right: 0px;
}

#drive .table .row div
{
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#drive .table .row div:nth-child(even)
{
	background-color: #e8e7e7;
}
#drive .table img
{
	height: auto;
	width: auto;
}

#drive .table .name
{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.2rem;
}
/* hotel section */

#hotel .hotel-hero {
	background-image: url(../img/hotel-hero.jpg);
	background-position: center center;
	background-repeat: none;
	background-size: cover;
	height: 40vh;
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
#hotel .hotel-hero .container{
	justify-content: flex-start;
}
#hotel .hotel-content {
	flex-direction: column;
 }

#hotel .hotel-logo
{
	width: 50%;
	margin-left: 20px;
	background-color: rgba(255, 255, 255, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 20px;
}

#hotel .hotel-logo img
{
	width: 100%;
	height: auto;
	display: block;
}

#hotel .col-left
{
	font-size: 1.5rem;
}
#hotel .col-left p
{
	padding: 20px;
}
#hotel ul
{
	font-size: 1.5rem;
	padding-left: 40px;
	padding-right: 10px;
	margin:10px 0;
	list-style: none;
}


#hotel ul li
{
	padding-left: -20px;
	text-align: left;
}

#hotel ul li::before
{
	content: "\25A0";  
	color: #a31984; 
	font-weight: bold; 
	display: inline-block; 
	width: 1em;
	margin-right: 1em;
}


#hotel .col-left h3
{
	color: #a31984;
	text-align: center;
	padding: 20px;
}
/* end hotel section */

/* contact Section */


#down
{
	background-color: var(--footer-color);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5rem;
}

#down .down
{
	width: 60%;
	min-width: 300px;
}

#down .down ul
{
	list-style: none;
}
#down .down li
{
	width: 100%;
	color: var(--white-color);
	padding: 1rem;
	font-size: 2rem;
	border-bottom: 1px solid #ccc;
	min-height: 50px;
	display: flex;
	align-items: center;
}

#down .down li img
{
	height: 30px;
	margin-right: 30px;
	width: auto;
}

#down .down li:hover
{
	background-color: rgba(255, 255, 255, 0.1);
}

#down .down h1
{
	color: var(--white-color)
}


#contact{
	background-image: url(../img/contact-bg.jpg);
	background-position: center center;
	background-repeat: none;
	background-size: cover;
	background-attachment: fixed;
	height: auto;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	padding: 50px 0;
}
#contact .contact form{
	flex-direction: column;
	display: flex;
	margin: 0 auto;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 50px 20px;
	width: 80vw;
	height: auto;
}

#contact .contact .col-left
{
	display: flex;
	flex-direction: column;
	width: 100%;
}

#contact .contact .col-right
{
	display: flex;
	flex-direction: column;
	width: 100%;
}
.form-input, .form-text{

padding: 1rem;
border: 0;
background-color: rgba(255, 255, 255, 0.7);
margin: 1rem;
color: var(--white-color);
font-family: var(--text-font);
}

.form-input::placeholder, .form-text::placeholder
{
	color: #fff;
}
.form-input
{
	height: 40px;
}

.form-text
{
	height: calc(3 * 40px + 3rem);
}

.form-button
{
padding: 1rem;
border: 0;
background-color: var(--main-color);
margin: 1rem;
color: var(--white-color);
text-transform: uppercase;
letter-spacing: 0.5rem;
}


/*End contact Section */

/* Footer */
#footer {
	background-color: var(--footer-color)
}
#footer .footer {
	flex-direction: column;
	padding-top: 20px;
	padding-bottom: 20px;
}

#footer .footer .container
{
	display: flex;
	flex-direction: column;
}
#footer .logo
{
	padding: 1rem;
}
#footer .orange
{
	background-color: var(--main-color);
	height: 2rem;
	display: flex;
}
#footer .orange .container
{
	display: flex;
	justify-content: center;
}

#footer .orange a
{
	color: var(--white-color);
}

#footer .dh{
	background: linear-gradient(0deg, rgba(25,55,85,1) 0%, rgba(25,55,85,1) 48%, rgba(255,255,255,1) 49%, rgba(25,55,85,1) 50%);
	height:4rem;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
}

#footer .dh img{
	width: auto;
	height: auto;
	margin: 20px;
}

#footer .dh span
{
	position: absolute;
	right: 0;
	bottom: 0;
	color: var(--white-color);
	padding-right: 0.5rem;
}

#footer .container .col-left, #footer .container .col-center, #footer .container .col-right
{
	display: flex;
	flex-direction: row;
	color: var(--white-color);
	padding: 20px;
	width: 100%;
	justify-content: center;
	align-items: center;
}
#footer .container .logo{
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .container .text{
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-left: 1rem;
}

#footer .col-left a
{
	color: var(--main-color);
}

#footer .col-center a
{
	color:#a31984;
}

#footer .col-right a
{
	color: var(--main-color);
}

#footer .container img
{
	height:100px;
	width: auto;
	height: auto;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: var(--white-color);
	}
}

@keyframes text_reveal_1 {
	100% {
		color: var(--main-color);
	}
}
@keyframes text_reveal_name {
	100% {
		color: var(--main-color);
		font-weight: 500;
	}
}


@keyframes butelkownia {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
	100% {
		opacity: 1;
	}
}
	

/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	
	.container {

		width: 100%;
	}

	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}


	#popup div
{
	width: 55vw;
}
	h1.section-title {
		font-size: 6rem;
		font-family:var(--title-font);
		text-transform: none;
	}

	/* Hero */
	#hero h1 {
		font-size: 6rem;
	}

	#hero .hero {
		flex-direction: row;
		align-items: flex-end;
	}

	#hero .col-left{

		display: flex;
		flex-direction: column;
		align-items: flex-start;
		height: 50vh;
	}

	#hero .col-right{
		width: 90%;
		margin-left: 10%;
		padding: 4rem;
	}

	#hero .col-right p{
		text-align: left;
	}

	#hero .logo
	{
		display: none;
	}
	/* End Hero */
	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 450px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid var(--main-color);
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */


	#gallery {
		
		flex-wrap:nowrap;
	}
	#gallery .gallery
	{
		display: flex;
		flex-direction: row;
		overflow: hidden;
		animation-name: slide;
		animation-duration: 20s;
		animation-name: gal;
		transition-timing-function: ease-in-out;
		Transition-delay: 5s;
		animation-iteration-count: infinite;
	}

	@keyframes gal {
		0% {margin-left:0 ;}
		10% {margin-left: 0;}
		15% {margin-left: calc(-100vw / 3);}
		25% {margin-left: calc(-100vw / 3);}
		30% {margin-left: calc(-200vw / 3);}
		40% {margin-left: calc(-200vw / 3);}
		45% {margin-left: calc(-300vw / 3);}
		55% {margin-left: calc(-300vw / 3);}
		60% {margin-left: calc(-200vw / 3);}
		70% {margin-left: calc(-200vw / 3);}
		75% {margin-left: calc(-100vw / 3);}
		85% {margin-left: calc(-100vw / 3);}
		90% {margin-left: 0}
		100% {margin-left: 0;}
	  }
	#gallery .gallery img{
		width: calc(100vw / 3) ;
	}


	.modal {
		display: none;
		position: fixed;
		justify-content: center;
		align-items: center;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: black;
	  }
	  
	  /* Modal Content */
	  .modal-content {
		position: relative;
		background-color: #fefefe;
		margin: auto;
		padding: 0;
		width: 90%;
		max-width: 1200px;
	  }
	  
	  /* The Close Button */
	  .close {
		color: white;
		position: absolute;
		top: 10px;
		right: 25px;
		font-size: 35px;
		font-weight: bold;
	  }
	  
	  .close:hover,
	  .close:focus {
		color: #999;
		text-decoration: none;
		cursor: pointer;
	  }
	  
	  /* Hide the slides by default */
	  .mySlides {
		display: none;
	  }
	  
	  /* Next & previous buttons */
	  .prev,
	  .next {
		cursor: pointer;
		position: absolute;
		top: 50%;
		width: auto;
		padding: 16px;
		margin-top: -50px;
		color: white;
		font-weight: bold;
		font-size: 20px;
		transition: 0.6s ease;
		border-radius: 0 3px 3px 0;
		user-select: none;
		-webkit-user-select: none;
	  }
	  
	  /* Position the "next button" to the right */
	  .next {
		right: 0;
		border-radius: 3px 0 0 3px;
	  }
	  
	  /* On hover, add a black background color with a little bit see-through */
	  .prev:hover,
	  .next:hover {
		background-color: rgba(0, 0, 0, 0.8);
	  }
	  
	  /* Number text (1/3 etc) */
	  .numbertext {
		color: #f2f2f2;
		font-size: 12px;
		padding: 8px 12px;
		position: absolute;
		top: 0;
	  }
	  
	  /* Caption text */
	  .caption-container {
		text-align: center;
		background-color: black;
		padding: 2px 16px;
		color: white;
	  }
	  
	  img.demo {
		opacity: 0.6;
	  }
	  
	  .active,
	  .demo:hover {
		opacity: 1;
	  }
	  
	  img.hover-shadow {
		transition: 0.3s;
	  }
	  
	  .hover-shadow:hover {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	  }

	#event .event
{
	color: var(--white-color);
	padding-left: calc(50vw - 600px);
	display: flex;
	flex-direction:row;
}

#event .event .col-left
{
	width: 60%;
}

#event .event .col-left h1.section-title
{
color: var(--white-color);
}

#event .event .col-left p
{
	color: var(--white-color);
	text-align: justify;
	padding-bottom: 20px;
}

#event .event .col-right
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: calc(40% + ((100vw - 1200px ) / 2));
}
#event .event .col-right img
{
	border-top: 10px solid var(--white-color);
	border-bottom: 10px solid var(--white-color);
	border-left: 10px solid var(--white-color);
}



#drive .table{
	display: flex;
	width: 100%;
	flex-direction: column;
	font-size: 1.5rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}
#drive .table .row
{
	width: 100%;
	border-right: 0px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
	display: flex;
}

#drive .table .name
{
	font-size: 1.5rem;
}

#drive .table .row:nth-last-child(1)
{
	border-right: 0px;
}

#drive .table .row:nth-last-child(1)
{
	border-right: 0px;
}

#drive .table .row div
{
	height: 80px;
	width: calc(100% / 6);
	display: flex;
	justify-content: center;
	align-items: center;
}


	#hotel .hotel-logo
{
	width: 30%;
}


	#hotel .hotel-content {
		flex-direction: row;
	 }
		
	 #hotel .hotel-gallery
	 {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		
	 }

	 #hotel .hotel-gallery figure{
		width: 40%;
		overflow: hidden;
		height: 200px;
		margin: 1rem;
	 }

	 #contact .contact form{
		flex-direction: row;
	}
	

	#footer .footer .container{
		flex-direction: row;
	}

	#footer .footer .col-left
	{
		width: calc(100% /3);
	}

	#footer .footer .col-center
	{
		width: calc(100% /3);
	}

	#footer .footer .col-right
	{
		width: calc(100% /3);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	

	#popup div
	{
		width: 35vw;
	}


	.container {

		width: 1200px;
	}

	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: flex;
		flex-direction: row;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */
