.service_content_holder
{
    width: 100%;
    height: auto;

    /* background-color: rgb(28, 28, 28); */

    background: linear-gradient(90deg, rgb(27, 27, 27) 0%, rgb(20, 20, 20) 50%, rgb(27, 27, 27) 100%);

    position: relative;
    padding-bottom: 100px;
}


.intro_holder
{
    width: 100%;
    height: auto;
    padding: 60px 80px 40px 80px;
    box-sizing: border-box;
    background-color: rgb(47, 47, 47); 
    border-bottom: black 2px solid;  
}
.intro_holder_intro
{
    width: 100%;
    height: auto;
    padding: 20px;

    /* text-align: center; */
    border-bottom: solid rgb(133, 4, 4);
    box-sizing: border-box;
    

}
    .intro_holder_intro h1
    {
        color: rgb(218, 218, 218);
        font-weight: normal;
        margin: 0;
        padding-left: 10%;

        font-size: xx-large;

    }















/* Gallery Container Simple */
/* image size depends on the container or opposite  */
/* keep all images similar size */
.gc1_gallery_main_holder
{
    width: 100%;
    height: auto;
    padding: 100px 0px;

    background-color: transparent;
    position: relative;
}
    .gc1_gallery_top_content_container
    {
        width: 100%;
        height: auto;

        max-width: 1500px;
        overflow: hidden;

        margin: 0 auto;

        position: relative;

        display: flex;
        flex-wrap: nowrap;

    }
    .gc1_gallery_top_content_container img
    {
        width: 100%;
        height: auto;

        position: absolute;
    }
    .gc1_gallery_top_content_container .gc_placeholder
    {
        width: 100%;
        height: auto;
        visibility: hidden;
        position: relative;

        display: block;
    }




        .gc1_change_btn_container
        {
            width: 100%;
            height: 100%;


            position: absolute;
            top: 0;


            box-sizing: border-box;

            display: flex;
            align-items: center;
        }
        .gc1_change_btn_class_1
        {
            width: 50px;
            height: 50px;
            background-color: rgba(240, 248, 255, 0.5);
            transition: 0.5s;
            color: black;
    
            display: flex;
            align-items: center;
            justify-content: center;
    
            position: absolute;
            user-select: none;
            cursor: pointer;
        }
        .gc1_change_btn_class_1:hover
        {
            background-color: #fff;
            color: rgb(106, 106, 106);
        }
            .gc1_change_btn_class_1_left
            {
                border-radius: 5px 0 0 5px;
            }
            .gc1_change_btn_class_1_right
            {
                border-radius: 0px 5px 5px 0px;
                right: 0;
            }



.gc1_gallery_bottom_content_container
{
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
    padding: 40px ;

    box-sizing: border-box;
    
    gap: 10px;
}
    .gc1_gallery_bottom_content_container  .gc_pointer
    {
        width: 12px;
        height: 12px;

        background-color: rgb(255, 255, 255);

        border-radius: 100%;
        transition: 0.3s;
        cursor: pointer;
    }
    .gc1_gallery_bottom_content_container  .gc_pointer:hover,.gc1_gallery_bottom_content_container  .gc_pointer.pointer_active
    {
        background-color: grey;
    }






.active_slide
{
    transition: 0.2s ease-in-out;
}


.slide_exit_right
{
    transform: translateX(100%);
    opacity: 0;
}
.slide_enter_right
{
    transform: translateX(-100%);
    
}

.slide_exit_left
{
    transform: translateX(-100%);
    opacity: 0;
}

.slide_enter_left
{
    transform: translateX(100%);
}