.benefit-banner {
    margin: 80px 30px 0 30px;

    @media screen and (max-width:1366px) {
        margin: 80px 80px 0 80px;
    }

    @media screen and (max-width:1024px) {
        margin: 80px 45px 0 45px;
    }

    @media screen and (max-width:768px) {
        margin: 0;
    }

    .img {
        position: relative;
        height: 458px;
        width: 100%;

        @media screen and (max-width:768px) {
            height: 484px;
        }

        &:before {
            content: "";
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to top, #000 104%, rgba(0, 0, 0, 0) 70%);
            opacity: 0.6;
            border-radius: 16px;
            top: 0;
            position: absolute;

            @media screen and (max-width:768px) {
                border-radius: 0;
            }
        }

        img {
            width: 100%;
            height: 100%;
            border-radius: 16px;

            @media screen and (max-width:768px) {
                object-fit: cover;
                border-radius: 0;
            }
        }
    }

    .title {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 648px;
        height: 110px;
        margin: auto;
        padding: 0 12px;
        text-align: center;

        @media screen and (max-width:768px) {
            width: 100%;
            height: 96px;
        }

        h2 {
            font-size: 40px;
            font-weight: bold;
            font-size: $font-family-sora;
            margin-bottom: 16px;
            color: $color-text-white;

            @media screen and (max-width:768px) {
                font-size: 24px;
                margin-bottom: 10px;
            }
        }

        p {
            font-size: 18px;
            font-weight: 500;
            margin: 0;
            color: $color-text-white;

            @media screen and (max-width:768px) {
                font-size: 16px;
            }
        }
    }
}

.benefit-section {
    padding: 80px 0;

    @media screen and (max-width:768px) {
        padding: 56px 0 40px 0;
    }

    .img {
        height: 450px;

        img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        }
    }

    &.bg-lightBlue {
        background-color: #f5f8fa;
    }
}


.benefit-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;

    @media screen and (max-width:768px) {
        margin-bottom: 16px;
    }

    img {
        width: 56px;
        height: 56px;
    }

    h6 {
        margin-left: 8px;
        margin-bottom: 0;
        color: $color-dark;
        font-size: 16px;
        font-weight: 600;
        height: 38px;
        overflow: hidden;
        font-size: $font-family-sora;
    }
}



.benefit-title {
    h3 {
        color: $color-secondary;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 8px;
        font-family: $font-family-sora;

        @media screen and (max-width:768px) {
            font-size: 24px;
        }
    }

    p {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 40px;
        color: $color-dark;

        @media screen and (max-width:768px) {
            font-size: 16px;
        }
    }
}