@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&family=Bad+Script&family=Fasthand&family=Montserrat:wght@200;300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/hamburgers/1.2.1/hamburgers.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.5/swiper-bundle.css');

:root {
	--black: #000000;
	--darkgrey: #838383;
	--darkgrey-hover: #414141;
	--lightgrey: #CAC9C9;
	--primary: #E67156;
	--primary-hover: #9d3c25;
	--bg-color: #F6F2EE;
	--bg-color-darker: #EFE8E2;
	--white: #FFFFFF;
}

*, *:before, *:after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

body,html{
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--bg-color);
	overflow-x: hidden;
}

.mobile{
	display: none;
}

fonts{
	font-family: 'Alegreya', serif;
	font-family: 'Bad Script', cursive;
	font-family: 'Fasthand', cursive;
	font-family: 'Montserrat', sans-serif;
}

p{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.tussentitel .title{
	padding-top: 100px;
	padding-bottom: 40px;
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.container{
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1300px;
	padding: 0px 30px;
}


/*/////////////////////////////////////////////////*/
/*/ BUTTONS                                       /*/
/*/////////////////////////////////////////////////*/

.buttonbox{
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
}

.btn-black{
	color: var(--white);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2.4px;
	background-color: var(--black);
	padding: 15px 20px;
	display: inline-block;
	border: 1px solid var(--black);
	text-decoration: none;
}

.btn-black:hover{
	color: var(--black);
	background-color: transparent;
}

.btn-light{
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2.4px;
	padding: 15px 20px;
	display: inline-block;
	border: 1px solid var(--black);
	text-decoration: none;
}

.btn-light:hover{
	color: var(--white);
	background-color: black;
}

.btn-white{
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2.4px;
	background-color: var(--white);
	padding: 15px 20px;
	display: inline-block;
	border: 1px solid var(--white);
	text-decoration: none;
}

.btn-white:hover{
	color: var(--white);
	background-color: var(--black);
}

.btn-black.full-width,
.btn-light.full-width,
.btn-white.full-width{
	width: 100%;
	display: block !important;
	text-align: center;
}

/*/////////////////////////////////////////////////*/
/*/ MAIN STYLES                                   /*/
/*/////////////////////////////////////////////////*/

section#widehero{
	position: relative;
	z-index: 1;
	height: 400px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

main{
	position: relative;
	z-index: 2;
	background-color: white;
	padding: 70px 20%;
	margin-top: -90px;
	margin-bottom: 100px;
}

main .posttype{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
}

main h1{
	margin: 0;
	padding: 0;
	width: 100%;
	color: var(--black);
	font-family: 'Fasthand', cursive;
	font-size: 50px;
	font-weight: 400;
	line-height: 50px;
	margin-top: 20px;
}

main h2{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 20px;
	font-weight: 800;
}

main h3{
	margin: 0;
	padding: 0;
	color: var(--primary);
	font-family: 'Alegreya', serif;
	font-size: 20px;
	font-weight: 800;
}

main a{
	text-decoration: underline;
	color: var(--primary);
}

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

main img{
	width: 100%;
	height: auto;
	border: 5px solid #FFF;
	box-shadow: 0px 0px 10.4px -2px rgba(0, 0, 0, 0.25);
}


/*/////////////////////////////////////////////////*/
/*/ NAVIGATION                                    /*/
/*/////////////////////////////////////////////////*/

nav{
	background-color: var(--white);
	width: 100%;
	height: 100px;
	position: relative;
}

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

nav ul li{
	float: left;
	font-family: 'Alegreya', serif;
	color: var(--darkgrey);
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
}

nav ul li a{}

nav ul li a:hover{
	color: var(--darkgrey-hover);
}

nav .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}

nav .left{
	width: 100%;
}

nav .left ul{
	float: right;
}

nav .left ul li{
	margin-right: 30px;
}

nav .left ul li:last-of-type{
	margin-right: 0px;
}

nav .center{
	width: 100%;
}

nav .center .logo{
	color: var(--black);
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
}

nav .right{
	width: 100%;
}

nav .right ul li{
	margin-left: 30px;
}

nav .right ul li:first-of-type{
	margin-left: 0px;
}

.mobile.hambrgr{
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 2;
}

#mobilenav {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
	background-color: var(--white);
}

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

