@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

a{
    color: white;
    text-decoration: none;
}

/* header */
.headerDiv{
    background: rgb(17, 17, 17);
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
    align-items: center;
}
.logoImg{
    height: 40px;
    margin-left: 10px;
}

.menuDiv{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    margin-inline: 50px;
    margin-left: 25%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.menuConDiv{
    width: fit-content;
}
.menuTxt{
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.5s all;
    margin-inline: 10px;
    
}
.menuTxt:hover{
    color: red;
}
.menuBtnDiv{
    display: flex;
    flex-direction:row;
    justify-content: flex-end;
    margin-right: 20px;
}
.menuImg{
    height: 30px;
    transition: 0.5s all;
    display: none;
}
.chatUsBtn{
    padding-inline: 20px;
    font-weight: bold;
    border-radius: 10px;
    border: 0px solid red;
    background: red;
    color: white;
    padding-block: 10px;
}



/* mobile menu */
.mobileMenuDiv{
    background: rgb(26, 26, 26);
    transition: 1s all;
    height: 0;
    overflow-y: hidden;
}
.mobileMenuDiv_menuConDiv{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.mobileMenuDiv_menuA{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    padding-block: 30px;
}















    /* Media query for mobile view */
@media (max-width: 1000px) {

    /* header */
.headerDiv{
    grid-template-columns: 1fr 8fr 1fr;
}

.menuConDiv{
    display: none;
}
.logoImg{
    height: 80px;
}
.chatUsBtn{
display: none;
}
.menuImg{
    height: 80px;
    display: block;
}










}
