/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* - - - - - - - - - - - END CSS RESET - - - - - - - - - - - - - - */

/* - - - - - - - - - - CUSTOM FONT STYLES - - - - - - - - - - - - - */

/*
font-family: 'Fraunces', serif;
font-family: 'Work Sans', sans-serif;

font-family: 'Fraunces';
font-style: normal;
font-weight: 300;

font-family: 'Fraunces';
font-style: italic;
font-weight: 400;

font-family: 'Fraunces';
font-style: normal;
font-weight: 600;

font-family: 'Fraunces';
font-style: normal;
font-weight: 700;

font-family: 'Work Sans';
font-style: normal;
font-weight: 400;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;

font-family: 'Work Sans';
font-style: normal;
font-weight: 600;

*/

/* - - - - - - - - - - BIG CONTAINER STYLES - - - - - - - - - - - - */

html {
	position: relative;
	width: 100%;
	overflow: visible;
}

body {
	position: relative;
	width: 100%;
	overflow: auto;
}



/* - - - - - - - - - - HERO DIV STYLES - - - - - - - - - - - - - - */

.container {
	position: relative;
	/*width: 100%;

	height: 5vw;

	border: 1px solid lime; /*DIAGNOSTIC*/ */
}

#HERO {
	position: relative;
	height: 95vh;
	max-height: 65vw;

	background: url("images/hero.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: 20%;
	background-position-x: center;

}

header {
	position: relative;
	width: 100%;
	height: 6.2vw;

	color: white;
	transition-property: color, background-color;
	transition: 0.5s ease-in-out;
}

header:hover {
	background-color: white;
	color: #1a5062;
	transition-property: color, background-color;
	transition: 0.5s ease-in-out;
}

	header a:link{
		color: white;
		text-decoration: none;
		transition: color 0.5s ease-in-out;
	}

	header a:visited {
	    color: white;
	    text-decoration: none;
	}

	header a:hover {
	    color: white;
	    text-decoration: none;
		 transition: color 0.5s ease-in-out;
	}

	header a:active {
	    color: white;
	    text-decoration: none;
	}


	header:hover a:link {
	    color: #1a5062;
	    text-decoration: none;
	}

	header:hover a:visited {
	    color: #1a5062;
	    text-decoration: none;
	}

	header:hover a:hover {
	    color: #1a5062;
	    text-decoration: none;
	}

	header:hover a:active {
	    color: #1a5062;
	    text-decoration: none;
	}

#NAVBAR {
	position: relative;
	height:  6.2vw;
}

#navbarLinkBox {
	display: inline;
}

.navbarlink {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 1.2vw;
line-height: 1.5em;
letter-spacing: ;
text-align: center;

position: relative;
display: inline-block;
height: 6.2vw;
width: 15%;
padding-top: 1.8em;
float: right;
}

.navbarlink:hover {
	background-color: #1a5062;
	color: white;
}

	.navbarlink:hover a:link {
	    color: white;
	    text-decoration: none;	
	    transition: color 0s;
	}

	.navbarlink:hover a:visited {
	    color: white;
	    text-decoration: none;
	}

	.navbarlink:hover a:hover {
	    color: white;
	    text-decoration: none;
	}

	.navbarlink:hover a:active {
	    color: white;
	    text-decoration: none;
	}

#hamburgerButton {
	display:none;
}

#TITLE {
position: relative;
display: inline-block;
margin-left: 2.3vw;

font-family: 'Fraunces';
font-style: normal;
font-weight: 700;
font-size: 5.5vw;
line-height: 1.5em;
letter-spacing: -.045em;

margin-top: -.3vw;
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-35%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#TAGLINE {
	position: relative;
	margin: 15vw auto 0 auto;
	width: 60%;

animation: 1s ease-out 0s 1 slideInFromTop;
}

#TAGLINE p {
font-family: 'Fraunces';
font-style: normal;
font-weight: 300;
font-size: calc(20px + 4vw);
line-height: 1em;
letter-spacing: ;
color: white;
text-align: center;
}

/* - - - - - - - - - - - PREVIEW STYLES - - - - - - - - - - - - - - */

#PREVIEW {
box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px;
}

#about {
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-size: 1.2vw;
line-height: 1.25em;
letter-spacing: ;
color: white;

background-color: #1a5062;

position: relative;
padding: 1.5em;

height: 32.5vw;
width: 25vw;
}

.previewpanel {
position: relative;
height: 32.5vw;
width: 18.75vw;

transition: 0.25s ease;

box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px;

}

.previewpanel:hover {
	width: 40vw;
	z-index: 100;

	transition: 0.25s ease;
}

.previewpanel h1{
font-size: 0;
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
transition: 0.25s ease;
position: absolute;
top: 0;
left: 0;
}

.previewpanel:hover h1 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 1.8vw;
line-height: 2em;
letter-spacing: ;
color: ;

background: white;
padding: 1vw 2.5vw;

transition: 0.25s ease;
}

.previewpanel a{
font-size: 0;
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;

position: absolute;
bottom: 0;
right: 0;

transition: 0.25s ease;
}