#mobilenav ul li{
	padding: 10px 30px;
	border-bottom: 1px solid var(--lightgrey);
	font-family: 'Alegreya', serif;
	color: var(--black);
}

#mobilenav.open {
	max-height: 300px;
}

/*/////////////////////////////////////////////////*/
/*/ HOMEPAGE HERO                                 /*/
/*/////////////////////////////////////////////////*/

header#hero{
	width: 100%;
	overflow: hidden;
	background-image: url('../img/hero_venice.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-bottom: -30px;
}

header#hero .container{
	display: flex;
	justify-content: center;
}

header#hero .pics-left,
header#hero .pics-right{
	width: 40%;
	position: relative;
}

header#hero .pics-left .pic1,
header#hero .pics-left .pic2,
header#hero .pics-left .pic3,
header#hero .pics-right .pic1,
header#hero .pics-right .pic2{
	border: 5px solid #FFF;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 10.4px -2px rgba(0, 0, 0, 0.25);
	position: absolute;
}

header#hero .pics-left .pic1{
	width: 280px;
	height: 280px;
	transform: rotate(-7.046deg);
	top: -20px;
	right: 70px;
	z-index: 2;
}

header#hero .pics-left .pic2{
	width: 300px;
	height: 200px;
	transform: rotate(2.097deg);
	top: 170px;
	right: 180px;
	z-index: 3;
}

header#hero .pics-left .pic3{
	width: 220px;
	height: 220px;
	transform: rotate(6.194deg);
	top: 220px;
	right: 20px;
}

header#hero .pics-right .pic1{
	width: 430px;
	height: 260px;
	transform: rotate(-7.067deg);
	top: -40px;
	left: 20px;
	z-index: 2;
}

header#hero .pics-right .pic2{
	width: 310px;
	height: 300px;
	transform: rotate(6.194deg);
	top: 150px;
	left: 50px;
	z-index: 1;
}

header#hero .content{
	width: 100%;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 180px;
}

header#hero .content h1{
	color: var(--black);
	font-family: 'Fasthand', cursive;
	font-size: 50px;
	font-weight: 400;
	line-height: 127.368%;
	margin: 0; 
	padding: 0;
}

header#hero .content h1 span{
	color: var(--primary);
	display: block;
}

header#hero .content h2{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 140%;
	margin: 0;
	padding: 0;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 0px 40px;
}

/*/////////////////////////////////////////////////*/
/*/ HOMEPAGE COUNTRYBOXES                         /*/
/*/////////////////////////////////////////////////*/

section#countryboxes{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
}

section#countryboxes .box{
	background: var(--white);
	text-align: center;
}

section#countryboxes .box .image{
	height: 160px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin: 10px;
}

section#countryboxes .box .map{
	width: 100%;
	max-height: 180px;
	display: inline-block;
	padding: 10px 0px;
}

section#countryboxes .box .map img{
	max-height: 180px;
	width: auto;
}

section#countryboxes .box h1{
	color: var(--primary);
	font-family: 'Fasthand', cursive;
	font-size: 30px;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

section#countryboxes .box span{
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 2px;
	width: 100%;
	display: block;
	text-transform: uppercase;
}

section#countryboxes .box .btn-light{
	margin-top: 20px;
	margin-bottom: 40px;
}


/*/////////////////////////////////////////////////*/
/*/ BLOCK TEXT WITH PICS ON RIGHT SIDE            /*/
/*/////////////////////////////////////////////////*/

section#textwithpic{
	width: 100%;
	padding: 100px 0px;
	background-color: var(--white);
	margin-top: 100px;
}

section#textwithpic .container{
	display: flex;
}

