*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size:15px;
}


body{
    width:100%;
    height:100vh;
    min-height: 100%;
    margin:0;
    overflow: auto;
    display:block;
    position: relative;
}
.top-bar{
    width:100%;
    height:5%;
    border-bottom:1px solid rgb(0,0,0,0.2);
    display:flex;
    position: fixed;
    top: 0;
    background: white;
    z-index: 999;
    transition: top 0.5s ease;
}
.contact-left{
    width:40%;
    padding:10px;
    display:flex;
    align-items: center;
}
.contact-left a{
    text-decoration: none;
    color:black;
    padding:0 10px;
}
.contact-left i{
    font-size:20px;
    background-color:none;
    color: rgb(0, 77, 139);
}
.contact-left i:hover{
    scale:1.2;
    transition: .2s;
}
.contact-right{
    width:60%;
    padding:10px;
    display:flex;
    align-items: center;
    justify-content: right;
}
.contact-right span{
    text-decoration: none;
    color:black;
    padding:0 15px;
    font-size:15px;
}
.menu-bar1{
    margin: 20px 0 0 0;
    width:100%;
    height:25%;
    position: fixed;
    top:5%;
    border-bottom:1px solid rgb(0,0,0,0.2);
    display:flex;
    align-items: center;
    padding:0;
}
.menu-bar1 .header{
    
    display:block;
    height:100%;
    width:100%;
    opacity: 0.5;
}
.menu-bar1 .header2{
    display:none;
}
.menu-bar1 .skmh{
    width:100%;
    height:100%;
    position: absolute;
    display:flex;
    align-items: center;
    justify-content: center;
}
/* .skmh .logo{
    position: absolute;
    display:block;
    height:50%;
} */
section{
    
    position: relative;
    top:30%;
    width:100%;
    height:auto;
    padding:10px 0;
    background-color: white;;
}
section .top{
    width:100%;
    height:5%;
    padding:10px 20px;
    position: relative;
    display:flex;
    align-items: center;
}
section .top::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 140px;
    border-bottom: 2px solid;
    border-radius: 20px;
}
section .top a{
    color:black;
}
.mid{
   
    width:60%;
    margin-left:20%;
    height:90%;
    border:none;
    border-radius: 5px;
    background-color: rgb(248, 248, 248);
    box-shadow: 1px 1px 1px 1px rgb(0,0,0);
    padding:20px 0;
    display:flex;
}
.info{
    width:100%;
    height:100%;
    display:block;
    padding:20px 50px;
}
.info .title{
    width:100%;
    height:10%;
    padding:10px 20px;
    text-align: center;
}
.mid .title span{
    font-size:20px;
    font-weight: 600;
}
.info .text{
    width:100%;
    height:90%;
    padding:20px;
}
.info .text span{
    font-size:15px;
    line-height: 25px;
    display:flex;
    text-align: justify;

}
.mid .images{
    width:40%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    padding:30px;
}
.images img{
    display:block;
    width:220px;;
    margin:auto;
}

.licens{
    width:100%;
    height:7%;
    position: absolute;
    bottom:0;
    display:flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: rgb(0, 77, 139);
    color:white;
}


/* HD screen */
@media (max-width: 1366px) {
    section{
        height:auto;
    }
    section .top{
        width:100%;
        height:5%;
        padding:15px 20px;
        position: relative;
        display:flex;
        align-items: center;
    }
    section .top::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 20px;
        width: 140px;
        border-bottom: 1px solid;
        border-radius: 20px;
    }
    .mid{
        width:60%;
        margin-left:20%;
        height:90%;
        border:none;
        border-radius: 5px;
        background-color: rgb(248, 248, 248);
        box-shadow: 1px 1px 1px 1px rgb(0,0,0);
        padding:10px 0;
        display:flex;
    }
    .info{
        width:100%;
        height:100%;
        display:block;
        padding:10px 20px;
    }
    .info .title{
        width:100%;
        height:10%;
        padding:5px 10px;
        text-align: center;
    }
    .mid .title span{
        font-size:16px;
        font-weight: 600;
    }
    .info .text{
        width:100%;
        height:90%;
        padding:10px;
    }
    .info .text span{
        font-size:14px;
        line-height: 20px;
        display:flex;
        text-align: justify;
    
    }
    .images img{
        display:block;
        width:180px;;
        margin:auto;
    }
    
    .licens{
        width:100%;
        height:7%;
        position: relative;
        top:30%;
        display:flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        background-color: rgb(0, 77, 139);
        color:white;
    }
    
}




/* PHone */
@media (max-width: 787px) {
    .contact-left{
        width:100%;
    }
    .contact-right{
        display:none;
    }
    .menu-bar1{
        height:20%;
        position: fixed;
      
    }
    .menu-bar1 .header{
        display:none;
    }
    .menu-bar1 .header2{
        display:block;
        height:100%;
        width:100%;
        opacity: 0.5;
    }
    .skmh .logo{
        position: absolute;
        display:block;
        width:90%;
        height:auto;
    }
    section{
        position: relative;
        top:25%;
        width:100%;
        height:85%;
        background-color: rgb(248, 248, 248);
    }
    section .top{
        position: relative;
        display:block;
    }
    .mid{
        width:100%;
        height:100%;
        margin-left:0;
        border:none;
        border-radius: 5px;
        background-color: rgb(248, 248, 248);
        box-shadow: none;
        padding:10px 0;
        display:block;
    }
    .info{
        width:100%;
        height:auto;
        display:block;
        padding:10px 20px;
    }
    .mid .images{
        width:100%;
        height:80%;
        display:flex;
        justify-content: center;
        align-items: center;
        padding:10px;
    }
    .images img{
        display:block;
        height:80%;
        width:auto;
        margin:auto;
    }
    .licens{
        width:100%;
        height:5%;
        top:55%;
        position:relative;
        display:flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        background-color: rgb(0, 77, 139);
        color:white;
    }
    .licens span{
        font-size:12px;
    }
    

}














