/******************** WELCOME SECTION *********************/                                                                                                                           
#WelcomeSection {                                          
	width: 100%;
	height: 100vh; 
	position: relative;
	overflow: hidden;
}

/* layout */
#WelcomeSection .layout {
    position: absolute;
    top: 0px;
    left: 0px;
}

/* image */
#WelcomeSection #WelcomeImage { 
    z-index: 9; 
    background-image: url("../../Assets/Video/welcome.gif");
}

/* overlay */
#WelcomeSection #WelcomeOverlay { 
	z-index: 99; 
	opacity: 0.7; 
	background-color: black;
}  

/* content */  
#WelcomeSection #WelcomeContent {
    width: 100%;
    position: absolute;
    top: calc(50% - 35px);
    left: 0px;
    z-index: 999; 
    text-align: center;
}

#WelcomeSection #WelcomeContent h1 {
    font-size: 35px;
    font-weight: bold;
    word-spacing: 10px; 
    line-height: 1;
    color: #CF8D34;
}

#WelcomeSection #WelcomeContent h1 span {
    color: white;    
}

#WelcomeSection #WelcomeContent h1 span.two {
    word-spacing: 5px; 
    font-size: 13px; 
    font-weight: 300; 
}








/******************** LOCATIONS SECTION *********************/              
#HowSection {
    height: 650px;
    width: calc(100% - 60px);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    background-color: black;
}

/* layout */
#HowSection .layout {
    position: absolute;
    top: 0px;
    left: 0px;
}

/* image */
#HowSection #HowImage {
    height: calc(100% + 150px);
    z-index: 9;
    background-image: url("../../Assets/Images/Locations/2.jpeg");
    opacity: 0.3;
}

/* overlay */
#HowSection #HowOverlay { 
	z-index: 99; 
}  

/* col */
#HowSection #HowOverlay .col {
    display: inline-block;
    width: calc(50% - 15px);
    height: 100%;
    position: absolute;
    overflow: hidden;  
    cursor: pointer;
    transition: 1s;
    transition-delay: 300ms;
}

#HowSection #HowOverlay .col.one {
    border-right: 2px solid #CF8D34;
    left: 0px;
}

#HowSection #HowOverlay .col.two {
    border-left: 2px solid #CF8D34;
    right: 0px;
}

/* cont */
#HowSection #HowOverlay .col .innerloccont { 
     width: 100%;
     height: auto;
     position: absolute;
     top: calc(50% - 55px);   
     left: 0px;
     text-align: center;
     line-height: 1;
     color: white;
}

/* h1 */
#HowSection #HowOverlay .col h1 {  
     letter-spacing: 1px;
     font-size: 25px;
     font-weight: bold;
     transition: 1s;
     transition-delay: 300ms;
}

#HowSection #HowOverlay .col h1 span {
     font-weight: 300;
}

/* p */
#HowSection #HowOverlay .col p {
     width: 180px;
     height: 40px;
     margin-top: 35px;
     padding-top: 14px;
     background-color: #CF8D34;   
     word-spacing: 1px;
     font-size: 10px;
     font-weight: bold;
     color: black;
     border-radius: 20px;
     transition: 1s;
     transition-delay: 300ms;
}

/* hoverdiv */
#HowSection #HowOverlay .col .hoverdiv {
     position: absolute;
     width: 100%;
     height: 100%;
     left: -100%;
     background-color:  #CF8D34; 
     transition: 350ms;
}

/* hover */
#HowSection #HowOverlay .col:hover {
    background-color: rgba(207,141,52,0.5)
}

#HowSection #HowOverlay .col:hover .hoverdiv {
     left: 100%;
}

#HowSection #HowOverlay .col:hover h1 {
     color: black; 
}

#HowSection #HowOverlay .col:hover p {
     background-color: black;
     color: #CF8D34;  
}








/******************** LOCATIONS MODAL *********************/             
#InfoModal {
    display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 999999999999;
	opacity: 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    background-color: white;
	transition: 750ms;
}

#InfoModal::-webkit-scrollbar {
    display: none;
}

/* col */
#InfoModal .col {
	width: 0px;
	height: calc(100% - 60px);
	position: absolute;
	transition: 750ms;
	transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

