@font-face {
    font-family: "Helvetica Neue LT";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("font/HelveticaNeueLTPro-Lt.woff2") format("woff2"), url("font/HelveticaNeueLTPro-Lt.woff") format("woff");
}


@font-face {
    font-family: "Helvetica Neue ULT";
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    src: url("font/HelveticaNeueLTPro-UltLt.woff2") format("woff2"), url("font/HelveticaNeueLTPro-UltLt.woff") format("woff");
}



:root {
	--main-color: #000000;
	--second-color: #ffffff; 
    --black-color: #000000;
	--icon-color: #dedede;
    --white-color: #ffffff;
    --title-color: #ffffff;
    --text-color: #ffffff;
    --body-color: #ffffff;
	--footer-color: #1c3259;
	--logo-color: #FCF8F4;
	--gradient: linear-gradient(0deg, rgba(13,13,11,1) 0%, rgba(9,9,9,1) 100%);
	--preloader-color: #1c3259;
	--gray-color: #cccccc;

	--text-font: 'Helvetica Neue LT', sans-serif;
    --text-font-ultra: 'Helvetica Neue ULT', sans-serif;
    --title-font: 'Helvetica Neue LT', sans-serif;
    --text-font-size: 10px;
    --title-font-size: 2rem;
    --biggest-font-size: 5rem;
    --bigger-font-size: 4rem;
    --big-font-size: 2rem;
    --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;


}



::-webkit-scrollbar {
	width: 2px;
	height: 2px;
  }
  ::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
  }
  ::-webkit-scrollbar-thumb {
	background: #e1e1e1;
	border: 0px none #ffffff;
	border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb:hover {
	background: #ffffff;
  }
  ::-webkit-scrollbar-thumb:active {
	background: var(--second-color);
  }
  ::-webkit-scrollbar-track {
	background: #666666;
	border: 0px none #ffffff;
	border-radius: 50px;
  }
  ::-webkit-scrollbar-track:hover {
	background: var(--main-color);
  }
  ::-webkit-scrollbar-track:active {
	background: var(--main-color)
  }
  ::-webkit-scrollbar-corner {
	background: transparent;
  }




* {
	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;
	overflow-x: hidden;
	background-image: url(../img/map_bg_full.jpg);
	background-position: center center;
	background-repeat: no-repeat;
}

#preloader
{
	position: fixed; 
	left: 0; 
	top: 0;
	z-index: 99999;
	width: 100vw;
	height: 100%;
	overflow: visible;
	background: var(--preloader-color) url('../img/logo_preloader.png') no-repeat center center;
}

a {
	text-decoration: none;
}
.container {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

h3
{
	font-size: var(--big-font-size);
	letter-spacing: 3px;
	font-weight: 300;
}
p {
	font-size: 1.5rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 2rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-title span {
	color: var(--white-color);
	padding: 1rem 2rem;
	border-bottom: 1px solid var(--main-color);
	margin-bottom: 2rem;
	font-size: 4rem;
	font-weight: 300;
	text-transform: uppercase;
}


.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: 100vw;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--second-color);
	border-radius: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

#header .header {
	min-height: 8vh;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1s;
	width: 100vw;
}


#header .nav-top {
	display: none;
	flex-direction: row;
	justify-content: space-between;
	padding: 2rem 4rem;
	border-bottom: 1px solid var(--second-color);
	margin-bottom: 3rem;
	color:var(--white-color);
	width: 100%;
	transition: 1s;
}

#header .active .nav-top{
	margin-bottom: 0;
	padding: 0.5rem 4rem;
}

#header .nav-top div
{
	display: flex;
}

#header .nav-top i
{
	font-size: 1.5rem;
	font-style: normal;
	padding: 0 2rem;
	display: flex;
	align-items: center;
}

#header .nav-top svg 
{
	height: 24px;
	width: auto;
	margin-right: 1.5rem;
}

#header .nav-top .col-left svg 
{
	fill: var(--icon-color);
	stroke: var(--icon-color);
}




#header .nav-top .col-right svg 
{
fill: transparent;
stroke: var(--icon-color);
}

#header .nav-bar {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 100%;
}

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

#header .nav-list ul {
	list-style: none;
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 100vw;
	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: var(--second-color);
	color: var(--main-color);
}
#header .nav-list ul.active {
	left: 0%;
}





#header .nav-list ul ul
{
 	display: none;
    flex-direction: column;
    background-color: var(--second-color);
    padding: 0.5rem;
    font-size: 0.5rem;
    left: 0;
    width: auto;
    position: relative;
    height: auto;
    box-sizing: border-box;
    z-index: 99;
	overflow: hidden;
}


#header .nav-list ul li:first-child ul
{
 	display: flex;
}


#header .nav-list ul ul li a, #header .nav-list ul ul li div
{
	font-size: 1.5rem;
	padding: 0.5rem;
}

#header .nav-list ul a, #header .nav-list ul div {
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: var(--main-color);
	text-transform: uppercase;
	padding: 20px 10px;
	display: block;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0);
}




#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 {
	border-bottom: 1px solid var(--icon-color);
}

#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid var(--main-color);
	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 var(--main-color);
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: var(--main-color);
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: var(--main-color);
	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 .nav-lang
{
	display: flex;
	flex-direction: column;
	width: 50px;
	height: 50px;
}

#header .nav-lang span
{
	display: none;
}


#header div.menu {
    width: 5rem;
    height: 5rem;
    color: var(--second-color);
    margin-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-left: 0.5rem;
	padding-right: 1rem;
}

#menu_checkbox {
    display: none;
}

label {
    display: block;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    transition: 0.3s ease transform;
    cursor: pointer;
}

label div {
    width: 4px;
    height: 4px;
    background-color: var(--main-color);
    margin-left: 0;
    margin-bottom: 6px;
    border-radius: 4px;
    transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom,
        0.3s ease background-color;
}

label div:first-child {
    width: 22px;
}

label div:nth-child(2) {
    width: 15px;
}

label div:last-child {
    width: 30px;
    margin-bottom: 0;
}

#menu_checkbox:checked+label {
    transform: translateY(-50%) rotateZ(-90deg);
}

#menu_checkbox:checked+label div {
    width: 6px;
    margin-left: 12px;
    margin-bottom: 3px;
    background-color: var(--main-color);
}



#header .lang
{
	background-color: var(--main-color);
	border:0;
	padding: 2rem 2rem;
	color: var(--white-color);
	cursor: pointer;
	opacity: 0.8;
	border:1px solid #464441;
	text-align: center;
}

#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;
	height: 100vh;
	overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}



/* #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: center;
	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 video
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: auto;
    position: relative;
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black-color);
	opacity: 0.0;
	z-index: 99;
}


#hero button
{
	z-index: 999;
	position: absolute;
	background-color: var(--second-color);
	bottom: 10%;
	left: calc(50% - 100px);
	padding: 2rem 4rem;
	width: 200px;
	border: 1px solid var(--second-color);
	background-color: rgba(0,0,0,0.0);
	text-transform: uppercase;
	color: var(--second-color);
	opacity: 0.5;
	transition: 0.2s;
}

#hero button:hover
{
	opacity: 1;
	background-color: rgba(0,0,0,0.2);
}

#hero nav
{
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	background-color: var(--second-color);
	z-index: 9999;
	width: 100%;
	
}

#hero nav a
{
	font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-decoration: none;
    color: var(--main-color);
    text-transform: uppercase;
    padding: 10px;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
	font-size: 1.5rem;
	padding: 1rem;
}

#hero nav a:hover
{
	border-bottom: 1px solid var(--icon-color);
}

#hero nav .active
{
	font-weight: 600;
	border-bottom: 1px solid var(--icon-color);
}

 .logo
	{
		display: flex;
		height: 100%;
		width: auto;
		justify-content: center;
		align-items: center;
		padding: 1rem;
		transition: 1s;
	}
	.logo img
	{
		width: auto;
		height: auto;
		max-height: 30px;
	}
 /*	#header .active
	{
		background-color: rgba(0,0,0,0.75);
	}
	#header .active .logo
	{
		padding: 0.5rem 3rem;
	} /*
/* End Hero Section */


