/*


RED #7a1c02 rgba(107,17,5,1)
DARK RED #6d1702 rgba(91,13,4,1)
GOLD #be9f56
GRAPHITE / FONT COLOR #424c53

*/

/**********************************************************************************************************/
/* KEYFRAME ANIMATIONS
/**********************************************************************************************************/

/************************/
/* BOUNCE
/************************/

@-webkit-keyframes bounce {
    0%, 20%, 55%, 100% {
    	-webkit-transform: translateY(0);
    }
    40% {
		-webkit-transform: translateY(-30px);
    }
    70% {
		-webkit-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 55%, 100% {
    	-ms-transform: translateY(0);
    	transform: translateY(0);
    }
    40% {
    	-ms-transform: translateY(-30px);
    	transform: translateY(-30px);
    }
    70% {
		-ms-transform: translateY(-15px);
    	transform: translateY(-15px);
    }
}

/************************/
/* BOUNCE DELAY
/************************/

@-webkit-keyframes bounce-delay {
    0%, 5%, 15%, 25%, 100% {
    	-webkit-transform: translateY(0);
    }
    10% {
		-webkit-transform: translateY(-30px);
    }
    20% {
		-webkit-transform: translateY(-15px);
    }
}

@keyframes bounce-delay {
    0%, 5%, 15%, 25%, 100% {
    	-ms-transform: translateY(0);
    	transform: translateY(0);
    }
    10% {
    	-ms-transform: translateY(-30px);
    	transform: translateY(-30px);
    }
    20% {
		-ms-transform: translateY(-15px);
    	transform: translateY(-15px);
    }
}

/**********************************************************/
/* KEN BURNS - MUST USE OVERFLOW HIDDEN ON OUTER CONTAINER
/**********************************************************/

@-webkit-keyframes kenburns {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
  }
}

@keyframes kenburns {
  from {
	-ms-transform: scale(1);
    transform: scale(1);
  }
  to {
	-ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}


@-webkit-keyframes zoomin {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
  }
}

@keyframes zoomin {
  from {
	-ms-transform: scale(1);
    transform: scale(1);
  }
  to {
	-ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}


@-webkit-keyframes zoomout {
  from {
    -webkit-transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoominout {
  from {
	-ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
	-ms-transform: scale(1);
    transform: scale(1);
  }
}



@-webkit-keyframes zoomin-left {
0%{
    -webkit-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
}

100%{
    -webkit-transform: scale3d(1.2, 1.2, 1.2) translate3d(-150px, 60px, 0px);
}
}

@keyframes zoomin-left {
0%{
    -ms-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
    transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
}
    

100%{
    -ms-transform: scale3d(1.2, 1.2, 1.2) translate3d(-150px, 60px, 0px);
    transform: scale3d(1.2, 1.2, 1.2) translate3d(-150px, 60px, 0px);
}
}

@-webkit-keyframes zoomin-right {
0%{
    -webkit-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
}

100%{
    -webkit-transform: scale3d(1.2, 1.2, 1.2) translate3d(150px, 60px, 0px);
}
}

@keyframes zoomin-right {
0%{
    -ms-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
    transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
}
    

100%{
    -ms-transform: scale3d(1.2, 1.2, 1.2) translate3d(150px, 60px, 0px);
    transform: scale3d(1.2, 1.2, 1.2) translate3d(150px, 60px, 0px);
}
}

/************************/
/* WOBBLE VERTICAL
/************************/

.hvr-wobble-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
    -webkit-animation-name: hvr-wobble-vertical;
    animation-name: hvr-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px)
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px)
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


/*************************************************************************************/
/* ANIMATION SHOTCODE ATTRIBUTES
/* name duration timing-function delay iteration-count direction fill-mode paly-state
/*************************************************************************************/

.loop .et_parallax_bg {
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-fill-mode:both;
}	
	

/**********************************************************************************************************/
/* GENERAL SETTINGS
/**********************************************************************************************************/

* {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	margin:0;
	padding:0;
}

body {
	font-size: 18px;
	line-height:1.7;
}

strong {
	font-weight: 600;
}

.small {
	font-size: 85% !important;
}

.text-center {
	text-align: center;
}

.overflow-hidden {
	overflow: hidden;
}

#main-footer {
	display: none !important;
}

.et_pb_text a {
	padding-bottom:1px;
	border-bottom: 1px solid transparent;
}

.et_pb_text a:hover {
	border-bottom: 1px solid #7a1c02;
}

.entry-content ol {
	padding-left: 40px;
	list-style-position: outside;
}

/**********************************************************************************************************/
/* COLOUR OPTIONS
/**********************************************************************************************************/

.white,a.white{
	color:#fafafa !important;
}

.gold,a.gold {
	color:#d39f56 !important;
}

/**********************************************************************************************************/
/* CONTENT POSITIONING
/**********************************************************************************************************/

.tc-content,
.top-center-content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	height: 100%;	
}

.vc-content,
.vertical-center-content,
.bc-content,
.bottom-center-content,
.bottom-center-right,
.bottom-center-left {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content:center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;	
}


.bc-content,
.bottom-center-content,
.bottom-center-right,
.bottom-center-left {
	-webkit-box-align: flex-end;
	-moz-box-align: flex-end;
	-ms-flex-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.align-left {
	justify-content: space-between !important;
	
}	

.align-bottom {
	align-self: flex-end;
}

.align-right {
	justify-content:flex-end;
}


/**********************************************************************************************************/
/* MAIN NAVIGATION MENU
/**********************************************************************************************************/

.et_header_style_left #logo {
	max-width:100%;
	max-height:100%;
	margin-top:6px;
}

#main-header {
	display: none;
	position: fixed !important;
}

#main-header.relative {
	position: relative !important;
}