section#textwithpic .textbox{
	width: 50%;
}

section#textwithpic .textbox h1{
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 6px;
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
}

section#textwithpic .textbox h1 strong{
	font-weight: 600;
}

section#textwithpic .textbox .btn-group{
	margin-top: 40px;
}

section#textwithpic .textbox .btn-group .btn-black{
	margin-right: 20px;
}

section#textwithpic .pixbox{
	width: 50%;
	position: relative;
}

section#textwithpic .pixbox .pic1,
section#textwithpic .pixbox .pic2{
	position: relative;
	border: 5px solid #FFF;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 10.4px -2px rgba(0, 0, 0, 0.25);
	margin-left: auto;
	margin-right: auto;
}

section#textwithpic .pixbox .pic1{
	width: 60%;
	aspect-ratio: 3/2;
	z-index: 1;
	margin-right: 30px;
}

section#textwithpic .pixbox .pic2{
	width: 35%;
	aspect-ratio: 8/7;
	margin-top: -50px;
	margin-right: 300px;
	z-index: 2;
}

section#textwithpic .pixbox .quote{
	position: absolute;
	transform: rotate(-2.751deg);
	color: var(--darkgrey);
	font-family: 'Bad Script', cursive;
	font-size: 18px;
	font-weight: 400;
	max-width: 300px;
	text-align: center;
	right: 0px;
	bottom: 30px;
}

/*/////////////////////////////////////////////////*/
/*/ HOMEPAGE: TIP VAN DE DAG!                     /*/
/*/////////////////////////////////////////////////*/

section#tipvandedag{
	margin-top: 80px;
	margin-bottom: 80px;
	display: flex;
}

section#tipvandedag .stad{
	width: 70%;
	background-repeat: no-repeat;
	background-position: center left;
	background-size: contain;
	display: flex; 
	justify-content: flex-end;
	padding-top: 40px;
	padding-bottom: 80px;
}

section#tipvandedag .stad .right{
	width: 55%;
}
section#tipvandedag .stad .spacer{
	width: 40px;
}

section#tipvandedag .stad h1{
	transform: rotate(-2.751deg);
	color: var(--black);
	font-family: 'Bad Script', cursive;
	font-size: 28px;
	font-weight: 400;
	margin-bottom: -18px;
	margin-left: -25px;
}

section#tipvandedag .stad .info{
	border-radius: 5px;
	background: var(--white);
	padding: 20px 30px 40px 30px;
	margin-bottom: -25px;
}

section#tipvandedag .stad .info h2{
	margin: 0px;
	padding: 0px;
	color: var(--primary);
	font-family: 'Fasthand', cursive;
	font-size: 30px;
	font-weight: 400;
}

section#tipvandedag .stad .info p{}

section#tipvandedag .stad .btn-black{
	margin-left: -40px;
}

section#tipvandedag .tips{
	width: 35%;
	padding-top: 60px;
}

section#tipvandedag .tips h1{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 19px;
	font-weight: 300;
	letter-spacing: 3.8px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

section#tipvandedag .tips .tip{
	margin-bottom: 20px;
}

section#tipvandedag .tips .tip .title{
	color: var(--black);
	font-family: Alegreya;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
}

section#tipvandedag .tips .tip .feather_star{
	width: 18px;
	margin-bottom: -5px;
	stroke: var(--primary);
	stroke-width: 2px;
}
section#tipvandedag .tips .tip .feather_star:last-of-type{
	margin-right: 10px;
}
section#tipvandedag .tips .tip .info{
	display: flex;
}
section#tipvandedag .tips .tip .info .pic{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 200px;
}
section#tipvandedag .tips .tip .info .descr{
	width: 100%;
	padding-left: 20px;
}


/*/////////////////////////////////////////////////*/
/*/ HERO IMAGE CAROUSEL  		                  /*/
/*/////////////////////////////////////////////////*/

section#hero_carousel{
	height: 300px;
	width: 100%;
}

