@charset "UTF-8";
/* CSS Document */


:root {
    
    --primaryColor: #006A52;
    --primaryColor-alt: #08A07E;
    --primaryColor-rgb: 0, 106,82;
    
    --secondaryColor: #59303C;
    --secondaryColor-alt: #7A3A4D;
    --secondaryColor-rgb: 89,48,60;
    
    --tertiaryColor: #FFA528;
    --tertiaryColor-alt: #FFC16C;
    --tertiaryColor-rgb: 255,165,40;
    --tertiaryColor-10: rgba(255,165,40, 0.1);
    
	--white: #fff;
    --black: #131313;
    --black-90: rgba(0,0,0,0.9);
	
	--grey: #3F3E3E;
	--grey-darker: #1A1A1A;
	
	--lightgrey-lighter: #F4F4F4;
	--lightgrey: #efefef;
	--lightgrey-darker: #e6e6e6;
	
	--headingFont: "PT Sans", "Arial", serif;
	--textFont: "PT Sans", "Arial", sans-serif;
	
	--miniSectionSpacer: 40px;
	--sectionSpacer: 90px;
	--megaSectionSpacer: 180px;
    
}

html {
	scroll-behavior: smooth;
}

	
:target:before {
	content: "";
	display: block;
	/* height: 80px;
	margin: -80px 0 0; */
}

.scrollanchor {
	position: absolute;
	top: -68px;
}


@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-size: 16px;
	font-family: var(--textFont);
	font-weight: 400;
	color: #4f4f4f;
	background-color: #ffffff;
	/* --- overflow-x: hidden; --- */
	
}

textarea, input[type=text], button, input[type=submit] { outline: none; -webkit-appearance: none; border-radius: 0; }

a, a:focus, a:active {
    outline: 0 none !important;
}

a {
    color: inherit;
	text-decoration: none;
	font-weight: 500;
}

a:hover {
	text-decoration: underline;
}

.ff-hidden {
    display: none;
}


.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.container {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 100px);
	position: relative;
}

.container.narrow {
	max-width: 1440px;
	width: 85%;
}

.container.narrower {
	max-width: 1050px;
	width: 50%;
}

.container.narrowest {
	max-width: 1050px;
	width: 35%;
}

/*
.container.wide {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	width: 93%;
}


.padded {
	padding: 80px 100px;
}
*/

.toleft {
	text-align: left;
}

.toright {
	text-align: right;
}

.alignleft, .alignleft img, .pull_left {
	float:left;
}

.alignright, .alignright img, .pull_right {
	float:right;
}

img.alignleft {
	margin-right: 20px;
	margin-bottom: 5px;
	height: auto;
}

.post_container img.alignleft, .post_container img.alignright {
	width: 280px;
	height: auto;
}

.alignleft p.wp-caption-text {
	background: #eee;
	font-size: 10px;
	line-height:  normal;
	padding: 10px;
	margin-top: 0;
	margin-right: 15px;
}

.alignright p.wp-caption-text {
	background: #eee;
	font-size: 10px;
	line-height:  normal;
	padding: 10px;
	margin-top: 0;
	margin-left: 10px;
}

img.alignright {
	margin-left: 20px;
	margin-bottom: 2px;
	height: auto;
}

