/*
Donación Directa page
Images and tweaks for layout
 */
#DDA,#DD{
    border-bottom: 3px solid #606060;
    color: #443370;
}
.pb-5 {
    padding-bottom: 3rem;
}
.d-block {
    display: block;
}
.contrast-dark {
    background: #3F3F3F;
    color: #FFFFFF;
}
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
    .direct-donations .header-title {
        background: #333 url('../images/banner-voluntariado-prin-2-xlarge.png') center center no-repeat;
        background-size: 100%;
    }
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    .direct-donations .header-title {
        background: #333 url('../images/banner-voluntariado-prin-2-large.png') center center no-repeat;
        background-size: 100%;
    }
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .direct-donations .header-title {
        background: #333 url('../images/banner-voluntariado-prin-2-large.png') center center no-repeat;
        background-size: 100%;
    }
  }
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .direct-donations .header-title {
        background: #333 url('../images/banner-voluntariado-prin-2-medium.png') center center no-repeat;
        background-size: 100%;
    }  
  }
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
  .direct-donations .header-title {
        background: #333 url('../images/banner-voluntariado-prin-2-small.png') center center no-repeat;
        background-size: 100%;
    }
}
  
/* Smartphones (portrait) ----------- */
@media (min-width: 320px) and (max-width: 480px) {
    .direct-donations .header-title {
        background: #333 url('../images/banner-voluntariado-prin-2-small.png') center center no-repeat;
        background-size: 100%;
        padding-top: 0.2em;
    }
    .header-title h2{
        font-size:15px;
    }

    .header-title p{
        margin-bottom:10px;
    }
    h3.text-uppercase{
        font-size:16px;
        margin-bottom:0;
        margin-top:-18px;
    }
    a.bbl-projects  h4{
        margin-top:0;
        margin-bottom:0;
    }
}
.contrast-dark a {
    color: #FFFFFF;
    text-decoration: underline !important;
}
.highlight-purple {
    background: #4f3a89;
    color: #FFF;
    display: inline-block;
}
header.header-title {
    padding-top: 4em;
}
h2.highlight-purple {
    font-weight: normal !important;
}
.hero {
    padding: 10% 0 18% 0;
}
.hero strong {
    font-size: 2em;
    display: block;
}
.bbl-link {
    display: inline-block;
    width: 100%;
    color: #333;
    padding-top: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: transparent;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
}
.bbl-link.bbl-organisation {
    background-image: url('../images/direct-donations/organisation.jpg');
}
.bbl-link.bbl-projects {
    background-image: url('../images/direct-donations/projects.jpg');
}
.bbl-link.bbl-product {
    background-image: url('../images/direct-donations/product.jpg');
}
.bbl-link.bbl-store {
    background-image: url('../images/direct-donations/donations.jpg');
}
.bbl-link:hover {
    color: #6e006e;
}
.verticalLine {
    border-left: ridge;
    height: 15em;
}
.content-proyectos{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.box{
    width: 33.33333333%;
}
@media (min-width: 320px) and (max-width: 480px) {
    .content-proyectos{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .box{
        width:50%;
    }
 }