
/*___________________________________________*/

/* header Nav style */ 
* {
    margin: 0;
    padding: 0;
    
}

html {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    line-height: 1rem;
    background-color: white;
    color: #555555;
}



.header {
    width: 100%;
    height: fit-content; 
    display: inline-flex;
    background-color: white;
    margin-left: 0.5rem;
    position: relative;
    border-bottom: 3px solid transparent;
    border-color: rgb(199, 201, 211);
     
}

.home-header-logo {
    margin: 0;
    padding: 0.5rem;
    position: relative;
          
}

.logo-img  {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 9rem;
    height: 2rem;
}

.nav-bar {
    display: inline-flex;
    background-color: white;
    position: relative;
    margin-left: 2rem;
    padding-top: 1rem; 
     
}

.manu-nav-bar {
    display: grid;  
    position: relative;
    margin-bottom: 0px;
    padding-bottom: 0px;
    background-color: white;
    text-align: justify;
    font-size: 1rem;
       
}

.manu-nav-bar ul {
   position: relative;
   text-align: center;
   color: white;
        
}

.manu-nav-bar li {
    display: inline-grid;  
    list-style: none;
    text-align: center;
    margin-left: 2rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    justify-content: space-between; 
}

.manu-nav-bar a {
    font-size: 0.8rem;
    color: black;
    margin-bottom: 0px;
    padding-bottom: 0px;
    text-decoration: none;
} 


.sub-manu-nav-bar {
    display: inline-grid; 
    position: relative; 
    margin-bottom: 0px;
    background-color: white;
    text-align: justify;
    font-size: 1rem;
    margin-left: 4rem;   

}

.sub-manu-nav-bar ul {
    position: relative;
    text-align: center;
    list-style: none;
}

.sub-manu-nav-bar li {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}



.sub-manu-nav-bar a {
    font-size: 0.8rem;
    color: black;
    text-decoration: none;
    text-align: center;
}

.active  
{
    background: aqua;
    border-radius: 0.1rem;
    border-bottom: 3px solid transparent;
    transition: border-bottom 1s;
    border-color: rgb(8, 63, 1);
    font-weight: bolder;
}

.nav-bar li a:hover  {
    background: pink;
    padding-top: 0.1rem;
    border-radius: 0.1rem;
    border-bottom: 3px solid transparent;
    transition: border-bottom 1s;
    border-color: rgb(8, 63, 1);
    font-weight: bolder;

}





/*======================================*/

.business-contents {
    border-bottom: 3px solid transparent;
    border-color: rgb(140, 149, 150);
    margin-bottom: 1rem;
}

.business-items {
    position: relative;
    display: flex;
    padding-top: 1rem;
    align-items: center;
    flex-wrap: wrap;
    
}


.business-item {
    flex-basis: 50%;
    min-width: 300px; 
}



.businese-item-image {
    width: 300px;
    text-align: center;
    margin-left: 1rem;
    margin: auto;
}

.businese-item-image img {
    width: 100%;
   height: 200px;
    
}


.business-item-subtitle {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center; 
    padding-left: 3rem;
    padding-right: 3rem;
            
}

.business-item-subtitle h1 {
    font-size: 0.7rem;
    color: lightseagreen;
    
}

.more {
    margin-right: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: right;
    font-style: italic;
    color: blue;
}

/* right side info */
.info-business-item {
    
    margin-right: 1rem;
    margin-left: 1rem;
    text-align:justify;
    background-color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.info-business-item p{
    color: black;
}

.info-business-item ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: blue;
    
}

.info-business-item li {
    color: blue;
    margin-left: 1rem;
}

#main-footer {
    background: #555555;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 0px;
 
}

@media(max-width:1024px){
    .html {
      width: 100%;
    }
}