#InfoModal .col.active {
    width: calc(50% - 45px) !important;  
}

#InfoModal .col.one {
    top: 30px;
	left: 30px;   
	background-color: #CF8D34;    
}

#InfoModal .col.two {
	bottom: 30px;
	right: 30px;
	background-color: rgb(245,245,245);
}

/****************/
/*** col one ***/
/****************/

/* image */
#InfoModal .col.one #InnerImage,
#InfoModal .col.one #InnerOverlay {
    width: 100%;
    height: 100%; 
}

#InfoModal .col.one #InnerOverlay {  
    background-color: rgba(255,255,255,0.7);
}

/* btn */
#InfoModal .col.one .btn {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0px;
	z-index: 999;
	cursor: pointer; 
	background-color: #CF8D35;   
	transition: 1s;  
}

/* close */
#InfoModal .col.one #Close {
	padding-top: 18px;
    top: 0px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 0.8;
	color: white;
}

/* logo */
#InfoModal .col.one #Phone {
    bottom: 0px;
}

/* hover */
#InfoModal .col.one .btn:hover {
	background-color: black;  
    transform: scale(0.95);
}

/****************/
/*** col two ***/
/****************/

/* content */
#InfoModal .col.two #Content {
	width: 500px;   
	position: absolute;
	top: calc(50% - 200px);  
	left: calc(50% - 250px);
    z-index: 99;
	text-align: center;   
}

/* first */
#InfoModal .col.two #Content h2.first { 
    font-size: 16px !important; 
}

/* divider bar */
#InfoModal .col.two #Content h2 span.bar {
    padding: 0px 5px;
    position: relative;
    bottom: 1px;
    font-weight: bold;
    color: #CF8D35;
}

/* hours */
#InfoModal .col.two #Content h2 { 
    font-size: 12px;
    font-weight: 300;
    color: black;
}

#InfoModal .col.two #Content h2 span.header {
    font-size: 30px;
    font-weight: bold;
    color: #CF8D35 !important;
}

/* divider */
#InfoModal .col.two #Content span.divider {
    display:  block;
    margin: 85px auto 90px;
    width: 100%;
    height: 1px;
    background-color: rgb(225,225,225);
}

#InfoModal .col.two #Content span.divider.top {
    margin-bottom: 35px;
}

#InfoModal .col.two #Content span.divider.bottom {
    margin-top: 40px;
}

/* a */
#InfoModal .col.two #Content a {
    display: inline-block;
    width: 200px;
    height: 40px;
    position: absolute;  
    bottom: -40px; 
    padding-top: 13px;
    cursor: pointer;
    background-color: #CF8D35;
    font-size: 11px;
    font-weight: bold;
    color: white;
    border-radius: 20px;
    transition: 1s;
}

#InfoModal .col.two #Content a.one {
   left: 40px;
}

#InfoModal .col.two #Content a.two {
   right: 40px;
}

#InfoModal .col.two #Content a:hover {
    background-color: black;
    border-radius: 0px;
    color: #CF8D35; 
}

/* fade */
#InfoModal .col .fade {
	opacity: 0;
    transition: 750ms;
}








/******************** ABOUT SECTION *********************/      
#AboutSection {        
    width: 1000px; 
	margin: 100px auto 125px;
    padding: 100px 0px 125px;
    text-align: center;  
	position: relative;  
}   

/* col */
#AboutSection .col {
	display: inline-block; 
	width: 210px; 
	height: auto;  
	margin: 0px 100px;  
	vertical-align: top; 
	line-height: 1;  
}   
 
/* img */ 
#AboutSection .col img {
	width: 100px;
	height: 100px;  
    background-color: rgb(245,245,245); 
    border-radius: 100%; 	
} 

/* header */
#AboutSection h1 { 
	margin-top: 40px;   
	font-weight: bold; 
	font-size: 30px;  
	line-height: 0.6;    
	color: #CF8D35;      
}   

/* par */ 
#AboutSection p {
	position: relative;    
	margin-top: 45px;  
	font-size: 14px; 
	font-weight: 300;  	
	color: rgb(145,145,145);     
}