/* Title */

#title
{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 3rem;
	padding-top: 5rem;
	text-align: center;
}

#title img
{
	max-width: 300px;
	margin: 2rem auto;
}

#title h2.mobi
{
	display: flex;
	font-size: 2rem;
}

#title h2.web
{
	display: none;
}

/* Offer */

#offer{
	height: auto;
	align-items: center;
	justify-content: center;
}

.offer
{
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0;
	flex-direction: column;
}

.offer .col-left
{
	height: auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-right: 0rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

#offer .col-left a{
	font-size: 3rem;
	width: 100%;
	text-align: center;
	color: var(--main-color);
	transition: 1s;
	text-transform: uppercase;
}

#offer .col-left a:hover{
	font-size: var(--biggest-font-size);
	margin: 1rem 0;
}


#offer .col-left a:hover + a {
	color: var(--icon-color);
}

#offer .col-right
{
	height: auto;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	display: none;
}

#offer .col-right .offer-photo
{
	position: absolute;
	opacity: 0;
	transition: 1s;
}

#offer .col-right .photo-top
{
	opacity: 1;
	z-index: 99;
}

/* icon */

#icon
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding-top: 10rem;
	padding-bottom: 10rem;
	
}

#icon .icon-box
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#icon .icon-box figure
{
	width: 80%;
	margin: 1rem auto;
}

#icon .icon-box figure img
{
	width: 100%;
}

#icon .icon-box label
{
	width: 80%;
	margin: 0rem auto;
	color: var(--main-color);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: 500;
}

#icon .icon-box button
{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	padding: 1.5rem 3rem;
	border: 1px solid var(--main-color);
	font-size: 2rem;
	transition: 0.5s;
}

#icon .icon-box button:hover
{
	background-color: var(--main-color);
	color: var(--second-color);
}

/* Gallery */

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



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

.modal button
{
	display: none !important;
}


#services
{
	height: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-image: url(../img/services_bg_m.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
}

#services .services
{
	background-color: rgba(0,0,0,0.8);
	padding: 5rem;
	color: var(--second-color);
	flex-direction: column;
}


#services .services ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}


#services .services ul li
{
	margin: 1.5rem 0
}


#services .services p
{
	color: var(--second-color);
}


#services .services .col-left
{
	text-align: center;
	padding-right: 0rem;
	width: 90%
}

#services .services .col-left li:nth-child(even)
{
	margin-right: 0rem;
}

#services .services .col-center
{
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#services .services .col-center figure
{
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

#services .services .col-center figure img
{
	width: 100%;
	height: 100%;
}

#services .services .col-right
{
	text-align: center;
	padding-left: 0rem;
	width: 90%
}


#services .services .col-right li:nth-child(even)
{
	margin-left: 0rem;
}



#services-bis
{
	display: flex;
	justify-content: flex-start;
	height: auto;
	flex-direction: column;
}

#services-bis article
{
	width: calc(100% / 1);
	transition: 1s;
	position: relative;
	overflow: hidden;
}
#services-bis div
{
	width: 100%;
	height: auto;
}


#services-bis .overlay
{
	opacity: 0;
	transition: 1s;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--second-color);
	font-size: auto;
	padding: 1rem;
	transition-delay: 0.2s;
}


#services-bis div.overlay p
{
	color: var(--second-color);
	padding: 2rem;
}

#services-bis div.overlay button
{
	padding: 1rem 2rem;
	background-color: var(--second-color);
	text-transform: uppercase;
	color: var(--main-color);
	border: 0;
}
#services-bis div.overlay:hover
{
	opacity: 100;
}


#services-bis a img
{
	min-width: 100%;
	min-height: 100%;
}

.services
{
  height: 80vh !important;
  padding-top: 6vh;
}

/*

#event-nav
{
	display: flex;
	justify-content: center;
}

#event-nav button
{
	padding: 2rem 3rem;
	background-color: var(--main-color);
	color: var(--second-color);
	margin: 0rem 1px;
	border: 0;
	text-transform: uppercase;
}


#event
{
	transition: 1s;
}

#event .event
{
	height: 55vh;
	display: flex;
	flex-direction: row;
	overflow: hidden
}


#event .event article
{
	width: 100%;
	height: 100%;
	transition: 1s;
	position: relative;
	min-width: 200px;
	margin: 2rem;
}

#event .event article .overlay
{
	opacity: 0;
	transition: 1s;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--second-color);
	font-size: var(--big-font-size);
	padding: 5rem;
	transition-delay: 0.2s;
}

#event .event article .overlay p
{
	color: var(--second-color);
}

#event .event article .overlay button
{
	padding: 1rem 2rem;
	background-color: var(--second-color);
	text-transform: uppercase;
	color: var(--main-color);
	border: 0;
}
#event .event article .overlay:hover
{
	opacity: 100;
}

#event .event article:first-child
{
	width: 100%;
	height: 100%;
	transition: 1s;
}


#event .event article:hover
{
	width: 100% !important;
	height: 100% !important;
}

#event .event article img:hover
{
	scale: 1.1;
}
 */



 #event
 {
	 height: 500px !important;
	 width: 100vw !important;
	 background-color: transparent;
	 color: var(--white-color);
	 margin-left:0;

 }
 
 #event .event
 {
	 width: 100vw !important;
	 color: var(--white-color);
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 height: 500px !important;
 }
 
 #event .event .event-item
 {
max-width: 90vw !important;
 height: 400px;
 display: flex;
 justify-content: center;
 flex-direction: column;
 align-items: center;
 margin:5% 5vw;
 background-color: var(--second-color);
 transition: 1s;
 position: relative;
 overflow: hidden;
padding: 2rem 3rem;
 }

 
 #event .event .event-item .overlay
{
 opacity: 0;
 transition: 1s;
 width: 100%;
 height: 100%;
 display: flex;
 top: 0;
 left: 0;
 position: absolute;
 background-color: rgba(0, 0, 0, 0.8);
 flex-direction: column;
 align-items: center;
 justify-content: center;
 color: var(--second-color);
 font-size: var(--big-font-size);
 padding: 5rem;
 transition-delay: 0.2s;
}

#event .event .event-item .overlay p
{
 color: var(--second-color);
}

#event .event .event-item .overlay button
{
 padding: 1rem 2rem;
 background-color: var(--second-color);
 text-transform: uppercase;
 color: var(--main-color);
 border: 0;
}
#event .event .event-item .overlay:hover
{
 opacity: 100;
}
 

#event .event .event-item img:hover
{
 scale: 1.1;
}





#full
 {
	 display: none;

 }
 




#newsletter
{
	padding: 5rem;
	font-size: var(--big-font-size);
}

#newsletter .newsletter
{
	flex-direction: column;
}

#newsletter .newsletter .col-left
{
	width: 100%;
	padding: 2rem 0;
}


#newsletter .newsletter .col-center
{
	width: 100%;
	padding: 2rem 0;
}


#newsletter .newsletter .col-right
{
	width: 100%;
	display: flex;
	padding: 2rem 0;
}

#newsletter .newsletter .col-right form
{
	display: flex;
	flex-direction: column;
	width: 100%;
}

#newsletter .newsletter .col-right input
{
	padding: 1rem 2rem;
	border: 1px solid var(--icon-color);
	background: transparent;
	height: 32px;
	width: 100%;
	margin: 0rem 0 ;
}
#newsletter .newsletter .col-right input
{
	padding: 1rem 2rem;
	border: 1px solid var(--icon-color);
	background: transparent;
	height: 32px;
	width: 100%;
}

#newsletter .newsletter .col-right button
{
	padding: 1rem 2rem;
	height: 32px;
	color: var(--second-color);
	background-color: var(--main-color);
	border: 0;
	letter-spacing: 1px;
}


footer
{
	display: flex;
	height: auto;
	justify-content: center;
	align-items: center;
	background-color: var(--footer-color);
}

footer .footer
{
	display: flex;
	width: 100%;
	flex-direction: column;
}

footer .col-left
{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	padding-top: 2rem;
}

footer .col-left li
{
	list-style: none;
	padding: 0;
	margin: 0;
}


footer .col-left ul li
{
	text-transform: uppercase;
	color: var(--logo-color);
	font-size: 2rem;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--logo-color);
}


footer .col-left ul ul li
{
	color: var(--logo-color);
	text-transform:uppercase;
	font-size: 1.2rem;
	padding-bottom: 0rem;
	border-bottom: 0px;
	margin-bottom: 0;
	padding: 0.25rem;
}

footer .col-right
{
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	color: var(--main-color);
}

footer .col-right svg
{
	max-height: 60px;
	height: auto;
	margin-top: 10rem;
	fill: var(--logo-color);
}



footer .col-right p
{
	width: 100%;
	margin: auto auto;
	text-align: center;
	font-size: var(--big-font-size);
	line-height:var(--bigger-font-size);
	color: var(--logo-color);
	font-size: 0.75rem;
}

footer .col-right .bottom
{
	padding: 1rem;
	width: 100%;
	text-align: center;
	color: var(--logo-color);
}

footer .social 
{
	position: relative;
	width: 100%;
}
footer .social ul {
	margin:0;
	padding:0;
	display:flex;
	justify-content: center;
	align-items: center;
  }
  footer .social  ul li {
	list-style:none;
	padding: 0.5rem;
  }
  footer .social ul li a {
	display:block;
	position:relative;
	font-size:15px;
	text-align:center;
	text-decoration:none;
	color: var(--logo-color);
	transition:.5s;
  }
  footer .social ul li a span {
	position:absolute;
	transition: transform .5s;
  }
  footer .social ul li a span:nth-child(1),
  footer .social ul li a span:nth-child(3){
	width:100%;
	height:1px;
	color: var(--logo-color);
  }
  footer .social ul li a span:nth-child(1) {
	top:0;
	left:0;
	transform-origin: right;
  }
  footer .social ul li a:hover span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	transition:transform .5s;
  }
  
  footer .social ul li a span:nth-child(3) {
	bottom:0;
	left:0;
	transform-origin: left;
  }
  footer .social ul li a:hover span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	transition:transform .5s;
  }
  
  footer .social ul li a span:nth-child(2),
  footer .social ul li a span:nth-child(4){
	width:1px;
	height:100%;
	background:var(--logo-color);
  }
  footer .social ul li a span:nth-child(2) {
	top:0;
	left:0;
	transform:scale(0);
	transform-origin: bottom;
  }
  footer .social ul li a:hover span:nth-child(2) {
	transform: scale(1);
	transform-origin: top;
	transition:transform .5s;
  }
  footer .social ul li a span:nth-child(4) {
	top:0;
	right:0;
	transform:scale(0);
	transform-origin: top;
  }
  footer .social ul li a:hover span:nth-child(4) {
	transform: scale(1);
	transform-origin: bottom;
	transition:transform .5s;
  }
  
  .facebook:hover {
	color: var(--icon-color);
  }
  .facebook:hover span { 
	background: var(--icon-color);
  }
  .twitter:hover {
	color: var(--icon-color);
  }
  .twitter:hover span { 
	background: var(--icon-color);
  }
  .instagram:hover {
	color: var(--icon-color);
  }
  .instagram:hover span { 
	background: var(--icon-color);
  }
  .google:hover {
	color: var(--icon-color);
  }
  .google:hover span { 
	background: var(--icon-color);
  }
  ul li a .twitter {
	color: var(--icon-color);
  }
  ul li a:hover:nth-child(3) {
	color: var(--icon-color);
  }
  ul li a:hover:nth-child(4) {
	color: var(--icon-color);
  }

  footer a
  {
	color: var(--logo-color);
	transition: 0.5s;
	padding: 0.5rem;
  }

  footer a:hover
  {
	color: var(--icon-color);
  }


