h1, h2, h3, h4, h5, h6 {
    font-family: "hilde-sharp", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.navbar-collapse.collapse.show {
    background-color: #c58c6d;
    border-radius: 10px;
}

.navbar-collapse.collapse.show ul {
    padding-left: 20px;
}

.main-title {
    font-family: "hilde-sharp", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 8rem;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }
}

p, a, button {
    font-family: "abril-display", serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.3rem;
}

a {
    color: #c58c6d;
}

.nav-link, .navbar-brand {
    font-size: 1.4rem;
}

.nav-link:hover {
    background: linear-gradient(45deg, #c58c6d, #e3a78b);
    color: #ffffff;
    border-radius: 10px;
}

.full-width-image {
    background: url('./img/background_03.jpg') no-repeat center center;
    background-size: cover; 
    height: 70vh;
    background-position: bottom right;
}

.btn-primary {
    background-color: #c58c6d;
    border-color: #c58c6d;
    border-radius: 10;
}

.btn-primary:hover {
    background-color: #cc7d53;
    border-color: #cc7d53;
    border-radius: 10;
}

strong {
    font-family: "abril-display", serif;
    font-weight: 800;
    font-style: normal;
}

#details02, #faq {
    background-color: #789b7e;
}

/* #faq {
    background-color: #c58c6d;
} */

.accordion-item {
    border: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

#faq button {
    font-size: 1.3rem;
}

#slideshow {
    overflow: hidden;
}

#slideshow img {
    display: block;
    width: 100%;
}

#slideshow section {
    width: 100%;
    overflow: hidden;
}

#slideshow article {
    display: flex;
    width: 200%;
    animation: bannermove 20s linear infinite;
}

#slideshow article.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#slideshow div {
    width: 100%;
}

#slideshow ul {
    display: flex;
    background: red;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

#slideshow li {
    width: 100%;
    background: blue;
}

#slideshow li:nth-child(2) {
    background: green;
}

#slideshow li:nth-child(3) {
    background: yellow;
}

@keyframes bannermove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}