/* BASE
======================================================== */
/* main
-------------------------------------------------------- */
* {
	padding: 0; 
	margin: 0;
	box-sizing: border-box;
}

html {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 22px;
	color: #3e3e3e;
	text-align: left;
	position: relative;
	min-height: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background: #fff;
}

body {
	background: #fff;
	margin: 0;
	text-rendering: optimizeLegibility;
	text-rendering: geometricPrecision;
	font-smooth: always;
	font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

::selection {
	background: #fcc333;
	color: #fff;
}

:focus {
	outline: 0px;
}

img {
	border: 0;
	width: 100%;
	vertical-align: bottom;
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

optgroup {
	font-weight: bold;
}

input, button {
	border: 0;
	border-radius: 0;
}

input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
}

input:focus, button:focus, textarea:focus {
	outline: 0;
}

button {
	overflow: visible;
	text-transform: none;
}

select {
	text-transform: none;
}

textarea {
	overflow: auto;
}

/* helpers (height, margin, padding, align, float etc.)
-------------------------------------------------------- */
.h-clear {
	clear: both;
}

.h-clearfix {
	zoom: 1;
}

.h-clearfix:after, .h-clearfix:before {
	content: "";
	display: table;
}

.h-clearfix:after {
	clear: both;
}

.h-hidden {
	display: none;
}

.h-oh {
	overflow: hidden;
}

.h-bs {
	padding: 0 10px;
	box-sizing: border-box;
}

.h-transition {
	transition: all .5s;
	-webkit-transition: all .5s;
}

.h-noselect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.h-tar {
	text-align: right;
}

.h-tal {
	text-align: left;
}

.h-tac {
	text-align: center;
}

.h-fr {
	float: right;
}

.h-fl {
	float: left;
}

/* text
-------------------------------------------------------- */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	padding: 0;
	margin: 0 0 16px;
}
h1, .h1 {
	font-size: 28px;
    line-height: 30px;
    margin-bottom: 25px;
}
h1 span, .h1 span {
    font-size: 12px;
    display: block;
    line-height: 20px;
	color: #878787;
}

h1:after, .h1:after {
	content: '';
	position: relative;
	display: block;
	bottom: -5px;
	left: -5px;
	height: 4px;
	width: 45px;
	background: #fcc333;
}

p, .p {
    font-size: 16px;
    line-height: 28px;
	padding-bottom: 25px;
}

ul, ol {
	padding-left: 20px;
    font-size: 16px;
    line-height: 28px;
	padding-bottom: 25px;
}

b, .b, strong, .strong {
	font-weight: bold;
}

em, .em {
	font-style: italic;
}

u, .u {
	text-decoration: underline;
}

