/******************** WELCOME SECTION *********************/                                                                                                                           
#WelcomeSection {                                                                                                                                                                                                                                                                                                                                                                
	width: calc(100% - 70px);
	height: 100vh; 
	position: relative;
    left: 35px;
	overflow: hidden;   
    background-color: rgb(112,117,127);       
}

/* layout */
#WelcomeSection .layout {
    position: absolute;
    top: 0px;
    left: 0px;
}

/* image */
#WelcomeSection #WelcomeImage { 
    z-index: 1; 
    background-image: url("../../Assets/Video/welcome.gif");
}

/* overlay */
#WelcomeSection #WelcomeOverlay { 
	z-index: 2; 
    opacity: 0.5; 
    background-color: rgb(112,117,127);  
}  

/* carousel */
#WelcomeSection #WelcomeCarouselContent {
    width: 600px;
    height: 260px;
    position: absolute;
    top: calc(50% - 160px);
    left: 250px;
    z-index: 3;
    overflow: hidden; 
}

#WelcomeSection #WelcomeCarouselContent #WelcomeCarouselContentInner {
    width: 2400px;  
    height: auto;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 300ms; 
}

#WelcomeSection #WelcomeCarouselContent .wccont {
    display: inline-block;
    width: 550px;
    height: auto;
    padding-bottom: 30px;
    margin-right: 50px;  
    float: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
} 

/* content header */
#WelcomeSection #WelcomeCarouselContent h1 {
    word-spacing: 2px;    
    font-size: 40px;
    font-weight: 100;
    line-height: 0.8;
    color: white;
}

#WelcomeSection #WelcomeCarouselContent h1 br {
    display: none;
}

#WelcomeSection #WelcomeCarouselContent h1 span {
    padding-right: 10px;
    font-weight: 900;
}

/* content sub head */
#WelcomeSection #WelcomeCarouselContent h2 {
    margin-top: 25px;
    padding-right: 50px;  
    line-height: 1.4;
    font-size: 16px; 
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

/* car controls outer */
#WelcomeSection #WelcomeCarouselControls {
    width: 220px;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

/* car controls dots */
#WelcomeSection #WelcomeCarouselControls .wcdot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 2px;
    opacity: 0.3;
    cursor: pointer; 
    background-color: white;
    border-radius: 100%;
    transition: 1s;
}

#WelcomeSection #WelcomeCarouselControls .wcdot:hover,
#WelcomeSection #WelcomeCarouselControls .wcdot.active {
    opacity: 1;
}

/* car controls position indicator */
#WelcomeSection #WelcomeCarouselControls p {
    position: absolute;
    top: 3px;
    right: 0px;
    word-spacing: 8px; 
    font-size: 15px;
    font-weight: 300;
    color: white;
}

#WelcomeSection #WelcomeCarouselControls p span.line {
    position: relative;
    bottom: 1px;
    opacity: 0.3;
    font-weight: 100;
}

#WelcomeSection #WelcomeCarouselControls p span.num {
    opacity: 0;
    transition: 500ms; 
}

#WelcomeSection #WelcomeCarouselControls p span.num.active {
    opacity: 1;
}

/* scroll */
#WelcomeSection #WelcomeScroll {
    width: 40px;
    height: 260px;
    position: absolute;
    top: calc(50% - 160px);
    right: 86px;
    z-index: 3;
    opacity: 0.2;
}

#WelcomeSection #WelcomeScroll p {
    width: 260px;
    position: absolute;
    top: 120px;
    left: -110px;
    text-align: left;
    word-spacing: 10px;
    font-size: 11px;
    font-weight: 400;
    color: white;
    transform: rotate(90deg);
}

#WelcomeSection #WelcomeScroll img {
    width: 40px;
    height: auto;
    position: absolute;
    left: 0px;
    bottom: 0px;
}








/******************** GALLERY SECTION *********************/
#GallerySection {               
    width: calc(100% - 70px);
    height: auto;
    position: relative;
    left: 35px;
    z-index: 4;
    background-color: rgb(112,117,127);   
}

/* gallery outer container */
#GallerySection #GalleryContainer {
    width: calc(100% - 100px);
    height: auto;
    position: relative;
    top: -150px;
}

/* gallery controls */
#GallerySection #GalleryControls {
    width: calc(25% - 12px);
    height: 40px;
    padding-top: 13.5px;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: black;
    text-align: center;
    border-radius: 10px;
}

#GallerySection #GalleryControls h1 {
    font-size: 11px;
    font-weight: 400;
    color: white;
}