img.aligncenter {
	width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;	
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

hr {
	border: none;
	border-top: 4px dotted rgba(0,0,0,0.3);
	margin: 40px 0px 40px 0px;
	padding: 0px;
	height: 1px;
	clear: both;
}

.tablet_portrait, .tablet_landscape, .mobile {
	display: none;
}

.desktop {
	display: block;
}

/* --- sizes --- */

.inline {
	display: inline-block;
	margin-right: 25px;
	vertical-align: top;
}

.inline.middle {
	vertical-align: middle;
}

.quarter {
	width: 25%;
	display: inline-block;
	vertical-align: top;
}

.threequarters {
	width: 75%;
	display: inline-block;
	vertical-align: top;
}

.third {
	width: 33.333%;
	display: inline-block;
	vertical-align: top;
}

.twothirds {
	width: 66.666%;
	display: inline-block;
	vertical-align: top;
}

.half {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

.thirty {
        width: 30%;
	display: inline-block;
	vertical-align: top;
}

.forty {
        width: 40%;
	display: inline-block;
	vertical-align: top;
}

.twenty {
        width: 20%;
	display: inline-block;
	vertical-align: top;
}

.fifteen {
        width: 15%;
	display: inline-block;
	vertical-align: top;
}

.ten {
        width: 10%;
	display: inline-block;
	vertical-align: top;
}


.sixty {
        width: 60%;
	display: inline-block;
	vertical-align: top;
}

.seventy {
        width: 70%;
	display: inline-block;
	vertical-align: top;
}

.eighty {
        width: 80%;
	display: inline-block;
	vertical-align: top;
}

.eightyfive {
        width: 85%;
	display: inline-block;
	vertical-align: top;
}

.ninety {
       width: 90%;
	display: inline-block;
	vertical-align: top;
}

.fullwidth {
	width: 100%;
	display: block;
}

.bottomalign {
	vertical-align: bottom;
}


.sticky, .Sticky {
	position: -webkit-sticky;
	position: sticky;
}

.leftspacer {
	margin-left: 15%;
}


.rightspacer {
	margin-right: 15%;
}

/* ---- columns ------ */

ul.columns-1, ul.columns-2, ul.columns-3, ul.columns-4, ul.columns-5, ul.columns-6 {
	margin: 0;
	padding: 0;
	list-style-type: none;
}


.columns-1 .column, .fullwidth .column {
	width: 100%;
	margin-right: 0%;
	display: block;
	vertical-align: top;
}

.columns-2 .column {
	width: 48%;
	margin-right: 4%;
	display: inline-block;
	vertical-align: top;
}

.columns-2.tight .column {
	width: 49%;
	margin-right: 1%;
	display: inline-block;
	vertical-align: top;
}

.columns-3 .column {
	width: 30.5%;
	margin-right: 4.25%;
	display: inline-block;
	vertical-align: top;
}

.columns-3.tight .column {
	width: 32%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.columns-4 .column {
	width: 23.5%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.columns-5 .column {
	width: 18.4%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.columns-5 .column {
	width: 19.2%;
	margin-right: 1%;
	display: inline-block;
	vertical-align: top;
}

.columns-6 .column {
	width: 15%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}


.columns-6 .column:nth-child(6n+6) {
	margin-right: 0px;
}

.columns-5 .column:nth-child(5n+5) {
	margin-right: 0px;
}

.columns-4 .column:nth-child(4n+4) {
	margin-right: 0px;
}

.columns-3 .column:nth-child(3n+3) {
	margin-right: 0px;
}

.columns-2 .column:nth-child(2n+2) {
	margin-right: 0px;
}

.col-2 {
	margin-top: 30px;
	column-count: 2;
	column-gap: 70px;
}

.col-2 p, .col-2 p:first-child {
	display: inline-block;
	margin-top: 40px;
}

/*  --------------------------------  */

.flex {
	display: flex;
}

.flex.wrap {
	flex-wrap: wrap;
}

.flex-grow {
	flex-grow: 1;
}

.space-between {
	justify-content: space-between;
}

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

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

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

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

.aligncontainer {
       margin: 0;
	  position: absolute;
	  top: 50%;
	  -ms-transform: translateY(-50%);
  		transform: translateY(-50%);
	width: 100%;
}

.section, section {
	margin: var(--sectionSpacer) 0;
}

.section.nobottom, section.nobottom, .nobottom {
	margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.mega, section.mega {
	margin: var(--megaSectionSpacer) 0 var(--megaSectionSpacer) 0;
}

.section.megatop, section.megatop {
	margin-top: var(--megaSectionSpacer);
}

.section.megabottom, section.megabottom {
	margin-bottom: var(--megaSectionSpacer);
}

.section.notop, section.notop, .notop {
	margin-top: 0 !important;
    padding-top: 0 !important;
}

section h2:first-child, .section h2:first-child {
    margin-top: 0;
}

.topmargin {
	margin-top: var(--sectionSpacer);
}

.bottommargin {
	margin-bottom: var(--sectionSpacer);
}

section.margin_to_padded, .margin_to_padded {
	margin: 0 !important;
	padding: var(--sectionSpacer) 0;
}

section.margin_to_padded.mega, .margin_to_padded.mega {
	padding: var(--megaSectionSpacer) 0;
}

.spacer {
	padding-top: var(--sectionSpacer);
}

.backgrounded {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.backgrounded.fixed {
	background-attachment: fixed;
}

/* --- solid button ---- */

.buttoncontainer.mini {
	margin: var(--miniSectionSpacer) 0;
}

.buttoncontainer {
	margin: var(--sectionSpacer) 0;
}

.bigbutton {
	margin-right: 10px;
    margin-bottom: 10px;
	background-color: transparent;
	color: #fff;
	font-family: var(--headingFont);
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 700;
    text-transform: uppercase;
	 -webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	display: inline-block;
	
	border-radius: 100px;
}

.bigbutton:hover {
	text-decoration: none;
}

.bigbutton:last-child {
	margin-right: 0;
}

.blocks .bigbutton {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.bigbutton.solid.white {
	background-color: #fff;
	color: var(--primaryColor);
     border: 2px solid var(--white); 
}

.bigbutton.solid.white:hover {
	background-color: var(--tertiaryColor);
	color: var(--white);
    border: 2px solid var(--tertiaryColor); 
}


.bigbutton.solid.green {
	background-color: var(--primaryColor);
	color: var(--white);
     border: 2px solid var(--primaryColor); 
}

.bigbutton.solid.green:hover {
	background-color: var(--primaryColor-alt);
	color: var(--white);
    border: 2px solid var(--primaryColor-alt); 
}

.bigbutton.solid.black {
	background-color:var(--black);
	color: var(--white);
	border: 2px solid var(--black); 
}

.bigbutton.solid.black:hover {
	background-color: var(--grey);
	color: var(--white);
}

.bigbutton.hollow.gold {
	 /* background-image: radial-gradient(circle at 100% 100%, transparent 30px, #f9db83 30px, #f9db83 32px, transparent 32px), linear-gradient(to right, #f9db83, #FAE5B2), radial-gradient(circle at 0% 100%, transparent 30px, #FAE5B2 30px, #FAE5B2 32px, transparent 32px), linear-gradient(to bottom, #FAE5B2, #dcb043), radial-gradient(circle at 0% 0%, transparent 30px, #dcb043 30px, #dcb043 32px, transparent 32px), linear-gradient(to left, #dcb043, #fae5b2), radial-gradient(circle at 100% 0%, transparent 30px, #fae5b2 30px, #fae5b2 32px, transparent 32px), linear-gradient(to top, #fae5b2, #f9db83); background-size: 32px 32px, calc(100% - 64px) 2px, 32px 32px, 2px calc(100% - 64px); background-position: top left,top center,top right,center right, bottom right,bottom center,bottom left,center left; background-repeat: no-repeat; */  
	
	border: 2px solid var(--gold); 
}

.bigbutton.hollow.black {
	border: 2px solid var(--black); 
	color: var(--black);
	background-color: var(--white);
} 

.bigbutton.hollow.black:hover {
	background-color: var(--lightgrey);
} 

.bigbutton.hollow.white {
	border: 2px solid var(--white); 
	color: var(--white);
} 

.bigbutton.hollow.white:hover {
	border-color: var(--tertiaryColor);
    color: var(--tertiaryColor);
    background-color: var(--tertiaryColor-10);
} 

.bigbutton.hollow.gold.blacktext {
	color: var(--black);	
}

.bigbutton.hollow.gold:hover {
	background-color: var(--gold-rgb-20);
	border-color: var(--lightgold); 
} 

.bigbutton.simple {
	padding-left: 0;
}

.bigbutton.simple:hover {
    color: var(--gold);
}

.bigbutton.simple:before {
	font-family: "Font Awesome 5 Free"; 
    content: '\f054';
	font-weight:  900;
	margin-right: 12px;
	color: var(--gold);
}


/* ---- end buttons ----- */


h1 {
	font-family: var(--headingFont);
	font-weight: 400;
	font-size: 26px;

	line-height: 36px;
	margin-top: 0;
	margin-bottom: var(--miniSectionSpacer);
	
	color: var(--white);
}

h1.mega {
	font-size: 85px;
	line-height: 95px;
}

h2 {
	font-family: var(--headingFont);
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	margin: 40px 0;
}

h3 {
	font-family: var(--textFont);
	font-weight: 300;
	font-size:  20px;

	line-height: 32px;
	margin-top: 0;
	margin-bottom: 20px;
}


h4 {
	font-family: var(--textFont);
	font-weight: 700;
	font-size: 18px;
}

p {
	font-family: var(--textFont);
	font-weight: 400;
	font-size:  18px;
	line-height: 30px;
    margin: var(--miniSectionSpacer) 0;
}


/* --- end styles ---- */

.abovethefold {
    background-color: var(--primaryColor);
    border-top: 8px solid var(--tertiaryColor);
    color: var(--white);
    padding-top: var(--megaSectionSpacer);
}

/* ----- MENU ----*/ 

nav {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    
    display: flex;
    justify-content: center;
    margin-top: var(--miniSectionSpacer);
    
    -webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

nav.active {

    background-color: var(--tertiaryColor);
    margin-top: 0;
    z-index: 10000;
}

.abovethefold .menu {
    list-style: none;
    display: flex;
    gap: 0px;
    position: relative;
    padding: 0;
    margin: 0;
}

/* Styling for each menu item */
.abovethefold .menu li {
    position: relative;
}

.abovethefold .menu a {
    text-decoration: none;
    color: var(--white);
    padding: 30px;
    font-size: 18px;
    display: inline-block;
    transition: color 0.3s ease;
    font-weight: 700;
}

.abovethefold nav.active .menu a {
    padding: 30px;
}

.abovethefold .menu a:hover {
    color: var(--tertiaryColor);
}

.abovethefold nav.active .menu a:hover {
    color: var(--white);
}

/* The single moving underline */
.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background-color: var(--tertiaryColor);
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease, left 0.3s ease, width 0.3s ease;
}

nav.active .underline {
    height: 6px;
    background-color: var(--white);
}

/* --- end menu ---- */

.logocontainer {
    margin-top: var(--sectionSpacer);
    margin-bottom: var(--miniSectionSpacer);
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.abovethefold h1 {
    font-weight: normal;
    margin-top: var(--miniSectionSpacer);
}

/* --- main slider ---- */

.mainslider {
    background-color: var(--tertiaryColor);
    
}

.slidercontainer {
    background-color: var(--black);
    height: 60vh;
    min-height: 600px;
    
    position: relative;
}

.the_slider, .the_slider .slide {
    height: 60vh;
    min-height: 600px;
}

.the_slider .slide {
    background-size: cover;
    background-position: center center;
}

.pattern {
    background-image: url("../images_interface/branding/pattern.svg");
    background-position: bottom left;
    height: 130px;
}

/* ---- videocontainer ------ */

.videocontainer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ---- content ----- */

.content_section {
    color: var(--primaryColor);
}

/* --- our menu ---- */

.ourmenu {
    background-color: var(--secondaryColor);
    color: var(--white);
     min-width: 0;
     width: 100%;
}


.ourmenu .flex {
    width: 100%;
    flex-direction: row;
    align-items: stretch; /* Ensure child items have equal height */
}

.ourmenu .flex > div {
   flex: 1;
}

.ourmenu .flex .imagepart {
  display: block;
    background-color: var(--black);
    position: relative; /* Ensures height calculations are based on parent */
    height: 100%; /* Inherit height from flex container */
    width: 50%;
}

.ourmenu .menu_slider{
    position: relative;
    min-height: 500px;
    width: 100%;
}

.menu_slider .slide {
    background-position: center center;
    background-size: cover;
    min-height: 500px; /* Occupies full height of imagepart */
    width: 100%; /* Make sure it takes full width */
}

.ourmenu .flex .contentpart {
    width: 50%;
}

.ourmenu .flex .contentpart .contentcontainer {
     padding: var(--sectionSpacer);
   margin: 0 10%;
}

.ourmenu .flex .contentpart h2 {
    margin-top: 0;
}

/* --- book table ---- */

.booktable .map {
    background-color: var(--black);
    height: 500px;
    margin-top: var(--sectionSpacer);
}

/* ---- get in touch ----- */

.getintouch {
    background-color: var(--primaryColor);
    color: var(--white);
}

.getintouch table {
    border-collapse: collapse;
}

.getintouch table td {
    border: 1px solid rgba(255,255,255,0.2);
    padding: var(--miniSectionSpacer) 30px;
}

.getintouch h4 {
     margin-top: 0;
    margin-bottom: 20px;
}

.getintouch p {
    margin-top: 0;
    margin-bottom: 0;
}


.getintouch p.social_icons a {
            -webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.getintouch p.social_icons a:hover {
    color: var(--tertiaryColor);
}    

footer .copy {
    margin-top: 10px;
    font-size: 12px;
}


footer .footer_menu {
    margin-bottom: 25px;
    font-size: 14px;
}

footer .footer_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer .footer_menu ul li {
    display: inline-block;
    margin: 0px 10px;
}

footer .footer_menu ul li:first-child {
    margin-left: 0;
}

footer .footer_menu ul li:last-child {
    margin-right: 0;
}

footer .footer_menu ul li a {
    font-weight: bold;
}

footer .credits a.creditdetail {
	webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin-left: 3px;
	font-weight: normal;
    font-size: 12px;
}

footer .credits a.creditdetail:hover {
	opacity: 1;
	text-decoration: none;
}

.credits .creditdetail.ff {
	opacity: 0.65;
}

.credits .creditdetail.ff img {
	vertical-align: middle;
	margin-left: 5px;
	margin-bottom: 1px;
}

@media screen and (max-width: 1100px) {
    
    .desktop, .tablet_portrait, .tablet_landscape, .mobile {
		display: none;
	}
	
	.tablet_landscape {
		display: block;
	}

	:root {
		--backgroundAttachment: unset;
        --megaSectionSpacer: 100px;
        --sectionSpacer: 70px;
	}
    
    h1 {
      font-size: 22px;
    }
    
    p {
        font-size:  16px;
        line-height: 25px;
        margin: var(--miniSectionSpacer) 0;
    }
    
    nav {
        margin-top: 20px;
    }
    
    .container.narrower {
      max-width: 1050px;
      width: 80%;
    }
    
    .abovethefold .menu a {
      padding: 25px;
      font-size: 16px;
    }
    
    .ourmenu .flex .contentpart .contentcontainer {
      padding: var(--sectionSpacer) var(--miniSectionSpacer);
      margin: 0;
    }
    
    .pattern {
      height: 95px;
    }
    
       
    
}

@media screen and (max-width: 850px) {
	
	.desktop, .tablet_portrait, .tablet_landscape, .mobile {
		display: none;
	}
	
	.tablet_portrait {
		display: block;
	}
    
    .ourmenu .flex {
        display: block;
    }
    
    .ourmenu .flex .imagepart, .ourmenu .flex .contentpart {
      width: 100%;
    }
    
}

@media screen and (max-width: 600px) {
	
	.desktop, .tablet_portrait, .tablet_landscape, .mobile {
		display: none;
	}
	
	.mobile {
		display: block;
	}
    
    .container {
      width: calc(100% - 80px);
    }
    
    .bigbutton, .blocks .bigbutton {
      display: block;
      width: calc(100% - 64px);
    }
    
    .logocontainer {
        width: 90%;
    }
    
    .logocontainer img {
        width: 80%;
    }
    
    .abovethefold nav {
        display: none;
    }
    
    .mainslider .container {
        width: 100%;
    }
    
    .slidercontainer, .the_slider, .the_slider .slide, .ourmenu .menu_slider, .menu_slider .slide {
      height: 400px;
      min-height: 0;
    }
    
    footer table td {
        display: block;
        width: calc(100% - 60px);
    }
    
    footer .flex {
        flex-direction: column;
    }
    
    footer .left_side, footer .right_side {
        width: 100%;
    }
    
    footer .left_side img {
        display: none;
    }
    
    footer .right_side {
        order: -1; /* Moves the .right_side above .left_side */
    }
    
    footer .text-left, footer .text-right {
      text-align: center;
    }
    
    /* --- mobile menu ---- */
    
    .menubuttoncontainer {
      position: fixed;
      top: 40px;
      left: 40px;
      z-index: 100;
      color: #fff;
      background: var(--tertiaryColor);
      width: 70px;
      height: 70px;
      line-height: 70px;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
      text-align: center;
    }
    
    .mburger {
		vertical-align: top;
		text-align: center;	
		height: 70px;
		line-height: 70px;
		width: 70px;
		color: #fff;
		 --mb-bar-height: 3px;
		 --mb-button-size: 70px;
		 --mb-bar-width: 0.4;
		z-index: 999;
        padding: 0;
        
    -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
	}

    .mm-menu {
            font-family: var(--headingFont);

            --mm-color-background: var(--primaryColor);
            --mm-listitem-size: 100px;
             --mm-color-text: #fff;
             font-size: 18px;
             text-transform: capitalize;
             font-weight: bold;
             --mm-color-button: #fff;
             --mm-color-border: var(--tertiaryColor);
        
        }
    
    .mm-menu .mm-listitem__text {
        font-weight: bold;
    }

    .mm-listitem::after {
        border-bottom-width: 2px;
    }
    
    .mm-navbar__title {
        font-family: var(--headingFont);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: bold;
    }

    .mm-wrapper_opening [class*="mm-menu_pagedim"].mm-menu_opened ~ .mm-wrapper__blocker {
      opacity: .5;
    }
    
    .mm-navbar {
        background-color: var(--tertiaryColor);
    }

    .mm-navbar__title {
         color: var(--primaryColor) !important;   
    }
    .mm-menu_offcanvas {
		width: 65%;
		min-width: 240px;
		max-width: none;
	}
	
	.mm-wrapper_opening .mm-menu_offcanvas ~ .mm-slideout {
	    -webkit-transform: translate3d(65vw,0,0);
		transform: translate3d(65vw,0,0);
	}
    
}