.previewpanel:hover a {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 1.5vw;
line-height: 2em;
letter-spacing: ;

background: white;
padding: 1vw 2.5vw;

transition: 0.25s ease;
}

	.previewpanel a:link{ 
		color: black;
		text-decoration: none;
	}

	.previewpanel a:visited {
	    color: black;
	    text-decoration: none;
	}

	.previewpanel a:hover {
	    color: black;
	    text-decoration: none;
	}

	.previewpanel a:active {
	    color: black;
	    text-decoration: none;
	}

.sectionhead {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: ;
line-height: ;
letter-spacing: ;
color: ;
}

#hotelpanel{
	background: url("images/preview_hotels.jpg") no-repeat center center;
	background-size: cover;

	position: absolute;
	top: 0;
	left: 25vw;
}

#hotelpanel:hover {
 margin-left: -15vw;
}

#naturepanel {
	background: url("images/preview_nature.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: bottom;
	background-position-x: center;

	position: absolute;
	top: 0;
	left: 43.75vw;
}

#naturepanel:hover {
	margin-left: -10vw;
}

#shoppingpanel {
	background: url("images/preview_shopping.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;

	position: absolute;
	top: 0;
	left: 62.5vw;
}

#shoppingpanel:hover {
	margin-left: -10vw;
}

#culturepanel {
	background: url("images/preview_culture.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: 25%;
	background-position-x: center;

	position: absolute;
	top: 0;
	left: 81.25vw;
}

#culturepanel:hover {
	margin-left: -20vw;
}

/* - - - - - - - - - - - - HOTEL STYLES - - - - - - - - - - - - - - */

#HOTELS {
box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

#HOTELS h1 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 2.4vw;
line-height: 2em;
letter-spacing: ;
color: black;
text-align: left;

background: white;
padding: 1vw 2.5vw;

width: 100%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hotellist{
	background: #07838d;
	height: 10vw;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
text-align: left;
}

.hotellist:hover{
 background-color: #1a5062;
 transition: 0.25s ease-in-out;
}
.hotelimglist{
 height: 10vw;
 width: 50vw;
 position: absolute;
 left: 0;
}

.hotelimg {
 object-fit: cover;
 width: inherit;
 height: inherit;
}

.hotelname {
height: 100%;
width: 30vw;

position: absolute;
left: 50vw;

text-align: center;

padding-top: 1.65em;
}

.hotelstars {
	width: 10vw;

	position: absolute;
	left: 80vw;
	padding-top: 1.65em;
}

.hotellinklist{
	position: absolute;
	left: 90vw;
	margin-top: 1.65em;
	background-color: black;
	width: 2.9vw;
	height: 2.9vw;
	border-radius: .2vw;
	 transition: 0.25s ease-in-out;
}

.hotellink{
	width: 2.5vw;
	height: 2.5vw;
	filter: invert(100%);
	margin: .08em auto auto .08em;
	 transition: 0.25s ease-in-out;
}

.hotellinklist:hover{
 transition: 0.25s ease-in-out;
 filter: invert(100%);
}

/* - - - - - - - - - - - - SHOPPING STYLES - - - - - - - - - - - - - */

#SHOPPING {
box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

#SHOPPING h1 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 2.4vw;
line-height: 2em;
letter-spacing: ;
color: black;
text-align: left;

background: white;
padding: 1vw 2.5vw;

width: 100%;
z-index: 100;

}

.shoplist{
	height: 10vw;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
text-align: left;
width: 50vw;
background-color: #07838d;
transition: 0.25s ease-in-out;
}

.shoplist:hover{
	background-color: white;
	transition: 0.25s ease-in-out;
}

.shopimglist{
 height: 10vw;
 width: 25vw;
 position: absolute;
 left: 0;
}

.shopimg {
 object-fit: cover;
 width: inherit;
 height: inherit;
}

.shopname {
height: 100%;
width: 25vw;

position: absolute;
left: 25vw;

text-align: center;

padding-top: 0.65em;
}

.shoplist button{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
background-color: #07838d;
transition: 0.25s ease-in-out;
    margin-top: -1.3vw;
    width: 100%;
    height: 29%;
    border: 0;
}

.shoplist button:hover {
 background-color: white;
 color: black;
 transition-property: background-color, color;
 transition: 0.25s ease-in-out;
}

#shopping2{
position: absolute;
top: 6.8vw;
right: 0;
}

.shoplist2{
	background: #07838d;
	height: 10vw;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
text-align: left;
width: 50vw;
}

.shoplist2:hover{
 background-color: white;
 color: black;
 transition: 0.25s ease-in-out;
}

.shoplist2 button{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
background-color: #07838d;
transition: 0.25s ease-in-out;
    margin-top: -3.3vw;
    width: 100%;
    height: 37.5%;
    border: 0;
}

.shoplist2 button:hover {
 background-color: white;
 color: black;
 transition-property: background-color, color;
 transition: 0.25s ease-in-out;
}

.shopimglist2{
 height: 10vw;
 width: 25vw;
 position: absolute;
 left: 0;
}

.shopimg2 {
 object-fit: cover;
 width: inherit;
 height: inherit;
}

