/*! Lity - v3.0.0-dev - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */

.lity-active,
.lity-active body {
  overflow: hidden;
}

.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, .9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 1200px;
  max-height: 100%;
  width: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: -o-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

.lity-close,
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  z-index: 9994;
  width: 35px;
  height: 35px;

  /* Change to position: absolute to display close button inside content container */
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  border: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:active {
  top: 1px;
}

/* Image */

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */

.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #000;
}

.lity-hide {
  display: none;
}




/*-- slick slider css --*/

.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
} 

.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots {
    text-align: left;
    bottom: 10px;
    left: 0;
    margin: 0 0 0 0px;
}
.slick-dots::after{
    content:"";
    clear:both;
    float:none;
}
.slick-dots li{
    margin:0 12px 0 0;
    display:inline-block;
    float:left;
}
.slick-dots button{
    border:none;
    outline:none;
    overflow:hidden;
    text-indent:-99999px;
    transition:0.35s ease;
    background-color:rgb(0 0 0 / 30%);
    border-radius:50%;
    width:10px; 
    height:10px;
    margin:0; 
    padding:0;
}
.slick-dots button:hover,
.slick-dots button:focus,
.slick-dots .slick-active button{
    background-color:#a99e81;
    transition:0.35s ease;
}

.slick-arrow{
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 7px 13px 8px 15px;
    margin: 0;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    transition:0.35s ease;
}
.slick-arrow:hover,
.slick-arrow:focus {
    color: #624e5f;
    background-color: #ffffff;
}
.black .slick-arrow{
      border: 1px solid black;
    color: black;
}
.black .slick-arrow:hover,
.black .slick-arrow:focus {
    color: #ffffff;
    background-color: #000000;
}
.slick-arrow.prev-btn{
    border-right:none;
    padding: 7px 15px 8px 13px;
}
.arrows .next-btn i.demo-icon.icon-left-arrow {
    transform: rotate(180deg) translateY(-2px);
    position: relative;
    display: block;
}
[class^="icon-"]:before, 
[class*=" icon-"]:before {
    margin: 0;
    width: auto;
    height: auto;
}
.testimonials::before {
    content: '“';
    font-family:"Muli";
    color:transparent;
   -webkit-text-stroke: 1px white;
    text-stroke:1px white;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    color:transparent;
    font-size:34vw;
    line-height:1.0;
    position:absolute;
    top:-100px;
    left:-10.8125vw;
    opacity:0.5;
}
[data-rellax-speed]{
    position:relative;
}
citation {
    position: relative;
    padding: 0 0 0 40px;
    display: block;
}

citation::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: rgb(255 255 255 / 75%);
    left: 0;
    top: 13px;
    position: absolute;
}
citation p {
    font-family: "Sorts Mill Goudy";
    font-size: 140%;
}

citation p strong {
    display: block;
    font-family: "Lato";
    font-weight: 400;
    font-size: 16px;
    color: #aa9e81;
}

/*-- cursor --*/
.cursor{
    width: 30px;
    height: 30px;
    background: nome;
    border: 1px solid white;
    border-radius: 50%;
    position: fixed;
    top: 0%;
    left: 0%;
    margin:0;
    pointer-events: none;
    transition: opacity .5s cubic-bezier(.215,.61,.355,1);
    z-index: 1000;
}



/*-- global toolkit --*/
html,
body,
*{
	box-sizing:border-box;
	font-family:"Muli";
    font-weight:500;
}
html{
	font-size:14px;
	font-family:"Muli";
	line-height:1.45;
}
p > em{
	font-family:"Montserrat";
}
main{
	overflow-x:hidden !important;
}
h2{
	font-family:"Muli";
	font-weight:800;
	letter-spacing:0px;
	font-size:24px;
}
h3{
	font-family:"Muli";
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
}
[data-bg="light-blue"] h2,
[data-bg="dark-green"] h2,
[data-bg="indigo"] h2,
[data-bg="purple"] h2,
[data-bg="dark-green"] p,
[data-bg="indigo"] p,
[data-bg="purple"] p{
    color:white;
}
@media screen and (min-width: 650px) {
	html{
		font-size: calc(14px + 2 * ((100vw - 650px) / 950));
	}
	h2{
		font-size: calc(24px + 10 * ((100vw - 650px) / 950));
	}
    h3{
        font-size: calc(12px + 2 * ((100vw - 650px) / 950));
    }
}
@media screen and (min-width: 1600px) {
	html {
		font-size: 16px;
	}
    h2{
        font-size:38px;
    }
	h3{
		font-size:14px;
	}
}

a{
	font-size:inherit;
	display:inline-block;
	outline:none;
	color:inherit;
	text-decoration:none;
}
.bg-img {
    position: absolute;
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display:block;
    z-index:0;
}
button[name="form_page_submit"],
.btn{
	color: black;
    background: transparent;
    border: 1px solid black;
    font-size: 11px;
    text-transform: uppercase;
    font-family: "Lato";
    font-weight: bold;
    letter-spacing: 1.5px;
    border-radius: 25px;
    padding: 8px 26px;
    transition:0.35s ease;
}
button[name="form_page_submit"]:hover,
.btn:hover,
button[name="form_page_submit"]:focus,
.btn:focus{
    color:white;
    background-color:black;
    transition:0.35s ease;
}
button[name="form_page_submit"],
.btn.white{
    color:white;
    border-color:white;
}
button[name="form_page_submit"]:hover,
.btn.white:hover,
button[name="form_page_submit"]:focus,
.btn.white:focus{
    color:black;
    background-color:white;
    transition:0.35s ease;
}
.btn-box{
	margin:30px 0 0;
}
.btn-box .btn{
	margin:0 10px 10px 0;
}
.btn.space{
    margin:0 10px 10px 0;
}

figure {
    margin: 0;
    padding: 0;
    position: relative;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
.relative{
	position:relative;
}
.text-center{
	text-align:center;
}
[text-reveal]{
    overflow:hidden;
}
.split-line {
  overflow: hidden;
  font-weight: 800;
}
h2[text-reveal] *{
    font-weight: 800;
}

/*-- intro --*/
.brands a {
    display: block;
    font-size: 32px;
    margin: 0 15px;
}

.brands li:nth-of-type(4) a {
    font-size: 55px;
}

.brands li:nth-of-type(1) a {
    font-size: 40px;
}

.arrow .brands li{
	transform:translateY(30px);
	opacity:0;
	transition:0.25s ease 0s;
}
.arrow .animate .brands li{
	transform:translateY(0);
	opacity:1;
	transition:0.5s ease 0.15s;
}
.arrow .animate .brands li:nth-of-type(2){
	transition:0.5s ease 0.25s;
}
.arrow .animate .brands li:nth-of-type(3){
	transition:0.5s ease 0.35s;
}
.arrow .animate .brands li:nth-of-type(4){
	transition:0.5s ease 0.45s;
}
.brands [class^="icon-"]:before, 
.brands [class*=" icon-"]:before {
    width: auto;
    margin: 0;
}
.brands svg {
    width: 60px;
    margin: 0 0 -9px 0;
}
.intro .pad{
    padding-right:50px;
}
.intro .image-cols .third {
    padding: 0 10px;
}
.intro .image-cols .img-block {
    height: auto;
    padding: 0 0 120%;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
}
.arrow .intro .half.flex-wrap.relative.image-cols {
    position: absolute;
    top:50px;
    right: 7.8125vw;
    left: calc(50% + 50px);
    width: auto;
}

@media only screen and (max-width:768px){
    .intro .half.pad{
        padding-right:7.8125vw;
    }
    .arrow .intro .half.pad,
    .arrow .intro .half.flex-wrap.relative.image-cols,
  	.intro .half.pad,
    .intro .half.flex-wrap.relative.image-cols{
        width:100%;
    }
    .arrow .intro .half.flex-wrap.relative.image-cols,
    .intro .half.flex-wrap.relative.image-cols {
        position: relative;
        left: initial;
        right: initial;
        padding:50px 7.8125vw 50px;
        top:initial;
        width: 100%;
        transform:translateY(250px);
    }
    .arrow #intro > .flex-wrap{
    	margin-bottom:250px;
    }
    .arrow .intro .half.flex-wrap.relative.image-cols {
      position: static;
      left: initial;
      top: initial;
      right: initial;
      width: 100%;
  }
  /* 
    .intro .half.flex-wrap.relative.image-cols .third {
        display: table;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 100%;
        padding: 0;
        margin: 10px 0;
    }

    .intro .image-cols .img-block {
        width: calc(20% - 20px);
        padding: 0 0 40%;
        margin: 0 10px;
    }*/
}


