* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}


.header {
    box-shadow: 0px 4px 48px 5px rgba(0, 0, 0, 0.25);
}

/* Header nav hover */
.header__nav > a {
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.header__nav > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #CAB494;
    transition: width 0.3s ease-in-out;
}

.header__nav > a:hover::after {
    width: 100%;
}

.header__title::before {
    content: "";
    display: block;
    font-size: 14px;
    color: #555555;
    margin-bottom: 5px;
}

/* Mobile menu overlay */
@media (max-width: 1023px) {
    body.menu-open {
        overflow: hidden;
    }
}

/* Divider */
.divider {
    position: relative;
}

.divider__content {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.divider__content img {
    flex-shrink: 0;
    filter: grayscale(100%);
}