.shopname2 {
height: 100%;
width: 25vw;

position: absolute;
left: 25vw;

text-align: center;

padding-top: 1.65em;
}

.shopcard {
	height: 100%;
	width: 50vw;
	right: 0;
	background: #1a5062;
	position: absolute;
}

.shopcard h2 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 3vw;
line-height: ;
letter-spacing: ;
color: white;

margin-left: 5vw;
margin-top: 9vw;
}

.shopcard p {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 1.8vw;
line-height: 1.25em ;
letter-spacing: ;
color: white;

margin-left: 5vw;
margin-top: 1.2vw;
margin-right: 6vw;
}

.shopcardframe{
	position: absolute;
	top: 0;
	z-index: 100;
	height: 100%;
	width: 100%;
	display: none
}

.shopcardimage{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
}

.shopcardnav {
position: absolute;
top: 2vw;
right: 2vw;

width: 5vw;
height: 5vw;
}

#StreetFoodCard {
background: url(images/shopping_StreetFood.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position-y: left;
		background-position-x: left;
}

#FineDiningCard {
background: url(images/shopping_FineDiningSUAY.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position-y: left;
		background-position-x: -3vw;
}

#StreetMarketsCard {
background: url(images/shopping_streetmarket.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position-y: left;
		background-position-x: left;
}

#MallsCard {
background: url(images/shopping_mallsCENTRALPHUKETFLORESTA.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position-y: left;
		background-position-x: left;
}

#BarsCard {
background: url(images/shopping_bars.jpg);
		background-repeat: no-repeat;
		background-size: 50% 100%;
		background-position-y: left;
		background-position-x: left;
}

#ClubsCard {
background: url(images/shopping_clubsILLUZION.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position-y: left;
		background-position-x: left;
}

/* - - - - - - - - - - - - NATURE STYLES - - - - - - - - - - - - - - */

.NATURE {
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.NATURE h1 {
font-size: 0;
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 2.4vw;
line-height: 2em;
position: absolute;
top: 0;
left: 0;

background: white;
padding: 1vw 2.5vw;

box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;

z-index: 100;
}

.NATUREbutton {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 2em;
letter-spacing: ;

border: 0;

position: absolute;
bottom: 0;
right: 0;

padding: 2vw 3.5vw;

	background: #07838d;
	color: white;

transition: 0.25s ease-in-out;
}

.NATUREbutton:hover {
	background: white;
	color: black;
	transition: 0.25s ease-in-out;
}

.natureslide {
	position: absolute;
height: 42.5vw;
width: 100vw;
top: -42.5vw;
}

.natureslideHERO{
		position: relative;
height: 42.5vw;
width: 100vw;
}

.gallerynav {

}

.naturecard{
background-color: #1a5062;

 height: 42.5vw;
 width: 100vw;

display: none;
position: absolute;

top: -42.5vw;
}

.naturecardhead{
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 3vw;
line-height: ;
letter-spacing: ;
color: white;

position: absolute;
left: 55vw;
top: 10vw;
right: 5vw;
}

.naturecardbody{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 1.8vw;
line-height: 1.25em ;
letter-spacing: ;
color: white;

position: absolute;
left: 55vw;
top: 15vw;
right: 5vw;
}

.naturecardnav{
position: absolute;
top: 2vw;
right: 2vw;

width: 5vw;
height: 5vw;
}

#KataBeach{
background: url("images/nature_KataBeach.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
	display: block;

}

#KataBeachCard{
	background: url("images/nature_KataBeach.jpg");
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;

	top: 0;
}

#PatongBeach{
background: url("images/nature_PatongBeach.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#PatongBeachCard{
	background: url("images/nature_PatongBeach.jpg");
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}

#Sirinat{
background: url("images/nature_SirinatTOURISMTHAILAND.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#SirinatCard{
	background: url("images/nature_SirinatTOURISMTHAILAND.jpg");
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}

#GreenElephant{
background: url("images/nature_GreenElephantSanctuarypark.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#GreenElephantCard{
	background: url("images/nature_GreenElephantSanctuarypark.jpg");
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
	z-index: 100;
}


#GreenElephantCard p{
 position: absolute;
 top: 18vw;
}

#Windmill{
background: url("images/nature_WindmillViewpoint.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#WindmillCard{
	background: url("images/nature_WindmillViewpoint.jpg");
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}

#RawaiBeach{
background: url("images/nature_RawaiBeach.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;

	display: none;
}

#RawaiBeachCard{
	background: url("images/nature_RawaiBeach.jpg");
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}


.arrownew {
position: absolute;
}

.arrownew img{
	height: 7vw;
	width: 7vw;
}

#rightarrownew {
	right: 3.5vw;
	top: 17vw;
}

#leftarrownew {
	left: 3.5vw;
	top: 17vw;
}

.arrowgradient{
	position: absolute;
	right: 0;
	top: 0;

	height: 42.5vw;
	width: 16vw;

	background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.15));

	opacity: 0;
	transition: 100ms ease-in 100ms;

}

.arrowgradient:hover {
	opacity: 1;
	transition: 100ms ease-in 100ms;
}