/* Subpage */

.more-full
{
	display: flex;
	flex-direction: column;
	width: 80%;
	margin: 3rem auto;
		font-size: 1.5rem !important;
	line-height: 2.5rem;
}

.more-full h2
{
	font-size: 3rem;
	padding: 3rem;
	line-height: 3rem;
}

.more-full li
{
		font-size: 1.5rem !important;
	line-height: 2.5rem;
	padding: 0;
	margin: 0;
}

.more-full ol
{
	margin-left: 3rem;
}

.more-full table, .more-full td,  .more-full tr
{
	border: 1px solid #464441;
}


.more-full td
{
	padding: 1rem;
}
#slider
  {
	display: flex;
	width: 100%;
	height: auto;
	justify-content: center;
	align-items:center ;
  }

  #slider .slide
  {
	width: 100%;
	display: flex;
	flex-direction: column;
	transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	justify-content: center;
	align-items: center;
  }

  .arrow-model {
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: 0px;
	width: 0;
	height: 0;
	border-style: solid;
  }
  
  #arrow-left {
	border-width: 30px 40px 30px 0;
	border-color: transparent #fff transparent transparent;
	left: 0;
	margin-left: 30px;
  }
  
  #arrow-right {
	border-width: 30px 0 30px 40px;
	border-color: transparent transparent transparent #fff;
	right: 0;
	margin-right: 30px;
  }


.s7
{
	background-image: url(../img/map_bg_full.jpg) !important;
	height: 100vh !important;
}



.subpage
{
	height: 60vh !important;
}


#hero h2
{
	position: absolute;
	top: 50%;
	margin: 0 auto;
	color: var(--second-color);
	font-size: var(--biggest-font-size);
	z-index: 999;
}


.offer-more-about
{
	display: flex;
	flex-direction: column-reverse;
	padding-top: 5rem;
}

.offer-more-about-2
{
	display: flex;
	flex-direction: column;
	padding-top: 5rem;
}

.offer-more-about .col-right
{
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem;
	flex-direction: column;
	text-align: center;
}

.offer-more-about .col-right button
{
	padding: 2rem 4rem;
	background-color: var(--main-color);
	color: var(--second-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 2rem auto;
	transition: 1s;
}


.offer-more-about-2 .col-left
{
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem;
	flex-direction: column;
	text-align: center;
}

.offer-more-about-2 .col-right button
{
	padding: 2rem 4rem;
	background-color: var(--main-color);
	color: var(--second-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 2rem auto;
	transition: 1s;
}


#offer-more-details
{
	display: flex;
	padding: 5rem 0;
	height: 100%;
	background-color: var(--icon-color);
	background-image: url(../img/bg.png);
}

#offer-more-details .offer-more-details
{
	display: flex;
	flex-direction: column;
	width: 100%;
}


#offer-more-details .col-left
{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 90%;
	margin: auto;
	font-size: var(--big-font-size);
}

#offer-more-details .col-left h2
{
	width: 100%;
	font-size: var(--bigger-font-size);
}

#offer-more-details .col-left div.spec-name
{
	width: 50%;
	font-weight: 600;
	padding: 1rem 0;
	border-bottom: 1px solid var(--icon-color);
}

#offer-more-details .col-left div.spec-value
{
	width: 50%;
	padding: 1rem 0;
	border-bottom: 1px solid var(--icon-color);
	text-align: right;
}


#offer-more-details .col-right
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	position: relative;
}

#offer-more-details .col-right img
{

	max-width: 200px;
	margin: auto auto;
}


#services-more
{
	
	display: none;

}

#services-more .col-left
{
	width: 50%;
	height: 100%;
	display: flex;
	padding: 5rem;
}

#offermore
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-attachment: fixed;
	background-image: url(../img/bg.png);
}