/*-- flex grid --*/
.pad{
	padding: 50px 7.8125vw;
}
.pad-more{
	padding:50px 10.625vw;
}
.pad-top{
	padding-top:50px;
}
.pad-tb{
	padding:50px 0;
}
.brands{
    display:table;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;    
    display: flex; 
    justify-content: center;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}
.flex-wrap {
    position: relative;
    z-index: 1;
    display:table;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;    
    display: flex; 
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction:row;
}
.flex-col{
    display:table;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;    
    display: flex; 
    -ms-flex-direction: column;
    flex-direction:column;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:center;
}
.flex-wrap.reverse{
	flex-direction:row-reverse;
}
.thirty{
    width:30%;
}
.flex-wrap.gutter .thirty{
    width: calc(30% - 2vw);
    margin:0 0 4vw;
}

.one-third,
.third{
    width:33.333%;
}
.flex-wrap.gutter .one-third,
.flex-wrap.gutter .third{
    width: calc(33.333% - 2vw);
    margin:0 0 4vw;
}
.forty{
    width:40%;
}
.flex-wrap.gutter .forty{
    width: calc(40% - 2vw);
    margin:0 0 4vw;
}
.fourth{
    width:25%;
}
.flex-wrap.gutter .fourth{
    width: calc(25% - 15px);
    margin:0 0 30px;
}

.half{
    width:50%;
}
.flex-wrap.gutter .half{
    width: calc(50% - 2vw);
    margin:0 0 4vw;
}
 

.flex-wrap .flex-wrap.gutter .half{
    width: calc(50% - 1vw);
    margin:0 0 2vw;
}

.sixty{
    width:60%;
}
.flex-wrap.gutter .sixty{
    width: calc(60% - 2vw);
    margin:0 0 4vw;
}
.two-thirds{
    width:66.666%;
}
.flex-wrap.gutter .two-thirds{
    width: calc(66.666% - 2vw);
    margin:0 0 4vw;
}
.seventy{
    width:70%;
}
.flex-wrap.gutter .seventy{
    width: calc(70% - 2vw);
    margin:0 0 4vw;
}

@media only screen and (max-width:650px){
  .flex-wrap.gutter .half {
      width: 100%;
      margin: 0 0 40px;
  }
  .restaurant.flex-wrap.gutter .half {
      width: 100%;
      margin: 0 0 0px;
  }
  .restaurant.flex-wrap.gutter .half.text {
      margin: 0 0 40px;
  }

  [data-bg="navy"] .flex-wrap.gutter .one-third,
  [data-bg="navy"] .flex-wrap.gutter .two-thirds{
      width: 100%;
  }

}



/*-- nav --*/
a.skip-link {
    background-color: inherit;
    font-size: 0;
    text-decoration: none;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    width: 99%;
    z-index:999999;
    transition: all .35s ease;
}
a.skip-link:focus {
    display: block;
    position: static;
    top:0;
    padding: 20px 50px;
    width: 100%;
    font-size: 28px;
    margin: 0px 0px 10px 0px;
}
header h1 a{
	font-family: 'Sorts Mill Goudy';
	font-weight:400;
	font-size:32px;
	color:white;
}
header a svg {
    display: block;
    width: 200px;
}
header nav a {
    display: block;
    font-family: "Lato";
    font-size: 15px;
    margin: 0 0 0 2.5vw;
    color:white;
    position:relative;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header h1 {
    margin: 0;
    width: 270px;
    line-height:1.0;
}
.nav-bg,
.header-bg{
	position:absolute;
	top:0;
	right:0;
	left:0;
	height:calc(100% + 50px);
	z-index:-1;
	pointer-events:none;
}
/*.nav-bg{
    height:auto;
    top:-32px;
    left:-32px;
    bottom:-32px;
    left:initial;
    filter:blur(16px);
    width:115%;
}*/

#close-nav, #open-nav {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 30px;
    display: none;
}

.alt {
    text-indent: 9999999999px;
    display: block;
    color: inherit;
    background-color:inherit;
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
}
 
header nav ul.flex-wrap {
    align-items: flex-end;
    flex-wrap: nowrap;
}

