.affiliates-section .copyright-disclaimer {
    border-top:none;
    padding-top:0;
}
.affiliates-section .copyright-disclaimer  .legal-nav{
margin-top:20px;
}
.affiliates-section  .l-main{
padding-top:0!important;
}
.affiliates-section .l-submain{
padding:0;
}
h1{
    font-size: 60px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom:10px;
}
h1 span{
    display: block;
}
.main_section .container > p{
    font-size:20px;
    line-height: 26px;
    max-width: 50%;

} 
.affiliates-section .compatible-devices{
    padding-top:50px;
    padding-bottom:80px;
}
.btn{
    background-color: #fff; 
    padding:15px 30px;
    color: #000;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    border-radius: 30px;
    transition: all linear .2s;
    display: inline-block;
    position: relative;
    text-transform: uppercase
}
.btn:hover,
.btn-red {
    background-color:#e4003a;
    color: #fff;
}
.btn-red:hover{
    background-color: #000;
    color: #fff;
}

.main_section{   
    background-color:#0f0601;   
    color:#fff;
}

.main_section > .container{
    padding-top: 8vw;
    background-image:url('../../img/landings/affiliates/affiliates.jpg');
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom:50px; 
}
.valor-device {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.valor-device>div {
   /* max-width: 350px;*/
    width: 33.33%;
    padding: 15px;
    text-align: center;
    box-sizing: border-box;
}
.valor-device>.valor p{
    font-size:17px;
    color:#fff;
    line-height:24px;
}
.valor-device>.valor h3{
    color:#dbc179;
    text-transform: uppercase;
    font-size:20px;
    line-height: 22px;
    margin-bottom:5px;
    font-weight: 700;
    margin-top:10px;
}
.network-section,
.programs-section{
    background: #fff;
    color:#222;
    padding-top:30px;
    padding-bottom: 80px;
}
.programs-section{
    background-color: #eee!important;
}
.network-section p{
    font-size:27px;
    text-align: center;
    margin-top:0px;
    line-height: 32px;
}
.network-section h2,
.programs-section h2{
    color:#222;
    font-size:36px;
    margin-top:30px;
    line-height: 42px;
    text-align: center;
    margin-bottom:20px;
    font-weight: 700;
}
.network-section .logos{
    display: flex;
    flex-wrap: wrap;
    margin:0 auto;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    padding:20px 0;
}
.network-section .logos img{
    margin:20px;
}

.virtualrealcash-section h2{
    font-size:36px;
    margin-top:30px;
    line-height: 42px;
    margin-bottom:10px;
    font-weight: 700;
}
.virtualrealcash-section p{
    font-size:27px;
    margin-top:0px;
    line-height: 32px;
    color:#fff;
}
.virtualrealcash-section{
    background: #03070e;
}
.virtualrealcash-section > .container{
    background-image:url('../../img/landings/affiliates/virtualrealcash-bg.jpg');
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    padding-top: 70px;
}
.network-section .btn,
.programs-section .btn,
.virtualrealcash-section .btn{
    margin-top: 0;
    padding: 15px 45px !important;
    font-size: 20px;
}
.virtualrealcash-section .btn:hover{
    background:#fff;
    color:#000;
}
.programs-section .programs{
    display: flex;
    margin:0 auto;
    justify-content: center;
    padding:20px 0;
}


.program{
    width: 33.33%;
    margin: 10px;
    padding:25px;
    text-align: center;
    justify-content: center;
    border-radius:20px;
    background:#dbc179;
    position:relative;
    overflow: hidden;
}

.program:after {
    content: '';
    top: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    animation: slide 5s infinite;
    /* 
    CSS Gradient - complete browser support from http://www.colorzilla.com/gradient-editor/ 
    */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* FF3.6+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
    /* IE6-9 */
}


@keyframes slide {

    0%,
    25% {
        transform: translateX(-200%);
    }

    75%,
    100% {
        transform: translateX(100%);
    }
}


.program h3{
    font-size:32px;
    color:#222;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    line-height: 36px;
    z-index: 3;
}
.program h3 span{
    display:block;
    font-size:27px;
    font-weight: 400;
}

.main_section ul{
    list-style: none;
    margin-left: 0;
    margin-bottom: 24px;
}
.main_section ul li{
    display: flex;
    font-family: 'Raleway',Arial,sans-serif;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    font-size: 18px;
}
.main_section ul li img{
    margin-right: 5px;
}
.header_module{
    text-transform: uppercase;
    display: inline-flex;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 600;
    justify-content: center;
    margin-bottom: 5px;
}
.header_module img{
    margin-right: 5px;
    margin-top: -1px;
}
/*.logo{
    margin-bottom: 50px;
}*/
.offers_container{
    margin-bottom: 30px;
}
.offers_container > a{
    color:#fff;
    text-decoration: underline;
    margin-top:15px;
    font-size:13px;
    display: inline-block;
}
.main_section .seals{
 margin-bottom: 20px;
}
.offers_div{
    display: flex;
    width: 60%;
    max-width: 550px;
}
.offers_div .offer{
    flex:1;
    position: relative;
    padding-bottom: 5px;
}
.offers_div .offer .btn{
   /* position: absolute;
    bottom: 0;*/
    margin-top: 0;
    padding: 15px 45px!important;
    font-size:20px;
}


/*RESPONSIVE*/

@media (max-width:1024px){
    .main_section > .container{
        width:100%;
        background-position: 450px bottom;
        padding-left:25px;
    }
    .main_section > .container h1{
        font-size:42px;
        line-height: 48px;
    }
    .main_section > .container p{
        font-size:18px;
        line-height: 22px;
    }
    .program h3{
        font-size:24px;
    }
    .program h3 span{
        font-size:20px;
    }
    .virtualrealcash-section h2{
        font-size:32px;
        margin-top:36px;
    }
    .virtualrealcash-section p{
        font-size:24px;
        line-height: 28px;
    }
}
@media (max-width:768px){
    .main_section > .container{
        width:100%;
        background-position: 300px bottom;
    }
}

@media (max-width:600px){
    .main_section{
        padding-top:3vw;
    }
    .main_section > .container{
        width:100%;
        background-position: 150px bottom;
        padding-left:25px;
    }
    .main_section > .container h1{
        font-size:32px;
        line-height: 36px;
    }
    .main_section > .container p{
        max-width:60%;
        font-size:15px;
        line-height: 17px;
    }
    .affiliates-section .compatible-devices {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .valor-device>div{
        padding:10px;
    }
    .valor-device>.valor img{
        width:75px;
    }
    .valor-device>.valor p {
        font-size: 13px;
        color: #fff;
        line-height: 16px;
    }
    .network-section, .programs-section{
        padding-bottom: 50px;
        padding-top:20px;
    }
    .network-section h2, .programs-section h2{
        font-size: 28px;
        margin-top: 20px;
        line-height: 32px;
    }
    .network-section p{
        font-size:17px;
        line-height: 22px;
    }
    .network-section .logos > img{
        width: 150px;
        margin:10px;
    }
    .programs-section .programs{
        flex-direction: column;
        padding: 0;
        margin-bottom:15px;
    }
    .program{
        width: 100%;
        margin:10px 0;
        padding:10px;
    }
    .program h3{
        font-size:24px;
    }
    .program h3 span{
        font-size:20px;
    }
    .program > div{
        margin-top:10px!important;
    }
    .virtualrealcash-section > .container{
        padding-top:40px;
        background-position: 150px bottom;
    }
    .virtualrealcash-section h2{
        font-size:32px;
        margin-top:36px;
    }
    .virtualrealcash-section p{
        font-size:24px;
        line-height: 28px;
    }
}