#offermore div
{
	padding: 2rem;
	font-size: var(--big-font-size);
}

#offermore .offer-more-left
{
	margin-left: 0;
	display: flex;
	flex-direction: column;
}

#offermore .offer-more-right
{
	margin-right: 0;
	display: flex;
	flex-direction: column-reverse;
}

#offermore .offer-more-left .col-left
{
	width: 100%;
	text-align: center;

}

#offermore .offer-more-right .col-right
{
	width: 100%;
	text-align: center;
}


#offermore .col-center
{
	width: 100%;
	text-align: center;

}

#offermore div img
{
	max-height: 500px;
	transition: 1s;
}

#offermore div img:hover
{
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 1);
	scale: 1.05;
}



#catalog .catalog
{
	flex-direction: row;
}

#catalog .catalog  .catalog-items
{
	flex-direction: row;
	margin-top: 2rem;
	margin-bottom: 5rem;
}


#catalog .catalog  .catalog-items-2
{
	flex-direction: row;
}

#catalog .search
{
	width: 100%;
	justify-content: space-around;
	font-size: var(--big-font-size);
	text-transform: uppercase;
	padding-left: 0rem;
	text-align: center;
	flex-direction: row;
	flex-wrap: wrap;
	display: none;
}

#catalog .search input
{
	padding: 1rem 1rem;
}

#catalog .search label
{
	padding: 1rem 1rem;
	margin-right: 2rem;
}

#catalog .select
{
	width: 90%;
	margin: 1rem auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

#catalog .select select
{
	width: 100%;
	font-family: var(--text-font);
	color: var(--main-color);
	font-weight: 300;
	letter-spacing: 1px;
	padding: 1rem;
}

#catalog .catalog .catalog-title
{
	width: calc(100% - 20% / 6 * 2);
	display: flex;
	justify-content: flex-start;
	padding: 0 1rem;
	font-size: var(--biggest-font-size);
	color: var(--main-color);
	text-transform: uppercase;
	letter-spacing: 5px;
	border-bottom: 1px solid var(--main-color);
	padding-top: 10rem;
}

#catalog .catalog .catalog-list
{
	width: calc(100% - 20% / 6 * 2);
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
}

#catalog .catalog .catalog-list a
{
	color: var(--main-color);
	padding: 1rem 0.75rem;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#catalog .catalog .catalog-list a:hover
{
	font-weight: 600;
}


#catalog .catalog  .catalog-position
{
	width: 80%;
	display: flex;
	flex-direction: column;
	margin: 2rem auto;
	padding: 2rem;
	justify-content: center;
	align-items: center;
	transition: 1s;
}

#catalog .catalog .catalog-position:hover
{
	scale: 1.025;
}

#catalog .catalog .catalog-position .col-right
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#catalog .catalog .catalog-position h2
{
	font-size: var(--bigger-font-size);
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 2rem 0;
}

#catalog .catalog  .catalog-position a
{
	color: var(--main-color);
}

#catalog .catalog .catalog-position button
{
	background-color: var(--main-color);
	padding: 1rem 2rem;
	margin: 1rem auto;
	color: var(--second-color);
	width: 40%
}



#contact-form {
    height: 100vh;
    width: 100vw;
    left: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--main-color);
    padding: 2rem;
    font-size: 1.25rem;
    transition: 1s;
    z-index: 99999;
    line-height: 2rem;
    font-weight: 200;
    background-image: url(../img/bg.png);
    background-size: cover;
}

#contact-form figure {
    position: absolute;
    right: 7%;
    top: 7%;
}

#contact-form.active {
    left: 0;
    top: 0;
}

#contact-form .form {
    display: flex;
    flex-direction: column;
}

#contact-form h1 {
    margin-bottom: 2rem;
}

#contact-form .form span {
    line-height: 2rem;
    margin-bottom: 1rem;
    font-family: var(--text-font-ultra);
    font-size: 1.25rem;
}

#contact-form .form input, .popup .form input  {
    border: var(--second-color) 1px solid;
    background-color: transparent;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.15);
    margin: .5rem;
	font-family: var(--text-font);
	color: var(--main-color);
	font-weight: 300;
	letter-spacing: 1px;
}

#contact-form .form textarea, .popup .form textarea {
    border: var(--second-color) 1px solid;
    background-color: transparent;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.15);
    margin: .5rem;
	font-family: var(--text-font);
	color: var(--main-color);
	font-weight: 300;
	letter-spacing: 1px;
}

#contact-form .form button {
    width: auto;
    padding: 1rem 1rem;
    border-radius: 1.5rem;
    border: 0;
    margin: 0 auto;
    font-size: 1.5rem;
    background-color: var(--main-color);
    color: var(--second-color);
}


#contact-form .form textarea::placeholder, .popup .form textarea::placeholder
{
	font-family: var(--text-font);
	color: var(--main-color);
	font-weight: 300;
	letter-spacing: 1px;
}


#contact-form .form input::placeholder, .popup .form input::placeholder
{
	font-family: var(--text-font);
	color: var(--main-color);
	font-weight: 300;
	letter-spacing: 1px;
}


#adres-form {
    height: 100vh;
    width: 100vw;
    left: 0;
    position: absolute;
    top: 100%;
    background-color: var(--main-color);
    color: var(--main-color);
    padding: 2rem;
    font-size: 1.25rem;
    transition: 1s;
    z-index: 10;
    line-height: 2rem;
    font-weight: 200;
    background-image: url(../img/bg.png);
    background-size: cover;
}



.arrow {
   	background-color: var(--second-color);
	height: 50px !important;
	width: 50px !important;
	display: flex;
	padding: 2rem;
	color: var(--main-color);
	border: 1px solid var(--main-color);
	z-index: 999;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
}

.slick {
	background-color: var(--second-color);
 height: 50px !important;
 width: 50px !important;
 display: flex;
 padding: 2rem;
 color: var(--main-color);
 border: 1px solid var(--main-color);
 z-index: 999;
 border-radius: 50%;
 justify-content: center;
 align-items: center;
}


.slick-next {
    left: calc(50% + 5px);
	top: 90% !important;
	position: absolute;
}

.slick-prev {
    left: calc(50% - 55px);
	top: 90% !important;
	position: absolute;
}


#boatshow
{
	display: flex;
	width: 100%;
	flex-direction: column;
}

#boatshow .boatshow
{
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	padding: 2rem;
	border-bottom: 1px solid var(--icon-color);
}

#boatshow .boatshow .col-right
{
	width: 100%;
	text-align: right;
	font-size: 3rem;
	color: var(--icon-color);
}

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

#boatshow .boatshow .col-left h2
{
	font-size: 3rem;
	width: 50%;
}


#boatshow .boatshow .col-left strong
{
	font-size: 1.75rem;
}


#boatshow .boatshow .col-left span
{
	font-size: 2rem;
}

#boatshow .boatshow .col-left button
{
	background-color: var(--main-color);
	color: var(--second-color);
	padding: 1rem 2rem;
	border: 0;
	width: 40%;
	margin: 1rem 0;
}


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