a, .a {
	color: #3e3e3e;
	text-decoration: underline;
	cursor: pointer;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:hover, .a:hover {
	text-decoration: none;
}

table {
	margin-bottom: 30px;
}
td {
	padding-right: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
	vertical-align: top;
}

/* CUSTOM PROJECT CSS
======================================================== */
/* header
-------------------------------------------------------- */
.header {
	border-top: 1px solid #fcc333;
}

/* menu
-------------------------------------------------------- */
.menu {
	position: absolute;
	width: 65px;
	height: 65px;
	top: 0px;
	right: 10px;
	padding: 15px;
	z-index: 3000;
	cursor: pointer;
	background: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.menu__wrapper {
	display: relative;
}

.menu__text {
	position: relative;
	text-decoration: none;
	color: #fcc333;
	font-size: 12.5px;
	top: 0px;
	font-weight: bold;
	display: inline-block;
	transition: top .5s;
	-webkit-transition: top .5s;
}

.menu__line {
	position: relative;
	display: block;
	width: 100%;
	height: 5px;
	top: 0px;
	background: #fcc333;
	transition: top .5s, height .5s;
	-webkit-transition: top .5s, height .5s;
}

.js-menu-active .menu .menu__wrapper .menu__line {
	height: 10px;
	top: -5px;
}
.js-menu-active .menu .menu__wrapper .menu__text {
	top: -5px;
}

.js-menu-active .nav {
	height: 100vh;
}

/* nav
-------------------------------------------------------- */
.nav {
	position: fixed;
	top: 1px;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background: #fff;
	height: 0vh;
	z-index: 2000;
	overflow: hidden;
	transition: height .5s;
	-webkit-transition: height .5s;
}

.nav__links {
	height: 100vh;
	height: calc(100vh - 160px);
	overflow: scroll;
	padding-bottom: 100px;
}

.nav__link {
	display: block;
}

.nav__mainlink {
	display: block;
	font-size: 22px;
	line-height: 28px;
	padding: 0;
	margin: 25px 0 15px;
	font-weight: bold;
	text-decoration: none;
}

.nav__mainlink:first-child {
	margin-top: 5px;
}

.nav__mainlink:after {
	content: '';
	position: relative;
	display: block;
	bottom: -5px;
	left: -5px;
	height: 4px;
	width: 45px;
	background: #fcc333;
}

.nav__wrapper {
	margin: 0 auto;
	max-width: 800px;
	padding: 0 13px 0 13px;
}

.nav__language-toggle {
	display: flex;
	gap: 8px;
	margin: 10px auto 0px;
}

.language-toggle__link {
	padding: 8px 16px;
	border: 2px solid #fcc333;
	background: transparent;
	color: #fcc333;
	cursor: pointer;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s ease;
}

.language-toggle__link:hover {
	background: rgba(252, 195, 51, 0.1);
}

.language-toggle__link--active {
	background: #fcc333;
	color: #fff;
	font-weight: bold;
}

.language-toggle__link--active:hover {
	background: #fcc333;
}

.nav__linkset {
	display: block;
}

.nav__linkset--hidden {
	display: none;
}

.nav__search {
	display: block;
	margin: 20px auto 20px;
}

.nav__search__label {
	font-size: 0px;
}

.nav__search__input {
	padding: 13px 60px 13px 13px;
	border-radius: 5px;
	width: 100%;
	border: 1px solid #ececec;
	background: url('https://www.mustseespots.com/img/icon-search.svg') right 18px center no-repeat;
}

/* footer
-------------------------------------------------------- */
.footer {
	position: relative;
	text-align: center;
	border-bottom: 2px solid #fcc333;
}

.footer__back {
	display: block;
	font-size: 24px;
	font-weight: bold;
	padding: 40px 13px;
	text-decoration: none;
}
.footer__back img {
	display: block;
	margin: 0 auto 30px;
}

.footer__links {
	padding: 20px 13px;
	background: #f9f9f9;
	text-align: center;
}
.footer__links a {
	margin-right: 25px;
}
.footer__links a:nth-last-child(1) {
	margin-right: 0;
}

.footer__info {
	padding: 20px 13px;
}

/* container
-------------------------------------------------------- */
.container {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
}
.container--intro {
	padding: 0px 0px 12px;
}
.container--index {
	padding: 0px 12px 80px;
}
.container--content {
	padding: 30px 12px 80px;
}
.container--banner {
	padding: 0px 12px 12px;
}

/* top
-------------------------------------------------------- */
.top {
	position: relative;
}
.top__back {
	position: absolute;
	width: 65px;
	height: 75px;
	top: 0px;
	left: 0px;
	padding: 20px 15px;
	z-index: 1000;
}
.top__prev {
	position: absolute;
	width: 65px;
	height: 75px;
	bottom: 0px;
	left: 0px;
	padding: 20px 15px;
	z-index: 1000;
}
.top__next {
	position: absolute;
	width: 65px;
	height: 75px;
	bottom: 0px;
	right: 0px;
	padding: 20px 15px;
	z-index: 1000;
}

/* intro
-------------------------------------------------------- */
.intro {
	display: flex;
	align-items: flex-end;
	height: 650px;
	background: url('https://www.mustseespots.com/img/bg_intro.jpg') center top no-repeat;
	background-size: cover;
	border-radius: 0 0 5px 5px;
}
.intro__logo {
    position: absolute;
    top: 15px;
    left: 25px;
	color: #fff;
	font-size: 24px;
	line-height: 28px;
	max-width: 100px;
}
.intro__content {
	width: 100%;
    padding: 15px 25px;
	border-radius: 0 0 5px 5px;
    background: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 100%);
}
.intro__headline {
	color: #fff;
	margin-top: 200px;
	max-width: 380px;
	font-size: 34px;
	line-height: 42px;
}
.intro__text {
	color: #fff;
	max-width: 380px;
}

/* img
-------------------------------------------------------- */
.img {
	border-radius: 2px;
}
.img--bo {
	border-radius: 0 0 5px 5px;
}
.img--set {
	margin-bottom: 10px;
}
.img--flag {
	position: relative;
	bottom: 3px;
	left: 2px;
	display: inline-block;
	height: 12px;
	width: 20px;
}
.img.img--dflag {
	margin-bottom: 40px;
}

.img--set+h2 {
	margin-top: 20px;
}
.img+p {
	margin-top: 5px;
}

/* button
-------------------------------------------------------- */
.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 15px 20px;
	border: 0px;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: #fcc333;
	box-shadow: 0px 3px 0px #c89f36;
	cursor: pointer;
	margin-bottom: 10px;
}
.button--mlink {
	background: #525252;
	top: 5px;
	box-shadow: 0px 3px 0px #424242;
}
.button:hover {
	top: 2px;
	box-shadow: 0px 1px 0px #c89f36;	
}
.button--mlink:hover {
	top: 7px;
	box-shadow: 0px 1px 0px #424242;		
}

