.home-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-section:last-child {
    border-bottom: none;
}

.home-section .section-copy-inner {
    max-width: 560px;
    margin: 0 auto;
}

.home-section .section-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-section .section-copy,
.home-section .section-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section .section-copy-inner {
    width: 100%;
}

.home-section h2 {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--tr-orange);
    margin-bottom: 2rem;
    text-align: center;
}

.home-section .section-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.home-section p {
    font-size: 1.5rem;
    line-height: 2.35rem;
    color: var(--tr-white);
    text-align: justify;
}

.home-section .section-image-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.home-section .section-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.home-section .section-image {
    padding-top: 1rem;
}

@media only screen and (max-width: 767px) {
    .home-section {
        padding: 3rem 0;
    }

    .home-section h2 {
        font-size: 2rem;
    }

    .home-section p {
        text-align: center;
    }
}