.popup.active
{
	display: flex;
}

.popup section
{
	display: flex;
	width: 90%;
	height: auto;
	background-color: var(--second-color);
	color: var(--main-color);
	justify-content: center;
	align-items: center;
	position: relative;
	flex-direction: column;
}

.popup section .col-left
{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 150px;
}

.popup section .col-left figure
{
	overflow: hidden;
	width: 100%;
	max-height: 150px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.popup section .col-right
{
	width: 100%;
	padding: 1rem 3rem;
}
.popup section .col-right .form
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.popup section .col-right .form h3
{
	font-size: 2rem;
	text-align: center;
	width: 100%;
}

.popup section .col-right .form input
{
	width: 100%;
	padding: 0.5rem;
	margin: 0.5rem 0;
}

.popup section .col-right .form textarea
{
	width: 100%;
	padding: 0.5rem;
	margin: 0.5rem 0;
}

 section .col-right .form button
{
	padding: 1rem 2rem;
	background-color: var(--main-color);
	text-transform: uppercase;
	color: var(--second-color);
	border: 1px solid var(--main-color);
	font-size: 1.5rem;
	margin: 2rem;
}


.popup  section .close {
	color: var(--main-color);
	position: absolute;
	top: 0px;
	right: 3px;
	font-size: 35px;
	font-weight: bold;
	z-index: 9999999999;
	width: 30px;
	height: 30px;
  }
  
  .popup section .close:hover,
  .popup section .close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
  }


  #news
  {
	  display: flex;
	  flex-direction: column;
	  padding: 10vh 0;
  }
  
  #news .col-right
  {
	  width: 90%;
	  padding-right: 5%;
	  height: auto;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  padding-left: 5%;
	  flex-direction: column;
	  text-align: left;
  }

  #news h2
  {
	font-size: var(--bigger-font-size);
	text-align: left;
  }


  #news button
{
	background-color: var(--main-color);
	color: var(--second-color);
	padding: 2rem 4rem;
	border: 0;
	margin: 2rem 0;
	transition: 0.5s;
	border: 1px solid var(--main-color);
	font-size: 2rem;
}

#news button:hover
{
	background-color: var(--second-color);
	color: var(--main-color);
	border: 1px solid var(--main-color);
}
  

.submenu
{
	display: none !important;
}


.services-item
{
	position: absolute;
	width: 100%;
	margin: 0.5rem auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 8rem;
}

.services-item a
{
	width: 45%;
	height: auto;
	padding: 0.5rem 1rem;
	margin: 0.25rem auto;
	border: 1px solid var(--second-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(0,0,0,0.4);
	flex-direction: row;
	transition: 0.5s;
	scale: 1;
	z-index: 999;
}

.services-item a img
{
	width: 30%;
	height: auto;
}

.services-item a figcaption
{
	color: var(--second-color);
	text-transform: uppercase;
	font-size:1rem;
	padding-top: 0rem;
	text-align: right;
}

.services-item a:hover
{
	scale: 1.02;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}





/* 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;
	}
}



/* End Keyframes */




/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	
	.container {
		height: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0 auto;
		width: 1440px;
	}

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

	p {
	font-size: 2rem;
	margin-top: 0;
	line-height: 2.75rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

	#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
{
	overflow: hidden;

}


#icon
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: row;
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 0;
	padding-top: 8vh;
	padding-bottom: 20vh;
}

#icon .icon-box label
{
	font-size: 2.5rem;
	height: auto;
	width: 100%;
	margin-bottom: 2rem;
}

	
	#gallery {
		
		flex-wrap:nowrap;
	}
	#gallery .gallery
	{
		display: flex;
		flex-direction: row;
		overflow: hidden;
		width: auto;
	}



	  #gallery .gallery div{
		width: 100% ;
		box-shadow: none;
		background-color: var(--main-color);
		height: 500px;
	}


	#gallery .gallery div img{
		width: 100%;
		min-height: 100%;
	}


	.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);
	  }

	

	  
	 
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	
	.logo img
	{
		width: auto;
		height: auto;
		max-height: 40px;
	}

	#hero video
{
	width: auto;
	min-width: 100vw;
	height: auto;
	min-height: 100vh;
	z-index: -1;
	position: relative;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black-color);
	opacity: 0.3;
	z-index: 99;
}


	#popup div
	{
		width: 35vw;
	}


	.container {

		width: 1200px !important
	}


	#header .nav-top {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 2rem 4rem;
		border-bottom: 1px solid #464441;
		margin-bottom: 3rem;
		color:var(--white-color);
		width: 100%;
		transition: 1s;
	}
	
	/* #header .active .nav-top{
		margin-bottom: 0;
		padding: 0.5rem 4rem;
	} */
	
	#header .nav-top div
	{
		display: flex;
	}
	
	#header .nav-top i
	{
		font-size: 1.5rem;
		font-style: normal;
		padding: 0 2rem;
		display: flex;
		align-items: center;
	}
	
	#header .nav-top img
	{
		height: 24px;
		width: auto;
		margin-right: 1.5rem
	}
	#header .nav-bar {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		width: 100%;
		height: 100%;
	}
	
	#header .brand {
		display: flex;
		align-items: center;
		justify-content:center;
		width: 100%;
		height: 100%;
		padding: 15px 10px;
	}


	

	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		list-style: none;
		position: initial;
		width: 40%;
		height: auto;
		min-height: 10px;
		left: 100%;
		top: 0;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		z-index: 1;
		overflow: visible;
		transition: 0.5s ease left;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: flex;
		position: relative;
		padding: 0px 5px;
	}
	#header .nav-list ul li a, #header .nav-list ul li div {
		font-size: 1.5rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}


	#header .nav-list ul li:hover > ul
{
    display: flex;
}

#header .nav-list ul li div:hover
{
	cursor: pointer;
}



#header .nav-list ul li ul
{
	display: none;
 position: absolute;
 margin-left:0%;
 font-size: 0.8rem;
 height: auto;
 min-height: 0;
}



#header .nav-list ul li ul a 
{
	font-size: 1.5rem;
	padding:0rem;
}

#header .nav-list ul li:last-child
{
	margin-bottom: 0;
}




#header .nav-list ul ul
{
 	display: none;
    flex-direction: column;
    background-color: var(--second-color);
    padding: 1rem;
    font-size: 0.7rem;
    top: 60px;
    left: 0;
    width: 350px;
    position: absolute;
    height: auto;
    box-sizing: border-box;
    z-index: 99;
}


#header .nav-list ul li:first-child:hover > ul
{
    display: flex;
}

#header .nav-list ul li:first-child ul
{
 	display: none;
}



	/* End header */

	#header .nav-list ul ul a
	{
		padding: 10px;
		text-align: left;
		width: 100%;
		transition: 0.5s;
		border-bottom: 2px solid var(--second-color);
		font-size: 1.25rem;
	}

	#header .nav-list ul ul a:hover
	{
		border-bottom: 1px solid var(--second-color);
	}

	#header .nav-list ul ul li
	{
		width: 100%;
		border-bottom: 2px solid var(--second-color);
		padding: 2rem;
	}


	#header .logo
	{
		display: flex;
		height: 100%;
		justify-content: center;
		align-items: center;
		padding: 1rem;
		transition: 1s;
		width: auto;
	}


	#header .nav-lang
{
	display: flex;
	flex-direction: row;
	width: 40%;
	justify-content: flex-end;
	align-items: end;
	align-items: center;
}

#header .nav-lang span
{
	font-size: 1.5rem;
	padding-right: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 1px;
}


