/* GW19 TEXT + IMAGE SECTION */

.gw19-textimage {
    width: 100%;
    overflow: hidden;
}

.gw19-textimage__inner {
    display: flex;
    min-height: 500px;
}

.gw19-textimage__text {
    flex: 1;
    padding: 80px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gw19-textimage__heading {
    font-family: "swear-display", serif;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 30px 0;
}

.gw19-textimage__heading span {
    display: block;
}

.gw19-textimage__desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: "helvetica-lt-pro", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    max-width: 480px;
}

.gw19-textimage__desc p {
    color: rgba(255, 255, 255, 0.85);
}

.gw19-textimage__scroll {
    margin-top: 40px;
    width: 50px;
    height: 50px;
    border: 1.5px solid #E8A090;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gw19-textimage__scroll:hover {
    background-color: rgba(232, 160, 144, 0.15);
}

.gw19-textimage__image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gw19-textimage__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media only screen and (max-width: 999px) {
    .gw19-textimage__inner {
        flex-direction: column;
    }
    .gw19-textimage__text {
        padding: 50px 30px;
    }
    .gw19-textimage__heading {
        font-size: 40px;
    }
    .gw19-textimage__image {
        min-height: 350px;
    }
}

@media only screen and (max-width: 690px) {
    .gw19-textimage__heading {
        font-size: 32px;
    }
    .gw19-textimage__text {
        padding: 40px 20px;
    }
}
