/******************** WELCOME SECTION *********************/                                                                                                                                                                                 
#WelcomeSection {                                                                                                 
	width: 100%;
	height: 100vh;
	position: relative;   
}

/* layout */
#WelcomeSection .layout {
    position: absolute;
    top: 0px;
    left: 0px;
}   

/* image */
#WelcomeSection #WelcomeImage { 
    z-index: 1;
    background-image: url("../../Assets/Video/tenant_v2.gif");
}

/* overlay */
#WelcomeSection #WelcomeOverlay { 
	z-index: 2;
	opacity: 0.9;
	background-color: black;
}  

/* content */
#WelcomeSection #WelcomeContent {
    height: auto; 
    top: calc(50% - 40px); 
    z-index: 3;
    text-align: center; 
}

/* h1 */
#WelcomeSection #WelcomeContent h1 { 
    word-spacing: 10px;
    line-height: 1;
    font-size: 50px;
    font-weight: 900;
    color: #e4d890; 
}  

#WelcomeSection #WelcomeContent h1 span {
    color: white;
}

#WelcomeSection #WelcomeContent h1 br {
    display: none;
}

/* scroll gif */
#WelcomeSection #WelcomeScroll {
    width: 100px;
    height: auto;
    position: absolute;
    bottom: 10px;
    left: calc(50% - 50px);
    z-index: 3; 
}

 
 


 


/******************** RESOURCE SECTION ********************/
#ResourceSection {                                                                                           
	width: calc(100% - 100px);
    height: auto; 
    padding-bottom: 50px;
}  

/* col */
#ResourceSection .col {
    display: inline-block;
    width: calc(50% - 25px);
    height: 600px;
    margin-top: 50px;
    position: relative;
    float: left;    
    background-color: #e4d890;
}

#ResourceSection .col:not(.two) {
    margin-right: 50px;
}

/* overlay */
#ResourceSection .col .overlay { 
   width: 500px;
   height: auto;
   position: absolute;
   left: calc(50% - 250px);
   text-align: left; 
}

/* h3 */
#ResourceSection .col .overlay h3 {
    font-size: 8px;
    color: white;
}

#ResourceSection .col .overlay h3 span {
    padding-left: 10px;
    font-weight: bold;
}

/* h1 */
#ResourceSection .col .overlay h1 {
    margin-top: 20px;
    line-height: 1;
    font-size: 35px; 
    font-weight: 900;
    color: black;  
}

/* h2 */
#ResourceSection .col .overlay h2 {
   margin-top: 25px;
   padding-top: 25px;
   line-height: 1.5;
   font-size: 15px; 
   font-weight: 400; 
   border-top: 1px solid rgba(255,255,255,0.5);
   color: black;
}

/* btn */
#ResourceSection .col .overlay p {
   display: inline-block;
   width: 150px;
   margin-top: 60px;
   padding: 15px 0px;
   cursor: pointer;
   background-color: white;
   text-align: center;
   font-size: 12px;
   font-weight: 900;
   color: #e4d890;
   transition: 1s;
}

#ResourceSection .col .overlay p:hover {
   opacity: 0.2; 
} 

/* clear float */
#ResourceSection #ResourceClearFloat {
	clear: both;
}




 
   

   
/******************** RESOURCE MODAL *********************/                                     
#FSModal {                                         
    display: none;                
	width: 100%;
	height: 100vh; 
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px; 
    z-index: 999999999;    
	opacity: 0;
    overflow: scroll;  
    -webkit-overflow-scrolling: touch; 
    -ms-overflow-style: none;
    background-color: white;    
	transform: scale(0.95);   
	transition: 500ms;   	
} 

#FSModal::-webkit-scrollbar { 
    display: none; 
}  

/* inner */
#FSModalInner {
	width: 100%; 
	height: 100vh;  
}

/* col */  
#FSModal .col {
	display: inline-block;
	width: 50%;
	height: 100%;     
	position: relative;
	float: left;  	    
}

#FSModal .col.one {
	width: 30%;
}

#FSModal .col.two {
	width: 70%;
}

/* img overlay */
#FSModal .col.one #FSModalOverlay { 
    background-color: rgba(228,216,144,0.95);
}    

/* close */
#FSModal .col.one #FSModalOverlay #FSModalClose { 
    width: 60px;
    height: 60px;
    padding-top: 20px; 
    position: absolute;
    top: 30px;
    left: 30px; 
    cursor: pointer;
    background-color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
    border: 1px solid white;
    border-radius: 100%;
    transition: 500ms;
}

#FSModal .col.one #FSModalOverlay #FSModalClose:hover {
    color: white;
    background-color: transparent;
}

/* prod cont */
#FSModal .col.two .prodcont {
    width: 600px;
    position: absolute;
    left: calc(50% - 300px);
    text-align: left;
}

/* header */
#FSModal .col.two p .header {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    color: #e4d890; 
}

/* overview & subhead */
#FSModal .col.two p span.subheader,
#FSModal .col.two p span.overview { 
    font-size: 14px;  
    color: black;
	font-weight: 400; 
}


#FSModal .col.two p span.subheader {
	font-weight: bold;
	padding-right: 15px;
}

/* anchor */
#FSModal .col.two p span a {
	color: black;
	text-decoration: underline;
}







