@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@0;1&display=swap');

*{
    margin: 0;
    padding: 0;
    
}
header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 100;
    position: sticky;
    top: 0;
    width: 100%;
    transition: all 1s;
    background-color: rgb(252, 252, 252);

}
.headerScroll{
    background-color: rgba(255, 255, 255, 0.714);
}
.headerScroll .contactInfo{
    display: none;
}
.header .contactNow{
    display: none;
}
.headerScroll .contactNow{
    display: block;
}
.headerScroll .contactNow button{
    border: 2px solid #0BDBCA;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    padding: 5px 10px;
    justify-content: space-between;
    align-items: center;
    color: rgb(23, 23, 255);
    cursor: pointer;
}
.headerScroll .contactNow button a{
    text-decoration: none;
    color: rgb(23, 23, 255);
}
.headerScroll .contactNow button:hover{
    background-color: rgb(42, 42, 252);
    color: white;
}
.headerScroll .contactNow button:hover a{
    color: white;
}
.headerScroll .contactNow button:active{
    opacity: 0.7;
}

.headerScroll .contactNow button img{
    width: 40px;
    height: 40px;
}
.headerScroll .companyType{
    display: none;
}

header .mmpmLogo{
    width: 80px;
    height: 80px;
}
.headerScroll .mmpmLogo{
    display: none;
}

/* company name and type */
.mmpmNameAndCompanyType{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition:all 0.15s;
    padding: 10px 10px;
    cursor: pointer;

}
.mmpmNameAndCompanyType:hover{
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.203);
    background-color: #0071ce19;
}
.mmpmNameAndCompanyType:active{
    box-shadow: none;
}
.mmpmName{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    color: #0072CE;
    text-decoration: none;
    
}

.companyType{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #0072CE;
    text-decoration: none; 
}

/* navigation section  */



.fa-solid{
    color: #0072CE;
    margin-right: 8px;
}
.menuBar
{
    text-align: center;
}

.menuBar ul
{
    display: inline-flex;
    list-style-type: none;
}

.menuBar ul li{
    width: 120px;
    margin: 3px;
    padding: 5px 15px;
    border-radius: 5px;
}

.menuBar ul li a
{
    text-decoration: none;
    color: #0072CE;

}
.menuBar .active .fa-solid {
    color: white;
}
.menuBar .subMenuBar {
    display: none;
    
}
.menuBar ul li:hover{
    background-color: #0072CE;
}
.menuBar ul li:hover a, .menuBar ul li:hover .fa-solid{
    color: white;
}


.menuBar ul li:hover .subMenuBar{
    display: block;
    position: absolute;
    background-color: #0072CE;
    transition: all 1s;
}

.menuBar ul li:hover .subMenuBar ul{
    display: block;
    margin: 10px;
}

.menuBar ul li:hover .subMenuBar ul li{
    width: 250px;
    padding: 10px;
    border-bottom: 1px dotted white;
    background-color: transparent;
    border-radius: 0;
    text-align: left;
}
.menuBar ul li:hover .subMenuBar ul li:last-child{
    border: none;
}

.menuBar ul li:hover .subMenuBar ul li a:hover{
    color: white;
}

/* second section  */

.menuBar .subMenuBar .secondSubMenuBar {
    display: none;
    transition:all 1s ease;
    left: 100px;
    
}
.subMenuBar ul li:hover  .secondSubMenuBar{
    display: block;
    position: absolute;
    background-color: #00cec7;
    transition: all 1s;
}

.subMenuBar ul li:hover  .secondSubMenuBar ul{
    display: block;
    margin: 10px;
}

.subMenuBar ul li:hover  .secondSubMenuBar ul li{
    width: 200px;
    padding: 10px;
    border-bottom: 1px dotted white;
    background-color: transparent;
    border-radius: 0;
    text-align: left;
}
.subMenuBar ul li:hover  .secondSubMenuBar ul li:last-child{
    border: none;
}

.subMenuBar ul li:hover  .secondSubMenuBar ul li a:hover{
    color: white;
}

/* contact section  */
header .contactInfo div{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

header .contactInfo div img{
    width: 30px;
    height: 30px;
}

header .contactInfo p{
    font-size: 25px;
}
header .contactInfo .gmail{
    color: rgb(0, 187, 255);
}
header .contactInfo .phone{
    color: purple;
}

/* banner section  */


/* submenu section  */

.menuBar ul li .subMenuBar ul li:hover{
    background-color: #0000ff;
}
.menuBar ul li .subMenuBar ul li a{
    margin-right: 10px;
}


.currentPage::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0000ff;
}