#main-header .container {
	width:100%;
	max-width:100%;
}

#top-menu a {
	-webkit-transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}

#top-menu > li {
	padding-right: 20px;
}

#top-menu li a:hover {
	color:#fafafa;
	opacity: 1 !important;
}

nav#top-menu-nav li ul {
	padding:0;
	left: -20px;
}

#top-menu li li {
	padding:0;
}

#top-menu li li a {
	width: 240px;
	padding: 10px 20px;
	font-size: 16px !important;
}

.et_header_style_left .logo_container {
	padding-left: 15px;
	background: transparent;
}

#main-header.nav-down {
   /*  top: 0px !important; */
   opacity:1;
    -webkit-transition: all .3s ease-in-out !important;
	-moz-transition: all .3s ease-in-out !important;
	-o-transition: all .3s ease-in-out !important;
	-ms-transition: all .3s ease-in-out !important;
	transition: all .3s ease-in-out !important;
}

#main-header.nav-up {
 /*    top: -74px !important; */
    opacity:0;
    -webkit-transition: all .3s ease-in-out !important;
	-moz-transition: all .3s ease-in-out !important;
	-o-transition: all .3s ease-in-out !important;
	-ms-transition: all .3s ease-in-out !important;
	transition: all .3s ease-in-out !important;
}

#top-menu .menu-item-has-children > a:first-child:after {
	content: '' !important;
}

#et-secondary-nav .menu-item-has-children > a:first-child,
#top-menu .menu-item-has-children > a:first-child {
	padding-right: 0;
}


#et_mobile_nav_menu {
	margin-top:-20px !important;
}

.mobile_menu_bar {
	cursor:pointer;
}

.mobile_nav.closed .mobile_menu_bar:before {
	content: "\61" !important;
	font-size: 54px;
	font-weight: normal;
}

.mobile_nav.mobile_nav.opened .mobile_menu_bar:before {
    content: "\4d" !important;
    font-size: 54px;
	font-weight: normal;
} 

.et_header_style_left .mobile_menu_bar {
	padding-bottom: 0px;
	padding-right: 15px;
}

#main-header .et_mobile_menu {
	border-top:0;
	padding: 0;
	overflow:auto !important;
}	

.et_mobile_menu li a {
	font-size:18px;
	padding: 15px 25px;
	text-transform: uppercase;
}

.et_mobile_menu li a:hover {
	opacity: 1;
}

#main-header .et_mobile_menu li ul {
	padding-left: 0;
}

.et_mobile_menu li li {
	padding:0;
}

.et_mobile_menu li li a {
	padding: 15px 25px 15px 50px;
}

.fixed {
	position: fixed;
	/* top:auto; */
	/* margin-top:-58px; *//* SET TO HEIGHT OF MOBILE NAV BAR. STOPS PAGE JUMPING ON HAMBURGER CLICK */
}

#et-main-area {
	margin-top:0;
	top:auto;
}

#et-main-area.relative {
	margin-top:-58px; /* SET TO HEIGHT OF MOBILE NAV BAR. STOPS PAGE JUMPING ON HAMBURGER CLICK */
}



/*****************************/
/* MAIN MENUS COLOURS
/*****************************/
/* Choose colour option below
/* Either by deleting the one you do not want
/* or moving the one you
/* do to below the others
/*****************************/

/*****************************/
/* MAIN MENUS COLOURS BURGUNDY
/*****************************/

nav#top-menu-nav li ul {
	background: #5e132a !important; /* DARK BURGUNDY */
	border-top: 3px solid #8c273c; /* LIGHT BURGUNDY */
}

#main-header,
#main-header.nav-down .logo_container, /* REMOVE .nav-down FOR VISIBLE MENU BAR BACKGROUND, ALSO REMOVE CORRESPONDING CSS IN min-width 780px MEDIA QUERY */
#main-header .et_mobile_menu {
	background:#5e132a !important; /* DARK BURGUNDY */
}

.et_mobile_menu li a:hover {
	color:#fafafa !important; /* OFF WHITE */
}

.et_mobile_menu .menu-item-has-children > a {
	background: rgba(0, 0, 0, 0) !important;
}

#top-menu li a:hover,
#top-menu li.current-menu-item > a,
.et_mobile_menu li a:hover,
.et_mobile_menu .current-menu-item > a {
	color: #be9f56 !important; /* GOLD */
}

#top-menu li li a:hover,
.et_mobile_menu .current-menu-item > a {
	background: rgba(156,47,72,0.5) !important;; /* VERY LIGHT BURGUNDY OPACITY 0.5 */
}

.et_mobile_menu li a:hover {
	background-color: rgba(156,47,72,0.25) !important; /* VERY LIGHT BURGUNDY OPACITY 0.25 */
}


/*****************************/
/* MAIN MENUS COLOURS DEFAULT
/*****************************/

nav#top-menu-nav li ul {
	background: #6d1702 !important; /* VERY DARK GRAPHITE */
	border-top: 3px solid #7a281e; /* MID LIGHT GRAPHITE */
}

#main-header,
#main-header.nav-down .logo_container, /* REMOVE .nav-down FOR VISIBLE MENU BAR BACKGROUND, ALSO REMOVE CORRESPONDING CSS IN min-width 780px MEDIA QUERY */
#main-header .et_mobile_menu {
	background:#6d1702 !important; /* VERY DARK GRAPHITE */
}

.et_mobile_menu li a:hover {
	color:#fafafa !important; /* OFF WHITE */
}

.et_mobile_menu .menu-item-has-children > a {
	background: rgba(0, 0, 0, 0) !important;
}

#top-menu li a:hover,
#top-menu li.current-menu-item > a,
.et_mobile_menu li a:hover,
.et_mobile_menu .current-menu-item > a {
	color: #be9f56 !important; /* GOLD */
}

