/* main content*/
.service-section {
    padding: 0 100px 100px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    position: relative;
    transition: all 0.4s ease;
}
.service-section::before {
    content: "";
    position: absolute;
    background: var(--white);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;

}
/* video container */
.service-video-wrapper {
    border-radius: 8px 0 0 8px;
    height: 400px;
    overflow: hidden;
    transition: all 0.4s ease;
    video {
        border-radius: 8px 0 0 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* contacts container */
.service-contact {
    padding: 0 50px;
    background: var(--yellow1);
    color: var(--black1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;

    .h2 {
        padding-bottom: 16px;
    }
    .body2 {
        padding-bottom: 40px;
    }
    .contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .button3 {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
        width: fit-content;
        padding-bottom: 12px;
        transition: all 0.4s ease;
        border-bottom: 1px solid transparent;

        span {
            width: 20px;
            height: 20px;
        }
        svg {
            width: 20px;
            height: 20px;
        }
    }
    .button3:hover {
        border-color: var(--hoverYellow1);
    }
}
.service-contact::before {
    content: '';
    position: absolute;
    top: 0;
    /* left: -39%;  */
    right: 100%;
    width: 162px; 
    height: 100%;
    background: linear-gradient(270deg, #F9B307 0%, rgba(249, 179, 7, 0) 100%);
    z-index: -1; /* Make sure the blur is behind the content */
}
/* responsive */
@media (max-width: 1200px) {
    /* main content*/
    .service-section {
        padding: 0 50px 100px;
    }

}
@media (max-width: 767px) {
    /* main content */
    .service-section {
        padding: 0 20px 74px;
        grid-template-columns: 1fr;
    }
    /* video container */
    .service-video-wrapper {
        border-radius: 8px 8px 0 0;
        height: 300px;
        video {
            border-radius: 8px 8px 0 0;
        }
    }
    /* contacts container */
    .service-contact {   
        padding: 25px 16px;
        border-radius: 0 0 8px 8px;
        
        .h2 {
            padding-bottom: 12px;
        }
        .body2 {
            padding-bottom: 32px;
        }
        .contacts {
            gap: 24px;
        }
        .button3 {

            border-color: var(--hoverYellow1);
            span {
                width: 18px;
                height: 18px;
            }
            svg {
                width: 18px;
                height: 18px;
            }
        }
        /* .button3:hover {
            border-color: var(--black1);
        } */
    }
    .service-contact::before {
        display: none;
    }
}
@media (max-width:500px) {
    /* video container */
    .service-video-wrapper {
        height: 200px;
    }
}