#GallerySection #GalleryControls h1 span.gc-btn {
    opacity: 0.5;
    cursor: pointer;
}

#GallerySection #GalleryControls h1 span.divider {
    padding: 0px 15px;
    position: relative;
    bottom: 1px;
    opacity: 0.2;
}

#GallerySection #GalleryControls h1 span.gc-btn.active {
    opacity: 1;
    font-weight: bold;
}

/* gallery posts */
#GallerySection #GalleryContainer #GalleryPosts {
    width: 100%;
    height: auto;
    margin-top: 56px;
}

/* post */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post {
    display: inline-block;
    width: calc(25% - 12px);
    aspect-ratio: 1 / 1;
    margin-bottom: 16px;
    margin-right: 16px;
    position: relative; 
    top: 50px;
    float: left;
    opacity: 0;
    vertical-align: top;
    cursor: pointer;
    transition: 500ms;
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post:nth-child(4n) {
    margin-right: 0px; 
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post.display {
    top: 0px;
    opacity: 1;
}

/* post main img */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-main-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;   
}

/* post overlay */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    opacity: 0;
    pointer-events: none;      
    background-color: rgba(0,0,0,0.7);
    border-radius: 10px;   
    transition: 1s;
}

/* post overlay - hover (on non mobile devices only) */ 
@media (hover: hover) and (pointer: fine) {
    #GallerySection #GalleryContainer #GalleryPosts .gallery-post:hover .gallery-post-overlay {
        opacity: 1;
    }
}

/* post user info */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user {
    width: calc(100% - 30px);
    height: 50px;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

/* post user profile img */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user img.placeholder {
    background-color: rgba(255,255,255,0.5);
    padding: 12px;
}

/* post user name and @ */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user .gallery-post-user-name {
    width: calc(100% - 70px);
    height: 50px;
    padding-top: 9px;
    position: absolute;
    top: 0px;
    left: 70px;
    line-height: 1; 
    color: white;
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user h1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; 
    font-size: 16px;
    font-weight: bold;
    color: white;
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user h2 {
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;   
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

/* post sellable */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-type {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background-color: lightblue;
    border-radius: 100%; 
}

/* clear float */
#GallerySection #GalleryContainer .gallery-clear-float {
    display: block;
    width: 100%;
    height: 1px;
    clear: both;
}

/* load more posts btn */
#LoadMoreGalleryPosts {
    display: block;
    width: 230px;
    height: 50px;
    margin-top: 50px;
    padding-top: 16px;
    cursor: pointer;
    text-align: center; 
    word-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 25px;
    transition: 1s;
}

#LoadMoreGalleryPosts:hover {
    background-color: black;
    color: white;
    border: 1px solid black;
}








/******************** WELCOME POST DATA *********************/    
#WelcomeAeqPostData {
    display: none;
}








/********************************************************************************/   
/******************** MOBILE ********************/      
/********************************************************************************/  








/******************** WELCOME SECTION *********************/                                                                                                                           
                            
/********* maxheight **********/
@media (max-height: 700px) and (min-width: 551px) {
#WelcomeSection {                                                                                                                                                                                                                                                                             
    height: 700px !important;
}
}

/********* maxheight **********/
@media (max-height: 500px) and (max-width: 550px) {
#WelcomeSection {                                                                                                                                                                                                                                                                             
    height: 500px !important;
}
}

/********* 1250px *********/ 
@media (max-width: 1250px) {   
/* carousel */
#WelcomeSection #WelcomeCarouselContent {
    left: 150px;
}
}

/********* 1050px *********/ 
@media (max-width: 1050px) {   
/* carousel */
#WelcomeSection #WelcomeCarouselContent {
    width: 300px;
    height: 320px;
    top: calc(50% - 215px);
}

#WelcomeSection #WelcomeCarouselContent #WelcomeCarouselContentInner {
    width: 1200px;  
}

#WelcomeSection #WelcomeCarouselContent .wccont {
    width: 300px;
    padding-bottom: 35px;
    margin-right: 0px;  
} 

/* content header */
#WelcomeSection #WelcomeCarouselContent h1 {
    word-spacing: 0px;    
    font-size: 35px;
    line-height: 1.2;
}

#WelcomeSection #WelcomeCarouselContent h1 br {
    display: block;
}

#WelcomeSection #WelcomeCarouselContent h1 span {
    padding-right: 0px;
}

/* content sub head */
#WelcomeSection #WelcomeCarouselContent h2 {
    padding-right: 0px;  
    font-size: 15px; 
}