#AboutSection p span { 
	position: absolute; 
	bottom: 10px;  
    left: 15px;     
	z-index: -1;   
	font-weight: bold;  
	font-size: 80px;  
	color: rgb(235,235,235);   
}

/* connector */
#AboutSection .connector {
	display: inline-block; 
	width: 70px;  
	height: 0px;     
	position: relative; 
	top: 142px;      
	border-bottom: 2px dashed rgb(225,225,225);     
} 

#AboutSection .connector .tri {
	width: 0;
	height: 0;
	position: absolute; 
	top: calc(50% - 4px); 
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent rgb(225,225,225); 
}  

#AboutSection .connector .tri.one {
	left: calc(50% - 5px);    
} 

/* geom */
#AboutSection .geom {
	position: absolute; 
	width: 20px;
	height: auto;  
}

#AboutSection .geom.one {
	top: 0px;
	left: 0px;
}

#AboutSection .geom.two {
	top: 0px;
	right: 0px;
}
  
#AboutSection .geom.three {
	bottom: 0px;
	left: 100px;
}

#AboutSection .geom.four {
	bottom: 0px;
	right: 100px; 
}








/******************** MISSION SECTION *********************/                         
#WhySection {
     width: calc(100% - 60px);
     height: 550px;  
}        

#WhySection .col {
     display: inline-block;
     width: 50%;
     height: 100%;
     position: relative;
     float: left; 
}

/****************/
/*** stats ***/
/****************/

#WhySection .col.stats {
    text-align: left;
}

/* row */
#WhySection .col.stats .statrow {
    width: 500px;
    height: auto;
    position: absolute;
    top: calc(50% - 190px);
    left: calc(50% - 250px);
}

/* opening h2 */
#WhySection h2 {
    font-size: 13px;
    font-weight: 300; 
}

#WhySection h2.two {
    margin-top: 30px;
}

/* inner col */
#WhySection .col.stats .innercol {
	display: inline-block; 
	width: 248px; 
	height: auto;  
	vertical-align: top; 
	line-height: 1;      
}    

/* header */
#WhySection .col.stats .innercol h1 { 
	font-weight: 300;
	font-size: 25px;  
	line-height: 0.8;    
	color: #CF8D35;  
}   

#WhySection .col.stats .innercol h1 span {
    font-weight: bold;
}

/* par */ 
#WhySection .col.stats .innercol p {
	margin-top: 15px;  
	word-spacing: 3px;
	font-size: 11px; 
	font-weight: 300;
	color: black;
}

/* divider */
#WhySection .col.stats .statdivider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 60px auto; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
 
/****************/
/*** clients ***/
/****************/

#WhySection .col.clients {  
     background-color: black;    
     overflow: hidden;
} 

#WhySection .col.clients .img {
    height: calc(100% + 150px);
    z-index: 9;
    background-image: url("../../Assets/Images/mission.png");
    opacity: 0.3;
}








/******************** FORM SECTION *********************/                   
#CateringSection {
    width: 100%;
    height: auto;
    padding-bottom: 200px;
    text-align: center;
}

/* h1 */
#CateringSection h1 {
    font-size: 35px;
    font-weight: bold;
    word-spacing: 10px; 
    line-height: 1;
    color: #CF8D35;      
}

#CateringSection h1 span {
    font-weight: 300;
}

/* p */
#CateringSection p {
    margin-top: 10px;
    word-spacing: 5px; 
    font-size: 13px;
    font-weight: 300;
    color: black;
}

/* divider */
#CateringSection #CaterDivide {
    width: 480px;
    height: 1px;
    margin: 80px auto 30px;
    background-color: rgba(0,0,0,0.05);  
}

/* btn */
#CateringSection #CateringButtons {
    width: 600px;
    height: 50px;
}

#CateringSection #CateringButtons a {
    display: inline-block;
    width: 225px;
    height: 50px;
    margin: 0px 13px;
    padding-top: 17px;
    vertical-align: top;
    font-size: 13px;
    background-color: black;
    color: #CF8D35;      
    font-weight: bold;
    transition: 750ms;
}

#CateringSection #CateringButtons a:hover {
    background-color: #CF8D35;      
    color: black;  
    border-radius: 25px;   
}