.arrowgradientleft{
	position: absolute;
	left: 0;
	top: 0;

	height: 42.5vw;
	width: 16vw;

	background-image: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.15));

	opacity: 0;
	transition: 100ms ease-in 100ms;

}

.arrowgradientleft:hover {
	opacity: 1;
	transition: 100ms ease-in 100ms;
}


/* - - - - - - - - - - - - CULTURE STYLES - - - - - - - - - - - - - */

.CULTURE {
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.CULTURE h1 {
font-size: 0;
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 2.4vw;
line-height: 2em;
position: absolute;
top: 0;
left: 0;

background: white;
padding: 1vw 2.5vw;

z-index: 100;

box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.CULTUREbutton {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 2em;
letter-spacing: ;

border: 0;

position: absolute;
bottom: 0;
right: 0;

padding: 2vw 3.5vw;

	background: #07838d;
	color: white;

transition: 0.25s ease-in-out;
}

.CULTUREbutton:hover {
	background: white;
	color: black;
	transition: 0.25s ease-in-out;
}

.cultureslide {
	position: absolute;
height: 42.5vw;
width: 100vw;
top: -42.5vw;
}

.cultureslideHERO{
		position: relative;
height: 42.5vw;
width: 100vw;
}

.gallerynav {

}

.culturecard{
background-color: #1a5062;

 height: 42.5vw;
 width: 100vw;

display: none;
position: absolute;

top: 0;
}

.culturecardhead{
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 3vw;
line-height: ;
letter-spacing: ;
color: white;

position: absolute;
left: 55vw;
top: 10vw;
right: 5vw;
}

.culturecardbody{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 1.8vw;
line-height: 1.25em ;
letter-spacing: ;
color: white;

position: absolute;
left: 55vw;
top: 15vw;
right: 5vw;
}

.culturecardnav{
position: absolute;
top: 2vw;
right: 2vw;

width: 5vw;
height: 5vw;
}

#BigBuddha{
background: url("images/culture_BigBuddha.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: -22vw;
	background-position-x: center;
	display: block;

}

#BigBuddhaCard{
	background: url("images/culture_BigBuddha.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: center;
	background-position-x: -13.75vw;
	background-color: #1a5062;

	top: 0;
}

#Heroines{
background: url("images/culture_TwoHeroines.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;

/*position: relative;
top: 0;*/
}

#HeroinesCard{
	background: url("images/culture_TwoHeroines.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: center;
	background-position-x: -13.75vw;
	background-color: #1a5062;

	top: -42.5vw;
}

#HeroinesCard p{
	padding-top: 3vw;
}

#OldTown{
background: url("images/culture_PhuketOldTown.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#OldTownCard{
	background: url("images/culture_PhuketOldTown.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: center;
	background-position-x: -13.75vw;
	background-color: #1a5062;

	top: -42.5vw;
}


/*.navlink {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
color: black;
font-size: 5vw;
line-height: 2em;
letter-spacing: ;

position: absolute;
bottom: 15vw;
background: white;
}

#leftarrow{
left: 0;
}

#rightarrow{
right: 0;
}*/


/* - - - - - - - - - - - - MAPANDQUOTE STYLES - - - - - - - - - - - */

#BLOCKQUOTEDIV {
margin-top: auto;
height: 20vw;
background: #a7c2d2;

font-family: 'Fraunces';
font-style: italic;
font-weight: 400;
font-size: 2vw;
color: black;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

#BLOCKQUOTEDIV p{
	padding-top: 7vw;
	padding-left: 15vw;
	padding-right: 15vw;
}

#BLOCKQUOTEDIV img{
	width: 9%;
	padding-top: 3vw;
}

#MAPDIV {

}




/* - - - - - - - - - - - - FOOTER STYLES - - - - - - - - - - - - - - */

#FOOTER {
	margin-top: auto;
	height: 15vw;
	background: #1a5062;
	box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

#FOOTER p{
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-size: 1vw;
line-height: 1em;
letter-spacing: ;
color: white;
text-align: left;
padding-left: 5vw;
}

#FOOTER h3{
	font-family: 'Fraunces';
font-style: regular;
font-weight: 700;
font-size: 2.5vw;
color: white;
padding-top: 5vw;
padding-left: 5vw;
letter-spacing: -.05em;
}

#FOOTER h4{
	font-family: 'Fraunces';
font-style: regular;
font-weight: 500;
font-size: 1.5vw;
color: white;
padding-left: 6vw;
padding-bottom: 1vw;
}




/* - - - - - - - - - - - - TAG STYLES - - - - - - - - - - - - - - - */

.lookit{
	border: 5px solid orange;
	background-color: yellow;
}

.sectionhead {
	
	}

























































/* - - - - - - - - - - MOBILE BREAKPOINT - - - - - - - - - - - - - */

@media only screen and (max-width: 768px) {

.container {
	position: relative;
	/*width: 100%;

	height: 5vw;

	border: 1px solid lime; /*DIAGNOSTIC*/ */
}

#HERO {
	position: relative;
	height: 105vh;
	max-height: 85vh;

	background: url("images/hero.jpg");
	background-repeat: no-repeat;
  background-size: 385%;
  background-position-y: 50%;
  background-position-x: 55.5%;

}


