.flex-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.flex-content-item video{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.list-unstyled{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
    .list-unstyled-item{
        position: relative;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        &::after{
            content: '';
            position: absolute;
            top: 100%;
            right: 50%;
            transform: translateX(-50%);
            display: block;
            width: 1px;
            height: 25px;
            background-color: var(--color-white);
        }
        &:last-child::after{
            display: none;
        }
        img{
            height: 50px;
        }
        span{
            font-weight: 700;
        }
    }
}
.section-portal .btn{
    width: 100%;
}
.flex-content-2{
    .flex-content-2-item-img{
        display: block;
        width: 100%;
        height: 300px;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    .list-docs-proveedores{
        margin: 20px 0;
    }
}
.list-docs-proveedores{
    display: flex;
    flex-direction: column;
    gap: 10px;
    .list-docs-proveedores-item{
        border-radius: 10px;
        transition: all 0.3s ease;
        &:hover{
            box-shadow: 0 0 5px 0 #000000ab;
            transform: translateY(-5px);
        }
    }
    .list-docs-proveedores-item a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 20px;
    }
}
.flex-box-solid{
    .flex-box-solid-item{
        position: relative;
        padding: 30px 0;
        &::after{
            content: '';
            position: absolute;
            top: 0;
            width: 200%;
            height: 100%;
            z-index: -2;
            right: 50%;
            transform: translateX(50%);
        }
        &:first-child::after{
            background-color: var(--color-blue);
        }
        &:last-child::after{
            background-color: var(--color-red);
        }
        img{
            position: absolute;
            right: -20px;
            bottom: 10px;
            z-index: -1;
            height: 60px;
        }
    }
}
.testimonials-container{
    position: relative;
    .swiper{
        overflow: hidden;
    }
    .swiper-button-next,
    .swiper-button-prev{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: var(--color-blue);
    }
    .swiper-button-prev{
        left: -20px;
    }
    .swiper-button-next{
        right: -20px;
    }
}
.swiper-testimonials{
    margin-top: 40px;
    padding-bottom: 30px;
}
.swiper-testimonials .swiper-pagination .swiper-pagination-bullet-active{
    background: var(--color-blue);
}
.testimonial-item{
    .testimonial-item-head{
        display: flex;
        align-items: start;
        gap: 10px;
        margin-bottom: 20px;
        .testimonial-img{
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
        }
        .testimonial-info{
            .testimonial-nombre{
                margin: 0 0 5px;
                font-size: 18px;
                font-weight: 600;
            }
            .testimonial-logo{
                height: 30px;
            }
        }
    }
    .testimonial-item-content{
        > div{
            margin: 20px 0 10px;
        }
    }
}
@media (min-width: 576px) {
    .flex-content-2{
        .flex-content-2-item-img{
            height: 400px;
        }
    }
}
@media (min-width: 768px) {
    .flex-content{
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    .flex-content-item {
        width: 50%;
    }
    .flex-content-item:first-child {
        padding-right: 20px;
    }
    .flex-content-item video{
        height: 250px;
    }
    .list-unstyled{
        flex-direction: row;
        .list-unstyled-item{
            flex: 1;
            &::after{
                top: 40px;
                right: auto;
                left: 72%;
                transform: none;
                width: 70%;
                height: 1px;
            }
        }
    }
    .section-portal .btn{
        width: auto;
        min-width: 200px;
    }
    .flex-content-2{
        display: flex;
        .flex-content-2-item{
            display: flex;
            flex-direction: column;
            width: 50%;
            &:first-child{
                padding-right: 20px;
            }
        }
        .list-docs-proveedores{
            margin: 0;
            flex-grow: 1;
            justify-content: space-evenly;
        }
    }
    .list-docs-proveedores{
        gap: 20px;
    }
    .flex-box-solid-container{
        position: relative;
    }
    .flex-box-solid{
        display: flex;
        .flex-box-solid-item{
            position: initial;
            width: 50%;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            .btn{
                width: fit-content;
            }
            &::after{
                transform: none;
                width: 50%;
            }
            &:first-child{
                padding-right: 20px;
                img{
                    right: 50%;
                }
            }
            &:first-child::after{
                right: 0;
            }
            &:last-child{
                padding-left: 20px;
                img{
                    right: 0;
                }
            }
            &:last-child::after{
                right: auto;
                left: 0;
            }
            img{
                height: 80px;
            }
        }
    }
    .testimonials-container{
        .swiper-button-next,
        .swiper-button-prev{
            width: 30px;
            height: 30px;
        }
        .swiper-button-prev{
            left: -50px;
        }
        .swiper-button-next{
            right: -50px;
        }
    }
    .testimonial-item{
        .testimonial-item-head{
            .testimonial-img{
                width: 100px;
                height: 100px;
            }
            .testimonial-info{
                .testimonial-nombre{
                    font-size: 22px;
                }
            }
        }
    }
}
@media (min-width: 1200px) {
    .flex-content-item:first-child {
        padding-right: 40px;
    }
    .flex-content-item video{
        height: 285px;
    }
    .list-unstyled{
        .list-unstyled-item{
            padding: 20px 50px;
            img{
                height: 70px;
            }
        }
    }
    .flex-content-2{
        .flex-content-2-item{
            .flex-content-2-item-img{
                height: 500px;
            }
            &:first-child{
                padding-right: 100px;
            }
        }
        .list-docs-proveedores{
            margin: 0;
            flex-grow: 1;
            justify-content: space-evenly;
        }
    }
    .list-docs-proveedores{
        .list-docs-proveedores-item{
            a{
                height: 98px;
                padding: 10px 20px 10px 40px;
            }
        }
    }
    .testimonial-item{
        .testimonial-item-head{
            margin-bottom: 40px;
            .testimonial-img{
                width: 140px;
                height: 140px;
            }
            .testimonial-info{
                .testimonial-nombre{
                    font-size: 25px;
                }
            }
        }
    }
}
@media (min-width: 1400px) {
    .flex-content-item:first-child {
        padding-right: 50px;
    }
    .list-unstyled{
        .list-unstyled-item{
            &::after{
                left: 70%;
            }
        }
    }
    .flex-content-2{
        .flex-content-2-item{
            &:first-child{
                padding-right: 170px;
            }
        }
    }
    .flex-box-solid{
        display: flex;
        .flex-box-solid-item{
            &:first-child{
                padding-right: 40px;
            }
            &:last-child{
                padding-left: 40px;
            }
            img{
                height: 140px;
            }
        }
    }
}