/*!
Theme Name: renoporte
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: renoporte
*/

section.block-repeater-image{
    background-color: #f9f9f9;
    padding-top: clamp(10vh, 12vh, 15vh);
    padding-bottom: clamp(10vh, 12vh, 15vh);
    display: flex;
    flex-direction: column;
    gap: 40px;
}   

section.block-repeater-image .row-block-subtitle{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 60px;
}
section.block-repeater-image h2{
    color: var(--greenlight);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}
section.block-repeater-image h2 strong{
    font-size: 62px;
    font-style: normal;
    color: var(--greenduck);
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 0;
}
section.block-repeater-image p{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    max-width: 80%;
}
section.block-repeater-image ul.row-list-img{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
section.block-repeater-image ul.row-list-img li{
    width: calc(25% - 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    background-color: #F1F1F1;
}
section.block-repeater-image ul.row-list-img li a{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.block-repeater-image ul.row-list-img li a::after{
    content: url(../../../assets/img/svg/arrow_outward.svg);
    position: absolute;
    bottom: auto;
    top: 15px;
    right: 10px;
    left: auto;
    opacity: 0.2;
    transition: all 0.3s ease;
}

section.block-repeater-image ul.row-list-img li a:hover::after{
    bottom: auto;
    top: 18px;
    right: 18px;
    left: auto;
    opacity: 1;
}



/* RESPONSIVE */

@media only screen and (max-width: 1600px) {
   
}
@media only screen and (max-width: 1440px) {
   
}
@media only screen and (max-width: 1280px) {
    section.block-repeater-image h2 strong{
        font-size: 52px;
    }
}
@media only screen and (max-width: 992px) {
    section.block-repeater-image h2 strong{
        font-size: 44px;
    }
    section.block-repeater-image ul.row-list-img {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    section.block-repeater-image ul.row-list-img li {
        width: calc(33% - 8px);
    }
}
@media only screen and (max-width: 768px) {
    section.block-repeater-image .container-fluid-scrolled, section.block-repeater-image .container-fluid-scrolled .container-scrolled{
        max-width: 100%;
        width: 100%!important;
        padding: 0; 
        margin: 0;
    }
    section.block-repeater-image ul.row-list-img{
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-behavior: smooth;
        padding: 0 30px;
    }
    section.block-repeater-image ul.row-list-img li {
        min-width: 180px;
    }
}
@media only screen and (max-width: 575px) {
    section.block-repeater-image h2{
        margin: 0;
    }
    section.block-repeater-image h2 strong {
        font-size: 36px;
    }
    section.block-repeater-image .row-block-subtitle{
        flex-wrap: wrap;
        gap: 15px;
    }
    section.block-repeater-image ul.row-list-img{
        padding: 0 20px;
    }
    section.block-repeater-image .container{
        padding-left: 0;
        padding-right: 0;
    }
}
@media only screen and (max-width: 420px) {
    section.block-repeater-image h2 strong {
        font-size: 32px;
    }
    section.block-repeater-image ul.row-list-img li {
        min-width: 150px;
    }
}