.header-section-main {
    padding: 10px 0;
}

.header-section-img {
    max-height: 700px;
    object-fit: cover;
}

.header-menu-icons {
    margin: 0 10px;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 10px;
}

.header-menu-icon {
    width: 30px;
    height: 30px;
    display: block;

}

.header-menu-mobile-icon {
    display: none;
}

.header-menu-icon use {
    fill: #064b85;
}

.header-menu-icon path {
    fill: #064b85;
}

.header-menu-icon-tel {
    display: none;
}

@media (max-width: 480px) {

    .header .header-button-tel__text {
        display: none;
    }

    .header-menu-icons {
        align-items: center;
    }

    .header-mobile-icon-tel {
        display: none;
    }

    .header-menu-icon {
        height: 24px;
        width: 24px;
    }

    .header-menu-mobile-icon {
        display: block;
    }

    .header-menu-icon-tel {
        display: block;
        width: 20px;
        height: 20px;
    }
}