#top-menu li li a:hover,
.et_mobile_menu .current-menu-item > a {
	background: #601201 !important;; /* VERY LIGHT GRAPHITE OPACITY 0.5 */
}

.et_mobile_menu li a:hover {
	background-color: rgba(118,144,161,0.25) !important; /* VERY LIGHT GRAPHITE OPACITY 0.25 */
}

#wprmenu_bar {
	height: 52px;
	padding-top:15px;
}

#wprmenu_menu.left {
	top:52px;
	max-width: 280px;
	-webkit-box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.75);
}

#wprmenu_menu {

}

#wprmenu_menu .wprmenu_icon_par {
	top:5px;
}


#wprmenu_menu ul li a {
	text-transform: uppercase !important;
}

#wprmenu_menu ul li a,
#wprmenu_menu ul li a:hover {
	font-size: 16px;
	font-weight: 600;
}

#wprmenu_menu.wprmenu_levels ul li ul li {
	padding-left: 0;
}

#wprmenu_menu.wprmenu_levels ul li ul li a {
	padding-left: 61px;
}

#wprmenu_menu ul li.current-menu-item > a {
	color:#be9f56 !important;
}

.cbp-spmenu {
	top:0;
}

#mg-wprm-wrap ul#wprmenu_menu_ul li.menu-item a:hover,
#mg-wprm-wrap li.current-menu-item > a {
	background: transparent;
}

/**********************************************************************************************************/
/* SECTIONS SLANTS
/**********************************************************************************************************/

.reversed2:after {
	left: 0;
	border-left: 3000px solid transparent;
	border-right: 0;
}

.skew-top {
	content: '';
	-webkit-transform: skew(0, 2deg);
	transform: skew(0, 2deg);
	position: absolute;
	left: 0;
	right: 0;
	top: -60px;
	height: 110px;
	background: #f00
}

#et-main-area {
   overflow: hidden;
}

/* Hides all the items that float over the right margin */
.slant-top-bot:before,
.slant-top-bot:after,
.slant-top:before,
.slant-bot:after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.slant-top-bot,
.slant-top,
.slant-bot {
    z-index: 99;
}

.slant-top-bot:before,
.slant-top:before {
	top: 0;
}

.slant-top-bot:before,
.slant-top-bot:after,
.slant-top:before,
.slant-bot:after {
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 95%;
    background: inherit;
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.slant-top-bot:after,
.slant-bot:after {
	bottom:0;
	-webkit-transform: rotate(-1.75deg);
    transform: rotate(-1.75deg);
}

.slant-top.reversed:before,
.slant-top-bot.reversed:before {
	-webkit-transform: rotate(-1.75deg);
    transform: rotate(-1.75deg);
	-webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.slant-top-bot.reversed:after,
.slant-bot.reversed:after {
	bottom:0;
	-webkit-transform: rotate(1.75deg);
    transform: rotate(1.75deg);
    	-webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}


/**********************************************************************************************************/
/* FULL WIDTH HEADERS
/**********************************************************************************************************/

.full-width-header-1,
.height-full {
	height:100vh !important;
}

.height-two-thirds {
	height:66vh !important;
}

.height-one-half {
	height:50vh !important;
}

.height-one-third {
	height:33vh !important;
}

/************************/
/* HEADER 1
/************************/

.full-width-header-1 .header-content h1,
.full-width-header-1 .header-content .et_pb_more_button,
.text-shadow i,
.text-shadow h1,
.text-shadow p {
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
}   

.full-width-header-1 .et_pb_fullwidth_header_subhead {
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.full-width-header-1 .scroll-down.et-pb-icon {
	cursor: pointer;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
	animation:bounce-delay 5s infinite;
}

/************************/
/* HEADER KEN BURNS
/************************/

.zoomin .et_parallax_bg {
	position: fixed;
	top: 0;
	animation-name: zoomin;
	animation-duration:20s;
	animation-delay:2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}


/************************/
/* HEADER 2
/************************/

.full-width-header-2 .header-content {
	padding:40px 50px 40px 40px !important;
	background:rgba(46,62,70,0.95);
	background:rgba(32,42,46,0.95);
	border-radius:8px;
}
 

/************************/
/* HEADER 1
/************************/ 

#main-header a .icon-essenza1 {
	color:#fafafa;
	position: relative;
	top:10px;
}

#main-header a .icon-essenza1 {
	opacity:0;
}

#main-header.nav-down .logo_container,
#main-header.nav-down a .icon-essenza1 {
	opacity:1 !important;
}

#main-header.nav-down.top .logo_container,
#main-header.nav-down.top a .icon-essenza1 {
	opacity:0 !important;
}

.header1 .et_pb_slide {
	height:64vh !important;
	min-height:350px !important;
}

.header1.et_pb_slider .et_pb_slide_0.et_pb_slide .et_pb_slide_description .et_pb_slide_title {
	font-size: 26px !important;
}

.header1 h1:before {
	content: "\e901";
	color:#fafafa;
	position: relative;
	font-family: essenza !important;
	font-size: 50px !important;
	font-weight: 600;
	display: block;
	top: -27px;
	left: -5px;
	font-style: normal;
	margin: 0 auto;
}