section#hero_carousel .hero-carousel img{
	object-fit: cover;
	width: 100%;
	height: 300px;
}


/*/////////////////////////////////////////////////*/
/*/ CITY REISGIDS INTRO			                  /*/
/*/////////////////////////////////////////////////*/

section#city_intro{
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
}

section#city_intro .info{
	padding-right: 40%;
	padding-top: 50px;
	padding-bottom: 50px;
}

section#city_intro .info h2{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
}

section#city_intro .info h1{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Fasthand', cursive;
	font-size: 60px;
	font-weight: 400;
	line-height: 127.368%;
}

/*/////////////////////////////////////////////////*/
/*/ CITY FACTS AND FIGURES			              /*/
/*/////////////////////////////////////////////////*/

section#facts{
	width: 100%;
	background-color: var(--white);
	padding-top: 50px;
	padding-bottom: 50px;
}

section#facts .items{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

section#facts .items .item{
	width: 16.66%;
	text-align: center;
}

section#facts .items .item .img{
	margin-bottom: 20px;
}

section#facts .items .item .img img{
	max-height: 60px;
}

section#facts .items .item .fact{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

section#facts .items .item .figure{
	margin: 0;
	padding: 0;
	color: var(--primary);
	font-family: 'Alegreya', serif;
	font-size: 20px;
	font-weight: 400;
}


/*/////////////////////////////////////////////////*/
/*/ HOTEL CAROUSEL					              /*/
/*/////////////////////////////////////////////////*/

section#hotel_carousel{
	width: 100%;
	height: auto;
	margin-bottom: 50px !important;
}

section#hotel_carousel .title strong{
	font-weight: 700;
}

section#hotel_carousel .carousel{
	width: 100%;
}

section#hotel_carousel.swiper-container {
	position: relative;
	width: 100%;
	max-width: 1300px;
	margin: auto;
}

section#hotel_carousel .swiper-slide {
	opacity: 0.2;
	transition: opacity 0.3s;
}

section#hotel_carousel .swiper-slide.active,
section#hotel_carousel .swiper-slide-active {
	opacity: 1;
}

section#hotel_carousel .hotel_carousel_next{
	position: absolute;
	height: 100%;
	top: 0;
	right: -40px;
	display: flex;
	align-items: center;
	z-index: 3;
}

section#hotel_carousel .hotel_carousel_next:hover{
	opacity: 0.7;
}

section#hotel_carousel .hotel_carousel_next .feather_next{
	transform: scale(1.5);
}

section#hotel_carousel .swiper-button-disabled,
section#hotel_carousel .swiper-button-disabled:hover{
	opacity: 0.2;
}

section#hotel_carousel .item{
	background-color: white;
}

section#hotel_carousel .item .image{
	width: 100%;
	aspect-ratio: 16/9;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 1;
	transition: opacity 0.2s ease-out;
}

section#hotel_carousel .item .image:hover{
	opacity: 0.7;
}

section#hotel_carousel .item .info{
	padding: 15px;
}

section#hotel_carousel .item .info .rating .feather_star{
	width: 18px;
	margin-bottom: -5px;
	stroke: var(--primary);
	stroke-width: 2px;
}

section#hotel_carousel .item .info .rating:last-of-type{
	margin-right: 10px;
}

section#hotel_carousel .item .info h1{
	margin: 0;
	padding: 0;
	padding: 10px 0px;
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 17px;
	font-weight: 700;
}

section#hotel_carousel .item .info p{
	margin: 0;
	padding: 0;
	font-size: 15px;
}

section#hotel_carousel .item .info .highlights{
	margin: 0;
	padding-left: 20px;
	list-style: none;
	margin-top: 15px;
	margin-bottom: 15px;
}

section#hotel_carousel .item .info .highlights li{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 151.071%;
}

section#hotel_carousel .item .info .highlights li::before {
  content: "\2022";
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 20px;
}

section#hotel_carousel .item .info .btn-group .btn-light{
	margin-bottom: 10px;
}


