.header{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #ff3131;
    height: fit-content;
    background: linear-gradient(to right, white, #707070);  
    max-height: 15vh;
}

.icon{
    height: 35px;
    width: 35px;
    cursor: pointer;
    color: #ff3131;
}

.hamburger{
    width: 60px;
    width: 60px;
    cursor: pointer;
}

.hamburger_container{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header_information_container{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
}

.social_container{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.social_container ul{
    display: flex;
    justify-content: end;
    align-items: center;
    list-style: none;
    width: 100%;
}

.social_container ul li{
    width: 20%;
    margin: 0 0.2%;
    padding: 0;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.socials_icon{
    height: 45px;
}

.information_icons{
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    padding: 0.5%;
    padding-top: 0;
    width: 20%;
    border: 2px solid #ff3131;
    border-top: none;
}

.information_details{
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    max-height: 20px;
}

.information_details a{
    text-decoration: none;
    font-family: verdana;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.mail_information, .phone_information, .address_information{
    background-color: #ff3131;
    margin: 0;
    padding-top: 0;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 0;
}

  @media (max-width: 991px) {
    .header_information_container{
        display: none;   
    }
    
    .header{
        justify-content: space-between;
    }
    
    .social_container{
        width: 50%;
    }
    
    .hamburger_container{
        width: 49%;
        padding-left: 1%;
    }
    
    .hamburger_container{
        justify-content: start;
    }
    
    .social_container{
        justify-content: end;
        
    }
    
    .social_container ul{
        justify-content: center;
    }
    
    .social_container ul li{
        width: auto;
    }
    
    .hamburger{
        height: 45px;
        width: 45px;
    }
    
    .icon{
        width: 20px;
        height: 20px;
    }
}
