/*---------------------------*/
/*      content block 6      */
/*---------------------------*/
#projects-preview .single-col-block{
    align-items: center;
}
#projects-preview .single-col-block .row{
    display: flex;
    width: 100%;
}
/*---------------------------*/
/*  content block 6 top row  */
/*---------------------------*/
#projects-preview .single-col-block .row.top{
    justify-content: center;
        margin-bottom: 3rem;
}
#projects-preview .title-container{
    align-items: center;
    width: 75%;
    gap: 1.5rem;
    span{
        text-align: center;
    }
}
/*------------------------------*/
/*  content block 6 bottom row  */
/*------------------------------*/
#projects-preview .single-col-block .row.bottom{
    justify-content: center;
    width: 110%;
}
.projects-gallery-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    
}
.project-carousel-container{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.project-carousel-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;   
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, transparent 75%);
    z-index: 3;
    pointer-events: none;
}
.project-carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px; 
    height: 100%;
    background: linear-gradient(to left, #ffffff 0%, #ffffff 25%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}


/* --------- */
/*  MOBILE   */
/* --------- */
@media (max-width: 767px) and (orientation: portrait) {
    /*---------------------------*/
    /*  content block 6 top row  */
    /*---------------------------*/
    #projects-preview .single-col-block .row.top{
        margin-bottom: 2rem;
    }
    #projects-preview .title-container{
        width: 90%;
    }
    /*------------------------------*/
    /*  content block 6 bottom row  */
    /*------------------------------*/
    #projects-preview .single-col-block .row.bottom{
        width: 100%;
    }
    .project-carousel-container::before {
        display: none;
    }
    .project-carousel-container::after {
        display: none;
    }
}
@media (max-width: 767px) and (orientation: landscape)  {
    /*---------------------------*/
    /*  content block 6 top row  */
    /*---------------------------*/
    #projects-preview .single-col-block .row.top{
        margin-bottom: 2.5rem;
    }
    #projects-preview .title-container{
        width: 90%;
    }
    /*------------------------------*/
    /*  content block 6 bottom row  */
    /*------------------------------*/
    #projects-preview .single-col-block .row.bottom{
        width: 100%;
    }
    .project-carousel-container::before {
        display: none;
    }
    .project-carousel-container::after {
        display: none;
    }
}

/* ----------- */
/*   TABLETS   */
/* ----------- */
@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait)  {
}
@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape)  {
    /*---------------------------*/
    /*  content block 6 top row  */
    /*---------------------------*/
    #projects-preview .single-col-block .row.top{
        margin-bottom: 2.5rem;
    }
    #projects-preview .title-container{
        width: 90%;
    }
    /*------------------------------*/
    /*  content block 6 bottom row  */
    /*------------------------------*/
    #projects-preview .single-col-block .row.bottom{
        width: 100% !important;
    }
    .project-carousel-container::before {
        display: none;
    }
    .project-carousel-container::after {
        display: none;
    }
}
/* ------------------- */
/*  DESKTOP & LAPTOPS  */
/* ------------------- */
/* Small Desktops and Laptops */
@media (max-width: 1200px) and (hover: hover) and (pointer: fine) {
    
}
@media (min-width: 1201px) and (max-width: 1680px) and (hover: hover) and (pointer: fine)  {
}