.header1 h1,
.header1 h1:before {
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* body #page-container .header1 .et_pb_slide_content .et_pb_button, */
.header1 .et_pb_button {
	display: inline-block;
	border-color: rgba(250, 250, 250, 0);
	color:#fafafa;
	padding-top: 0.175em !important;
	padding-bottom: 0.175em !important;
	padding-top: 0.25em !important;
	padding-bottom: 0.25em !important;
	margin-top: 12px !important;
	padding-left: 0.7em;
	padding-right: 2em;
	font-size: 20px !important;
	font-weight: 500 !important;
	margin-left: 15px !important;
}

.header1 .et_pb_button:hover {
	border-color: rgba(250, 250, 250, 1) !important;
	background-color: rgba(250, 250, 250, 0.17);
}

.header1 .et_pb_button:after,
body #page-container .et_pb_slider .et_pb_slide_0.et_pb_slide .et_pb_button:after,
body #page-container .et_pb_slider.header1 .et_pb_slide .et_pb_slide_content .et_pb_button:after,
body #page-container .header1 .et_pb_button_wrapper .et_pb_button:after {
	content: "\35";
	font-family: ETmodules !important;
	color:#fafafa;
	font-size: 23px !important;
	margin-top: 2px !important;
	margin-left: .3em;
	left: auto;
}

 
 
/**********************************************************************************************************/
/* ICON COLUMNS ROLLOVERS
/**********************************************************************************************************/

.shadow:hover {
	-webkit-box-shadow: -2px 0px 18px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: -2px 0px 18px 3px rgba(0,0,0,0.2);
	box-shadow: -2px 0px 18px 3px rgba(0,0,0,0.2);
}

.icon-col:hover {
	cursor: pointer;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
	animation:bounce 1.5s;
}

.camera_alt h1:before {
	content: "\e00f";
	font-family: ETmodules !important;
	display: block;
	color:#fafafa;
	font-size: 60px !important;
}

.icon_camera:before {
	content: "\e075";
}

.icon_map h1:before,
.icon_compass h1:before,
.icon_profile h1:before {
	content: "\e083";
	font-family: ETmodules !important;
	display: block;
	color:#fafafa;
	font-size: 50px !important;
}

.icon_compass h1:before {
	content: "\e080";
}

.icon_profile h1:before {
	content: "\e08a";
}


/**********************************************************************************************************/
/* REVIEWS SLIDER
/**********************************************************************************************************/

.reviews {
	margin-top:-50px !important;
	padding:0;
}
	
.reviews .et_pb_container {
	background: transparent !important;
}

.reviews .et_pb_slide_content:before {
	content:'“';
	display: block;
	position: relative;
	top:20px;
	font-family: "Merriweather", arial, helvetica, sans-serif;
	font-size:60px;
	font-style:normal;	
	line-height:1;
}

.reviews .et_pb_slide_content {
	max-width:550px;
	margin:0 auto;
}


.reviews .et_pb_slide_content strong {
	font-family: "Source Sans Pro", arial, helvetica, sans-serif;
	font-size:22px;
	font-style:normal;
	font-weight:500;
}	

.reviews .et_pb_slide_title_name strong {
	display: none !important;
}

.reviews .et_pb_slide_title_name {
	margin-top: 30px;
}

/**********************************************************************************************************/
/* GALLERY SLIDER
/**********************************************************************************************************/

.gallery.full-height .et_pb_slides .et_pb_slide {
	height:112vh !important;
}

.gallery .et_pb_slide_description {
	display: none;
}

.gallery .et-pb-arrow-prev,
.gallery .et-pb-arrow-next {
	font-size:116px;
	color: rgba(250, 250, 250, 0.3) !important;
}

.gallery .et-pb-arrow-prev:hover,
.gallery .et-pb-arrow-next:hover {
	color: rgba(250, 250, 250, 0.75) !important;
}

.gallery .et-pb-controllers {
	bottom: 50px;
}	

.gallery .et-pb-controllers a {
	width: 14px;
	height: 14px;
	background-color: rgba(250, 250, 250, 0.3);
}

.gallery .et-pb-controllers a:hover,
.gallery .et-pb-controllers .et-pb-active-control {
	background-color: rgba(250, 250, 250, 0.75) !important;
}