header {
	position: relative;
	width: 100%;
	height: 18vw;

	color: white;
}

header:hover {
	color: white;
	background-color: rgba(0, 0, 0, 0);
	transition-property: none;
	transition: none;
}

	header a:link{
		color: white;
		text-decoration: none;
		transition: none;
	}

	header a:visited {
	    color: white;
	    text-decoration: none;
	}

	header a:hover {
	    color: white;
	    text-decoration: none;
		 transition: none;
	}

	header a:active {
	    color: white;
	    text-decoration: none;
	}

		header:hover a:link {
	    color: white;
	    text-decoration: none;
	}

	header:hover a:visited {
	    color: white;
	    text-decoration: none;
	}

	header:hover a:hover {
	    color: white;
	    text-decoration: none;
	}

	header:hover a:active {
	    color: white;
	    text-decoration: none;
	}

#NAVBAR {
	position: relative;
	height:  0;
}

.navbarlink {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 6vw;
line-height: 1.5em;
letter-spacing: ;
text-align: left;

background-color: #1a5062;

position: relative;
height: 10vw;
width: 100%;
padding-top: 1em;
	padding-bottom: 2.3em;
	padding-left: 1.6em;
	padding-right: auto;
float: none;
z-index: 1;
margin: -1px auto auto auto;

display: block;

}

#navbarLinkBox {
	display: none;
}

.navbarlink:hover {
	background-color: white;
	color: #1a5062;
}

	.navbarlink:hover a:link {
	    color: white;
	    text-decoration: none;	
	    transition: color 0s;
	}

	.navbarlink:hover a:visited {
	    color: white;
	    text-decoration: none;
	}

	.navbarlink:hover a:hover {
	    color: white;
	    text-decoration: none;
	}

	.navbarlink:hover a:active {
	    color: white;
	    text-decoration: none;
	}


		.navbarlink a:link {
	    color: white;
	    text-decoration: none;	
	    transition: color 0s;
	}

	.navbarlink a:visited {
	    color: white;
	    text-decoration: none;
	}

	.navbarlink a:hover {
	    color: white;
	    text-decoration: none;
	}

	.navbarlink a:active {
	    color: white;
	    text-decoration: none;
	}

#hamburgerButton {
	display: inline-block;
	float: right;
	margin: 3.5vh 4vh auto auto;
}

#TITLE {
position: relative;
display: inline-block;
margin: 4vw auto auto 9vw;

font-family: 'Fraunces';
font-style: normal;
font-weight: 700;
font-size: 10.5vw;
line-height: 1.5em;
letter-spacing: -.045em;

}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-35%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#TAGLINE {
	position: relative;
	margin: 35vw auto auto auto;

	animation: 1s ease-out 0s 1 slideInFromTop;
	width: 75%;
}

#TAGLINE p {
font-family: 'Fraunces';
font-style: normal;
font-weight: 300;
font-size: calc(35px + 4vw);
line-height: 1em;
letter-spacing: ;
color: white;
text-align: center;
filter: drop-shadow(0 0 0.5rem #303030);
}

/* - - - - - - - - - - - PREVIEW STYLES - - - - - - - - - - - - - - */

#PREVIEW {
box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px;
}

#about {
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-size: 5vw;
line-height: 1.25em;
letter-spacing: ;
color: white;

background-color: #1a5062;

position: relative;
padding: 1.5em;

height: 143vw;
width: 100vw;

display: block;
}

.previewpanel {
position: relative;
height: 32.5vw;
width: 18.75vw;

transition: 0.25s ease;

box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px;

display: none;

}

.previewpanel:hover {
	width: 40vw;
	z-index: 100;

	transition: 0.25s ease;
}

.previewpanel h1{
font-size: 0;
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
transition: 0.25s ease;
position: absolute;
top: 0;
left: 0;
}

.previewpanel:hover h1 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 1.8vw;
line-height: 2em;
letter-spacing: ;
color: ;

background: white;
padding: 1vw 2.5vw;

transition: 0.25s ease;
}

.previewpanel a{
font-size: 0;
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;

position: absolute;
bottom: 0;
right: 0;

transition: 0.25s ease;
}

.previewpanel:hover a {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 1.5vw;
line-height: 2em;
letter-spacing: ;

background: white;
padding: 1vw 2.5vw;

transition: 0.25s ease;
}

	.previewpanel a:link{ 
		color: black;
		text-decoration: none;
	}

	.previewpanel a:visited {
	    color: black;
	    text-decoration: none;
	}

	.previewpanel a:hover {
	    color: black;
	    text-decoration: none;
	}

	.previewpanel a:active {
	    color: black;
	    text-decoration: none;
	}

.sectionhead {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: ;
line-height: ;
letter-spacing: ;
color: ;
}

#hotelpanel{
	background: url("images/preview_hotels.jpg") no-repeat center center;
	background-size: cover;

	position: absolute;
	top: 0;
	left: 25vw;
}

#hotelpanel:hover {
 margin-left: -15vw;
}

#naturepanel {
	background: url("images/preview_nature.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: bottom;
	background-position-x: center;

	position: absolute;
	top: 0;
	left: 43.75vw;
}

