/* CSS for header */
body {
    margin: 0;
    padding: 0;
}

header {
    background:linear-gradient(90deg, #204D9B 1.31%, #51B3AB 131.96%);
    padding: 10px 0; 
    margin: 0;
    top: 0;
    position: sticky;
    z-index: 9999;
}
.container{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav ul {
    list-style-type: none; 
    margin: 0;
    padding: 0;
}
.header-nav ul li {
    display: inline-block;
    margin-right: 20px;
}
.header-nav ul li:last-child {
    margin-right: 0;
}
.header-nav ul li a {
    text-decoration: none; 
    color: #fff; 
    padding: 10px 15px; 
    border-radius: 5px; 
    font-family: Montserrat !important;
    font-size: 15px;
}
.header-nav ul li a:hover {
  color: #ffffff; 
}

/* description */
.baner-desc {
    text-align: center; 
}

.spine-img {
    margin-top: 0px; 
}

/* poster */
.poster-section {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.poster-img {
    margin-top: 20px; 
    margin-bottom: 20px;
}
@media screen and (max-width:320px) {
    .poster-img{
        width: 290px;
    }
}

/* footer */
.footer{
    background: #2B2B2B;
    padding: 10px;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}
.address p{
    font-family: Montserrat;
    color: #fff;
}
.contact h3 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.mh-logo-footer{
    margin-top: 15px;
}

.header-mobile{
    display: none;
}
@media screen and (min-width: 320px) and (max-width:770px) {
    .header-mobile{
        display: block;
    }
    .header{
        display: none;
    }
    header{
        display: none;
        padding: 0;
    }
    .header-logo-mob{
        width: 90%;
        margin: 0 auto !important;
       }
       .mhlogo {
        display: flex;
        align-items: center;
        justify-content: space-between !important;
     }
    .header-mobile .container {
        background:linear-gradient(90deg, #204D9B 1.31%, #51B3AB 131.96%);
        padding: 10px 0; 
        margin: 0; 
    }
    .header-nav ul {
       
        margin: 0 auto;
    }
    .header-nav ul li {
        display: inline-block;
        margin-right: 10px;
    }
    .container {
        flex-direction: column; 
        width: 100%;
    }
    .spine-img {
        margin-top: 0px;
    }

  .footer-content{
    display: block;
  }
  .header-nav ul li a {
    padding: 0 0;
  }
  .header-mobile{
    top: 0;
    position: sticky;
    z-index: 9999;
  }
}
@media screen and (max-width:340px) {
    .header-nav ul li a {
        font-size: 9px;
    }
    .contactus-content p{
        font-size: 12px;
        width: 265px;
    }
    .footer-container{
        text-align: center;
    }
}
@media screen and (min-width: 350px) and (max-width:390px){
    .header-nav ul li a {
        font-size: 11px;
    }
    .footer-container{
        text-align: center;
    }
    .poster-img {
        margin-top: 20px;
        width: 320px;
    }
}
@media screen and (min-width: 390px) and (max-width:480px){
    .header-nav ul li a {
        font-size: 13px;
    }
    .footer-container{
        text-align: center;
    }
    .poster-img {
        width: 380px;
    }
}
@media screen and (min-width: 690px) and (max-width:780px){
    .poster-img {
        width: 660px;
    }
    .footer-container{
        text-align: center;
    }
}