header {
	position:fixed;
	z-index:9;
	top:0;
	right:0;
	left:0;
    padding: 20px 25px;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.burger {
    width: 30px;
    height: 1.5px;
    background: white;
    display: block;
    position: absolute;
    left: 0;
    transition: all 300ms;
}
#open-nav {
    position: relative;
    width: 30px;
}
.burger.middle {
    top: 7px;
    transform: all 150ms;
}
.burger.top {
    top: 0;
}
.burger.bottom {
    top: 14px;
}
.nav-active .burger.middle{
	opacity: 0;
  	width: 0;
}
.nav-active .burger.top{
	transform: rotate(45deg);
	top:7px;
}
.nav-active .burger.bottom{
	transform: rotate(-45deg);
	top:7px;
}
@media only screen and (max-width:1200px){
	header h1 {
	    width: 240px;
	    line-height: 0.7;
	}
	header h1 a {
	    font-size: 28px;
	}
	header nav a {
	    font-size: 12.5px;
	}
}
@media only screen and (max-width:1024px){
	body {
	    position: relative;
	    overflow-x:hidden;
	}

	header .content-wrap {
	    display: table;
	    display: -webkit-box;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: -webkit-flex;
	    display: flex;
	    justify-content: space-between;
	     width:100%;
	     z-index:9;
	}
	header nav{
		position:fixed;
		top:50px;
        right:0;
		left:0;
		bottom:0;
        z-index:8;
        padding:40px 7.25vw;
        visibility:hidden;
        pointer-events:none;
        transform-origin: bottom center;
        text-align:left;
	}
	header nav ul.flex-wrap{
		display:block;
	}
	.nav-active main{
		overflow-y:hidden;
	}
	#close-nav, 
    #open-nav{
		outline:none;
		display:block;
		cursor:pointer;
	}
	#close-nav svg, 
    #open-nav svg{
	    width: 30px;
	    margin: 0;
	}
    #close-nav{
        margin:0 0 0 auto;
    }
    #close-nav svg{
        width:24px;
        margin:0 0 0 auto;
    }
    .nav-active .burger{
    	background-color:black !important;
    	transition:0.35s ease 0.35s;
    }
    .nav-active header a svg {
    	fill:black !important;
    	transition:0.35s ease 0.35s;
    }
    .nav-active .cursor{
    	border-color:black;
    	transition:0.35s ease 0.35s;
    }
    .nav-active header nav{
        visibility:visible;
        pointer-events:initial;
    }
    .nav-active header h1 a,
    .nav-active header nav a{
    	color:black !important;
    }
    header nav a{
        font-size: 28px;
	    font-family: "Muli";
	    font-weight: 800;
	    margin: 0 0 10px 2.5vw;
	    display:inline-block;
	    position:relative;
	    opacity:0;
	    transform:translateX(20px);
	    transition: 0.35s ease 0s;
	    color:black;
	}
	header nav li:nth-of-type(even) a{
		transform:translateX(-20px);
		transition: 0.35s ease 0s;
	}
	.nav-active header nav a,
	.nav-active header nav li:nth-of-type(even) a{
		transform:translateX(0%);
		opacity:1;
		transition: 0.35s linear 0s;
	}
	.nav-active header nav li:nth-of-type(7) a{
		transition: 0.35s linear 0.1s;
	}
	.nav-active header nav li:nth-of-type(6) a{
		transition: 0.35s linear 0.15s;
	}
	.nav-active header nav li:nth-of-type(5) a{
		transition: 0.35s linear 0.2s;
	}
	.nav-active header nav li:nth-of-type(4) a{
		transition: 0.35s linear 0.25s;
	}
	.nav-active header nav li:nth-of-type(3) a{
		transition: 0.35s linear 0.3s;
	}
	.nav-active header nav li:nth-of-type(2) a{
		transition: 0.35s linear 0.35s;
	}
	.nav-active header nav li:nth-of-type(1) a{
		transition: 0.35s linear 0.4s;
	}
	.nav-bg{
		background:white;
		transform:scaleY(0);
		transform-origin:bottom;
		transition: 0.45s cubic-bezier(0.37, 0, 0.63, 1) 0s;
		height:calc(100vh + 60px);
		top:initial;
		bottom:0;
	}
	.nav-active .nav-bg{
		transform:scaleY(1);
		transition: 0.45s cubic-bezier(0.37, 0, 0.63, 1) 0s;
	}
	header nav ul.flex-wrap {
	    display: inline-block;
	}

	.nav-active header nav ul.flex-wrap:hover li {
	    opacity: 0.35;
	    transition: opacity 0.35s ease;
	}

	.nav-active header nav ul.flex-wrap:hover li:hover,
  .nav-active header nav ul.flex-wrap:hover li:focus {
	    opacity: 1;
	    transition: opacity 0.35s ease;
	}

	.nav-active ul.flex-wrap li {
	    transition: opacity 0.35s ease;
	}
}

/*-- overlap images --*/
figure{
    width:100%;
}
.parallax-wrap{
	overflow:hidden;
	height:40vw;
}	
.overview figure:first-of-type img[data-speed="auto"],
img[data-speed="auto"]{
    width: 100%;
    height: 130%;
    object-fit: cover;
}

.overlap-images.left figure:nth-of-type(2) {
    z-index: 2;
    width: 70%;
    right: -5vw;
    top: -20%;
    margin: 0 0 0 auto;
}
.overlap-images.right figure:nth-of-type(1) {
    z-index: 2;
    width: 45%;
    left: -5vw;
    top: 0%;
    margin: 0 0 0;
}
/*
@keyframes rightImgReveal {
    0%{
        clip-path:inset(0% 100% 0% 0%);
    }
    100%{
        clip-path:inset(0% 0% 0% 0%);
    }
}
.overlap-images.right.animate figure:nth-of-type(1){
	animation: 1s cubic-bezier(0.76, 0, 0.24, 1) 0.5s 1 forwards rightImgReveal;
}
.overlap-images.right.animate figure:nth-of-type(2){
	animation: 1s cubic-bezier(0.76, 0, 0.24, 1) 0s 1 forwards rightImgReveal;
}*/

section[data-bg="purple"].overlap-images.right figure:nth-of-type(1) {
    top: 50%;
}
.overlap-images.right figure:nth-of-type(2) {
	top: -20%;
}
@media only screen and (max-width:768px){
    .sixty {
        width: 100%;
    }

    .sixty.pad {
        padding: 50px 10.625vw;
    }

    .forty {
        width: 70%;
        margin: 0 0 0 auto;
    }

    .overlap-images.right figure:nth-of-type(2) {
        right: 0;
    }

    #awards .forty {
        order: 1;
        width: 100%;
        margin-top: 0px;
    }

    section#awards .sixty {
        order: 2;
    } 

    #awards.overlap-images.right figure:nth-of-type(2) {
        top: 0;
        height:450px;
    }
    .parallax-wrap{
    	height:450px;
    }
    .arrow #awards.overlap-images.right.animate figure:nth-of-type(1) {
        position: absolute;
    	height: 350px;
    	top: -50px;
    }
    .arrow #awards.overlap-images.right.animate figure:nth-of-type(1) img {
	    object-fit: cover;
	    width: 100%;
	    height: 100%;
	}
}

/*-- svg handwritten text --*/
.text-mask{
    width: 110%;
    position: relative;
    margin: 0 0 -75px -4.25vw;
    z-index: -1;
}

.mask {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  fill:none;
  stroke-width:5;
}
#do-what-you-love-text {
    margin: 0 0 -84px -5.25vw;
}
#happiness-is-everything-text {
    width: 120%;
    margin: 0 0 -60px -5.25vw;
}
.arrow #content section{
	opacity:0;
	transition:0.25s ease;
}
.arrow #content section.animate{
	opacity:1;
	transition:0.25s ease;
}


@media only screen and (max-width:768px){
	.text-mask{
	    width: 100%;
	}
	#happiness-is-everything-text {
	    width: 100%;
	    margin: 0 0 -60px -5.25vw;
	}
}
@media only screen and (max-width:600px){
	.text-mask{
	    margin: 0 0 -55px -4.25vw;
	}
	#do-what-you-love-text {
	    margin: 0 0 -64px -7.25vw;
	}
	#happiness-is-everything-text {
	    margin: 0 0 -48px -4.25vw;
	}

}
/*-- locations --*/
.arrow #locations .third{
	transform:translateY(30px);
	opacity:0;
	transition:0.25s ease 0s;
}
.arrow #locations.animate .third{
	transform:translateY(0);
	opacity:1;
	transition:0.5s ease 0.15s;
}
.arrow #locations.animate .third:nth-of-type(2){
	transition:0.5s ease 0.25s;
}
.arrow #locations.animate .third:nth-of-type(3){
	transition:0.5s ease 0.35s;
}
.locations-bg.bg-img {
    z-index: -1;
    opacity: 0;
    /*mix-blend-mode: darken;*/
    background-repeat: no-repeat;
    position:fixed;
    height:100vh;
    top:0;
    left:0;
    width:100%;
}



.locations .flex-wrap.gutter .third {
    width: calc(33.333% - 6px);
    margin: 0 0 12px;
}