/******************** FILLER SECTION *********************/                 
#FillerSection {                         
    width: calc(100% - 60px); 
	height: 650px;
	position: relative;  
	overflow: hidden; 
	background-color: black;
}  

/* img */
#FillerSection .img {
    height: calc(100% + 150px);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9;
    opacity: 0.3;
    background-image: url("../../Assets/Video/filler.gif");
}








/******************** REVIEW SECTION *********************/                            
#ReviewSection {                         
    width: calc(100% - 60px); 
	height: 100vh;  
	margin-top: 30px;  
	position: relative;  
	overflow: hidden;      
	border: 1px solid rgb(235,235,235);
	border-bottom: 0px solid rgb(235,235,235);
}  
  
/* col */ 
#ReviewSection .col {
	width: 50%;
	height: 100%; 
	position: absolute;
	top: 0px; 
}

/**************** MAP *******************/

/* overlay */
#ReviewSection .col .overlay {   
	position: absolute;
	z-index: 9;
}

#ReviewSection .col .overlay.one {
	width: 100%;
	height: 300px;
}

#ReviewSection .col .overlay.two {
	width: 50%;
	height: 100%;
	top: 0px;
}

#ReviewSection .col #OverlayUpper {
	top: 0px;
	background: linear-gradient(to bottom, white, rgba(255,255,255,0));
}

#ReviewSection .col #OverlayLower {
	bottom: 0px;
	background: linear-gradient(to top, white, rgba(255,255,255,0));
}

#ReviewSection .col #OverlayRight  {
	right: 0px;
	background: linear-gradient(to left, white, rgba(255,255,255,0));
}

#ReviewSection .col #OverlayLeft {
	left: 0px;
	background: linear-gradient(to right, white, rgba(255,255,255,0));
}

/**************** CONTENT *******************/

/* cont */
#ReviewSection .col.cont {
	right: 0px;    
	border-left: 1px solid rgb(235,235,235);
	text-align: center;  
}

/* cont inner */
#ReviewSection .col.cont #ContInner { 
	width: 450px; 
	height: 380px; 
    position: relative;
    top: calc(50% - 190px);  
}

/* header */
#ReviewSection .col.cont #Head {
	text-align: center;
	line-height: 1; 
	font-size: 35px;    
	font-weight: bold;
	word-spacing: 10px; 
	color: #CF8D35;  
}

#ReviewSection .col.cont #Head span {
	font-weight: 300;
} 

/* subhead */  
#ReviewSection .col.cont .headp {
    word-spacing: 3px;
    font-size: 11px;
    font-weight: bold;
    color: #CF8D35;
}

#ReviewSection .col.cont .headp.one span {
    padding: 0px 5px; 
    position: relative;
    bottom: 1px;
    color: black;  
}

#ReviewSection .col.cont .headp.two {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 300;
}

/* carousel */
#ReviewSection #Carousel {
    height: 150px;
    margin: 75px auto 80px;
    position: relative;
    overflow: hidden;  
    border-top: 1px solid rgb(235,235,235);
    border-bottom: 1px solid rgb(235,235,235);
}

#ReviewSection .car-el {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px; 
} 

/* col */  
#ReviewSection .carcol {    
	opacity: 0;    
} 
 
#ReviewSection .carcol.active {
	opacity: 1;
}  

/* content */
#ReviewSection .carcol .content {
    width: 300px; 
    position: absolute;
    left: calc(50% - 150px); 
    text-align: center;
}

#ReviewSection .carcol .content p {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: rgb(100,100,100);
}

#ReviewSection .carcol .content h2 { 
    font-size: 13px;
    color: black;   
}

#ReviewSection .carcol .content h2 span {
    padding-left: 15px;
    font-weight: 400;
}
 
/* overlay */
#ReviewSection #Overlay { 
	z-index: 9;    
} 
 
/* controls */
#ReviewSection #Overlay .control {
	height: 20px; 
	position: absolute;
	top: calc(50% - 10px); 
    opacity: 0.2;	
	cursor: pointer; 
	transition: 500ms; 
}
  
#ReviewSection #Overlay .control:hover {
	opacity: 1;   
}    
 
#ReviewSection #Overlay #Left { 
	left: 0px;
}

#ReviewSection #Overlay #Right { 
	right: 0px;
}  