:root{

  /* Villa San Vincenzo Brochure color scheme */
  --lightGreen: #C3D5C3;
  --darkGreen: #7D8961;


  --overlay: rgba(0, 0, 0, 0.4);


  /* _______________________________________ */
}




@charset "utf-8";

@keyframes rotate { 100% { transform:rotate(-360deg); } }

body {
  position: relative;
  z-index: -100000;
	/*font-family: "Open Sans", sans-serif;*/
  /* font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
   */
   font-family: "Miller Text Rom";
   font-display: swap;
   font-style: normal;
   font-weight: normal;
	font-size: 16px;
	color: var(--darkGreen);
	background-color: var(--lightGreen);
	font-weight: 400;
	line-height: 22px;
}

h1, h2, h3{
  font-family: "Miller Text Rom";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/
*/
img, object, embed, video {
	max-width: 100%;
}


/* IE 6 does not support max-width so default to width 100% */


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;

	Inspiration from "Responsive Web Design" by Ethan Marcotte
	http://www.alistapart.com/articles/responsive-web-design

	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}



.imgfade {
	opacity: 1.0;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	margin: 0px;
	padding: 0px;
}
.imgfade:hover {
	opacity: 0.8;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-bottom: 10px;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


.red {
	background-color: #BE1621;
}
.orange {
	background-color: #F39200;
}
.yellow {
	background-color: #e2e941;
}

.white {
	background-color: #FFF;
}


.green {
	background-color: #C3D500;
}
.ltgreen {
	background-color: #9cca22;
}
.dkgreen {
	background-color: #16341e;
}

.green-trans {
	background: rgba(42, 147, 99, 0.6);
}
.brown-trans {
	background-color: rgba(176, 164, 114, 0.6);
}


.pink {
	background-color: #E00071;
}
.ltpink {
	background-color: #FFBEDB;
}


.pink-gradient {
	background-image: url(/images/bg_topbar.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
}



.grey {
	background-color: #333333;
}

.ltgrey {
	background-color: #f2f2f2;
}

.ltorange {
	background-color: #FADEC5;
}



.text-grey {
	color: #333;
}

.text-yellow {
	color: #0074c8;
}

.text-red-highlight {
	font-weight: bold;
	color: #FFF;
	background-color: #C00;
	display: inline-block;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
}
.text-orange {
	color: #F39200;
}

.text-center {
	text-align: center;
}
.link-arrow-orange {
	background-image: url(/images/link-arrow-orange.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	color: #E87D1D;
	text-decoration: none;
}
.link-white {
	color: #FFF;
	text-decoration: none;
}



.link-white:hover {
	color: #333;
	text-decoration: none;
}
.link-yellow {
	color: #0074c8;
	text-decoration: none;
}

.link-button-white {
	color: #FFFFFF;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	margin-top: 5px;
	border: 1px solid #FFF;
}
.link-button-white:hover {
	background-color: #333;
	color: #FFFFFF;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
}



.link-button-green {
	color: #FFFFFF;
	text-decoration: none;
	display: inline-block;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	font-weight: bold;
	line-height: 16px;
	border: 1px solid #FFFFFF;
}


.link-button-green:hover {
	color: #FFF;
	text-decoration: none;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	background-color: #333;
}

*::-webkit-input-placeholder {
    color: #666666;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: #666666;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: #666666;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: #666666;
}
.link-rotate {
	/* Firefox */
-moz-transition: all 1s ease;
/* WebKit */
-webkit-transition: all 1s ease;
/* Opera */
-o-transition: all 1s ease;
/* Standard */
transition: all 1s ease;
}

.link-rotate:hover {
	 -moz-transform: scale(2) rotate(30deg);
/* WebKit */
-webkit-transform: scale(1.2) rotate(30deg);
/* Opera */
-o-transform: scale(2) rotate(30deg);
/* Standard */
transform: scale(2) rotate(30deg);
}

.link-translate {
	-webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

.link-translate:hover {
	-ms-transform: translate(20px,0px); /* IE 9 */
   	-webkit-transform: translate(20px,0px); /* Chrome, Safari, Opera */
    transform: translate(20px,0px);
}

.link-scale {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}

.link-scale:hover {
	-ms-transform: scale(1.1,1.1); /* IE 9 */
    -webkit-transform: scale(1.1,1.1); /* Chrome, Safari, Opera */
    transform: scale(1.1,1.1);
}

.link-opacity {
	opacity: 1;
   transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
}

.link-opacity:hover {
	opacity: 0.5;

}

#enquiryform td {
	padding-bottom: 10px;
}

#enquiryform input {
	width: 94%;
	padding: 2%;
	background-color: #262626;
	border: 1px solid #666666;
	color: #666666;
}
#enquiryform textarea {
	width: 94%;
	padding-right: 2%;
	padding-left: 2%;
	height: 60px;
	background-color: #262626;
	border: 1px solid #666666;
	color: #666666;
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
.img-right {
	float: right;
	margin-bottom: 15px;
	margin-left: 15px;
}
.img-center {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.test {
	overflow: hidden;
	background-image: url(/images/bgd_glare.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	text-decoration: none;
}
.cta {
	font-weight: 400;
	color: #333;
	display: block;
	line-height: 24px;
	text-align: center;
}




.overlay {
	background: transparent;
	position: relative;
	width: 60%;
	height: 400px; /* your iframe height */
	top: 400px;  /* your iframe height */
	margin-top: -400px;  /* your iframe height */
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}


#spin {
    -webkit-animation: rotation 8s infinite linear;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(360deg);}
}



#pulse {
    border: 3px solid #999;
    -webkit-border-radius: 30px;
    height: 18px;
    width: 18px;
    position: absolute;
    left:20px;
    top:214px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}












.gridContainer {
	width: 96%;
	max-width: 996px;
	margin: auto;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 2%;
	padding-bottom: 0%;
	padding-left: 2%;
}




.zeroMargin_desktop {
margin-left: 0;
}

.container_banner {
  position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	z-index: -999;
	height: 90vh;
	background-image: url(/images/banners/banner6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
}

.container_banner:after{
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--overlay);
}




.container_banner h4 {
	z-index: -999;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
	margin-top: 170px;
	margin-bottom: 0px;
}


.container_header {
	width: 100%;

	margin: 0px;
	padding: 0px;
	z-index: 12;
	background: var(--overlay);
	position: relative;
}


.container {
	width: 100%;
	padding-top: 35px;
	position: relative;
	float: left;
	padding-bottom: 35px;
}
.container_location {
	width: 100%;
	position: relative;
	float: left;
	background-color: #FFF;
	height: 500px;
}

.header-wrap {
	width: 100%;
	max-width: 996px;
	margin: auto;
	clear: none;
	float: none;
	padding-top: 0px;
	padding-right: 0%;
	padding-bottom: 0px;
	padding-left: 0%;
}
.header-logo {
	float: left;
	width: 198px;
	z-index: 10;
	text-align: left;


}
.header-content {
	float: right;
	font-weight: normal;
	z-index: 10;
	width: 69%;
	margin-top: 20px;
	margin-right: 1%;
}
.header-telephone {
	float: left;
	display: block;
	text-align: right;
	font-size: 34px;
	font-weight: normal;
	color: #FFFFFF;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 29px;
	z-index: 999;
	width: 100%;
}

.header-tagline {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	float: left;
	display: block;
	text-align: right;
	font-size: 20px;
	font-weight: normal;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 24px;
	z-index: 999;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 15px;
}

.header-tagline a {
	color: #FFFFFF;
	text-decoration: none;
}

.header-tagline2{
	display: none;
}


.subscribe-button{

font-family: "Miller Text Rom";
letter-spacing: 2px;
padding: 1rem 5rem;
border: 1px solid white;
color: white;
background-color: var(--overlay);
}

.subscribe-button:hover{
  background-color: rgba(195,	213,	195, .7);
}


 .subscribe-button-small{

 font-family: "Miller Text Rom";
 letter-spacing: 2px;
 display: inline-block;
 color: white;
 border: 1px solid white;
 padding: .8rem 2rem;
 background-color: var(--overlay);
}

 .subscribe-button-small:hover{
  background-color: rgba(195,	213,	195, .7);
  cursor: pointer;
}

.small-viewport-subscribe-button-container{
  width: 100vw;
  display: flex;
  justify-content: center;
}


.header-nav{
  width: 100vw;
  position: absolute;
  top: 44px;
}




@media only screen
and (min-width: 1000px){

 .small-viewport-subscribe-button-container{
   display: none;
 }
}
.header-nav {
	/* float: right; */
	width: 60%;
	z-index: 100;
	margin-top: 0px;
}
.header-navicon {
	display:none;
}
.banner-container {
	width: 100%;
	position: relative;
}
.banner-container h6 {
	position: relative;
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 15px;
	line-height: normal;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}


.banner-left {
	width: 50%;
	margin-right: 0%;
	clear: none;
	padding: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
	margin-left: 0%;
}


.banner-right {
	width: 50%;
	margin-right: 0%;
	clear: none;
	padding: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
	margin-left: 0%;
}

.banner-right-1 {
	width: 92%;
	position: relative;
	padding: 4%;
	background: rgba(240, 240, 240, 0.8);
	float: left;

	font-weight: 400;
	line-height: 24px;
	color: #262626;
}
.banner-right-2 {
	width: 42%;
	margin-right: 0%;
	clear: none;
	padding: 4%;
	margin-bottom: 0%;
	margin-top: 0px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
	margin-left: 0%;
	background: rgba(195, 213, 0, 0.8);
	font-size: 16px;
	line-height: 22px;
	color: #FFF;
	text-align: center;
}
.banner-right-3 {
	width: 42%;
	margin-right: 0%;
	clear: none;
	padding: 4%;
	margin-bottom: 0%;
	margin-top: 0px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
	margin-left: 0%;
	background: rgba(38, 38, 38, 0.8);
	color: #FFF;

	line-height: 22px;
	text-align: center;
}


.icon {
	display: block;
	width: 26px;
	height: 24px;
	background-image: url(/images/nav-icon.png);
	background-repeat: no-repeat;
	border: 0;
	margin-left: auto;
	margin-right: auto;
	oveflow: hidden;
}
.icon:hover
{
	background-position: 0 -24px;
}


.content {
	width: 100%;
	float: left;
	position: relative;
}
.columns-wrap {
	width: 100%;
	float: left;
}



.columns1 {
	width: 100%;
	float: left;
}




.columns2 {
	width: 48%;
	margin-right: 4%;
	clear: none;
	padding: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
	margin-left: 0%;
}



.columns2-wide {
	width: 64%;
	margin-right: 3%;
	clear: none;
	font-size: 14px;
	padding: 3%;
}
.columns2-wide li {
	clear: none;
	margin-left: 20px;
	list-style-image: url(/images/bullets.png);
}


.columns2-wide-sidebar {
	width: 27%;
	clear: none;
	position: relative;
	padding: 0px;
}


.columns2-table {
	display: table;
	width: 100%;
	margin: 0px;
	float: left;

	line-height: 18px;
}


.columns2-table-cell {
	display: table-cell;
	width: 49%;
	position: relative;
	text-align: center;
	padding: 2%;
}




/* _____________________________________AMENITIES */

.amenities-box{
  border: double;
  padding: 5rem 1rem;
}
.columns-flex-box{
  display: block;
  text-align: left;
}
@media only screen
and (min-width: 768px){

  .amenities-box{
    padding: 7rem 5rem;
  }
  .columns-flex-box{
    margin-top: 5rem;
    display: flex;
  }

  .columns3{
    padding: 0 1rem;
    flex: 1;
  }
}


.columns3.last {
	margin-right: 0%;
}
.columns3 li {
	margin-left: 15px;
	/* list-style-image: url(/images/bullet-white.png); */
	padding-bottom: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
.columns3 ul {
	position: relative;
	/* list-style-image: url(/images/bullet-white.png); */
	margin-top: 0px;
	margin-bottom: 0px;
}


.columns3-table {
display: table;
width: 100%;
}


.columns3-table-cell {
	display: table-cell;
	position: relative;
	width: 23.333%;
	padding-right: 3%;
	padding-left: 3%;
	padding-bottom: 3%;
	padding-top: 3px;
}

.columns3-table-link {
	position: absolute;
	margin-left: 5%;
	left: 0;
	right: 0;
	background-color: #FFF;
	width: 90%;
	text-align: center;
	bottom: 20px;
	margin-right: 5%;
	display: block;
	padding: 0px;
}
.columns3-table-link-circle {
	position: absolute;
	left: 0;
	right: 0;
	width: 58px;
	height: 58px;
	border-radius: 29px;

	color: #fff;
	line-height: 58px;
	text-align: center;
	background: #000;
	bottom: 20px;
}
.columns4{
	position: relative;
	width: 21%;
	clear: none;
	margin-top: 0px;
	margin-right: 2%;
	margin-bottom: 2%;
	margin-left: 2%;
	float: left;
	padding-top: 0px;
	padding-right: 0%;
	padding-bottom: 0px;
	padding-left: 0%;
}
.columns5 {
	width: 16%;
	clear: none;
	float: left;
	position: relative;
	min-height: 380px;
	margin-right: 2%;
	margin-bottom: 2%;
	margin-left: 2%;
}


.columns5-table {
	display: table;
	width: 100%;
}


.columns5-table-cell {
	display: table-cell;
	position: relative;
	width: 16%;
	font-size: 14px;
	padding-top: 2%;
	padding-right: 2%;
	padding-bottom: 2%;
	padding-left: 2%;
}

.rightMenu {
}
.rightMenu p {
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.rightMenu a {
	display: block;
	color: #FFFFFF;
	font-weight: normal;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	/*border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;*/
	font-size: 14px;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	text-decoration: none;
}

.rightMenu a:hover {
	text-decoration: none;
	background-color: #333333;
	color: #FFF;
}


/* __________________________________ footer */

.footer {
	width: 100%;
	line-height: 24px;
}
.intro {

	line-height: 28px;

}

.link-book {

	line-height: 22px;
	font-weight: 400;
	color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding-bottom: 2px;
}

.footer a {

	width: 100%;
	color: var(--darkGreen);
	padding-bottom: 2px;
}
.footer a:hover {
	width: 100%;
	color: #FFFFFF;
	text-decoration: none;
}


.footer h5 {

	font-weight: 500;
	display: block;
	margin-bottom: 15px;
	text-align: left;
	color: #FFF;
}
@keyframes }
.hide-mobile {
	display: block;
}
.hide-tablet-mobile {
	display: block;
}

.hide-desktop {
	display: none;
}




/* Tablet Layout: 996px to 481px. Inherits styles from: Desktop Layout. */

@media only screen
and (min-device-width: 768px)
and (max-device-width: 1000px)
and (orientation: landscape) {



.gridContainer {
	width: 92%;
	clear: none;
	float: none;
	padding-right: 4%;
	padding-left: 4%;
	padding-top: 0px;
	padding-bottom: 0px;
}

.zeroMargin_tablet {
margin-left: 0;
}


.container_header {
	width: 100%;
	z-index: 100;
	position: relative;
}

.container_banner {
  position: relative;
	z-index: 0;
	height: 500px;
	background-position: center;
	background-image: url(/images/banner6_tablet.jpg);
}



.header-logo {
	clear: none;
	display: block;
	text-align: center;
	margin-right: 4%;
	margin-left: 4%;
	float: left;
	width: 22%;
}

.header-content {
	float: left;
	font-weight: normal;
	z-index: 999;
	width: 66%;
	margin-right: 4%;
	margin-top: 0px;
}

.header-tagline {
	display: none;
}

.header-navicon {
	clear: none;
	display: block;
	width: 30px;
	text-align: center;
	margin-top: 6%;
	float: right;
	padding-top: 10px;
	margin-bottom: 4%;
}
.header-nav {
  position: relative;
  z-index: 100;
	width: 100%;
	display: block;
	clear: both;
	float: none;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	margin-top: 0px;
}



.columns3 {
	clear: none;
}

.columns4{
	width: 46%;
	margin-top: 0px;
	margin-right: 2%;
	margin-bottom: 2%;
	margin-left: 2%;
}

.hide-tablet-mobile {
	display: none;
}

}




@media only screen
and (min-device-width: 768px)
and (max-device-width: 1000px)
and (orientation: landscape) {

 .header-nav{
   width: 100vw;
   position: absolute;
   top: 0;

 }
}




@media only screen and (max-width: 1000px), only screen
and (min-device-width: 768px)
and (max-device-width: 1000px)
and (orientation: landscape){
/*  */

/* Mobile Layout: 480px and below. */




.hero-image-text-container{
  display: none;
}

.gridContainer {
	width: 88%;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 6%;
	padding-bottom: 0%;
	padding-left: 6%;
}


.zeroMargin_mobile {
margin-left: 0;
}

.container_banner {
  position: relative;
	height: 480px;
	min-height: 0px;
	background-image: url(/images/banner6_mobile.jpg);
	background-repeat: no-repeat;
	background-position: center right;
}

.container_banner:after{
  content: '';
  position: absolute;
  top: 0;
  left:0;
  right:0;
  bottom: 0;
  background-color: var(--overlay);
}

.container_header {
	width: 100%;
	margin: 0px;
	padding: 0px;


	position: relative;

  background-color: rgba(0, 0, 0, 0);
}




.container {
	font-size: 15px;
	line-height: normal;
	padding-top: 40px;
	padding-bottom: 0px;
}
.container_location {
	font-size: 15px;
	line-height: normal;
	padding-top: 40px;
	padding-bottom: 0px;
}

.header-logo {
	float: none;
	clear: both;
	text-align: center;
  margin-top: 15vh;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	padding-right: 5%;
	padding-left: 5%;
	padding-bottom: 10px;
}

.header-content {
	float: left;
	font-weight: normal;
	z-index: 100;
	width: 100%;
}

.header-telephone {
	display: none;
}

.header-tagline {
	display: none;
}

.header-tagline2 {
	display: block;
	float: none;
	clear: both;
	width: 100%;
	margin-bottom: 0px;
	text-align: center;
	font-weight: 400;
	line-height: 24px;
	padding-bottom: 15px;
	color: #FFF;
}

.header-navicon {
  display: block;
  position: absolute;
  top: 0;

	width: 100%;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #333333;
	z-index: 100;
}
.banner-left {
	display: none;
}

.banner-right {
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: center;
}





.content {
	width: 100%;
	padding-right: 0%;
	padding-left: 0%;
	margin: 0px;
}

.columns1 {
	padding: 0px;
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 5%;
}






.columns2 {
	width: 100%;
	margin: 0px;
	padding: 0px;
}


.columns2-wide {
	width: 90%;
	margin-right: 0px;
	margin-bottom: 20px;
	padding-top: 0%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
}

.columns2-wide-sidebar {
	width: 100%;
	margin: 0px;
}


.columns2-table {
	display: table;
	width: 100%;
	margin-top: 0px;
}

.columns2-table-cell {
	width: 90%;
	display: block;
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
}



.columns3 {
	clear: none;
	width: 100%;
	margin-bottom: 0%;
	margin-right: 0px;
	margin-left: 0px;
	padding: 0px;
	margin-top: 0px;
}



.columns3-table {
display: table;
width: 100%;
}

.columns3-table-cell {
	display: block;
	width: 90%;
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 60px;
	padding-left: 5%;

}
.columns4 {
	width: 100%;
	margin-bottom: 10px;
	margin-right: 0px;
	padding: 0px;
	margin-top: 0px;
	margin-left: 0px;
}
.columns5 {
	clear: none;
	width: 100%;
	margin-bottom: 4%;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

.footer h5 {
	text-align: center;
}


.hide-mobile {
	display: none;
}
.hide-tablet-mobile {
	display: none;
}
.hide-desktop {
	display: block;
}

}


/* ___ THE VILLA, THE GARDEN HOUSE, Gardens & Al Fresco Dining , Service at Villa San Vincenzo   */

/* Expandable stylesheet coppied entirely here because of some spesificity issues */

.msg_list {
	WIDTH: 100%;
	float: left;
}

.msg_head {
	cursor: pointer;
	width: 96%;
	color: var(--darkGreen);
	float: left;
	font-weight: 600;

	line-height: 22px;
	text-align: left;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border: double;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding-right: 2%;
	padding-left: 2%;
}
.msg_head:hover {
	CURSOR: pointer;
	POSITION: relative;
	color: var(--lightGreen);
	background-color: var(--darkGreen);

}

.msg_body {
	float: left;
	width: 96%;
	text-align: left;
	margin-bottom: 15px;
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-right: 2%;
	padding-left: 2%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.msg_body h6 {
	float: left;
	width: 100%;
	text-align: left;

	line-height: 18px;
	color: #FFF;
	font-weight: 400;
}
.msg_body h5 {
	float: left;
	width: 100%;
	text-align: left;

	line-height: 18px;
	color: #232D5E;
	font-weight: 600;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}




.msg_body img {
	float: right;
	width: 70%;
	margin-bottom: 15px;
	margin-left: 15px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
}

.msg_body_content-images {
	float: left;
	width: 60%;
	text-align: left;
}


.msg_body li {
	list-style-image: url(/images/bullet.png);
	margin-left: 0px;
	margin-bottom: 10px;
	background-image: none;
}
.msg_body li.tick {
	clear: none;
	margin-left: -10px;
	list-style-image: url(/images/bullet_tick-green.png);
	margin-bottom: 10px;
}

.arrow-up{
	width: 12px;
	height: 12px;
	display: inline-block;
	background-image: url(/images/icon_minus_white.png);
	background-repeat: no-repeat;
	background-position: center center;
	float: right;
	margin-top: 5px;
}
.arrow-down{
	width: 12px;
	height: 12px;
	display: inline-block;
	background-image: url(/images/icon_plus_white.png);
	background-repeat: no-repeat;
	background-position: center center;
	float: right;
	margin-top: 5px;
}




@media only screen
and (min-width: 1000px){

 .container_header{
   position: absolute;
   top: 0;
 }

 .hero-image-text-container{
   position: absolute;
   top: 0;
   left: 0;

   z-index: 11;

   height: 100%;
   width: 100vw;

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 .hero-image-text-container img{
   margin-top: 15vh;
 }
 .hero-image-text-container .container_banner__h1{
   color: white;
   font-size: 9vh;
   margin:10vh 0 5vh 0;

 }
 .hero-image-text-container .container_banner__h2{
 color: white;
 }
 .hero-image-area-button-container{
   position: relative;
   z-index: 10;
   margin-top: 2rem;
 }

 /* content crown */
 .content-crown{
   display: none;
 }
    .header-nav{
      width: 996px !important;
    }

}
 .container_header {
 	height: 100px;
 }
    .header-nav{
      width: 100%;
    }