.locations .text {
    padding: 0 24px 0 12px;
}
.locations .text h3{
	color:white;
    margin: 20px 0 8px;
}
.locations .text p {
    font-size: 82%;
    margin:0;
}
.locations .text-center p {
    max-width: 75%;
    margin: 0 auto 30px;
}
@media only screen and (max-width:768px){
    .locations .half {
        width: 100%;
        text-align: center;
        padding: 0 45px;
        margin: 0 0 40px;
    }
    .locations .flex-wrap.gutter{
        display:block;
    }
    .locations .flex-wrap.gutter .third{
        width: 100%;
        display: table;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .locations .flex-wrap.gutter .third:nth-of-type(even){
        flex-direction:row-reverse;
    }
    .locations .flex-wrap.gutter .third figure,
    .locations .flex-wrap.gutter .third .text{
        width:50%;
    }
    .locations .flex-wrap.gutter .third .text{
        padding:20px;
    }
    .locations .flex-wrap.gutter .third:nth-of-type(even) .text{
        text-align:right;
    }
}
@media only screen and (max-width:500px){
	.locations .flex-wrap.gutter .third{
        width: 100%;
        display: block;
    }
    .locations .flex-wrap.gutter .third figure,
    .locations .flex-wrap.gutter .third .text{
        width:100%;
    }
    .locations .flex-wrap.gutter .third .text,
    .locations .flex-wrap.gutter .third:nth-of-type(even) .text{
        width:100%;
        text-align:center;
        margin:0 0 50px;
    }
}

/*-- great place section --*/
.great-place figure:nth-of-type(1) {
    position: absolute;
    min-width: 70px;
    top: -30px;
    left: 4.25vw;
    z-index: 1;
    max-width: 120px;
    width: 13.125vw;
    transition: 0.25s ease 0s;
}
.arrow .great-place figure:nth-of-type(1) {
    
    opacity:0;
    transition: 0.25s ease 0s;
}
.arrow .animate .great-place figure:nth-of-type(1){
	opacity: 1;
    transition: 0.35s ease 0.25s;
}
.numbers .number{
	color:#a9a08b;
	font-size:300%;
	font-weight:700;
}
.numbers .number span{
	font-weight:100;
}
.numbers p{
	font-size:80%;
}
.arrow .numbers .third{
	transform:translateY(30px);
	opacity:0;
	transition:0.25s ease 0s;
}
.arrow .animate .numbers .third{
	transform:translateY(0);
	opacity:1;
	transition:0.5s ease 0.4s;
}
.arrow .animate .numbers .third:nth-of-type(2){
	transition:0.5s ease 0.55s;
}
.arrow .animate .numbers .third:nth-of-type(3){
	transition:0.5s ease 0.7s;
}
@media only screen and (max-width:768px){
    .great-place figure:nth-of-type(1) {
        left: 6vw;
        max-width: none;
        width: 20vw;
    }

    .forty.great-place.relative {
        width: 100%;
    }
    #testimonials .forty{
    	width:100%;
    }
}


/*-- our restaurants --*/

.overview .parallax-wrap {
    height: 35vw;
}
.overview figure:first-of-type {
    position: absolute;
    z-index:1;
    width: 60%;
    top:initial;
    left:-4.25vw;
    bottom:0;
    height: 25vw;
}

.overview figure:first-of-type img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.restaurant p > em,
.restaurant p > a > em{
    font-family:"Sorts Mill Goudy";
}
.arrow .overview .btn-box .btn,
.arrow .restaurant .btn-box .btn {
    transform:translateY(30px);
    opacity:0;
    transition:0.25s ease 0s, background 0.35s ease 0s, color 0.35s ease;
}
.arrow .overview.animate .btn-box .btn,
.arrow .animate .restaurant .btn-box .btn {
    transform:translateY(0);
    opacity:1;
    transition:0.5s ease 0.4s, background 0.35s ease 0s, color 0.35s ease;
}
.arrow .overview.animate .btn-box .btn:nth-of-type(2),
.arrow .animate .restaurant .btn-box .btn:nth-of-type(2){
    transition:0.5s ease 0.55s, background 0.35s ease 0s, color 0.35s ease;
}
.arrow .overview.animate .btn-box .btn:nth-of-type(3),
.arrow .animate .restaurant .btn-box .btn:nth-of-type(3){
    transition:0.5s ease 0.7s, background 0.35s ease 0s, color 0.35s ease;
}
.overview .logo.bf{
    max-width:380px;
        margin: 20px 0 20px;
}
.overview .reverse  figure:first-of-type {
    left: initial;
    right: -3.25vw;
}

.overview .logo.bmtn {
    fill: white;
    max-width: 200px;
    text-align: center;
    display: block;
    margin: 0 0 40px;
}
.overview .logo.bfb{
        fill: white;
    max-width: 330px;
    margin: 0 0 30px;
}
@media only screen and (max-width:650px){
	.flex-wrap.restaurant {
	    display: block;
	}

	.flex-wrap.restaurant .half {
	    width: 100%;
	}

	.overview .forty {
	    width: 100%;
	}

	.overview .parallax-wrap {
	    height: 450px;
	}

	.overview figure:first-of-type {
	    height: 350px;
	    bottom: -40px;
	}
}
.featuredTitle {
    padding: 20px 0 0 20px;
}
/*-- opportunities --*/
select.filter{
    outline:none;
    border:none;
    display:block;
    width:100%;
    border-radius:25px;
    margin:0 0 8px;
    position:relative;
    background-color:#222534;
    padding:12px 36px 12px 16px;
    font-family:"Sorts Mill Goudy";
    font-style:italic;
    color:#c2c3c7;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(/assets/images/drop-down.png);
    background-size: 20px;
    background-position: calc(100% - 9px) center;
    background-repeat: no-repeat;
}
.featured,.opportunities{
    list-style:none;
    margin:0 0 80px 0;
    padding:0;
}
.featured{
  /* border-bottom: 1px solid #475673; */
}
.featured li a,.opportunities li a{
    display:block;
    margin:20px 0 20px;
    border-bottom:1px solid #475673;
    padding:0 0 0 20px;
}
[data-bg="navy"] h3,
.featured h3, .opportunities h3 {
    color:#c7ccc8;
}
.featured h3, .opportunities h3 {
    margin:10px 0;
}
.featured h3 > em, .opportunities h3 > em{
    position:relative;
    text-transform:none;
    color:#c2c3c7;
    letter-spacing: 0;
    font-style:normal;
    font-weight:400;
    font-size:110%;
    margin:0px 0 0px;
    padding: 0 30px 0 0;
}
.featured h3 > em::after, .opportunities h3 > em::after{
    content: "";
    background-color: rgb(194 195 199 / 40%);
    position: relative;
    top: 10px;
    width: 1px;
    height: 30px;
    margin: -20px 0 0 auto;
    right: -15px;
    display: inline-block;
}
.featured p > em, .opportunities p > em {
    font-family: "Sorts Mill Goudy";
    font-style: italic;
    color: #688ce0;
}
.featured li h2, .opportunities li h2 {
    font-size:24px;
    margin:0px;
}
button#search {
    background: transparent;
    border: none;
    outline: none;
    font-family: "Muli";
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #b6ad9b; 
    display:flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0 0;
    text-align: right;
    width: 100%;
}
#search svg {
    width:20px;
    fill: #b6ad9b;
    margin:0 5px 0 0;
}

#search svg path {
    fill: inherit;
}
@media screen and (min-width: 650px){
    .featured li h2, .opportunities li h2 {
        font-size:calc(24px + 8 * ((100vw - 650px) / 950));
    }
}
@media screen and (min-width: 1600px) {
    .featured li h2, .opportunities li h2 {
        font-size:32px;
    }
}