/* scroll */
#WelcomeSection #WelcomeScroll {
    right: 50px;
}
}

/********* 700px *********/ 
@media (max-width: 700px) {   
/* carousel */
#WelcomeSection #WelcomeCarouselContent {
    left: 50px;
}

/* scroll */
#WelcomeSection #WelcomeScroll {
    right: 10px;
}
}

/********* 550px *********/ 
@media (max-width: 550px) {   
#WelcomeSection {                                                                                                                                                                                                                                                                                                    
    width: calc(100% - 40px);
    left: 20px;
}

/* carousel */
#WelcomeSection #WelcomeCarouselContent {
    left: 20px;
}

/* scroll */
#WelcomeSection #WelcomeScroll {
    display: none;
    width: 20px;
    height: 125px;
    top: auto;
    bottom: 100px;
    right: auto;
    left: 20px;
}

#WelcomeSection #WelcomeScroll p {
    width: 125px;
    top: 59px;
    left: -52px;
    word-spacing: 5px;
    font-size: 6px;
}

#WelcomeSection #WelcomeScroll img {
    width: 20px;
    left: 0px;
    bottom: 0px;
}
}








/******************** GALLERY SECTION *********************/

/********* 1250px *********/ 
@media (max-width: 1250px) {    
/* gallery controls */
#GallerySection #GalleryControls {
    width: calc(33.3333% - 12px); 
    padding-top: 14px; 
}

#GallerySection #GalleryControls h1 {
    font-size: 10px; 
}

#GallerySection #GalleryControls h1 span.divider {
    padding: 0px 13px; 
    bottom: 0.5px; 
}

/* gallery posts */
#GallerySection #GalleryContainer #GalleryPosts {
    margin-top: 58px; 
}

/* post */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post {
    width: calc(33.3333% - 12px); 
    margin-bottom: 18px; 
    margin-right: 18px; 
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post:nth-child(4n) {
    margin-right: 18px; 
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post:nth-child(3n) {
    margin-right: 0px; 
}
}

/********* 1000px *********/ 
@media (max-width: 1000px) {    
/* gallery controls */
#GallerySection #GalleryControls {
    width: calc(50% - 12px); 
}

/* gallery posts */
#GallerySection #GalleryContainer #GalleryPosts {
    margin-top: 64px; 
}

/* post */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post {
    width: calc(50% - 12px); 
    margin-bottom: 24px; 
    margin-right: 24px !important; 
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post:nth-child(2n) {
    margin-right: 0px !important; 
}
}

/********* 700px *********/ 
@media (max-width: 700px) { 
/* gallery outer container */
#GallerySection #GalleryContainer {
    width: calc(100% - 20px); 
    top: -100px; 
}

/* gallery controls */
#GallerySection #GalleryControls {
    width: calc(50% - 5px); 
    height: 35px; 
    padding-top: 12px; 
}

#GallerySection #GalleryControls h1 {
    font-size: 9px; 
}

#GallerySection #GalleryControls h1 span.divider {
    padding: 0px 10px; 
}

/* gallery posts */
#GallerySection #GalleryContainer #GalleryPosts {
    margin-top: 45px; 
}

/* post */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post {
    width: calc(50% - 5px);    
    margin-bottom: 10px; 
    margin-right: 10px !important; 
}

/* post user info */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user {
    width: calc(100% - 20px); 
    height: calc(100% - 40px); 
    bottom: 20px; 
    left: 20px; 
}

/* post user name and @ */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user .gallery-post-user-name {
    width: 100%; 
    height: auto; 
    padding-top: 0px; 
    top: auto; 
    bottom: 0px; 
    left: 0px; 
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user h1 {
    font-size: 15px; 
}

#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-overlay .gallery-post-user h2 {
    font-size: 9px; 
}

/* post sellable */
#GallerySection #GalleryContainer #GalleryPosts .gallery-post .gallery-post-type {
    width: 10px;
    height: 10px;   
    top: 10px;
    right: 10px;
}

/* load more posts btn */ 
#LoadMoreGalleryPosts {
    width: 200px; 
    height: 40px; 
    margin-top: 40px; 
    padding-top: 14px; 
    font-size: 10px; 
    border-radius: 20px; 
}
}

/********* 550px *********/ 
@media (max-width: 550px) { 
#GallerySection {            
    width: calc(100% - 40px);
    left: 20px;
}

/* gallery controls */
#GallerySection #GalleryControls {
    width: 65%; 
}
}







