@media (max-width: 1000px) {

    .header {

        display: none;

    }

}



.header {

    position: fixed;

    padding: 0 60px;

    top: 0;

    left: 0;

    right: 0;

    /* width: 100%; */

    /* height: 70px; */

    background-color: #fff;

    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    transition: top 0.3s;

    z-index: 1000;

    /* display: flex; */

    align-items: center;

    justify-content: center;

}



.header .information {

    display: grid;

    grid-template-columns: 32% 32% 32%;

    column-gap: 2%;

}


.header .information > div {
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 10px;
}



.header .call {

    width: 3vw;

}

.header .profile {
    width: 3vw;
    align-self: end;
    justify-self: end;
}



.header .logo {

    width: 8vw;

    height: 8vw;

    border-radius: 100rem;

    align-self: end;

    justify-self: center;

    margin-bottom: -13vh;

    z-index: 1;

}



.header .logo:hover {

    cursor: pointer;

}



.header .location {

    width: 3vw;

}



.menu {

    display: grid;

    grid-template-columns: auto auto auto auto auto auto auto;

}



.menu a {

    text-decoration: none;

    color: black;

    font-weight: bold;

    font-size: 12px;

}



.menu a#partOne {

    text-align: start;

}



.menu a#partTwo {

    text-align: end;

}



.menu a:hover {

    color: var(--mainColor);

}