#naturepanel:hover {
	margin-left: -10vw;
}

#shoppingpanel {
	background: url("images/preview_shopping.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;

	position: absolute;
	top: 0;
	left: 62.5vw;
}

#shoppingpanel:hover {
	margin-left: -10vw;
}

#culturepanel {
	background: url("images/preview_culture.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: 25%;
	background-position-x: center;

	position: absolute;
	top: 0;
	left: 81.25vw;
}

#culturepanel:hover {
	margin-left: -20vw;
}

/* - - - - - - - - - - - - HOTEL STYLES - - - - - - - - - - - - - - */

#HOTELS {
box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

#HOTELS h1 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 5.5vw;
line-height: 2em;
letter-spacing: ;
color: black;
text-align: left;

background: white;
padding: 1vw 3.5vw;

width: 100%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hotellist{
	background: #07838d;
	height: 30vw;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 4vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
text-align: left;
}

.hotellist:hover{
 background-color: #07838d;
 transition: 0.25s ease-in-out;
}
.hotelimglist{
 height: 30vw;
 width: 50vw;
 position: absolute;
 left: 0;
}

.hotelimg {
 object-fit: cover;
 width: inherit;
 height: inherit;
}

.hotelname {
height: 17vw;
width: 50vw;
position: relative;
left: 50vw;
text-align: left;
padding-top: 3vw;
padding-left: 2.5vw;
padding-bottom: auto;
padding-right: 3vw;
display: block;
background-color: #1a5062;
}

.hotelstars {
	width: 10vw;

	position: relative;
	left: 52vw;
	padding-top: 1em;
	display: block;
}

.hotellinklist{
	position: relative;
	left: 90vw;
	margin-top: -1.75em;
	background-color: black;
	width: 7vw;
	height: 7vw;
	border-radius: 1.5vw;
	 transition: 0.25s ease-in-out;
}

.hotellink{
	width: 6vw;
	height: 6vw;
	filter: invert(100%);
	margin: .12em auto auto .1em;
	 transition: 0.25s ease-in-out;
}

.hotellinklist:hover{
 transition: 0.25s ease-in-out;
 filter: invert(100%);
}

/* - - - - - - - - - - - - SHOPPING STYLES - - - - - - - - - - - - - */

#SHOPPING {
box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;

height: 213vw;
}

#SHOPPING h1 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 5.5vw;
line-height: 2em;
letter-spacing: ;
color: black;
text-align: left;

background: white;
padding: 1vw 3.5vw;

width: 100%;
z-index: 100;

}

.shoplist{
	height: 33vw;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
text-align: left;
width: 100vw;
background-color: #07838d;
transition: none;

box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.shoplist:hover{
	background-color: #07838d;
	transition: none;
}

.shopimglist{
 height: 35vw;
 width: 45vw;
 position: absolute;
 left: 0;
}

.shopimg {
 object-fit: cover;
 width: inherit;
 height: inherit;
}

.shopname {
height: 100%;
width: 55vw;

position: absolute;
left: 45vw;

text-align: center;

padding-top: 0.65em;
}

.shoplist button{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
background-color: #07838d;
transition: 0.25s ease-in-out;
    margin-top: -1.3vw;
    width: 55vw;
    height: 16%;
    border: 0;
}

.shoplist button:hover {
 background-color: white;
 color: black;
 transition-property: background-color, color;
 transition: 0.25s ease-in-out;
}

#shopping2{
position: absolute;
top: 114vw;
right: auto;
left: 0;
}

.shoplist2{
	background: #07838d;
	height: 33vw;

font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
text-align: left;
width: 100vw;
}

.shoplist2:hover{
 background-color: white;
 color: black;
 transition: 0.25s ease-in-out;
}

.shoplist2 button{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.5em;
letter-spacing: ;
color: white;
background-color: #07838d;
transition: 0.25s ease-in-out;
    margin-top: -3.3vw;
    width: 55vw;
    height: 31.5%;
    border: 0;
}

.shoplist2 button:hover {
 background-color: white;
 color: black;
 transition-property: background-color, color;
 transition: 0.25s ease-in-out;
}

.shopimglist2{
 height: 35vw;
 width: 45vw;
 position: absolute;
 left: 0;
}

.shopimg2 {
 object-fit: cover;
 width: inherit;
 height: inherit;
}

.shopname2 {
height: 100%;
width: 25vw;

position: absolute;
left: 45vw;

text-align: center;

padding-top: 1.65em;
}

.shopcard {
	height: 69vh;
	width: 100vw;
	right: 0;
	bottom: 0;
	background: #1a5062;
	position: absolute;
}

.shopcard h2 {
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 7vw;
line-height: ;
letter-spacing: ;
color: white;

margin-left: 5vw;
margin-top: 20vw;
}

.shopcard p {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.25em ;
letter-spacing: ;
color: white;

margin-left: 5vw;
margin-top: 5vw;
margin-right: 6vw;
}

.shopcardframe{
	position: absolute;
	top: 0;
	z-index: 100;
	height: 100%;
	width: 100%;
	display: none
}

.shopcardimage{
	position: absolute;
	height: 50vh;
	width: 100vw;
	left: 0;
}