#header div.menu {
    width: 5rem;
    height: 5rem;
    color: var(--second-color);
    margin-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-left: 0.5rem;
	padding-right: 1rem;
}

#menu_checkbox {
    display: none;
}

label {
    display: block;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    transition: 0.3s ease transform;
    cursor: pointer;
}

label div {
    width: 4px;
    height: 4px;
    background-color: var(--main-color);
    margin-left: 0;
    margin-bottom: 6px;
    border-radius: 4px;
    transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom,
        0.3s ease background-color;
}

label div:first-child {
    width: 22px;
}

label div:nth-child(2) {
    width: 15px;
}

label div:last-child {
    width: 30px;
    margin-bottom: 0;
}

#menu_checkbox:checked+label {
    transform: translateY(-50%) rotateZ(-90deg);
}

#menu_checkbox:checked+label div {
    width: 6px;
    margin-left: 12px;
    margin-bottom: 3px;
    background-color: var(--main-color);
}


	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}


	#title img
{
	max-width: 500px;
	margin: 5rem auto;
}

	#title h2.mobi
	{
		display: none;
	}
	
	#title h2.web
	{
		display: flex;
        padding-top: 5rem;
        font-size: 3rem;
        width: 60%;
        text-transform: math-auto;
		font-weight: 300;
	}

	.offer
{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0;
	flex-direction:row;
}

.offer .col-left
{
	height: 100%;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-right: 5rem;
}

#offer .col-left a{
	font-size: var(--bigger-font-size);
	width: 100%;
	text-align: right;
	color: var(--main-color);
	transition: 1s;
	text-transform: uppercase;
}

#offer .col-left a:hover{
	font-size: var(--biggest-font-size);
	margin: 1rem 0;
	text-decoration: underline;
}


#offer .col-left a:hover + a {
	color: var(--main-color);
}

#offer .col-right
{
	height: auto;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

#offer .col-right .offer-photo
{
	position: absolute;
	opacity: 0;
	transition: 1s;
}

#offer .col-right .photo-top
{
	opacity: 1;
	z-index: 99;
}

#services
{
	height: 100vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-image: url(../img/services_bg.jpg);
	background-attachment: fixed;
	background-size: cover;
}

#services .services
{
	background-color: rgba(0,0,0,0.8);
	padding: 5rem;
	color: var(--second-color);
	flex-direction: row;
}


#services .services ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}


#services .services ul li
{
	margin: 1.5rem 0
}


#services .services p
{
	color: var(--second-color);
}


#services .services .col-left
{
	text-align: right;
	padding-right: 0rem;
	width: 30%
}

#services .services .col-left li:nth-child(even)
{
	margin-right: 3rem;
}

#services .services .col-center
{
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#services .services .col-center figure
{
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

#services .services .col-center figure img
{
	width: 100%;
	height: 100%;
}

#services .services .col-right
{
	text-align: left;
	padding-left: 0rem;
	width: 30%
}


#services .services .col-right li:nth-child(even)
{
	margin-left: 3rem;
}


#services-bis
{
	display: flex;
	justify-content: flex-start;
	height: 50vh;
	flex-direction: row;
}

#services-bis article
{
	width: calc(100% / 2);
	transition: 1s;
	position: relative;
	overflow: hidden;
}
#services-bis div
{
	width: 100%;
	height: 50vh;
}


#services-bis .overlay
{
	opacity: 0;
	transition: 1s;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--second-color);
	font-size: var(--big-font-size);
	padding: 5rem;
	transition-delay: 0.2s;
}


#services-bis div.overlay p
{
	color: var(--second-color);
	padding: 2rem;
}

#services-bis div.overlay button
{
	padding: 1rem 2rem;
	background-color: var(--second-color);
	text-transform: uppercase;
	color: var(--main-color);
	border: 0;
}
#services-bis div.overlay:hover
{
	opacity: 100;
}


#services-bis a img
{
	min-width: 100%;
	min-height: 100%;
}

/*
#event-nav
{
	display: flex;
	justify-content: flex-start;
}

#event-nav button
{
	padding: 2rem 3rem;
	background-color: var(--main-color);
	color: var(--second-color);
	margin: 0rem 1px;
	border: 0;
	text-transform: uppercase;
}

#event
{
	width: auto;
	overflow: hidden;
}

#event .event
{
	height: 50vh;
	width: 100vw !important;
	display: flex;
	flex-direction: row;
	float: left;
}

.evt-active
{
	margin-left:-100vw;
}




#event .event article
{
	width: calc(100% / 5);
	height: auto;
	transition: 1s;
	position: relative;
	overflow: hidden;
}

#event .event article .overlay
{
	opacity: 0;
	transition: 1s;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--second-color);
	font-size: var(--big-font-size);
	padding: 5rem;
	transition-delay: 0.2s;
}

#event .event article .overlay p
{
	color: var(--second-color);
}

#event .event article .overlay button
{
	padding: 1rem 2rem;
	background-color: var(--second-color);
	text-transform: uppercase;
	color: var(--main-color);
	border: 0;
}
#event .event article .overlay:hover
{
	opacity: 100;
}

#event .event article:first-child
{
	width: 100%;
	transition: 1s;
}


#event .event article:hover
{
	width: 100% !important;
}

#event .event article img:hover
{
	scale: 1.1;
}
	*/


	#event
	{
		height: 550px;
		width: 90%;
		background-color: transparent;
		color: var(--white-color);
		margin-left:0;
		margin-top: 10vh;
	}
	
	#event .event
	{
		width: 100%;
		color: var(--white-color);
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 550px !important;
	}
	
	#event .event .event-item
	{
	width: 100%;
	height: 550px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin:0 3rem;
	background-color: var(--second-color);
	transition: 1s;
	position: relative;
	overflow: hidden;
	padding: 0 0;
	}

	
	#event .event .event-item .overlay
{
	opacity: 0;
	transition: 1s;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--second-color);
	font-size: var(--big-font-size);
	padding: 5rem;
	transition-delay: 0.2s;
}

#event .event .event-item .overlay p
{
	color: var(--second-color);
}

#event .event .event-item .overlay button
{
	padding: 1rem 2rem;
	background-color: var(--second-color);
	text-transform: uppercase;
	color: var(--main-color);
	border: 0;
}
#event .event .event-item .overlay:hover
{
	opacity: 100;
}
	

#event .event .event-item img:hover
{
	scale: 1.1;
}








#full
	{
		height: 90vh;
		width: 100%;
		background-color: transparent;
		color: var(--white-color);
		margin-left:0;
		margin-top: 10vh;
		display: block;
	}
	
	#full .full
	{
		width: 100%;
		color: var(--white-color);
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 90vh !important;
	}
	
	#full .full .full-item
	{
	width: 100%;
	height: 90vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin:0 3rem;
	background-color: var(--second-color);
	transition: 1s;
	position: relative;
	overflow: hidden;
	padding: 0 0;
	}

	
	#full .full .full-item .overlay
{
	opacity: 0;
	transition: 1s;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--second-color);
	font-size: var(--big-font-size);
	padding: 5rem;
	transition-delay: 0.2s;
}

#full .full .full-item .overlay p
{
	color: var(--second-color);
}

#full .full .full-item .overlay button
{
	padding: 1rem 2rem;
	background-color: var(--second-color);
	text-transform: uppercase;
	color: var(--main-color);
	border: 0;
	margin: 3rem;
}
#full .full .full-item .overlay:hover
{
	opacity: 100;
}
	

#full .full .full-item img:hover
{
	scale: 1.1;
}

