.header{
    background: #ffffff;
    height: 100px;
    
}
.header_content {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-around;
}
.header_box_info{
    display: flex;
    gap: 40px;
}
.logo{
    width: auto;
    height: 50%;
}
.header_slogan{
    font-family: 'GT Eesti Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.03em;

    color: #120A4B;
}
.header_email{
    font-family: 'GT Eesti Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.03em;

    color: #120A4B;
    text-decoration: none;
    transition: 300ms;
}
.header_email:hover{
    text-decoration: revert;

}
.header_tel{
    font-family: 'GT Eesti Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.03em;

    color: #120A4B;
    text-decoration: none;
    transition: 300ms;

}
.header_tel:hover{
    text-decoration: revert;
}
.contacts_box{
    box-sizing: border-box;

    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid  #120A4B;  
    display: flex;
    align-items: center;
    justify-content: center;  
}
.header_contacts {
    display: flex;
    gap: 5px;
}