/*-- career paths --*/
.choose-path .half {
    background: #274056;
    padding: 60px 40px;
    border-radius: 30px;
    color: white;
    position:relative;
    transition:0.35s ease;
}
.choose-path .half:hover,
.choose-path .half:focus {
    background: #1d6bae;
    transition:0.35s ease;
}
.choose-path .half::before{
	content:"Learn more";
	border:1px solid white;
	border-radius:25px;
	position:absolute;
	z-index:1;
	padding:10px 20px;
	text-transform:uppercase;
	letter-spacing:1px;
	bottom:60px;
	left:0px;
  right:0;
	opacity:0;
	transform:translateY(20px);
	transition:0.35s ease;
	font-size:12px;
	font-weight:700;
  margin: 0 auto;
    text-align: center;
    width: 106px;
}
/*
.choose-path .half:nth-of-type(even)::before{
	right:40px;
	left:initial;
}*/
.choose-path h2{
font-family: "Sorts Mill Goudy";
    font-weight: 400;
    color: #f9ca25 !important;
    font-size: 6vw;
    line-height: 1.0;
     text-align: center;
    margin-bottom: 20px;
}
.choose-path .half:hover::before,
.choose-path .half:focus::before{
	opacity:1;
	transform:translateY(0px);
	transition:0.35s ease;
}
.choose-path .half ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
     justify-content:center;
    align-items:center;
    width: 100%;
    margin: 0 auto;
}

/*
.choose-path .half:nth-of-type(even) ul {
    justify-content: flex-end;
}*/
.choose-path .half ul li{
      padding: 0 0 0 2.7vw;
    position: relative;
    font-size: 1.3vw;
}
.choose-path .half ul li::before{
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(84, 152, 210);
    position: absolute;
    display: block;
    top: 10px;
    left: calc(1.35vw - 2.5px);
}
.choose-path .text-mask {
    width: 80%;
    margin: 0 0 0 -4.25vw;
    z-index: 0;
}

.choose-path .text-mask path, 
.choose-path .text-mask line {
    fill: #f9ca25 !important;
}

.overview figure.full-height:first-of-type, 
.overview figure.full-height {
    height: 100%;
    left: 0;
    width: 100%;
    min-height: 450px;
    position: relative;
}
figure.you-circle {
    position: absolute;
    z-index: 8;
    width: 140px;
    transform: translate3D(-50%, -50%,0);
    top: 50%;
    left: 50%;
}

.choose-path.flex-wrap.gutter .half {
    width: calc(50% - 15px);
    margin: 0px 0 30px;
}
/*
.choose-path .half:nth-of-type(1) ul {
    width: 90%;
    margin: 0 0 0;
}

.choose-path .half:nth-of-type(2) ul {
    width: 60%;
    margin: 0 0 0 auto;
}*/

.choose-path .half ul li:first-of-type::before {
    display: none;
}

.choose-path .half ul li:first-of-type {
    padding: 0;
}
.choose-path .half ul{
    transition:0.35s ease;
}
.choose-path .half:hover ul,
.choose-path .half:focus ul {
    opacity: 0;
    transition:0.35s ease;
}
.choose-path .half .arrow {
    display: block;
    width: 95px;
    height: 75px;
    position: absolute;
    transform: rotate(38deg);
    top: 20px;
    right: -60px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.choose-path .half:nth-of-type(2) .arrow {
    top: initial;
    bottom: -50px;
    right: 20px;
    transform: rotate(128deg);
}

.choose-path .half:nth-of-type(1) .arrow:nth-of-type(2){
    top: initial;
    bottom: -50px;
    left: 20px;
    transform: rotate(-54deg);
}

.choose-path .half:nth-of-type(4) .arrow {
    top: initial;
    bottom: 20px;
    left: -61px;
    transform: rotate(-143deg);
}
.choose-path.flex-wrap.gutter .half:nth-of-type(1) {
    z-index: 2;
}

.choose-path.flex-wrap.gutter .half:nth-of-type(2) {
    z-index: 1;
}
.choose-path.flex-wrap.gutter .half:nth-of-type(1) ul li:nth-of-type(3)::before,
.choose-path.flex-wrap.gutter .half:nth-of-type(3) ul li:nth-of-type(4)::before,
.choose-path.flex-wrap.gutter .half:nth-of-type(4) ul li:nth-of-type(4)::before{
    display: none;
}
.photo-cards a {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    word-wrap: break-word;
    hyphens: auto;
}
.photo-cards .text{
	z-index:1;
	position:absolute;
	bottom:0;
	left:0;
	padding: 40px 25px;
    width: 100%;
}
.photo-cards .btn {
    background: transparent;
    padding: 0 0 1px;
    margin: 0;
    border: none;
    border-bottom: 2px solid #ebc21c;
    color: white;
    border-radius: 0px;
} 

.photo-cards figure::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

.photo-cards h2 {
    margin: 0;
    line-height: 1.2;
    margin: 0 0 8px;
    color:white !important;
}
.photo-cards figure{
	height: 28vw;
    min-height: 350px;
    max-height:600px;
}
.arrow .photo-cards a{
	transform:translateY(30px);
	opacity:0;
	transition:0.25s ease 0s;
}
.arrow .animate .photo-cards a{
	transform:translateY(0);
	opacity:1;
	transition:0.5s ease 0.15s;
    z-index: 1;
}
.arrow .animate .photo-cards a:nth-of-type(2){
	transition:0.5s ease 0.25s;
    z-index: 2;
}
.arrow .animate .photo-cards a:nth-of-type(3){
	transition:0.5s ease 0.35s;
    z-index: 3;
}
.arrow .animate .photo-cards a:nth-of-type(4){
	transition:0.5s ease 0.45s;
    z-index: 4;
}
.arrow .animate .photo-cards a:nth-of-type(5){
    transition:0.5s ease 0.55s;
    z-index: 4;
}
.arrow .animate .photo-cards a:nth-of-type(6){
    transition:0.5s ease 0.65s;
    z-index: 4;
}
.arrow .animate .photo-cards a:nth-of-type(7){
    transition:0.5s ease 0.75s;
    z-index: 4;
}
#path-links .photo-cards.flex-wrap.gutter .fourth,
#home-links .photo-cards.flex-wrap.gutter .fourth {
    margin: 0 7.5px 15px;
    border-radius:0;
}
#path-links .photo-cards.flex-wrap.gutter,
#home-links .photo-cards.flex-wrap.gutter {
    justify-content: center;
}
#path-links .photo-cards figure,
#home-links .photo-cards figure {
    height: 20vw;
    min-height: 250px;
    max-height: 500px;
}
#path-links .photo-cards .text,
#home-links .photo-cards .text {
    bottom:initial;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
#path-links .photo-cards h2,
#home-links .photo-cards h2 {
    font-family: "Sorts Mill Goudy";
    text-align: center;
    font-weight: 400;
        text-shadow: 0 2px 8px black;
}
.photo-cards figure img {
    object-fit:cover;
    max-width:none;
    width:100%;
    height:100%;
}
.photo-cards.flex-wrap.gutter .half {
    width: calc(50% - 15px);
    margin: 0 7.5px 15px;
}
.photo-cards.flex-wrap.gutter .third {
    width: calc(33% - 15px);
    margin: 0 7.5px 15px;
}