#newsletter
{
	background-color: var(--second-color);
	padding-left: 5rem;
	padding-right: 5rem;
	padding-top: 25rem;
	padding-bottom: 5rem;
	font-size: var(--big-font-size);
	background-image: url(../img/bg.png);
	background-attachment: fixed;
}

#newsletter .newsletter
{
	flex-direction: row;
}

#newsletter .newsletter .col-left
{
	width: 25%;
}


#newsletter .newsletter .col-center
{
	width: 33%;
}


#newsletter .newsletter .col-right
{
	width: 35%;
	display: flex;
	flex-direction: column;
}

#newsletter .newsletter .col-right form
{
	display: flex;
	flex-direction: column;
}

#newsletter .newsletter .col-right input
{
	padding: 1rem 2rem;
	border: 1px solid var(--gray-color);
	background: transparent;
	height: 42px;
	width: 100%;
	margin: 1rem 0 ;
}

#newsletter .newsletter .col-right button
{
	padding: 1rem 2rem;
	height: 52px;
	color: var(--second-color);
	background-color: var(--main-color);
	border: 0;
	letter-spacing: 1px;
}

footer .footer
{
	display: flex;
	width: 100%;
	flex-direction: column;
}

footer .social 
{
	width: 30%;
}

footer .col-left
{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	padding-top: 10rem;
}

footer .col-left a
{
	transition: 0.5s;
	letter-spacing: 2px;
}

footer .col-left a:hover
{
	color: var(--white-color);
	text-decoration: underline;
	font-weight: 600;
}

footer .col-left ul
{
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-around;
}


footer .col-left li
{
	list-style: none;
	padding: 0;
	margin: 0;
	transition: 1s;
}



footer .col-left ul li
{
	color: var(--logo-color);
	text-transform:none;
	font-size: 1.75rem;
	padding: 1rem 0;
	border-bottom: 0px solid var(--logo-color);
	text-align: left;
	font-weight: 800;
	letter-spacing: 1px;
}
footer .col-left ul ul 
{
	display: flex;
	flex-direction: column;
	margin-left:0;
	margin-top: 3rem;
	padding-left: 0;
}

footer .col-left ul ul li
{
	color: var(--logo-color);
	text-transform:capitalize;
	font-size: 1.5rem;
	padding-bottom: 0rem;
	border-bottom: 0px;
	margin-bottom: 0;
	padding: .75rem 0;
	font-weight: 200;
}

footer .col-right
{
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	width: 90%;
	align-items: center;
	margin: 2rem auto;
	border-top: 1px solid var(--logo-color);
	padding-top: 2rem;

}

footer .col-right svg
{
	width: 300px !important;
	margin-top: 0;
}

footer .col-right p {
    width: auto;
	margin: auto 0;
    text-align: left;
    font-size: 1.5rem;
    line-height: var(--bigger-font-size);
    color: var(--logo-color);
	text-align: left;
	display: flex;
	justify-content: flex-start;
}

footer .col-right .bottom
{
	padding: 1rem;
	width: auto;
	text-align: center;
	font-size: 1.5rem;
}
	

footer .col-right a
{
	padding: 1rem;
	width: auto;
	text-align: center;
	font-size: 1.5rem;
}
	

	
.subpage
{
	height: 50vh !important;
}

#hero h2
{
	position: absolute;
	top: 50%;
	margin: 0 auto;
	color: var(--second-color);
	font-size: var(--biggest-font-size);
	z-index: 999;
}

.offer-more-about
{
	display: flex;
	flex-direction: row;
	padding-top: 10vh;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

.offer-more-about .col-right
{
	width: 50%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 5rem;
	flex-direction: column;
	text-align: left;
}


.offer-more-about .col-right button
{
	padding: 2rem 4rem;
	background-color: var(--main-color);
	color: var(--second-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 2rem auto;
	transition: 1s;
}

.offer-more-about .col-right button:hover
{
	background-color: transparent;
	color: var(--main-color);
}

.offer-more-about-2
{
	display: flex;
	flex-direction: row;
	padding: 20vh 0;
}



.offer-more-about-2 .col-right
{
	width: 50%;
	padding-right: 0;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 5rem;
	flex-direction: column;
	text-align: left;
}


.offer-more-about-2 .col-left
{
	width: 50%;
	padding-right: 0;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 0rem;
	flex-direction: column;
	text-align: left;
	padding-right: 5rem;
}

.offer-more-about-2 ul, .offer-more-about ul
{
	font-size: 2rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}


#offer-more-details
{
	display: flex;
	padding: 16vh 0;
	height: 100%;
	background-color: var(--icon-color);
	background-image: url(../img/bg.png);
}

#offer-more-details .offer-more-details
{
	display: flex;
	flex-direction: row;
}

#offer-more-details .col-left
{
	font-size: var(--big-font-size);
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 50%;
	padding-left: calc((100vw - 1440px) / 2 );
}

#offer-more-details .col-left h2
{
	width: 100%;
	font-size: var(--bigger-font-size);
}

#offer-more-details .col-left div.spec-name
{
	width: 40%;
	font-weight: 600;
	padding: 1rem 0;
	border-bottom: 1px solid var(--icon-color);
	text-transform: uppercase;
}

#offer-more-details .col-left div.spec-value
{
	width: 60%;
	padding: 1rem 0;
	border-bottom: 1px solid var(--icon-color);
}

#offer-more-details .col-right
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40%;
	height: auto;
	position: relative;
}

#offer-more-details .col-right img
{

	max-width: 200px;
	margin: auto auto;
}



#services-more
{
	height: 100vh;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-attachment: fixed;
	background-size: cover;
	background-position:  center center;
}

#services-more .services-more
{
	padding: 5rem;
	color: var(--second-color);
	flex-direction: column;
}


#services-more .services-more video
{
	width: 100%;
	height: auto;
	background-color:var(--main-color);
	height: 619px;
}
#offermore
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-attachment: fixed;
	background-image: url(../img/bg.png);
	padding-top: 6vh;
	padding-bottom: 0;
}

#offermore div
{
	padding-top: 5rem;
	padding-bottom: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: var(--big-font-size);
}

#offermore .offer-more-left
{
	margin-left: 100px;
	flex-direction: row;
	width: 1300px;
}

#offermore .offer-more-right
{
	margin-right: 100px;
	flex-direction: row;
	width: 1300px;
}

#offermore .offer-more-left .col-left
{
	width: 60%;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

#offermore .offer-more-right .col-right
{
	width: 60%;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

#offermore div img
{
	max-height: 500px;
	transition: 1s;
}

#offermore div img:hover
{
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 1);
	scale: 1.05;
}

#catalog .catalog
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}


#catalog .catalog .catalog-list a
{
	color: var(--main-color);
	padding: 1rem 1rem;
	font-size: 2.5rem;
}



#catalog .catalog .catalog-items
{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 3rem 0;
	flex-wrap: wrap;
}

#catalog .catalog .catalog-items-2
{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 3rem 0;
}

#catalog .catalog .catalog-position
{
	width: calc(80% / 3);
	height: 400px;
	display: flex;
	flex-direction: column;
	margin: 2rem calc(20% / 6);
	padding: 2rem;
	justify-content: space-around;
	align-items: center;
	transition: 1s;
	box-sizing: border-box;
}
#catalog .catalog figure
{
	width: 100%;
	height: 300px;
	overflow: hidden;
}

#catalog .catalog figure img
{
	width: 100%;
	min-height: auto;
}

#catalog .select
{
	display: none;
}

#catalog .search
{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	font-size: var(--big-font-size);
	text-transform: uppercase;
	padding-left: 5rem;
	padding-top: 2rem;
}

#catalog .search div
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: auto;
	padding: 1rem 2rem;
}

#catalog .search input
{
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	padding: 1rem 2rem
}