/* icon
-------------------------------------------------------- */
.icon {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin-right: 10px;
}
.icon--map {
	background: url('https://www.mustseespots.com/img/icon-map.svg') center bottom no-repeat;
	background-size: 20px;
}
.icon--plane {
	background: url('https://www.mustseespots.com/img/icon-plane.svg') center bottom no-repeat;
	background-size: 20px;
	top: 5px;
}
.icon--car {
	background: url('https://www.mustseespots.com/img/icon-car.svg') center bottom no-repeat;
	background-size: 20px;
	top: 5px;
}
.icon--house {
	background: url('https://www.mustseespots.com/img/icon-house.svg') center bottom no-repeat;
	background-size: 20px;
	top: 5px;
}

/* buttons
-------------------------------------------------------- */
.buttons {
	margin: 15px 0 25px;
}
.mlink {
	text-decoration: underline;
	color: #3e3e3e;
	font-size: 14px;
	display: inline-block;
	margin: 5px 20px 15px 0;
}
.mlink:hover {
	text-decoration: none;
}

p + .buttons {
	margin-top: 0px;
}

/* imgboxs
-------------------------------------------------------- */
.imgboxs {
	margin-bottom: 20px;
}
.imgbox {
	position: relative;
	display: block;
	margin-bottom: 12px;
}
.imgbox__text {
	position: absolute;
	bottom: 0px;
	left: 0px;
	border-radius: 0 0 2px 2px;
	padding: 35px 15px 15px;
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
	color: #fff;
	width: 100%;
	background: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 100%);
}
.imgbox__img {
	height: auto;
}
.imgbox__text span {
	display: block;
	color: #d2d2d2;
	font-size: 12px;
	line-height: 16px;
}

/* spots
-------------------------------------------------------- */
.spots {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}
.spot {
	text-decoration: none;
	width: calc(50% - 6px);
	margin-right: 12px;
	margin-bottom: 12px;
}
.spot:nth-child(2n) {
	margin-right: 0;
}
.spot__text {
	margin-top: 8px;
	margin-bottom: 6px;
	text-decoration: none;
	font-size: 14px;
	line-height: 16px;
	display: block;
}

.accommodation-map {
	margin-bottom: 20px;
}

/* Embed map
-------------------------------------------------------- */
.embed-map {
	margin-bottom: 25px;
}

.embed-map iframe {
	border: 0;
}

/* breadcrumbs
-------------------------------------------------------- */
.breadcrumbs {
	margin-bottom: 20px;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs__item {
	display: flex;
	align-items: center;
}

.breadcrumbs__link {
	color: #fcc333;
	text-decoration: none;
}

.breadcrumbs__link:hover {
	text-decoration: underline;
}

.breadcrumbs__current {
	color: #666;
}

.breadcrumbs__separator {
	margin: 0 8px;
	color: #999;
}

/* articles
-------------------------------------------------------- */
.articles-list {
	list-style: none;
	margin-bottom: 25px;
	padding: 0;
}

.articles-list li {
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

.articles-list li:before {
	content: "→";
	position: absolute;
	left: 0;
	color: #fcc333;
	font-weight: 700;
}

.articles-list a {
	color: #3e3e3e;
	text-decoration: none;
	font-size: 16px;
	line-height: 24px;
	transition: color 0.2s ease;
}

.articles-list a:hover {
	color: #fcc333;
}

.article-meta {
	font-size: 12px;
	color: #999;
	margin-bottom: -25px;
	padding-bottom: 0px;
	font-style: italic;
}

.article-country-img {
	width: 100%;
	height: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	border-radius: 5px;
}

.article-excerpt {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #666;
}

.article-content {
	margin-bottom: 40px;
}

.article-content h1 {
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 20px;
	margin-top: 30px;
}

.article-content h2 {
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 15px;
	margin-top: 25px;
}

.article-content h3 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 12px;
	margin-top: 20px;
}

.article-content p {
	margin-bottom: 16px;
}

.article-content a {
	color: #fcc333;
	text-decoration: none;
	font-weight: 700;
}

.article-content a:hover {
	text-decoration: underline;
}

.article-content img {
	margin: 25px 0;
	width: 100%;
	height: auto;
}

.article-content blockquote {
	border-left: 4px solid #fcc333;
	padding-left: 20px;
	margin: 25px 0;
	font-style: italic;
	color: #666;
}

.article-content ul,
.article-content ol {
	margin-bottom: 20px;
	padding-left: 25px;
}

.article-content li {
	margin-bottom: 8px;
}

.article-content strong {
	font-weight: 700;
}

.top--article {
	min-height: 60px;
}

/* responsive
-------------------------------------------------------- */
@media (min-width: 600px) {
	.imgboxs {
		display: flex;
		flex-wrap: wrap;
	}
	.imgbox {
		margin-right: 12px;
		width: calc(50% - 6px);
	}
	.imgbox:nth-child(2n) {
		margin-right: 0;
	}
	.spot {
		width: calc((100%/3) - 8px);
	}
	.spot:nth-child(2n) {
		margin-right: 12px;
	}
	.spot:nth-child(3n) {
		margin-right: 0;
	}
}