.gallery.zoomin .et_pb_slides .et_pb_slide {
	animation-name: zoomin;
	animation-duration:14s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gallery.zoomout .et_pb_slides .et_pb_slide {
	animation-name: zoomout;
	animation-duration:7s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}	

.et_pb_testimonial_slider .et-pb-controllers {
	display: none !important;
}


.et_pb_testimonial_slider .et-pb-controllers a {
    height: 14px !important;
    width: 14px !important;
} 

.et_pb_testimonial_slider .et_pb_slide_description,
.et_pb_slider_fullwidth_off.et_pb_testimonial_slider .et_pb_slide_description {
	padding-bottom:0 !important;
}


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

.footer-location {

}

.footer-location strong {
	font-weight:normal;
	font-size: 26px;
}


.footer-location a.hidden-desktop,
.footer-times a,
.copyright a {
	color:#fafafa !important;
	border-bottom: 1px solid #fafafa;
}


.footer-location a.hidden-desktop {
	border-bottom: 1px solid rgba(0,0,0,0) !important;
}

.footer-location a.hidden-desktop:hover,
.footer-times a:hover,
.copyright a:hover {
	color:#be9f56 !important;
	border-bottom: 1px solid #be9f56;
}



/**********************************************************************************************************/
/* GOOGLE MAP FOOTER
/**********************************************************************************************************/

.map-footer2 .et_pb_map {
	height:340px !important;
}

.map-footer .et_pb_map_container_extended {
    display: block;
    padding-bottom: 100%;
}

.map-footer .et_pb_map,
.map-footer .dwd_map_extended {
	position: absolute;
    width: 100%;
    height: 100%;
}


.virtual-tour iframe {
	height:380px !important;
	margin-bottom:-20px;
}



/**********************************************************************************************************/
/* SOCIAL MEDIA ICONS FOOTER
/**********************************************************************************************************/

ul.et_pb_social_media_follow {
	display: inline-block;
	margin:0 auto !important;
	padding:0;
}

ul.et_pb_social_media_follow li a.icon {
	width: 44px;
	height: 44px;
}

ul.et_pb_social_media_follow li a.icon:before {
	width: 44px;
	height: 44px;
	color: #fafafa;
	font-size: 20px;
	line-height: 44px;
}

/* Default color graphite */
ul.et_pb_social_media_follow li a.icon.circle {
	background-color: #7a281e !important;
}	

ul.et_pb_social_media_follow li a.icon.circle:hover {
	background-color: #7a281e !important;
}
/* End default color graphite */

ul.et_pb_social_media_follow.burgundy li a.icon.circle {
	background-color: #8c273c !important;
}

ul.et_pb_social_media_follow.burgundy li a.icon.circle:hover {
	background-color: #ac3853 !important;
}


/**********************************************************************************************************/
/* FOOD MENU TABLES
/**********************************************************************************************************/

.et_pb_text.food-menu a {
	border:0 !important;
}


.food-menu table {
	width:100% !important;
	height:auto !important;
	border:0 !important;
}

.food-menu table tr {
	height: auto !important;
	border-top:0 !important;
	border-bottom: 1px dotted rgba(73,94,106,0.1);
	border:0 !important;
	padding:0;
}

.food-menu.border table tr {
	border-bottom: 1px dashed rgba(73,94,106,0.1) !important;
}

.food-menu table tr:last-child {
	border-bottom: 0;
}

.food-menu .takeaway-menu table tr {
	width:100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin:3% 0;
	background: rgba(0,0,0,0.02);
}

.food-menu .takeaway-menu table tr:hover {
	-webkit-box-shadow: 0px 3px 17px -10px rgba(0,0,0,0.36);
	-moz-box-shadow: 0px 3px 17px -10px rgba(0,0,0,0.36);
	box-shadow: 0px 3px 17px -10px rgba(0,0,0,0.36);
}

.food-menu table th,
.food-menu table td {
	display: block;
	width:100% !important;
	height:auto !important;
	vertical-align: top !important;
	text-align:center;
	border:0 !important;
	padding:0;
	font-size: 17px;
	line-height: 1.3em !important;
}

.food-menu .takeaway-menu table td {
	display: table-cell;
	text-align:left;
	width:auto !important;
	padding:10px 0;
}

.food-menu table td.photo {
	width: 120px !important;
	max-width: 120px !important;
	padding-left:0 !important;	
}

.food-menu table td img {
	width: 120px !important;
	height: 120px !important;
}

.food-menu .takeaway-menu table td:first-child {
	padding-left: 12px;
	padding-right: 12px;
	width: calc(100% - 132px) !important;
}

.food-menu .takeaway-menu table td.full-width {
	width:100% !important;
}

.food-menu p {
	font-size: 17px;
	line-height: 1.5 !important;
}
	
.food-menu table td strong,
.food-menu strong {
	font-size: 19px;
	font-weight: 600;
}

.food-menu table th strong {
	font-size: 22px;
	font-weight: 700;
}

.food-menu table td:last-child {
	padding-bottom:15px;
}

.food-menu .takeaway-menu p {
	padding-bottom: 0.5em;
}	

.table-wrapper {
	position: relative;
}

.allergens-menu {
    overflow: auto;
    overflow-x: scroll;
	margin-left:199px;
}

.allergens-menu::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 14px;
	width: 100%;
	height: 14px;
}	

.allergens-menu::-webkit-scrollbar-thumb {
	-webkit-border-radius: 8px;
	-mox-border-radius: 8px;
	border-radius: 8px;
	border: 3px solid #fafafa;
	background-color: rgba(0,0,0,0.1);
}	

.allergens-menu table {
	border: 0;
	width:100%;
	border-collapse: collapse;
}

.allergens-menu table tr {
	border: 0;
}

.allergens-menu table tr:hover {
	background-color: rgba(0,0,0,0.05);
}

.allergens-menu table tr:first-child:hover {
	background-color: rgba(255,0,0,0);
}

.allergens-menu table th img {
	height: 24px;
	width:auto;
}

.allergens-menu table td {
	font-size:12px;
}

.allergens-menu table td:first-child,
.allergens-menu table tr:first-child td {
	font-size:14px;
}

.allergens-menu table th,
.allergens-menu table td {
	text-align: center;
	padding: 6px;
	border:0;
	border-right: 1px solid rgba(0,0,0,0.1);
	border-top: 1px solid rgba(0,0,0,0.1);
}

.allergens-menu table tr:first-child td {
	border-top:0;
}

.allergens-menu table tr:last-child td {
}

.allergens-menu table tr:last-child td:first-child {
	
}

.allergens-menu table tr:first-child th {
	border:0;
	
}

.allergens-menu table tbody tr:first-child td {
	/* font-size:17px; */
}