#catalog .search label
{
	margin: 0;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0;
	transform: translateY(0%);
	padding: 0 1rem;
}


#contact-form {
	height: 100vh;
	width: 40vw;
	left: 100%;
	top: 0;
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--main-color);
	padding: 10rem 5rem;
	font-size: 2rem;
	transition: 1s;
	z-index: 9;
	position: fixed;
}

#contact-form figure {
	position: absolute;
	right: 1rem;;
	top: 9rem;
	width: 100px;
	height: 100px;
}

#contact-form.active {
	left: 60%;
}

#contact-form .form {
	display: flex;
	flex-direction: column;
	padding-top: 5rem;
}

#contact-form .form span {
	line-height: 2rem;
	margin-bottom: 3rem;
}

#contact-form .form input {
	height: 2rem;
	border: var(--second-color) 1px solid;
	background-color: transparent;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.15);
	margin: 1rem;
	color: var(--main-color);
}

#contact-form .form textarea {
	height: 6rem;
	border: var(--second-color) 1px solid;
	background-color: transparent;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.15);
	margin: 1rem;
	color: var(--main-color);
}

#contact-form .form button {
	width: auto;
	padding: 1rem 3rem;
	border-radius: 1.5rem;
	border: 0;
	margin: 3rem auto;
	font-size: 1.5rem;
	background-color: var(--main-color);
	color: var(--second-color);

}


.arrow {
	background-color: var(--second-color);
 height: 50px !important;
 width: 50px !important;
 display: flex;
 padding: 2rem;
 color: var(--main-color);
 border: 1px solid var(--main-color);
 z-index: 999;
 border-radius: 50%;
 justify-content: center;
 align-items: center;
}



.slick-arrow2 {
	background-color: var(--second-color);
 height: 50px !important;
 width: 50px !important;
 display: flex;
 padding: 2rem;
 color: var(--main-color);
 border: 1px solid var(--main-color);
 z-index: 999;
 border-radius: 50%;
 justify-content: center;
 align-items: center;
}


.slick-next-news {
	left: auto;
 right: calc(10% + 10px) !important;
 top: 220px !important;;
 display: flex !important;
 position: absolute;
}

.slick-prev-news {
	left: auto;
	right: calc(10% + 10px) !important;
 top: 280px !important;
 display: flex !important;
 position: absolute;
}

.slick-next {
    left: calc(100% - 60px);
	top: calc(50% - 25px) !important;
	position: absolute;
}

.slick-prev {
    left: 10px;
	top: calc(50% - 25px) !important;
	position: absolute;
}


#boatshow
{
	display: flex;
	width: 100%;
	flex-direction: column;
}

#boatshow .boatshow
{
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 5rem 5rem;
	border-bottom: 1px solid var(--icon-color);
}

#boatshow .boatshow .col-right
{
	width: 50%;
	text-align: right;
	font-size: 10rem;
	color: var(--icon-color);
}

#boatshow .boatshow .col-left
{
	width: 50%;
	text-align: left;
	display: flex;
	flex-direction: column;
}

#boatshow .boatshow .col-left h2
{
	font-size: 10rem;
	width: 100%;
}


#boatshow .boatshow .col-left strong
{
	font-size: 4rem;
}


#boatshow .boatshow .col-left span
{
	font-size: 6rem;
}

#boatshow .boatshow .col-left button
{
	background-color: var(--main-color);
	color: var(--second-color);
	padding: 2rem 4rem;
	border: 0;
	width: 30%;
	margin: 1rem 0;
	transition: 0.5s;
	border: 1px solid var(--main-color);
	font-size: 2rem;
}

#boatshow .boatshow .col-left button:hover
{
	background-color: var(--second-color);
	color: var(--main-color);
	border: 1px solid var(--main-color);
}

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

.popup.active
{
	display: flex;
}

.popup section
{
	display: flex;
	width: 50%;
	height: 50%;
	background-color: var(--second-color);
	color: var(--main-color);
	justify-content: space-between;
	align-items: center;
	position: relative;
	flex-direction: row;
}

.popup section .col-left
{
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 100%;
}

.popup section .col-left figure
{
	overflow: hidden;
	width: 100%;
	height: 100%;
	max-height: 100%;
}

.popup section .col-left figure img
{
	height: 100%;
	width: auto;
}
.popup section .col-right
{
	width: 70%;
	padding: 8rem;
}
.popup section .col-right .form
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.popup section .col-right .form h3
{
	font-size: var(--big-font-size);
	text-align: center;
	width: 100%;
}

.popup section .col-right .form input
{
	width: 100%;
	padding: 1rem 2rem;
	margin: 1rem 0;
}

.popup section .col-right .form textarea
{
	width: 100%;
	padding: 1rem 2rem;
	margin: 1rem 0;
}

 section .col-right .form button
{
	padding: 1rem 2rem;
	background-color: var(--main-color);
	text-transform: uppercase;
	color: var(--second-color);
	border: 1px solid var(--main-color);
	font-size: 1.5rem;
	margin: 2rem;
}


.popup  section .close {
	color: var(--main-color);
	position: absolute;
	top: 0px;
	right: 3px;
	font-size: 35px;
	font-weight: bold;
	z-index: 9999999999;
	width: 30px;
	height: 30px;
  }
  
  .popup section .close:hover,
  .popup section .close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
  }


  .modal {
	display: none;
	position: fixed;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
	position: relative;
	background-color: transparent;
	margin: auto;
	padding: 0;
	width: 90%;
	max-width: 1200px;
	max-height: 800px;
  }
  
  /* 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, .mySlides2  {
	display: none;
	width: 100%;
	height: 100%;
	text-align: center;
  }

  .mySlides img,  .mySlides2 img
  {
	max-height: 800px;
	width: auto;
	margin: 0 auto;
  }
  
  /* 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);
  }

  .services
  {
	height: 95vh !important;
	padding-top: 6vh;
	margin: 0 0;
  }

  .submenu
  {
	display: flex !important;
  }

  #hero.services .submenu
  {
	bottom: 200% ;
  }
.services-item
{
	position: absolute;
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-left: 10%;
}

.subpage .services-item
{
	margin-left: 0% !important;
}

.services-item a
{
	width: calc(60vw / 4);
	height: calc(60vw / 4);
	padding: 2rem;
	margin: 2rem calc(20% / 8);
	border: 1px solid var(--second-color);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.4);
	flex-direction: column;
	transition: 0.5s;
	scale: 1;
	z-index: 999;
}

.services-item a img
{
	width: 50%;
	height: auto;
}

.services-item a figcaption
{
	color: var(--second-color);
	text-transform: uppercase;
	font-size: 1.5rem;
	padding-top: 2rem;
	text-align: center;
}

.services-item a:hover
{
	scale: 1.02;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}

#news
  {
	  display: flex;
	  flex-direction: row;
	  padding: 10vh 0;
  }

  #news .col-left
  {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  #news .col-right
  {
	  width: 50%;
	  padding-right: calc((100vw - 1440px) / 2 );
	  height: auto;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  padding-left: 5rem;
	  flex-direction: column;
	  text-align: left;
  }

  #news h2
  {
	font-size: var(--bigger-font-size);
	text-align: left;
  }


  #news button
{
	background-color: var(--main-color);
	color: var(--second-color);
	padding: 2rem 4rem;
	border: 0;
	margin: 2rem 0;
	transition: 0.5s;
	border: 1px solid var(--main-color);
	font-size: 2rem;
}

#news button:hover
{
	background-color: var(--second-color);
	color: var(--main-color);
	border: 1px solid var(--main-color);
}

.modal button
{
	display: flex !important;
}


}
/* End  Media Query For Desktop */