/*/////////////////////////////////////////////////*/
/*/ UITJES CAROUSEL					              /*/
/*/////////////////////////////////////////////////*/

section#uitjes_carousel{
	width: 100%;
	height: auto;
	margin-bottom: 180px !important;
}

section#uitjes_carousel .title strong{
	font-weight: 700;
}

section#uitjes_carousel .carousel{
	width: 100%;
}

section#uitjes_carousel.swiper-container {
	position: relative;
	width: 100%;
	max-width: 1300px;
	margin: auto;
}

section#uitjes_carousel .swiper-slide {
	opacity: 0.2;
	transition: opacity 0.3s;
}

section#uitjes_carousel .swiper-slide.active,
section#uitjes_carousel .swiper-slide-active {
	opacity: 1;
}

section#uitjes_carousel .uitjes_carousel_next{
	position: absolute;
	height: 100%;
	top: 0;
	right: -40px;
	display: flex;
	align-items: center;
	z-index: 3;
}

section#uitjes_carousel .uitjes_carousel_next:hover{
	opacity: 0.7;
}

section#uitjes_carousel .uitjes_carousel_next .feather_next{
	transform: scale(1.5);
}

section#uitjes_carousel .swiper-button-disabled,
section#uitjes_carousel .swiper-button-disabled:hover{
	opacity: 0.2;
}

section#uitjes_carousel .uitje{
	position: relative;
	background-color: white;
	width: calc(100% - 50px);
	margin-left: 25px;
	margin-top: 50px;
}

section#uitjes_carousel .uitje .top{
	display: flex;
	height: 100px;
}

section#uitjes_carousel .uitje .top .image{
	width: calc(50% + 25px);
	margin-left: -25px;
	margin-top: -50px;
	height: calc(100% + 50px);
	opacity: 1;
	transition: opacity 0.2s ease-out;
}

section#uitjes_carousel .uitje .top .image:hover{
	opacity: 0.7;
}

section#uitjes_carousel .uitje .top .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section#uitjes_carousel .uitje .top .info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 50%;
	padding-left: 20px;
}
section#uitjes_carousel .uitje .top .info .type{
	color: var(--darkgrey);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 2.4px;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	padding-top: 15px;
}

section#uitjes_carousel .uitje .top .info h1{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	padding: 0;
}

section#uitjes_carousel .uitje .top .info .rating .feather_star{
	width: 18px;
	margin-bottom: -5px;
	stroke: var(--primary);
	stroke-width: 2px;
}

section#uitjes_carousel .uitje .descr{
	padding: 0px 20px 20px 20px;
}

section#uitjes_carousel .uitje .descr p{
	font-size: 15px;
}

section#uitjes_carousel .uitje .btn-black{
	position: absolute;
	bottom: -20px;
	right: -25px;
}



/*/////////////////////////////////////////////////*/
/*/ MORE INFO, FAQ & POSTS		                  /*/
/*/////////////////////////////////////////////////*/

section#more{
	position: relative;
	width: 100%;
	height: 100%;
	height: auto;
	background-color: var(--primary);
}

section#more .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.25;
}

section#more .container{
	position: relative;
	z-index: 2;
	display: flex;
	gap: 20px;
	padding-top: 100px;
	padding-bottom: 100px;
}

section#more h1{
	color: var(--white);
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 4px;
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
	text-transform: uppercase;
}

section#more .left{
	width: 50%;
}

section#more .left .faq .faq_item{
	margin-bottom: 1px;
}

section#more .left .faq .faq_item .question{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white);
	width: 100%;
	padding: 0px 20px;
	height: 90px;
}

section#more .left .faq .faq_item .question:hover{
	background-color: var(--bg-color-darker);
}

section#more .left .faq .faq_item .question h2{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	padding-right: 40px;
}

section#more .left .faq .faq_item .question .feather_arrow{
	transition: transform 0.3s ease-out;
}