.allergens-menu table th:first-child,
.allergens-menu table td:first-child {
	position: absolute;
	display: block;
	left:0;
	top:auto;
	text-align: left;
	border-left:0;
	background: #fafafa;
	/* font-size:17px; */
	width: 200px;
	height:auto;
	overflow: visible;
	z-index:10;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.tabs_allergens .et_pb_tab {
	padding-left: 0;
	padding-right: 0;
}

.tabs_allergens ul.et_pb_tabs_controls:after {
	border-top: 1px solid rgba(0,0,0,0.1);
}

.tabs_allergens .et_pb_tabs_controls li a {
	padding: 4px 12px;
}

/**********************************************************************************************************/
/* MODAL
/**********************************************************************************************************/

  .hide {
    display: none;
  }
  .show {
    display: block !important;
  }

.modal-wrapper {
    display: none;
    z-index: 999999;
	position: fixed;
	top:0;
	width:100vw;
	height:100vh;
	background: rgba(0,0,0,0.5);
    cursor:pointer; 
}

.modal {
    display: none;
    position: absolute;
    display: block;
    background: #fff;
    left: 0;
    top: 0;
    width:100vw;
	height:100vh;
    padding: 20px 20px;
    -webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.close-modal {
    position: absolute;
    top: 0;
    right: 12px;
    
	font-size: 24px;
    cursor: pointer;
}

.close-modal:hover {
	color: #6d1702;
}

.modal-title {
	font-size:1.1em;
	line-height: 1.1em;
	display: inline-block;
	margin-bottom:0.75em;
}


/**********************************************************************************************************/
/* CALDERA FORMS
/**********************************************************************************************************/

.caldera_forms_form input,
.caldera_forms_form select,
.caldera_forms_form textarea,
.caldera_forms_form button,
.rtb-booking-form input {
	outline:0;
	outline:none;
}


.caldera_forms_form input[type="text"].form-control,
.caldera_forms_form input[type="email"].form-control,
.caldera_forms_form input[type="phone"].form-control,
.caldera_forms_form textarea.form-control,
.caldera_forms_form select.form-control,
.rtb-booking-form input,
.rtb-booking-form select,
.rtb-booking-form textarea {
	height:44px;
	border:1px solid #424c53;
	line-height: 32px;
	padding:4px 6px;
	font-size: 18px;
	border-radius:4px;
	background: #fafafa !important;
	color: #424c53 !important;
}

.caldera_forms_form textarea.form-control,
.rtb-booking-form textarea {
	height:200px;
	resize:vertical;
	line-height: 1.7;
}

.caldera_forms_form input[type="button"],
.caldera_forms_form input[type="submit"],
.rtb-booking-form button,
.rtb-cancellation-toggle,
.rtb-cancel-button,
.rtb-cancel-booking {
	background: #7a1c02 !important;
	color:#f1f1f1 !important;
	font-size: 22px;
	font-weight: 600;
	padding:10px 24px;
	border:0;
	border-radius:4px;
}

.caldera_forms_form input[type="button"]:hover,
.caldera_forms_form input[type="submit"]:hover,
.rtb-booking-form button:hover,
.rtb-cancellation-toggle:hover,
.rtb-cancel-button:hover,
rtb-cancel-booking:hover {
	background: #be9f56 !important;
}

.caldera_forms_form input[type="text"].form-control:focus,
.caldera_forms_form input[type="email"].form-control:focus,
.caldera_forms_form input[type="phone"].form-control:focus,
.caldera_forms_form textarea.form-control:focus,
.rtb-booking-form input:focus {
	border:1px solid #2e3840 !important;
	background: transparent !important;
	cursor:pointer;
}

.caldera-grid .form-control:focus {
	-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .0), 0 0 0 rgba(102, 175, 233, .0) !important;
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, .0), 0 0 0 rgba(102, 175, 233, .0) !important;
	border:1px solid #495e6a !important;
}

.caldera-grid .has-error .form-control {
	border:1px solid #495e6a !important;
}

span.field_required,
.caldera-grid .has-error .control-label {
	color: #8c273c !important;
}

.caldera-grid .alert-success {
    background-color: #7a1c02;
    border: 0;
    color: #fff;
    font-size:22px;
    text-align: center;
    padding:15px 20px;
}

.caldera-grid .has-error .help-block {
	display: none;
}

/* Change Autocomplete styles in Chrome*/
.caldera_forms_form input:-webkit-autofill,
.caldera_forms_form input:-webkit-autofill:hover, 
.caldera_forms_form input:-webkit-autofill:focus
.caldera_forms_form input:-webkit-autofill, 
.caldera_forms_form textarea:-webkit-autofill,
.caldera_forms_form textarea:-webkit-autofill:hover
.caldera_forms_form textarea:-webkit-autofill:focus,
.caldera_forms_form select:-webkit-autofill,
.caldera_forms_form select:-webkit-autofill:hover,
.caldera_forms_form select:-webkit-autofill:focus,
.rtb-booking-form input:-webkit-autofill,
.rtb-booking-form input:-webkit-autofill:hover, 
.rtb-booking-form input:-webkit-autofill:focus
.rtb-booking-form input:-webkit-autofill, 
.rtb-booking-form textarea:-webkit-autofill,
.rtb-booking-form textarea:-webkit-autofill:hover
.rtb-booking-form textarea:-webkit-autofill:focus,
.rtb-booking-form select:-webkit-autofill,
.rtb-booking-form select:-webkit-autofill:hover,
.rtb-booking-form select:-webkit-autofill:focus {
	border-bottom:1px solid #424c53 !important;
	-webkit-text-fill-color: #424c53;
 	-webkit-box-shadow: 0 0 0 1000px #fafafa inset;
	transition: background-color 5000s ease-in-out 0s;
}

.rtb-booking-form {
	position: relative !important;
}

.rtb-booking-form legend,
.rtb-booking-form fieldset div.add-message,
li.picker__list-item.picker__list-item--disabled {
	display: none;
}

.rtb-booking-form fieldset > div {
	display: inline-block;
	width:100%;
}


.rtb-booking-form fieldset .rtb-textarea {
	width:100% !important;
}

.rtb-booking-form .message {
	position: relative !important;
	display: block !important;
	top:auto !important;
	left:auto !important;
}

.rtb-booking-form input,
.rtb-booking-form select {
	width: 100% !important;
	max-width: 95% !important;
}

.rtb-booking-form textarea {
	width:100% !important;
	max-width: 97% !important;
}

.rtb-booking-form .rtb-error:before {
	border:0 !important;
	margin:0 !important;
}	

.rtb-booking-form .rtb-error {
	background: transparent !important;
	color:#7a1c02 !important;
}	

.rtb-booking-form .rtb-message {
	background: #7a1c02 !important;
	color:#fff !important;
	padding:15px 20px !important;
	text-align: center !important;
	font-size: 24px !important;
}


