@media (max-width: 600px) {
.image-container {
      flex-direction: column;
    }
}

@media (max-width: 1080px) {
.image-container {
      flex-direction: column;
    }
  
 .image-wrapper .button{
    opacity: 1; 
    font-size: 16px;
 }
    
.image-wrapper .caption{
     opacity: 1; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
}  

 
    
}



body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
.header {
    text-align: center;
}

.logo {
    width: 80px;
    max-width: 100%;
    height: auto;
    margin: 35px auto 35px auto;
}

.bg-color{
    background-color: #F3F5F7;
}

.image-container {
    display: flex;
    width: 100%;
}

.image-wrapper {
    flex: 1;
    overflow: hidden;
    text-align: center;
    position: relative; 
    transition: 0.6s;
    height: 77vh;
}



.image-wrapper:hover::before{
    opacity: 1;
}

.image-wrapper:hover{
    flex: 1.5;
}


.content-featured{
    position: absolute;
}

.featured-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: block;
    transition: filter 0.5s;
}


.featured-image-healthcare{
    max-width: 290px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: inline-block;
    transition: filter 0.5s;
}

.featured-image-healthchair{
    max-width: 350px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: inline-block;
    transition: filter 0.5s;
}

.featured-image-rainec{
    max-width: 160px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: inline-block;
    transition: filter 0.5s;
}

.featured-image-energy{
    max-width: 180px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: inline-block;
    transition: filter 0.5s;
}

.featured-image-store{
    max-width: 220px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: inline-block;
    transition: filter 0.5s;
}


.content-container {    
    position: absolute; 
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    max-width: 100%;
    z-index: 1;
}


.caption {
    text-align: center;
    font: normal normal bold 26px Noto Sans TC;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
    letter-spacing: 2.5px;
    color: #FFFFFF;
    word-break: break-word;
    white-space: nowrap;
    transition: opacity 0.3s;
    opacity: 0;
    margin-bottom: 15px;
    position: relative; 
    z-index: 2; 
}

.popup-store-content{
   max-width: 970px;
   padding: 40px 0;
   margin: auto; 
}

.popup-store-img{
    padding-top:5px;
    text-align: center;
}
.popup-store-img img{
   width: 100%;
}

.popup-store-title-h1{
    color: #46B29E;
}


.popup-store-title-h2{
    text-align: center;
    color: #333333;
    font-size: 21px;
    padding: 0px 15px 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .13);
}


.popup-store-title-h3{
    font-size: 24px;
    color: #333333;
    font-weight: 500;
    padding: 20px 15px 0 15px;
    line-height: 28px;
}

.popup-store-title-h5{
    color: #46B29E;
    font-size: 18px;
    padding-bottom: 10px;
    
}

.popup-store-txt p{
    font-size: 16px;
    line-height: normal;
    margin: 0;
    padding-bottom: 8px;
    color: #333333;
}

.popup-content{
    padding: 25px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .13);
}

.bg{
    background-color: #fff;
    padding: 20px 20px 35px 20px;
    border: 1px solid #ededed;
}



/*-------------button-content start--------------*/
.button-content{
    position: absolute; 
    z-index: 1; 
    text-decoration: none;
    top:0;
    left: 0;
    height:100%;
    width: 100%;
}


.button-content::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0)50%);
    opacity: 0;
    transition: opacity 0.3s;
    
}

.button-content:hover::before{
    opacity: 1;
}

.button-content:hover{
    flex: 1.5;
}


@media (max-width: 1080px) {
    .button-content{
       position: static;
    }
    
}



/*-------------button-content end--------------*/


.button{
    text-align: center;
    font: normal normal normal 16px Noto Sans TC;
    color: #FFFFFF;
    letter-spacing: 2px;
    background-color: transparent;
    padding: 5px 18px;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    text-decoration:none;
    transition: all 0.3s;
    opacity: 0;
    position: relative; 
    z-index: 2; 
}

.button:hover{
    background-color: rgba(255, 255, 255, 0.5); 
}

.image-wrapper:hover .caption, .image-wrapper:hover .button{
    opacity: 1;
}


.logo-content{
    text-align: center;
    font: normal normal bold 26px Noto Sans TC;
    line-height: normal;
    color: #FFFFFF;
    position: absolute; 
    top: 5%;
    left: auto;
    max-width: 100%;
    width: 100%;
    z-index: 2;
}


.logo-img{
    position: relative;
    margin: 0 auto;
    display: inline-block;
    padding: 0 15px;
   
}




@media (max-width: 1080px) {
.logo-content{
    text-align: center;
    font: normal normal bold 26px Noto Sans TC;
    line-height: normal;
    color: #FFFFFF;
    position: absolute; 
    top: 5%;
    left: 0;
    max-width: 100%;
    width: 100%;
    z-index: 2;
}
    
.logo {
    width: 50px;
    max-width: 100%;
    height: auto;
    margin: 20px auto ;
}

.button-content::before {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0)34%);
    opacity: 1;
}    
     

}



.map-content{
     width: 400px;
     height: 300px;
 }

@media (max-width: 1080px) {
    
    
}

@media (max-width: 767px) {
  .map-content{  
     padding-top: 5px;
     width: 100%;
     height: 210px;    
    }
}