.photo-cards a {
    border-radius: 0;
}
.photo-cards h3 {
    margin: 0;
}
.flex-wrap.gutter.photo-cards{
  justify-content: center;
}
@media only screen and (max-width:1024px){
  .photo-cards.paths.flex-wrap.gutter .fourth{
    width:calc(50% - 15px);
  }
  .flex-wrap.gutter.photo-cards{
    justify-content: flex-start;
  }
  #home-links .photo-cards .text{
        padding: 40px 10px;
  }
  
  #home-links .photo-cards h2, #path-links .photo-cards h2 {
      font-size: 24px;
  }
  #path-links .photo-cards .text {
    padding: 40px 8px;
  }
}
@media only screen and (max-width:768px){
  figure.you-circle{
        top: 48%;
  }
  #path-links .flex-wrap.gutter.photo-cards .fourth,
	#home-links .flex-wrap.gutter.photo-cards .fourth{
	    width: calc(50% - 15px);
	}
	#home-links .flex-wrap.gutter.photo-cards .fourth:nth-of-type(1), 
	#home-links .flex-wrap.gutter.photo-cards .fourth:nth-of-type(4), 
	#home-links .flex-wrap.gutter.photo-cards .fourth:nth-of-type(7) {
	    width: 100%;
	}
  .photo-cards.flex-wrap.gutter .third {
      width: calc(50% - 15px);
      margin: 0 7.5px 15px;
  }

}
@media only screen and (max-width:650px){
  .photo-cards.paths.flex-wrap.gutter .fourth{
    width:100%;
  }
  .photo-cards.flex-wrap.gutter .half,
  .photo-cards.flex-wrap.gutter .third {
      width: 100%;
      margin: 0 0px 15px;
  }
  
}
ul.arrows {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
} 
p + ul.arrows {
    margin: 30px 0 20px;
}
ul.arrows li {
    padding: 0 0 0 18px;
    position: relative;
    color: white;
    font-size: 120%;
    margin: 0 0 12px 0;
    font-weight: 700;
}

ul.two-columns {
    columns: 2 180px;
    column-gap: 60px;
}

ul.arrows li::before {
    content: "\e803";
    display: block;
    position: absolute;
    font-family: "Fontello";
    left: 0;
    font-size: 85%;
    color: #b6ad9b;
    top: 3px;
    -webkit-text-stroke: 2px;
}
ul.arrows li a {
  text-decoration: underline;
    transition: 0.35s ease;
    font-weight:inherit;
}
ul.arrows li a:hover,
ul.arrows li a:focus {
    opacity: 0.55;
    transition: 0.35s ease;
}
ul.arrows a svg {
    width: 18px;
    height: auto;
    margin: 0px 0 -4px 0;
    opacity: 0.65;
    fill: white;
}

[data-bg="light-blue"] ul.arrows li::before{
    color: #f9ca25;
}
.arrow .choose-path .half{
	transform:translateY(30px);
	opacity:0;
	transition:0.25s ease 0s;
}
.arrow .animate .choose-path .half{
	transform:translateY(0);
	opacity:1;
	transition:0.35s ease 0s;
}
.arrow .animate .choose-path .half:nth-of-type(2){
	transition:0.35s ease 0.15s;
}
.arrow .animate .choose-path .half:nth-of-type(3){
	transition:0.35s ease 0.25s;
}
.arrow .animate .choose-path .half:nth-of-type(4){
	transition:0.35s ease 0.35s;
}

.arrow .you-circle{
	opacity:0;
	transition:0.25s ease 0s;
}
.arrow .animate .you-circle{
	opacity:1;
	transition:0.35s ease 0.45s;
}
ul.featured.tiles , ul.opportunities.tiles {
    display: flex;
    flex-wrap: wrap;
}

ul.featured.tiles li, ul.opportunities.tiles li {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
}

ul.featured.tiles li a, ul.opportunities.tiles li a {
    border: 1px solid #ffffff9e;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul.featured.tiles li a h2 , ul.opportunities.tiles li a h2 {
    margin: 0 0 0;
}

ul.featured.tiles li a h3, ul.opportunities.tiles li a h3 {
    margin: 0;
}

ul.featured.tiles li a p, ul.opportunities.tiles li a p {
    margin: 25px 0 0;
    justify-self: flex-end;
}

.featured.tiles p > em, .opportunities.tiles p > em {
    color: black;
}


@media only screen and (max-width:1024px){
    .choose-path .half::after {
        width: 70px;
        height: 55px;
        top: 20px;
        right: -46px;
    }

    .choose-path .half:nth-of-type(2)::after {
        bottom: -40px;
    }

    .choose-path .half:nth-of-type(3)::after {
        top: -40px;
    }

    .choose-path .half:nth-of-type(4)::after {
        left: -49px;
    }
}
@media only screen and (max-width:650px){
  .choose-path.flex-wrap.gutter .half {
      width: calc(50% - 6px);
      margin: 0px 0 12px;
  }
  .choose-path .half{
        padding: 45px 30px;
  }
  .choose-path .half .arrow {
      width: 55px;
      height: 45px;
      top: 10px;
      right: -33px;
  }

  .choose-path .half:nth-of-type(1) .arrow:nth-of-type(2) {
      bottom: -30px;
      left: 10px;
  }
  .choose-path .half:nth-of-type(2) .arrow {
      bottom: -30px;
      right: 10px;
  }
  .choose-path .half:nth-of-type(4) .arrow {
      bottom: 10px;
      left: -33px;
  }
  figure.you-circle {
      width: 100px;
      top: 46%;
  }
  .choose-path.flex-wrap.gutter .half {
      width: calc(50% - 6px);
      margin: 0px 0 12px;
  }

  .choose-path h2 {
      margin: 10px 0 10px;
      font-size: 25px;
      text-align: left;
  }

  .choose-path .half ul {
      justify-content: flex-start;
      display: block;
      text-align: left;
  }

  .choose-path .half ul li {
      font-size: 12px;
  }

  .choose-path .half ul li:first-of-type, 
  .choose-path .half ul li {
      padding: 0 0 0 9px;
  }
  .choose-path.flex-wrap.gutter .half:nth-of-type(1) ul li:nth-of-type(3)::before,
  .choose-path.flex-wrap.gutter .half:nth-of-type(3) ul li:nth-of-type(4)::before,
  .choose-path.flex-wrap.gutter .half:nth-of-type(4) ul li:nth-of-type(4)::before,
  .choose-path .half ul li:first-of-type::before,
  .choose-path .half ul li::before {
      width: 3px;
      height: 3px;
      top: 8px;
      left: 0;
      display:block;
  }
  .choose-path .half::before{
    display:none;
  }
  .choose-path .half:hover ul,
  .choose-path .half:focus ul {
      opacity: 1;
  }
}

/*-- lodging career path --*/
.choose-path.lodging.flex-wrap.gutter .half {
    width: calc(33.333% - 15px);
    margin: 0px 0 30px;
}

.choose-path.lodging.flex-wrap.gutter .half:nth-of-type(1),
.choose-path.lodging.flex-wrap.gutter .half:nth-of-type(5){
    margin: 0 15px 30px 16.6665%;
}

.choose-path.lodging.flex-wrap.gutter .half:nth-of-type(2),
.choose-path.lodging.flex-wrap.gutter .half:nth-of-type(6){
    margin: 0 16.6665% 30px 15px;
}


