* {
    margin: 0;
    padding: 0;
    
}


html {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    line-height: 1rem;
    background-color:white;
    color: black;
}


body 
{
    background:white;
    
}

.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 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;

}


/*___________________________*/



.container {
    width: 100%;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    background-color: rgb(27, 104, 96);
}


.row {
    position: relative;
    display: flex;
    padding-top: 1rem;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 3px solid transparent;
    border-color: rgb(14, 220, 235);
}

.col {
    flex-basis: 50%;
    min-width: 250px;
}

.feature-img {
    width: 95%;
    margin-left: 0.5rem;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.small-img-row {
   display: flex;
   background: #efefef;
   margin-top: 0.5rem;
   margin-bottom: 0.5rem;
   margin: 0.5rem;
   padding: 0.5rem;
   align-items: center;
   border-radius: 6px;
   overflow: hidden;
   width: 90%;  
}

.small-img {
    position: relative;
}

.small-img img {
    width: 150px;
    
}
.small-img-row p {
    margin-left: 20px;
    color: black;
    line-height: 20px;
    font-size: 0.6rem;
    font-weight: bold;
}

.play-btn {
    width: 60px;
    position: absolute;
    left: 10%;
    top: 10%;
    transform: translate(-50%, -50%);
    cursor: pointer;
     
}

.small-img .play-btn {
    width: 30px;
   
}

.video-player {
    width: 50%;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    display: none;
}

video:focus {
    outline: none;
}

.close-btn {
    position: absolute;
    top: 1%;
    left: 1%;
    width: 40px;
    cursor: pointer;
}


#main-footer {
    background: #555555;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 0px;
 
}

@media(max-width:1024px){
    .html {
      width: 100%;
    }
}