/*--------------------------------------------------------------
# PROCESOS
--------------------------------------------------------------*/

body {background-color: #faf7f2}

#productos{
    font-family: 'Roboto Condensed', sans-serif;
}

#productos .vignette{
    background: url(../img/vignette.png);
    width: 100%;
    height: 15px;
    opacity: .7;
    margin-top: 5px;
    background-size: 34px;
    margin-bottom: 90px;
 }

#productos .wrapper h1{
	color: #393939;
	margin: 25px 0px 0px;
	line-height: 58px;
    font-size: 50px;
    font-family: 'Roboto Condensed', sans-serif;
}

#productos .wrapper .sub{
    color: #00869c;
    margin: 25px auto 58px;
    line-height: 28px;
    font-size: 22px;
    max-width: 80%;
    text-align: center;
}


#productos .wrapper.picture{
    position: relative;
    margin-bottom: 80px;
    height: 65vw;
    max-height: 730px;
}

#productos .wrapper.picture img{
    position: absolute;
    top: 0;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
}

#productos .wrapper.picture .text{
    color: white;
    z-index: 1;
    position: relative;
    width: 80%;
    height: 100%;
    display: flex;
    font-size: 34px;
    align-items: center;
    line-height: 79px;
    margin: 0 auto;
    text-align: center;
}

#productos .wrapper.main{
    display: flex;
    gap: 35px;
}

#productos .wrapper.main .picture{
    flex-shrink: 0;
    width: 48%;
}
#productos .wrapper.main .picture.mobile{
    display: none;
    width: 100%;
}

#productos .wrapper.main .picture.mobile img{
    width: 100%;
}

#productos .wrapper.main p{
    font-size: 16px;
    line-height: 30px;
}

#productos .wrapper.main p.intro{
    font-size: 18px;
}

#productos .wrapper.main p.higlight{
    font-size: 22px;
    font-weight: bold;
    color: #0093b0;
}

#productos .wrapper.botom_text{
    color: #393939;
    font-size: 22px;
}

@media only screen and (max-width: 980px) {
    #productos .wrapper.picture .text{
        font-size: 2.9vw;
        line-height: 7.7vw;
    }
}

@media only screen and (max-width: 767px) {
    #productos .wrapper.picture .text{
        font-size: 3.9vw;
        width: 100%;
    }
    #productos .wrapper.main .picture.desktop{
        display: none;
    }
    #productos .wrapper.main .picture.mobile{
        display: block;
    }
}