* {
    margin: 0;
    padding: 0;
    user-select: none;
}

main {
    position: relative;
    margin-top: 190px;
    max-width: 1800px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

main h2 {
    font-size: 22px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    
}

main .left-column {
    position: sticky;
    top: 300px;
    left: 0;
    width: calc(33.3% - 1px);
    margin-bottom: 50px;
}

main .left-column .table-of-contents {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    margin-top: 50px;
    margin-bottom: 100px;
    margin-left: calc(100% - 50px);
    transform: translateX(-100%);
    width: 225px;
    padding: 25px;
    border: 2px solid #dfc16d;
}

main .left-column h2 {
    text-decoration: underline;
}

main .table-of-contents ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style: none;
}

main .table-of-contents ul li {
    margin-top: 5px;
}

main .table-of-contents ul li h3 {
    margin-left: 15px;
    display: inline-block;
    font-size: 18px;
    font-family: trajan-pro-3, serif;
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    border: 2px solid #fff;
    cursor: pointer;
}

main .table-of-contents ul li h3:hover {
    border-bottom: 2px solid #dfc16d;
    cursor: pointer;
}

main .right-column {
    position: relative;
    display: inline-block;
    margin-top: -445px;
    margin-left: 33.333%;
    width: calc(66.6% - 2px);
    margin-bottom: 50px;
}

.hero-banner {
    height: 400px;
    max-width: 100%;
    background: url(../../../images/long-valley-ranch.jpg);
    background-size: cover;
    background-position: center;
}

.hero-banner h1 {
    position: relative;
    display: inline-block;
    font-size: 36px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 100px;
    text-align: center;
    z-index: 2;
    color: #fff;
    width: 90%;
}

.hero-banner i {
    position: relative;
    display: block;
    font-size: 15px;
    font-style: italic;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-display: swap;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 25px;
    text-align: center;
    margin-top: 0px;
    z-index: 2;
    color: #fff;
}

.hero-banner p {
    position: relative;
    display: block;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-display: swap;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    text-align: center;
    margin-top: 0px;
    z-index: 2;
    color: #fff;
}

.hero-banner .overlay {
    position: absolute;
    width: 100%;
    height: 400px;
    background: rgba(0,0,0,.35);
    z-index: 1;
}

.hero-banner .line-break {
    position: relative;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 4px;
    background: #fff;
    z-index: 3;
}

main .right-column h2 {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    margin-top: 25px;
    font-size: 22px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-display: swap;
    border-bottom: 2px solid #dfc16d;
}

.question-container {
    position: relative;
    margin-top: 15px;
    width: calc(85%);
    min-height: 40px;
    cursor: pointer;
    margin-bottom: 15px;
}

.question-container h3 {
    position: relative;
    display: inline-block;
    margin-top: 7px;
    margin-left: 30px;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 600;
    font-display: swap;
    cursor: pointer;
}

.question-container .caret {
    position: absolute;
    margin-top: 0px;
    top: 0;
    left: calc(100% - 25px);
    font-size: 20px;
    font-family: trajan-pro-3, serif;
    font-weight: 600;
    font-display: swap;
}

.down {
    transform: rotate(180deg);
}

.question-container p {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    margin-left: 50px;
    width: 80%;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 300;
    font-display: swap;
}

.hidden {
    display: none !important;
}

.question-container p a {
    color: #dfc16d;
}

.question-container p span {
    margin-left: 25px;
}


@media only screen and (max-width: 1250px) {
    main {
        margin-top: 90px;
    }
    
    
    .hero-banner {
        height: 250px;
    }
    
    .hero-banner .overlay {
        height: 250px;
    }
    
    .hero-banner h1 {
        font-size: 32px;
    }
    
   .hero-banner i {
        font-size: 12px;
        margin-top: 3px;
        width: 90%;
    }
    
    main .left-column {
        position: relative;
        top: 0;
        margin-bottom: 0;
        margin-left: auto;
        width: 100%;
    }
    
    main .left-column .table-of-contents {
        position: relative;
        padding: 25px;
        margin-top: 50px;
        margin-bottom: 25px;
        margin-left: 50%;
        transform: translateX(-50%);
        max-width: 260px;
        width: 70%;
        min-width: 210px;
        left: auto;
        border: 2px solid #dfc16d;
    }
    
    .table-of-contents h2 {
        width: 90%;
        margin-left: 50%;
        transform: translateX(-50%);
        text-align: center;
        text-decoration: underline;
        line-height: 50px;
    }
    
    main .table-of-content ul li {
        width: 100%;
    }
    
    main .table-of-contents ul li h3 {
        margin-left: 50%;
        transform: translateX(-50%);
        text-align: center;
        display: inline-block;
        white-space: nowrap;
    }
    
    main .right-column {
        margin-top: 0;
        margin-left: 50%;
        transform: translateX(-50%);
        width: calc(90%);
        margin-bottom: 25px;
    }
    
    .question-container {
        width: calc(100%);
    }
    
    .question-container h3 {
        width: calc(100% - 75px);
    }
}

@media only screen and (max-width: 704px) {
    .hero-banner h1 span {
        display: inline-block;
    }
    
    .hero-banner h1 {
        margin-top: 75px;
    }
}

@media only screen and (max-width: 550px) {
    .hero-banner h1 {
        line-height: 40px;
        font-size: 24px;
    }
    
    .hero-banner h1 span {
        font-size: 20px;
    }
    
    .question-container p {
        position: relative;
        display: inline-block;
        margin-top: 15px;
        margin-left: 35px;
        width: 85%;
        font-size: 15px;
        font-family: trajan-pro-3, serif;
        font-weight: 300;
        font-display: swap;
    }
}