header {
    width: 100%;
    height: 13.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    background-color: var(--color-dark-gray);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.haeder__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.haeder__logo > img {
    user-select: none;
    pointer-events: none;
    height: 115%;
}

.panels-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 45px 10%;
}

.panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    width: 400px;
    height: 30vh;
    border-radius: var(--panel-border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    transition: .25s;
    cursor: pointer;
}

.panel:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.panel:active {
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.panel__image, .panel__title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

.panel__image img {
    user-select: none;
    pointer-events: none;
    height: 92.5%;
}

.panel__title {
    color: var(--color-dark-gray);
    font-size: 20.5px;
}