/*-- benefits --*/
.perks .half {
    padding: 40px;
    border-radius: 30px;
    background: #50414f;
}



/*-- explore the area --*/
.video-container{
    position:relative;
    display:block;
}
video {
    width: 100%;
    display: block;
}
.video-container .text{
    position:absolute;
    z-index:1;
    width:100%;
    height:100%;
    background: rgb(0 0 0 / 35%);
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}
.video-container .play{
    position: relative;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.video-container .play::after{
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
    display: block;
    margin: 0 0 0 5px;
}
.video-container h2{
    color:white !important;
}
.img-tile {
    position: relative;
    overflow: hidden;
   
}
.img-tile .wrap{
    position:relative;
     display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

.img-tile .wrap::after{
    content:'';
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0px;
    z-index:0;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    transition:0.35s ease;
    opacity:0;
}
.img-tile:nth-child(5) .wrap::after{
   background: -moz-linear-gradient(bottom,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
}
.img-tile:hover .wrap::after,
.img-tile:focus .wrap::after{
    transition:0.35s ease;
    opacity:1;
}

.max-768{
    max-width:768px;
}
.img-tile .text {
    position: relative;
    z-index: 1;
    padding: 20px;
    transition:0.35s ease;
    opacity:0;
}
.img-tile:hover .text,
.img-tile:focus .text{
    transition:0.35s ease;
    opacity:1;
}
.carousel figcaption h2,
.img-tile .text h2 {
    font-size: 18px;
    margin: 0;
    color: white !important;
}
.carousel figcaption h3,
.img-tile .text h3 {
    font-size: 12px;
    font-family: "Sorts Mill Goudy";
    text-transform: none;
    letter-spacing: 0;
    font-style: italic;
    margin: 0;
    color: white !important;
}

.img-tile .text .btn {
    border: none;
    border-bottom: 1px solid;
    padding: 0;
    border-radius: 0;
    margin: 8px 0 0 0;
    font-size: 9px;
    display: inline-block;
    color: white;
}
#art-history .flex-wrap.pad {
    justify-content: center;
}

#art-history .img-tile:nth-child(1) {
    width: 40%;
    height: 35vw;
    margin-right: 8px;
    margin-left: calc(15% - 8px);
    margin-bottom: 8px;
}
#art-history .img-tile:nth-child(2) {
    width: 30%;
    height: 32vw;
    margin-top: 3vw;
    margin-bottom: 8px;
    margin-right: 15%;
}
#art-history .img-tile:nth-child(3) {
    margin-right: 8px;
    width: calc(33.333% - 8px);
    height: 40vw;
}

#art-history .img-tile:nth-child(4) {
    width: 66.666%;
    margin-right: auto;
    height: 30vw;
}
#art-history .img-tile:nth-child(5) {
    width: 45%;
    margin-left: 33.333%;
    height: 25vw;
    position: relative;
    transform: translateY(calc(-10vw + 8px));
}
#art-history .img-tile.parallax-item.top:nth-child(1),
.img-tile.parallax-item.top {
    top: -2vw;
    right:-20%;
    height: auto;
}
#art-history .img-tile.parallax-item.bottom:nth-child(1),
.img-tile.parallax-item.bottom {
    bottom: -20vw;
    left:20%;
    height: auto;
}
#art-history .img-tile:nth-child(5) .wrap{
        justify-content: flex-start;
}
.img-tile.parallax-item {
    position: absolute;
    width: 50%;
}
.carousel figure{
    display:block;
}
.carousel figcaption {
    position:absolute;
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    z-index:1;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end; 
    transition:0.35s ease;
    opacity:0;
}
.carousel figcaption::before{
    content:'';
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0px;
    z-index:-1;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    transition:0.35s ease;
    opacity:0;
}
.carousel .slide:hover figcaption,
.carousel .slide:hover figcaption::before,
.carousel .slide:focus figcaption,
.carousel .slide:focus figcaption::before{
    opacity:1;
    transition:0.35s ease;
}
.carousel .slide {
    padding: 0 4px;
}
.carousel .slick-track {
    display: flex;
    align-items: flex-end;
}
.max-1000{
    max-width:1000px;
}
[data-bg="tan"] ul.arrows li{
    color:black;
}
@media only screen and (max-width:768px){
  #socialization.overlap-images.right figure:nth-of-type(1){
      width: 200px;
      top: 8%;
      left: initial;
      right: -2.5vw;
      margin: 0 0 0 auto;
  } 
  #endless-opportunities.overlap-images.right figure:nth-of-type(1) {
      top: 12%;
      width: 200px;
      left: -3.5vw;
  }
  #socialization .forty{
    width:calc(100% - 15.625vw);
    margin:0 auto;
  }
  #endless-opportunities .forty {
      width: 100%;
  }
}
@media only screen and (max-width:650px){
  .video-container h2 {
      margin: 0 0 8px;
  }

  .video-container .play {
      width: 30px;
      height: 30px;
  }

  .video-container .play::after {
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 10px solid white;
      margin: 0 0 0 2.5px;
  }
}

/*-- ask a question --*/
.freeform-row input[type="text"], 
.freeform-row input[type="email"], 
.freeform-row input[type="tel"], 
.freeform-row textarea {
    outline: none;
    border: none;
    display: block;
    width: 100%;
    border-radius: 25px;
    margin: 0 0 8px;
    position: relative;
    background-color: #222534;
    padding: 12px 36px 12px 16px;
    font-family: "Sorts Mill Goudy";
    font-style: italic;
    color: #c2c3c7;
}
.freeform-row label.freeform-label{
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
    color:white;
}
.input-group-one-line label {
    font-family: 'Sorts Mill Goudy';
    font-style: italic;
    color: #c2c3c7;
} 
#thank-you{
  position:absolute;
  z-index:1;
  display:none;
  min-height:100vh;
}
.freeform-row input[type="text"], 
.freeform-row input[type="email"], 
.freeform-row input[type="tel"], 
.freeform-row textarea {
    outline: none;
    border: none;
    display: block;
    width: 100%;
    border-radius: 25px;
    margin: 0 0 25px;
    position: relative;
    background-color: #222534;
    padding: 12px 36px 12px 16px;
    font-family: "Sorts Mill Goudy";
    font-style: italic;
    color: #c2c3c7;
}
[data-bg="navy"] .freeform-row label.freeform-label{
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
    color:white;
}



[data-bg="navy"] .input-group-one-line label {
    font-family: 'Sorts Mill Goudy';
    font-style: italic;
    color: #c2c3c7;
}