section#more .left .faq .faq_item .question .feather_arrow.rotate{
	transform: rotate(90deg);
}

section#more .left .faq .faq_item .answer{
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease-out;
	background-color: var(--bg-color);
}

section#more .left .faq .faq_item .answer.open{
}

section#more .left .faq .faq_item .answer p{
	padding: 5px 20px;
}

section#more .right{
	width: 50%;
}

section#more .right .posts .post{
	margin-bottom: 1px;
	display: flex;
	gap: 20px;
	padding: 20px;
	background-color: white;
}

section#more .right .posts .post:hover{
	background-color: var(--bg-color);
}

section#more .right .posts .post .thumb{
	width: 400px;
}

section#more .right .posts .post .thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section#more .right .posts .post .post_info{}

section#more .right .posts .post .post_info h2{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

section#more .right .posts .post .post_info p{
	font-size: 15px;
}

/*/////////////////////////////////////////////////*/
/*/ OTHER CITIES				                  /*/
/*/////////////////////////////////////////////////*/

section#other_cities{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
	margin-bottom: 100px;
}

section#other_cities .city{
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 175px;
}

section#other_cities .city .overlay{
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
	transition: background-color 0.2s ease-out;
}

section#other_cities .city .overlay::after{
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 1px solid var(--white);
}

section#other_cities .city .content{
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	z-index: 2;
}

section#other_cities .city .content h1{
	width: 100%;
	color: var(--white);
	text-align: center;
	font-family: 'Fasthand', cursive;
	font-size: 50px;
	font-weight: 400;
}

section#other_cities .city:hover .overlay{
	background-color: rgba(0, 0, 0, 0.3);
}

/*/////////////////////////////////////////////////*/
/*/ OTHER CITIES				                  /*/
/*/////////////////////////////////////////////////*/

section#reisgidsen{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-bottom: 100px;
}

section#reisgidsen .city{
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 240px;
}

section#reisgidsen .city .overlay{
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
	transition: background-color 0.2s ease-out;
}

section#reisgidsen .city .overlay::after{
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 1px solid var(--white);
}

section#reisgidsen .city .content{
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	text-align: center;
}

section#reisgidsen .city .content h1{
	width: 100%;
	color: var(--white);
	text-align: center;
	font-family: 'Fasthand', cursive;
	font-size: 50px;
	font-weight: 400;
	margin-bottom: 30px;
}

section#reisgidsen .city:hover .overlay{
	background-color: rgba(0, 0, 0, 0.3);
}


/*/////////////////////////////////////////////////*/
/*/ COUNTRY INTRO						 	      /*/
/*/////////////////////////////////////////////////*/

section#countryintro{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

section#countryintro .visual{
	position: relative;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

section#countryintro .info{
	position: relative;
	margin-top: 120px;
	margin-bottom: 120px;
	border-radius: 5px;
	background: #FFF;
	padding: 40px;
	margin-left: -35%;
}

section#countryintro .info h1{
	margin: 0px;
	padding: 0px;
	color: var(--primary);
	font-family: 'Fasthand', cursive;
	font-size: 60px;
	font-weight: 400;
	line-height: 127.368%;
	margin-top: -100px;
}

section#countryintro .info h2{
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-top: 20px;
}

section#countryintro .info p{}

section#countryintro .info .btn-black{
	position: absolute;
	bottom: -23px;
}


/*/////////////////////////////////////////////////*/
/*/ Tekst met polaroids 						  /*/
/*/////////////////////////////////////////////////*/

section#tekst_met_polaroids{
	width: 100%;
	background-color: var(--white);
	margin-top: 150px;
}

section#tekst_met_polaroids .container{
	display: flex;
}

section#tekst_met_polaroids .content{
	width: 75%;
	padding: 100px 0px;
}

section#tekst_met_polaroids .content h1,
section#tekst_met_polaroids .content h2{
	margin: 0;
	padding: 0;
	color: var(--primary);
	font-family: 'Alegreya', serif;
	font-size: 20px;
	font-weight: 700;
}

