section.banner {
    padding: 100px 0 40px;
    position: relative;
    display: flex;
}

section.banner .wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.banner-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

section.banner h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}

section.introduction {
    padding-bottom: 60px;
    text-align: center;
    display: flex;
}

section.introduction h2 span {
    color: var(--gold);
}

section.introduction h2 {
    font-weight: 600;
}


section.introduction {}

.content {
    display: flex;
    position: relative;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    padding: 150px 0;
}

.content img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

section.cta {
    padding: 100px 0;
    text-align: center;
    align-items: center;
    display: flex;
}

.cta-content {
    margin-bottom: 60px;
}

.cta-content h3 {
    color: var(--gold);
}

section.dropdowns {
    padding: 100px 0;
}

button.dropdown-toggle {
    border: none;
    background: var(--white);
    padding: 20px 0;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    cursor: pointer;
}

button.dropdown-toggle span {
    color: var(--gold);
    font-weight: 300;
    font-size: 30px;
}

.dropdown-area {
    background: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
}
.dropdown-content {
    background: var(--white);
    padding: 10px 0;
}

.dropdown-content p {
    margin: 0;
}

button.dropdown-toggle {
    color: var(--black);
}