[data-bg="navy"] .freeform-row .freeform-column .freeform-input[type=checkbox] {
    cursor: pointer;
    background: #fff;
    width: 22px;
    height: 22px;
    position: relative;
    border-radius: 0;
    margin: 0 6px 0 0;
    display: inline-block;
    float: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    border: 1px solid #999999;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
 
[data-bg="navy"] .freeform-row .freeform-column .freeform-input[type="checkbox"]::before {
    content: '';
    background-image:url('/assets/images/check.svg');
    background-size:contain;
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: block;
    background-color: transparent;
    opacity: 0;
    border-radius: 0;
    margin: 0;
    width:32px;
    height:32px; 
    position: absolute;
    top: -10px;
    left: -3px;
    padding: 0px 0 0 0;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}

[data-bg="navy"] .freeform-row .freeform-column .freeform-input[type="checkbox"]:checked::before {
    opacity: 1;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}

[data-bg="navy"] .freeform-row .freeform-column .input-group-one-line label {
    padding-right: 25px;
    font-size: 18px;
}

[data-bg="navy"] label.freeform-label[for="form-input-pleaseContactMeVia"] {
    margin: 0 0 10px;
}
.freeform-row .freeform-column .freeform-label.freeform-required:after{
    color:inherit !important;
}


/*-- codrops styles for label interaction --*/
.input {
    position: relative;
    z-index: 1;
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    -webkit-appearance: none; /* for box shadows to show on iOS */
    width: 100%;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

.input__field:focus {
    outline: none;
}

.input__label {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom:0;
    width: calc(100% - 30px);
    text-align: left;
    position: absolute;
    bottom: 100%;
    pointer-events: none;
    overflow: hidden;
    -webkit-transform: translate3d(15px, 36px, 0);
    transform: translate3d(15px, 36px, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    z-index:1;
}

.input__label-content {
    position: relative;
    /*display: block;
    width: 100%;*/
    padding:0;
    font-family: "Sorts Mill Goudy";
    font-style: italic;
    font-size: inherit;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.input__label-content::after {
    content: attr(data-content);
    position: absolute;
    font-weight: 800;
    bottom: 100%;
    left: 0;
    height: 100%;
    width: 100%;
}
.input__field:focus + .input__label,
.input--filled .input__label {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.input__field:focus + .input__label .input__label-content,
.input--filled .input__label-content {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    font-family:"Muli";
    font-style:normal;
    color:white;
    font-weight: bold;
    font-size:13px;
}

.input__field:focus + .input__field,
.input--filled .input__field {
   
}
.freeform-row .freeform-column label.freeform-label.input__label {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    color: #636363;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.freeform-row .freeform-column.input--filled label.freeform-label.input__label,
.input__label-content::after {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px 0px;
    font-size: 12px;
    color: #545454;
    font-weight:bold;
    overflow:hidden;
}

.freeform-row .freeform-column .input-group-one-line{
    margin-bottom:25px;
}
.freeform-row .freeform-column .input-group-one-line label {
    padding-right: 20px !important;
    display: flex;
    align-items: center;
    /*flex:1 0;*/
    margin-bottom: 15px;
}
.freeform-row .freeform-column.input {
    padding-top: 7px;
}
label.freeform-label.alt {
    margin: 0;
}













/*-- timeline --*/
/*#timeline{
	width:800%;
	position:relative;
	height:100vh;
}
#timeline > section{
	width:100vw;
	height:100vh;
}*/



/*-- footer --*/
footer ul.social,
footer ul.links{
    list-style:none;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin:0;
    padding:0;
}
footer .pad-more.text-center{
    margin-bottom:120px;
}
footer ul.social{
    justify-content: center;
    align-items: center;
}
footer ul.links{
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin: 0px 0 30px;
}
footer ul.links a{
    margin:0 40px 10px 0;
    /*color: #c9c9c9;*/
    color:white;
    /*font-size: 12px;*/
}
footer ul.social a{
    display:block;
    margin:0 15px;
    font-size:22px;
    color:white;
    opacity:1;
    transition:opacity 0.35s ease;
}
footer ul.social a:hover,
footer ul.social a:focus{
     opacity:0.5;
    transition:opacity 0.35s ease;
}
footer .logo.bf {
    width: 220px;
}

footer .logo.bmtn {
    width: 230px;
}

footer .logo.bfb {
    width: 120px;
}

footer .logo.bfd {
    width: 80px;
}
p.copyright{
    font-size:12px;
    /*color:#848484 !important;*/
    margin: 30px 0 0;
}
footer .brand {
    /*
    padding: 30px;
    background: #232323;
    border-radius: 25px;
    */
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    text-align: center;
    flex-direction:column;
    align-items:flex-start;
    justify-content: center;
}

footer .logo {
    margin: 0 0 15px;
}

.fourth.brand:nth-of-type(1), 
.fourth.brand:nth-of-type(2),
.fourth.brand:nth-of-type(5), 
.fourth.brand:nth-of-type(6) {
    width: 30%;
}

.fourth.brand:nth-of-type(3), 
.fourth.brand:nth-of-type(4) {
    width:20%;
}
footer svg#shop {
    width: 100%;
}

footer svg#mag {
    width: 65%;
    fill: white;
}

footer .flex-wrap.gutter {
    justify-content: flex-start;
    margin: 0 -15px;
}

footer .flex-wrap.gutter .fourth.brand {
    padding: 0 15px;
}
@media only screen and (max-width:1080px){
    footer ul.links{
        justify-content: center;
    }
    p.copyright{
        text-align:center;
    }

    footer .flex-wrap.gutter .fourth.brand:nth-of-type(1), 
    footer .flex-wrap.gutter .fourth.brand:nth-of-type(2),
    footer .flex-wrap.gutter .fourth.brand:nth-of-type(3), 
    footer .flex-wrap.gutter .fourth.brand:nth-of-type(4),
    footer .flex-wrap.gutter .fourth.brand:nth-of-type(5), 
    footer .flex-wrap.gutter .fourth.brand:nth-of-type(6){
        width: 50%;
        align-items:center;
        margin: 0 0 0px 0;
        padding: 40px 20px;
    }
    .fourth.brand:nth-of-type(1), 
    .fourth.brand:nth-of-type(2),
    .fourth.brand:nth-of-type(3), 
    .fourth.brand:nth-of-type(4){
        border-bottom: 1px solid #222;
    }
    .fourth.brand:nth-of-type(1), 
    .fourth.brand:nth-of-type(3),
    .fourth.brand:nth-of-type(5){
        border-right: 1px solid #222;
    }
    footer svg#shop {
      width: 75%;
  }
}
@media only screen and (max-width:650px){
   footer .flex-wrap.gutter .fourth.brand:nth-of-type(1), 
   footer .flex-wrap.gutter .fourth.brand:nth-of-type(2), 
   footer .flex-wrap.gutter .fourth.brand:nth-of-type(3), 
   footer .flex-wrap.gutter .fourth.brand:nth-of-type(4), 
   footer .flex-wrap.gutter .fourth.brand:nth-of-type(5), 
   footer .flex-wrap.gutter .fourth.brand:nth-of-type(6) {
        width: 100%;
        padding:30px 0;
        background:transparent;
        border-top:1px solid #222;
        border-right: none;
    }
    footer .flex-wrap.gutter .fourth.brand:nth-of-type(6){
        border-bottom:1px solid #222;
    }
    footer ul.links {
      display: block;
      text-align: center;
    
  }

  footer ul.links a {
      margin: 0 0 15px;
  }


}






/*-- ie stuff --*/
.no-arrow header{
    background-color:white;
    position:relative;
}
.no-arrow header nav a{
    color:black;
}
.no-arrow [data-bg="light-blue"]{
    background-color:#377bb5;
}
.no-arrow [data-bg="dark-green"]{
    background-color:#415843;
}
.no-arrow [data-bg="tan"]{
    background-color:#d8d3c5;
}
.no-arrow [data-bg="indigo"]{
    background-color:#272d48;
}
.no-arrow [data-bg="purple"]{
    background-color:#624e5f;
}
.no-arrow [data-bg="dark-blue"]{
    background-color:#004466;
}
.no-arrow [data-bg="navy"]{
    background-color:#293246;
}
.no-arrow [data-bg="dark-grey"]{
    background-color:#1d1d1d;
}