section#tekst_met_polaroids .content p{}

section#tekst_met_polaroids .fotos{
	width: 35%;
	text-align: center;
}

section#tekst_met_polaroids .fotos .foto{
	border: 5px solid #FFF;
	box-shadow: 0px 0px 10.4px -2px rgba(0, 0, 0, 0.25);
	max-width: 80%;
	height: auto !important;
}

section#tekst_met_polaroids .fotos .foto1{
	transform: rotate(5deg);
	margin-top: -30px;
}
section#tekst_met_polaroids .fotos .foto2{
	transform: rotate(-3deg);
	margin-top: -10px;
}
section#tekst_met_polaroids .fotos .foto3{
	transform: rotate(3deg);
	margin-top: -10px;
}
section#tekst_met_polaroids .fotos .foto4{
	transform: rotate(-5deg);
	margin-bottom: -10px;
}
section#tekst_met_polaroids .fotos .foto5{
	transform: rotate(8deg);
	margin-bottom: -10px;
}
section#tekst_met_polaroids .fotos .foto6{
	transform: rotate(-4deg);
	margin-bottom: -10px;
}

/*/////////////////////////////////////////////////*/
/*/ HOTEL PAGINA 				                  /*/
/*/////////////////////////////////////////////////*/

main#hotel .rating{
	margin-top: 10px;
	margin-bottom: -20px;
}

main#hotel .rating .feather_star{
	width: 18px;
	margin-bottom: -5px;
	stroke: var(--primary);
	stroke-width: 2px;
}

main#archive{
	margin-bottom: 0px;
	padding: 30px 20%;
	text-align: center;
}

/*/////////////////////////////////////////////////*/
/*/ FOOTER 						                  /*/
/*/////////////////////////////////////////////////*/

footer{
	width: 100%;
	padding: 50px 0px;
	background-color: var(--white);
}

footer .logo{
	color: var(--black);
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 40px;
}

footer .contents{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
}

footer .column{}

footer .column h1{
	color: var(--darkgrey);
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 2.6px;
	text-transform: uppercase;
}

footer .column .links{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
footer .column .links li{
	color: var(--black);
	font-family: 'Alegreya', serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 200%;
}

footer .column .links li a:hover{
	color: var(--primary);
}

footer .column .links li.highlighted a{
	color: var(--primary);
}

footer .column .links li.highlighted a:hover{
	color: var(--black);
}

section#closer{
	background-color: var(--primary);
	padding: 30px 0px;
	color: var(--white);
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
}




/*/////////////////////////////////////////////////*/
/*/ MOBILE CHANGES FOR BETTER EXPERIENCE 	      /*/
/*/////////////////////////////////////////////////*/

@media only screen and (max-width: 1300px) {
	section#hotel_carousel{width: 90% !important; padding: 0px 20px;}
	
	section#uitjes_carousel{width: 90% !important; padding: 0px 20px;}
}

@media only screen and (max-width: 1102px) {
	
	nav .left ul li{margin-right: 15px;}
	nav .right ul li{margin-left: 15px;}
	nav .center{width: 50%;}
}

@media only screen and (max-width: 1000px) {
	
	section#textwithpic .textbox{width: 60%;}
	section#textwithpic .pixbox{width: 40%;}
	section#textwithpic .pixbox .pic1{margin-right: 0px;}
	section#textwithpic .pixbox .pic2{margin-right: 50%;}
	section#textwithpic .pixbox .quote{bottom: 30%;}
	
	section#tipvandedag{flex-wrap: wrap;}
	section#tipvandedag .stad{width: 100%;}
	section#tipvandedag .tips{width: 100%; padding-top: 0px;}
	
	section#facts .items{flex-wrap: wrap;  gap: 40px 20px;}
	section#facts .items .item{flex-basis: 33.33333%;}
	
	section#hotel_carousel .hotel_carousel_next{right: -20px;}
	
	section#uitjes_carousel .uitjes_carousel_next{right: -20px;}
	
	section#more .container{flex-wrap: wrap;}
	section#more .left{width: 100%;}
	section#more .right{width: 100%;}
	section#more .right h1{padding-top: 50px;}
	
}

