/*Navigation*/
.navbar-brand {
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
    color: #777777;
    font-size: 25px;
    letter-spacing: 2px;
    transition: 0.3s all ease-in-out;
}

.navbar-brand:hover {
    color: #e79fb4
}

.nav-link {
    letter-spacing: 0.2px;
    font-weight: bold;
    margin-left: 35px;
}

.navbar-container {
    background-color: #ffffff;
}

.logo-icon {
    width: 29px;
    margin: -4px 2px 0;
}

.navbar {
    box-shadow: 0px 9px 20px 0px #00000008;
    padding: 10px 0;
}

#navbarNavDropdown {
    text-transform: uppercase;
}

.navbar-container {
    position: fixed;
    width: 100%;
    z-index: 20;
}

.bi-house-heart-fill {
    margin-top: -6px;
}
/*Header*/
.header-headline {
    text-align: center;
    font-size: 70px;
    color: #777777;
    letter-spacing: 12px;
    margin-bottom: 20px;
}

.header-sctn {
    background-image: url('/images/header/header-bg-img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header-img {
    box-shadow: 0px 9px 13px #00000024;
    width: 100%
}

.header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

.header-img.hover-img {
    opacity: 0;
}

.header-img-container {
    position: relative;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.header-sctn {
    min-height: 48em;
}

.header-img-container:hover .hover-img {
    opacity: 1;
}

.header-img-container:hover .header-img:not(.hover-img) {
    opacity: 0;
}

.header-img-row {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

