.highlight-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: var(--Rusty-Red, #B85C4E);
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.secondary-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 2px solid #FFF;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.tertiary-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #03424C;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
    z-index: 1;
}

.hero .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.hero .content p {
    color: #FFF;
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    width: 650px;
}

.hero .content .btn-group {
    display: flex;
    width: 596px;
    justify-content: space-between;
}

.hero .content .btn-group a {
    width: calc(50% - 12px);
}

.hero .content .btn-group .highlight-btn {
    padding: 20px 38px;
}

.hero .content .btn-group .secondary-btn {
    padding: 20px 28px;
}

@media only screen and (max-width: 1000px) {
    .hero {
        height: 550px;
        padding: 0 24px;
    }

    .hero .content p {
        width: 100%;
    }

    .hero .content .btn-group {
        width: 100%;
        flex-direction: column;
    }

    .hero .content .btn-group .highlight-btn {
        width: 278px;
        margin: auto;
        margin-bottom: 8px;
    }

    .hero .content .btn-group .secondary-btn {
        width: 294px;
        margin: auto;
    }
}