@media only screen and (max-width: 800px) {
	
	body,html{overflow-x: hidden;}
	.mobile{display: block;}
	
	section#widehero{height: 300px;}
	main{padding: 25px 25px; margin-top: -60px; margin-bottom: 80px;}

	
	nav .container{flex-wrap: wrap;}
	nav .left ul li{display: none;}
	nav .right ul li{display: none;}
	nav .center .logo{font-size: 18px; text-align: left;}
	
	header#hero .content{padding-top: 40px; padding-bottom: 80px;}
	header#hero .content h1{font-size: 30px;}
	header#hero .content h2{font-size: 15px; padding: 0px;}
	
	header#hero .pics-left .pic1{width: 120px; height: 130px; top: 0px; right: 10px;}
	header#hero .pics-left .pic2{width: 120px; height: 130px; top: 110px; right: 20px;}
	header#hero .pics-left .pic3{width: 110px; height: 130px; top: 210px; right: 10px;}
	header#hero .pics-right .pic1{width: 120px; height: 200px; top: -10px; left: 10px;}
	header#hero .pics-right .pic2{width: 100px; height: 200px; top: 150px; left: 10px;}
	
	section#countryboxes{grid-template-columns: repeat(1, 1fr); grid-row-gap: 20px;}
	section#countryboxes .box .map{display: none;}
	
	section#textwithpic{margin-top: 50px; padding: 40px 0px;}
	section#textwithpic .container{flex-wrap: wrap;}
	section#textwithpic .textbox{width: 100%;}
	section#textwithpic .textbox h1{font-size: 25px;}
	section#textwithpic .pixbox{order: -1; width: 100%; margin-bottom: 30px;}
	section#textwithpic .pixbox .pic1{width: 70%; margin-right: 0px;}
	section#textwithpic .pixbox .pic2{width: 45%; margin-top: -50px; margin-left: 0px; margin-bottom: 30px;}
	section#textwithpic .pixbox .quote{position: relative; max-width: 300px; text-align: center; bottom: 30px; margin-left: auto; margin-right: auto;}
	section#textwithpic .textbox .btn-group .btn-black{width: 100%; display: block !important; text-align: center; margin-bottom: 10px;}
	section#textwithpic .textbox .btn-group .btn-light{width: 100%; display: block !important; text-align: center;}
	
	section#tipvandedag{margin-top: 40px; margin-bottom: 40px; flex-wrap: wrap;}
	section#tipvandedag .stad{width: calc(100% + 80px); overflow: hidden; background-position: center center;background-size: cover; justify-content: center; margin-left: -40px; margin-right: -40px;}
	section#tipvandedag .stad .right{width: 70%;}
	section#tipvandedag .stad .spacer{display: none;}
	section#tipvandedag .stad .btn-black{width: 80%; display: block; margin-left: auto; margin-right: auto;}
	section#tipvandedag .tips{width: 100%; padding-top: 0px;}
	
	section#city_intro .info{padding-right: 0px;}
	
	section#facts .items .item{flex-basis: 100%;}
	
	section#hotel_carousel{width: 95% !important; padding: 0px 30px;}
	section#hotel_carousel .hotel_carousel_next{right: -10px;}
	
	section#uitjes_carousel{width: 95% !important; padding: 0px 20px;}
	section#uitjes_carousel .uitjes_carousel_next{right: -10px;}
	
	section#more .right .posts .post{flex-wrap: wrap; margin-bottom: 20px;}
	section#more .right .posts .post .thumb{width: 100%;}
	
	section#other_cities{grid-template-columns: 1fr; grid-row-gap: 20px;}
	
	footer .contents{grid-template-columns: repeat(1, 1fr); grid-row-gap: 20px;}
	
}
