#imatge_portada, #imatge_portada_2 {
    height: 470px !important;
    margin: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 2800px;
    margin: 0 auto;
}

#imatge_portada>div{ 
    margin-right: 0px;
}

#imatge_portada>.min-area img {
    width: 62%;
}


.slide-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    
    text-align: left;
    
    max-width: 1620px; /*1400 + (110*2) */
    padding-left: 110px;
    padding-right: 110px;
    box-sizing: border-box;
     
}

.slide-title {
    font-size: var(--cml-h1-size);
    font-weight: 600;
    color: var(--cml-body-color);
    max-width: 600px;
    line-height: var(--cml-h1-size);
    
    max-width: 600px;
}



.slide-text {
    font-size: var(--cml-subtitle-size);
    font-weight: 300;
    color: var(--cml-body-color);
    max-width: 600px;
    margin-bottom: 4px;
    
    max-width: 600px;
}


#imatge_portada>.slide{
    position: absolute; 
    top: 0; 
    left: 0; 
    display: none;
}

#imatge_portada>.slide:first-child, #imatge_portada>.slide.active {
    display: block;
}

a.link_portada{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.banner_img_centered {
    display: flex;
    justify-content: center;
    width: 100%;
}

#imatge_portada .slide img, #imatge_portada .slide source {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

#imatge_portada .dots {
    position: absolute;
    bottom: 20px;
    text-align:center;
    width: 100%;
    display: none;
}

#imatge_portada .dots li {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 4px;
    background-color: #666;
    text-indent: -999em;
    border: 2px solid #666;
    border-radius: 6px;
    cursor: pointer;
}

#imatge_portada .dots li.active {
    background: #fff;
    border: 2px solid #fff;
    opacity: 1;
}

.dots .dot {
    background: #fff none repeat scroll 0 0 !important;
    border: 2px solid #a7a7a7;
    height: 11px;
    width: 11px;
    position: relative;
    top: 2px;
    border-radius: 40px;
}

.dots .dot.active, .dots .dot:hover {
    background: #a7a7a7 none repeat scroll 0 0 !important;
    border: 2px solid #a7a7a7;
}

.dots .dot {
  border: 1px solid #666; background-color: #666;
  width: 10px; height: 10px;
  display: inline-block;
  margin-left: 10px;
  -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
}  
.dots .dot.active {
  border: 1px solid white; background-color: white
}
.dots .dot:hover {
  border: 1px solid white; background-color: white
}


@media (max-width: 600px) {
    
    #flprev_slide, #flnext_slide {
        display: none !important;
    }
    
    a.link_portada {
        flex-direction: column;
        text-decoration: none;
    }
    
    .slide-content {
        text-align: center;
        align-items: center;
        justify-content: flex-start;
        
        position: static;
        transform: translateX(0%);
        box-sizing: border-box;
        
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .slide-title {
        margin-top: 1em;
    }
    
    .slide-text {
        font-size: var(--cml-title-size);
    }
    
    #imatge_portada .slide img, #imatge_portada .slide source {
        height: auto !important;
    }
}