/*--------------------------------------------------------------
# PRODUCTOS
--------------------------------------------------------------*/

#productos{
	background-color: #f9f5e7;
	padding: 10px 0px;
    padding-bottom: 110px;
    margin-bottom: 0px;
    color: #393939;
    font-family: 'Roboto Condensed', sans-serif;
}

#productos .vignette{
	background: url(../img/vignette.png);
	width: 100%;
    height: 15px;
    background-size: 32px;
 }

 #productos h1 {
    margin: 76px 0px 0px;
    color: #393939;
    font-family: 'Roboto Condensed', sans-serif;
}

#productos .sub {
    text-align: center;
    font-size: 22px;
    padding: 0px 120px;
    line-height: 30px;
    margin-bottom: 60px;
}

#productos .products{
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}

#productos .product{
    background-color: #fff;
    padding: 20px 40px;
    max-width: 45%;
    margin-bottom: 3%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 100ms ease-in;
}
#productos .product:hover {
    box-shadow: 0 7px 14px rgb(213 202 162);
}

#productos .product h3{
    margin: 0px;
    text-align: left;
    color: #00a0ba;
    font-size: 30px;
    margin-bottom: 20px;
}

#productos .product .content{
    display: flex;
    margin-bottom: 20px;
}

#productos .product .thumb{
    min-width: 35%;
    margin-right: 15px;
}

#productos .product .desc{
    font-size: 18px;
}

#productos .product .seeMore{
    color: #00a0ba;
    text-decoration: underline;
    font-size: 20px;
    margin: auto 0px 15px auto;
    cursor: pointer;
}

@media only screen and (max-width: 800px) {
    #productos .sub { font-size: 20px; padding: 0px 95px; }
	#productos .product{ min-width: 100%; }
}

/* popup */

.noScroll{
    overflow: hidden;
}

#productos .popup .header{
    background: url(../img/bg_modal.jpg);
    position: relative;
}

#productos .modalOverlay{
    position: fixed;
    background-color: #000000ab;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 99;
}

#productos .popSlide{
    height: 104vh;
    overflow: scroll;
    position: fixed;
    top: 0;
    width: 80vw;
    z-index: 100;
    padding: 120px 0px;
}

#productos .popSlide::-webkit-scrollbar {
    display: none;
}

#productos .popup{
    background-color: #fff;
    position: relative;
    width: 100%;
    left: 0;
}

#productos .popup .header .poptitle {
    color: #21a7bf;
    font-size: 31px;
    padding: 47px 50px 0px;
    font-weight: bold;
}

#productos .popup .header span {
    position: absolute;
    right: 15px;
    top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
}

#productos .popup .header span:hover {
    text-decoration: underline;
}

#productos .popup .popThumb {
    float: right;
    padding-left: 20px;
}

#productos .popup .popContent {
    padding: 20px 50px 30px;
    font-size: 18px;
    width: 100%;
    position: relative;
}

.popContent h3 {
    margin: 0px;
    text-align: left;
    display: inline-block;
    font-size: 25px;
}

#productos .popup .collabs {
    color: #21a7bf;
    font-size: 26px;
    font-weight: bold;
    text-decoration: underline;
    transition: all 100ms ease-out;
    margin: 30px auto;
    display: block;
    width: 220px;
}

#productos .popup .collabs:hover {
    color: #00778b;
}