.shopcardnav {
position: absolute;
top: 5vw;
right: 5vw;

width: 8vw;
height: 8vw;
}

#StreetFoodCard {
background: url(images/shopping_StreetFood.jpg);
		background-repeat: no-repeat;
		background-size: 100vw ;
		background-position-y: 6vh;
		background-position-x: left;
}

#FineDiningCard {
background: url(images/shopping_FineDiningSUAY.jpg);
		background-repeat: no-repeat;
		background-size: 100vw ;
		background-position-y: 6vh;
		background-position-x: left;
}

#StreetMarketsCard {
background: url(images/shopping_streetmarket.jpg);
		background-repeat: no-repeat;
		background-size: 100vw ;
		background-position-y: 6vh;
		background-position-x: left;
}

#MallsCard {
background: url(images/shopping_mallsCENTRALPHUKETFLORESTA.jpg);
		background-repeat: no-repeat;
		background-size: 100vw 35vh;
		background-position-y: 6vh;
		background-position-x: left;
}

#BarsCard {
background: url(images/shopping_bars.jpg);
		background-repeat: no-repeat;
		background-size: 100vw;
		background-position-y: 6vh;
		background-position-x: left;
}

#ClubsCard {
background: url(images/shopping_clubsILLUZION.jpg);
		background-repeat: no-repeat;
		background-size: 100vw ;
		background-position-y: 6vh;
		background-position-x: left;
}

/* - - - - - - - - - - - - NATURE STYLES - - - - - - - - - - - - - - */

.NATURE {
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.NATURE h1 {
font-size: 0;
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 5.5vw;
line-height: 2em;
letter-spacing: ;
color: black;
text-align: left;

background: white;
padding: 1vw 3.5vw;

box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;

z-index: 100;
}

.NATUREbutton {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 6vw;
line-height: 2em;
letter-spacing: ;

border: 0;

position: absolute;
bottom: 0;
right: 0;

padding: 2vw 3.5vw;

	background: #07838d;
	color: white;

transition: 0.25s ease-in-out;
}

.NATUREbutton:hover {
	background: white;
	color: black;
	transition: 0.25s ease-in-out;
}

.natureslide {
	position: absolute;
height: 130vw;
width: 100vw;
top: -130vw;
}

.natureslideHERO{
		position: relative;
height: 130vw;
width: 100vw;
}

.gallerynav {

}

.naturecard{
background-color: #1a5062;

 height: 130vw;
 width: 100vw;

display: none;
position: absolute;

top: -130vw;
}

.naturecardhead{
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 8vw;
line-height: ;
letter-spacing: ;
color: white;

position: absolute;
left: 6vw;
top: 33vw;
right: auto;
}

.naturecardbody{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.25em ;
letter-spacing: ;
color: white;

position: absolute;
left: 6vw;
top: 45vw;
right: 9vw;
}

.naturecardnav{
position: absolute;
top: 22vw;
right: 7vw;

width: 7vw;
height: 7vw;
}

#KataBeach{
background: url("images/nature_KataBeach.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
	display: block;

}

#KataBeachCard{
	background: url("images/nature_KataBeach.jpg");
	background-repeat: no-repeat;
	background-size: 0;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;

	top: 0;
}

#PatongBeach{
background: url("images/nature_PatongBeach.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#PatongBeachCard{
	background: url("images/nature_PatongBeach.jpg");
	background-repeat: no-repeat;
	background-size: 0;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}

#Sirinat{
background: url("images/nature_SirinatTOURISMTHAILAND.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#SirinatCard{
	background: url("images/nature_SirinatTOURISMTHAILAND.jpg");
	background-repeat: no-repeat;
	background-size: 0;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}

#GreenElephant{
background: url("images/nature_GreenElephantSanctuarypark.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#GreenElephantCard{
	background: url("images/nature_GreenElephantSanctuarypark.jpg");
	background-repeat: no-repeat;
	background-size: 0;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
	z-index: 0;
}


#GreenElephantCard p{
 position: absolute;
 top: 54vw;
}

#Windmill{
background: url("images/nature_WindmillViewpoint.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#WindmillCard{
	background: url("images/nature_WindmillViewpoint.jpg");
	background-repeat: no-repeat;
	background-size: 0;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}

#RawaiBeach{
background: url("images/nature_RawaiBeach.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;

	display: none;
}

#RawaiBeachCard{
	background: url("images/nature_RawaiBeach.jpg");
	background-repeat: no-repeat;
	background-size: 0;
	background-position-y: center;
	background-position-x: left;
	background-color: #1a5062;
}


.arrownew {
position: absolute;
}

.arrownew img{
	height: 7vw;
	width: 7vw;
}

#rightarrownew {
	right: 0;
	top: 0;
	padding-right: 3.5vw;
	padding-top: 33vh;
	padding-bottom: 33vh;
}

#leftarrownew {
	left: 0;
	top: 0;
	padding-right: 3.5vw;
	padding-top: 33vh;
	padding-bottom: 33vh;
}

.arrowgradient{
	position: absolute;
	right: 0;
	top: 0;

	height: 75vw;
	width: 16vw;

	background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.15));

	opacity: 0;
	transition: 100ms ease-in 100ms;

}

