.half-video-half-text-icon {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #444444;
    position: relative;

    @media( min-width : 1200px ) {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    & .half-video__wrapper {
        position: relative;

        &::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: '';
            background: rgb(0 0 0 / 24%);
            z-index: 1;
            border-radius: 10px;
        }
    }

    & .video-bttn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all ease-in-out 0.3s;
        background: #fff;
        padding: 20px;
        width: 87px;
        height: 87px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;

        &::before {
            border-radius: 50%;
            background: rgb(255 255 255 / 45%);
            width: 105px;
            height: 105px;
            position: absolute;
            top: 52%;
            left: 50%;
            content: '';
            transform: translate(-50%, -50%);
            z-index: -1;
        }
        
        &:hover {
            border: none;
            transform: translate(-50%, -50%) scale(1.03);
        }
    }

    & .half-video__thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.half-video-half-text-icon__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.side-image__right {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    margin-top: -255px;

    & img {
        max-width: 100%;
        -webkit-transform: scale(-1, -1);
        -moz-transform: scale(-1, -1);
        -o-transform: scale(-1, -1);
        transform: scale(-1, -1);
    }
}

.google-review-image {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    max-width: 100%;

    @media( min-width : 768px ) {
        left: 0;
    }
}

.icon-list__wrapper {
    & ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    & li {
        display: flex;
        align-items: center;
        padding: 0;
        gap: 10px;

        &::before {
            display: none;
        }

        & span {
            background: #D1362A;
            background: linear-gradient(183deg, rgba(209, 54, 42, 1) 0%, rgba(151, 45, 36, 1) 100%);
            padding: 9px;
            border-radius: 50px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;

            & img {
                width: 100%;
                height: auto;
            }
        }
    }

    & .icon-item__title {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2em;
        font-family: 'Work Sans',sans-serif;
        color: #FFFFFF;
    }
}

.half-text__wrapper{
    & :is(h2, h3, h4, h5, h6) {
        color: #FFFFFF;
    }

    & p {
        color: #FFFFFF;
    }

    @media( max-width : 768px ) {
        margin-top: 100px;
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
}