/***********************+ INDEX ***********************************/

.section-ini{
    position: relative;
    width: 100%;
    height: 750px;
    background-image: url("../imagenes/bg/ini_02.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    border-bottom: 8px solid #222;
}
.section-ini::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    background-color: rgba(0,0,0,.5);
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.8)),color-stop(60%,rgba(0,0,0,0)),to(rgba(0,0,0,.8)));
    background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
    background-image: -o-linear-gradient(bottom,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
    background-image: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%,rgba(0,0,0,.8) 100%);
}

.section-ini-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    z-index: 3;
}
.section-ini .section-ini-header .logo{
    max-width: 250px;
    width: 100%;
}

.section-ini-body{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;


}
.section-ini-body .inner{
    max-width: 60%;
}

.section-ini-body .inner h1{
    font-size: 64px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}
.section-ini-body .inner h5{
    font-size: 26px;
    font-weight: 400;
    color: var(--color-white);
}
.section-ini-body .inner p{
    font-size: 18px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 20px;
}


.section-canales{
    padding: 50px 0 70px;
    border-bottom: 8px solid #222;
}
.section-canales .box{
    background-color:#18181b;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-align: center;
    padding: 5px;
}
.section-canales .box:hover{
    background-color:#222;
}
.section-canales .box img{
    max-width: 140px;
    width: 100%;
}
.section-canales .box h5{
    font-size: 14px;
    font-weight: 700;
}

.section-formas-pago{
    padding: 50px 0 70px;
    border-bottom: 8px solid #222;
}
.section-formas-pago .payment{
    text-align: center;
}
.section-formas-pago .payment img{
    margin-bottom: 15px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius:10px ;
}
.section-formas-pago .payment h5{
    font-size: 30px;
    font-weight: 800;
    line-height: 45px;
    margin-bottom: 15px;
}
.section-formas-pago .payment p{
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 50px;
}

.section-preguntas{
    padding: 50px 0 70px;
    border-bottom: 8px solid #222;
}

.section-preguntas #accordionPreguntas{

}

.section-preguntas #accordionPreguntas .card{
    border: none;
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 8px;
}

.section-preguntas #accordionPreguntas .card .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: #303030;
    border-bottom: 1px solid #303030;
}

.section-preguntas #accordionPreguntas .card .card-header button{
    color: var(--color-white);
    font-size: 26px;
    font-weight: 300;
    padding: 4px;
}
.section-preguntas #accordionPreguntas .card .card-header button:hover{
    text-decoration: none;
}

.section-preguntas #accordionPreguntas .card .card-body{
    background-color: #303030;
    margin: 1px 0;
}

.section-preguntas #accordionPreguntas .card .card-body p{
    font-size: 20px;
    font-weight: 300;
}



@media (min-width: 1400px){

}


/* X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {


}

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {  }

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {  }

/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .section-ini-body .inner h1{
        font-size: 54px;
    }
}

@media (max-width: 575.98px) {
    .section-ini-body .inner h1{
        font-size: 44px;
    }
    .section-ini-body .inner h5{
        font-size: 20px;

    }
    .section-ini-body .inner p{
        font-size: 16px;

    }
}