.arrowgradient:hover {
	opacity: 1;
	transition: 100ms ease-in 100ms;
}

.arrowgradientleft{
	position: absolute;
	left: 0;
	top: 0;

	height: 75vw;
	width: 16vw;

	background-image: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.15));

	opacity: 0;
	transition: 100ms ease-in 100ms;

}

.arrowgradientleft:hover {
	opacity: 1;
	transition: 100ms ease-in 100ms;
}


/* - - - - - - - - - - - - CULTURE STYLES - - - - - - - - - - - - - */

.CULTURE {
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.CULTURE h1 {
font-size: 0;
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: 5.5vw;
line-height: 2em;
letter-spacing: ;
color: black;
text-align: left;

background: white;
padding: 1vw 3.5vw;

z-index: 100;

box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.CULTUREbutton {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 6vw;
line-height: 2em;
letter-spacing: ;

border: 0;

position: absolute;
bottom: 0;
right: 0;

padding: 2vw 3.5vw;

	background: #07838d;
	color: white;

transition: 0.25s ease-in-out;
}

.CULTUREbutton:hover {
	background: white;
	color: black;
	transition: 0.25s ease-in-out;
}

.cultureslide {
	position: absolute;
height: 130vw;
width: 100vw;
top: -130vw;
}

.cultureslideHERO{
		position: relative;
height: 130vw;
width: 100vw;
}

.gallerynav {

}

.culturecard{
background-color: #1a5062;

 height: 130vw;
 width: 100vw;

display: none;
position: absolute;

top: -130vw;
}

.culturecardhead{
font-family: 'Fraunces';
font-style: normal;
font-weight: 600;
font-size: .01vw;
line-height: ;
letter-spacing: ;
color: white;

position: absolute;
left: 55vw;
top: 10vw;
right: 5vw;
}

.culturecardbody{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 5vw;
line-height: 1.25em ;
letter-spacing: ;
color: white;

position: absolute;
left: 6vw;
top: 75vw;
right: 8vw;
}

.culturecardnav{
position: absolute;
top: 22vw;
right: 7vw;

width: 7vw;
height: 7vw;
}

#BigBuddha{
background: url("images/culture_BigBuddha.jpg");

	background-repeat: no-repeat;
	background-size: 230%;
	background-position-y: -22vw;
	background-position-x: center;
	display: block;

}

#BigBuddhaCard{
	background: url("images/culture_BigBuddha.jpg");
	background-repeat: no-repeat;
	background-size: 100vw;
	background-position-y: top;
	background-position-x: auto;
	background-color: #1a5062;

	top: 0;
}

#Heroines{
background: url("images/culture_TwoHeroines.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: -75vw;
display: none;

/*position: relative;
top: 0;*/
}

#HeroinesCard{
	background: url("images/culture_TwoHeroines.jpg");
	background-repeat: no-repeat;
	background-size: 100vw;
	background-position-y: top;
	background-position-x: auto;
	background-color: #1a5062;

	top: -130vw;
}

#HeroinesCard p{
	padding-top: 3vw;
}

#OldTown{
background: url("images/culture_PhuketOldTown.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
display: none;
}

#OldTownCard{
	background: url("images/culture_PhuketOldTown.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: top;
	background-position-x: auto;
	background-color: #1a5062;

	top: -130.05vw;
}


/*.navlink {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
color: black;
font-size: 5vw;
line-height: 2em;
letter-spacing: ;

position: absolute;
bottom: 15vw;
background: white;
}

#leftarrow{
left: 0;
}

#rightarrow{
right: 0;
}*/


/* - - - - - - - - - - - - MAPANDQUOTE STYLES - - - - - - - - - - - */

#BLOCKQUOTEDIV {
margin-top: auto;
height: 87vw;
background: #a7c2d2;

font-family: 'Fraunces';
font-style: italic;
font-weight: 400;
font-size: 7.5vw;
color: black;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

#BLOCKQUOTEDIV p{
	padding-top: 9vw;
	padding-left: 15vw;
	padding-right: 15vw;
}

#BLOCKQUOTEDIV img{
	width: 50%;
	padding-top: 8vw;
}

#MAPDIV {

}




/* - - - - - - - - - - - - FOOTER STYLES - - - - - - - - - - - - - - */

#FOOTER {
	margin-top: auto;
	height: 45vw;
	background: #1a5062;
	box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

#FOOTER p{
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-size: 3.5vw;
line-height: 2em;
letter-spacing: ;
color: white;
text-align: left;
padding-left: 5vw;
}

#FOOTER h3{
	font-family: 'Fraunces';
font-style: regular;
font-weight: 700;
font-size: 10.5vw;
color: white;
padding-top: 7vw;
padding-left: 7vw;
letter-spacing: -.05em;
}

#FOOTER h4{
	font-family: 'Fraunces';
font-style: regular;
font-weight: 500;
font-size: 5.5vw;
color: white;
padding-left: 14vw;
padding-bottom: 4vw;
}



}



/* - - - - - - - - - - MOBILE BREAKPOINT END - - - - - - - - - - - */







