.pequod-hero-row-image {
    display: flex;
    justify-content: center;
}

.pequod-hero-row-image-inner {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 83px;
    align-items: center;
}

.pequod-hero-row-image .left {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.pequod-hero-row-image .title-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pequod-hero-row-image .title h2 {
    margin: 0px;
    font-size: var(--pequod-h2-font-size);
    line-height: var(--pequod-h2-line-height);
}

.pequod-hero-row-image .left .content p {
    font-size: 30px;
    line-height: 1.33em;
}

.pequod-hero-row-image .btn-star-rating {
    display: flex;
    gap: 37px;
    flex-direction: column;
    align-items: flex-start;
}

.pequod-hero-row-image .star-rating-outside {
    display: flex;
    gap: 16px;
}

.pequod-hero-row-image .star-rating-outside .star-rating i {
    color: var(--pequod-accent1);
}

.image-box {
    width: 416px;
    height: 720px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


@media (max-width: 1024px) {

    .pequod-hero-row-image .right {
        width: 100%;
    }

    .pequod-hero-row-image-inner {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .pequod-hero-row-image .image-box {
        width: 100%;
    }

}

@media (max-width: 767px) {
    .pequod-hero-row-image {
        /* padding-left: 20px;
        padding-right: 20px; */
    }

    .pequod-hero-row-image .title h2 {
        font-size: var(--pequod-h3-font-size);
        line-height: var(--pequod-h3-line-height);
    }

    .pequod-hero-row-image .left .content p {
        font-size: 20px;
        line-height: 24px;
    }

    .pequod-hero-row-image .left {
        gap: 2em;
    }

    .pequod-hero-row-image .star-rating-outside {
        gap: 5px;
        flex-direction: column;
    }

    .pequod-hero-row-image .image-box {
        height: 300px;
    }
}