.picker,
.picker__year {
	color:#7a1c02 !important;
	font-style: normal !important;
}

.picker__year {
	font-size: 24px !important;
}

.picker--focused .picker__day--selected, .picker__day--selected,
.picker__day--selected:hover {
    background: #7a1c02 !important;
    color: #fff;
}

.picker__nav--next:before,.picker__nav--prev:before{
    content: " ";
    border-top: .4em solid transparent !important;
    border-bottom: .4em solid transparent !important;
    border-right: .5em solid #7a1c02 !important;
}
.picker__nav--next:before{
    border-right: 0 !important;
    border-left: .5em solid #7a1c02 !important;
}

.picker__nav--next:hover, .picker__nav--prev:hover {
	background: transparent !important;
}


.picker__day--highlighted:hover,
.picker__day--infocus:hover,
.picker__day--outfocus:hover,
.picker__button--clear:hover,
.picker__button--close:hover,
.picker__button--today:hover{
	background: rgba(107,17,5,0.25) !important;
	color:#fff !important;
}


.picker__day--disabled:hover {
	background: #f5f5f5 !important;
	color: #ddd !important;
}

.picker--focused .picker__day--highlighted {
	background: rgba(107,17,5,1) !important;
	color:#fff !important;
}

.picker__day--today:before {
	border-top: .5em solid rgba(107,17,5,0.25) !important;
}

.picker__button--today:before {
	border-top: .66em solid rgba(107,17,5,1) !important;
}

.picker__button--clear:before {
	border-top: 3px solid rgba(107,17,5,1) !important;
}

.picker__button--close:before {
	color:rgba(107,17,5,1) !important;
}

.picker__day {
	font-weight: 400 !important;
}

/**********************************************************************************************************/
/* BLOOM
/**********************************************************************************************************/

.et_bloom .et_bloom_optin_1 .et_bloom_border_solid { 
	border-color:#7a1c02 !important;
}

.et_bloom .et_bloom_form_header h2,
.et_bloom .et_bloom_optin_1 .et_bloom_form_container h2 {
	font-family: 'Merriweather',Georgia,"Times New Roman",serif;
	font-size: 21px !important;
	color: #7a1c02;
	margin-bottom: 20px !important;
}

.et_bloom .et_bloom_optin_1 .et_bloom_form_container p,
.et_bloom .et_bloom_optin_1 .et_bloom_form_container p strong { 
	color: #424c53; font-family: 'Source Sans Pro',Helvetica,Arial,Lucida,sans-serif;
	font-size:16px;
	padding-bottom: 0.75em !important;
	line-height:1.5em;
}

.et_bloom .et_bloom_optin_1 .et_bloom_form_container p strong {
	font-weight: 700;
}

.et_bloom .et_bloom_form_container a {
	padding-bottom: 1px;
	border-bottom: 1px solid transparent;
	-webkit-transition: border 0.3s ease;
	-moz-transition: border 0.3s ease;
	transition: border 0.3s ease;
}	

.et_bloom .et_bloom_form_container a:hover {
	border-bottom: 1px solid #7a1c02;
}


.et_bloom .et_bloom_close_button:before {
	color: #7a1c02;
}

.et_bloom .et_bloom_form_container .et_bloom_form_content {
	display: none;
}

/**********************************************************************************************************/
/* BLURB EFFECTS
/**********************************************************************************************************/

.b_blurb {
	-webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	-moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease-in-out;
}

.b_blurb:hover {
	-webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.12);
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.12);
	-webkit-transform: translate(0, -4px);
}	

/**********************************************************************************************************/
/* RESPONSIVE MEDIA BREAK POINTS
/**********************************************************************************************************/

@media only screen and (min-width: 480px) { 

	.map-footer .et_pb_map_container_extended {
    	padding-bottom: 80%;
	}
	
	.rtb-booking-form fieldset > div {
		width:49%;
	}

} /* END 480px */

@media only screen and (min-width: 640px) { 
	
	.header1 .et_pb_slide {
		height:54vh !important;
	}
	
	.header1 h1:before {
		font-size: 65px !important;
	}
	
	.header1 .et_pb_button {
		font-size: 24px !important;
	}
	
	.header1 .et_pb_button:after,
	body #page-container .et_pb_slider .et_pb_slide_0.et_pb_slide .et_pb_button:after,
	body #page-container .et_pb_slider.header1 .et_pb_slide .et_pb_slide_content .et_pb_button:after,
	body #page-container .header1 .et_pb_button_wrapper .et_pb_button:after {
		font-size: 27px !important;
		margin-top: 2px !important;
	}
	
	.food-menu table th,
	.food-menu table td {
		display: table-cell;
		text-align:left;
		width:auto !important;
		padding:10px 0;
		font-size: 18px;
		line-height: 1.3em !important;
	}
	
	.food-menu p {
		font-size: 18px;
		line-height: 1.3 !important;
	}	
	
	.food-menu table td strong,
	.food-menu strong {
		font-size: 20px;
	}
	
	.food-menu table th strong {
		font-size: 21px;
	}

	.food-menu table th:last-child,
	.food-menu table td:last-child {
		text-align:right;
		width:auto;
		padding-left:50px;
		padding-right:0;
	}
	
	.food-menu table th:first-child,
	.food-menu table td:first-child {
		text-align:left;
		padding-left: 0px;
	}
	
	.food-menu .takeaway-menu table td:first-child {
		padding-left: 12px;
		padding-right: 12px;
		width: calc(100% - 132px) !important;
	}
	
	.food-menu .takeaway-menu table td.full-width {
		width:100% !important;
	}
	
	.food-menu.text-center table td:first-child {
		text-align:center;
	}
	
	.modal {
    	position: absolute;
    	left: 50%;
    	top: 50%;
    	height: auto;
    	min-height:500px;
    	width: 80%;
    	max-width:800px;
    	padding: 20px 30px;
    	transform: translate(-50%, -50%);    
    }
    
    .modal-title {
		font-size:1.25em;
		line-height: 1.25em;
		display: inline-block;
		margin-bottom:0.5em;
	}
	
	.map-footer .et_pb_map_container_extended {
    	padding-bottom: 60%;
	}
	
	.footer-times .et_pb_column_1_2 {
		width: 48.5% !important;
		text-align: center;
	}

	

} /* END 640px */


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

	
	.et_header_style_left #et-top-navigation, .et_header_style_split #et-top-navigation {
        padding: 30px 0 0 0 !important;
    }
	
	.header1 .et_pb_slide {
		min-height:400px !important;
	}
	
	.header1.et_pb_slider .et_pb_slide_0.et_pb_slide .et_pb_slide_description .et_pb_slide_title {
		font-size: 32px !important;
	}

	.header1 h1:before {
		font-size: 75px !important;
	}
	
	.reviews .et_pb_slide_content:before {
		font-size:75px;
		margin-bottom:0;
	}
	
	.virtual-tour iframe {
		height:500px !important;
	}
	
	.map-footer2 .et_pb_map {
		height:450px !important;
	}

	.footer-location strong {
		font-size: 28px;
	}
	
	.allergens-menu {
		margin-left:249px;
	}

	.allergens-menu table th:first-child,
	.allergens-menu table td:first-child {
		width: 250px;
	}
	
	.allergens-menu table td:first-child,
	.allergens-menu table tr:first-child td {
		font-size:16px;
	}
	
	.allergens-menu table th img {
		height: 30px;
	}	
	
	.et_bloom .et_bloom_form_header h2,
	.et_bloom .et_bloom_optin_1 .et_bloom_form_container h2 {
		font-size: 22px !important;
	}

	.et_bloom .et_bloom_optin_1 .et_bloom_form_container p,
	.et_bloom .et_bloom_optin_1 .et_bloom_form_container p strong { 
		font-size:17px;
	}
	

} /* END 768px */

@media only screen and (min-width: 981px) { 

	.hidden-desktop,
	.logo_container a {
		display: none !important;
	}
	
	.logo_container {
	    padding-left: 0 !important;
	    width: 0 !important;
	}
	
	#main-header {
		display: block;
	}
	
	#main-header,
	#main-header.nav-down.top,
	#main-header.nav-down.top .logo_container {  /* REMOVE ALL FOR VISIBLE MENU BAR BACKGROUND */
		background: transparent !important;
	}
	
	.reviews .et_pb_slide_content:before {
		font-size:90px;
		margin-bottom:0;
	}
	
	.virtual-tour iframe {
		height:700px !important;
	}
	
	.map-footer2 .et_pb_map {
		height:550px !important;
	}
	
	.map-footer .et_pb_map_container_extended {
    	padding-bottom: 40%;
	}

	.footer-location strong {
		font-size: 30px;
	}
	
	.allergens-menu table td:first-child,
	.allergens-menu table tr:first-child td {
		font-size:17px;
	}
	
	.food-menu .takeaway-menu table tbody {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content:space-evenly;
		justify-content:start;
	}
	
	.food-menu .takeaway-menu table tr {
		width:47%;
		margin:1%;
	}
	
	.food-menu .takeaway-menu.menu-test table tr {
		width:100%;
	}
	
	
	.et_bloom .et_bloom_form_header h2,
	.et_bloom .et_bloom_optin_1 .et_bloom_form_container h2 {
		font-size: 24px !important;
	}

	.et_bloom .et_bloom_optin_1 .et_bloom_form_container p,
	.et_bloom .et_bloom_optin_1 .et_bloom_form_container p strong { 
		font-size:18px;
	}	
	

} /* END 981px */

@media only screen and (min-width: 1300px) { 
	
	.logo_container {
	        padding-left: 30px !important;
	        width: 100% !important;
	}
		        
	.logo_container a {
		display: inline !important;
	}
	
	.allergens-menu::-webkit-scrollbar-thumb {
		border: 3px solid rgba(0,0,0,0);
		background-color: rgba(0,0,0,0);
	}

} /* END 1400px */	


@media only screen and (min-width: 1600px) { 
	.map-footer .et_pb_map_container_extended {
    	padding-bottom: 30%;
	}
	
	.virtual-tour iframe {
		height:1000px !important;
	}	

	
	
} /* END 1600px */	
	

/**********************************************************************************************************/
/* FLEXBOX COLUMN STACKING ORDER SWITCH
/**********************************************************************************************************/

@media all and (max-width: 980px) {

	.hidden-mobile {
		display: none !important;
	}
	


/*** wrap row in a flex box ***/
.flex-row {
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	-webkit-flex-wrap: wrap !important; /* Safari 6.1+ */
	flex-wrap: wrap !important;
}
 
/*** custom classes that will designate the order of columns in the flex box row ***/
.mobile-first {
	-webkit-order: 1 !important;
	order: 1 !important;
}
 
.mobile-second {
	-webkit-order: 2 !important;
	order: 2 !important;
}
 
.mobile-third {
	-webkit-order: 3;
	order: 3;
}
 
.mobile-fourth {
	-webkit-order: 4;
	order: 4;
}
/*** add margin to last column ***/
.custom_row:last-child .et_pb_column:last-child {
	margin-bottom: 30px;
}
 
}

@media all and (max-width: 768px) {
	.caldera-grid .col-sm-6,
	.caldera-grid .col-sm-12 {
		padding-left: 0;
		padding-right: 0;
	}

	.caldera-grid .row,
	.caldera-grid .col-sm-12.single {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}	

