
/*-------------SLIDER PRINCIPAL--------------*/

@keyframes fadeIn1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn2 {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn3 {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn4 {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeIn1, .fadeIn2, .fadeIn3, .fadeIn4 {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
}

.fadeIn1 {
  animation-name: fadeIn1;
}

.fadeIn2 {
  animation-name: fadeIn2;
}

.fadeIn3 {
  animation-name: fadeIn3;
}

.fadeIn4 {
  animation-name: fadeIn4;
}


.slide-web {
  padding: 7% 0 0 50px;
  background-color: #eeeef4;
}

.slide-web h1 {
  font-size: 48px;
  letter-spacing: 0;
}

.slide-tailw-title-1 {
  font-family: "Bebas Neue";
  font-size: 42px;
}

.h1.slide-tailw-title {
  font-family: sans-serif;
}

.slide-tailw-title-2 {
  width: 500px;
  font-size: 1.7em;
  top: 50%;
}

.slide-web .span-slide-web-2 {
  font-size: 1rem;
  color: #636363;
}

.slide-web-text {
  display: grid;
  width: 30%;
  height: 60%;
  margin-right: 5%;
}

.slide-web-text .buttons-slide-web {
  margin-top: 20px;
  height: 100px;
  justify-content: left;
}

.buttons-slide-web::after {
  content: "";
  inset: 0;
  background-color: #636363;
  width: 100%;
  height: 1px;
}

.btn-slide-web {
  height: 35px;
  width: 50%;
  justify-content: left;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: quick;
  padding: 0 0 0 15px;
}

.btn-slide-web-1 {
  background-color: #222;
}

.btn-slide-web-2 {
  border: 1px solid #333;
  color: #333;
  margin-left: 20px;
}

.arrow-slide-web {
  width: 20px;
  height: 20px;
  right: 20px;
}

.btn-slide-web:hover .arrow-slide-web {
  transform: translateX(5px);
} 


.hover-underline-animation {
  justify-content: space-between;
}

.hover-underline-animation:hover {
  font-weight: bolder;
  border-color: #333;
}

.hover-underline-animation:hover #arrow-horizontal {
  transform: translateX(2px);
}

#arrow-horizontal {
  width: 20px;
  height: 20px;
  margin: 0 3px 4px 10px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 380px) {

  .span-slide-web-2 {
    display: none;
  }
  .img-web-slide {
    margin-top: 50px;
  }

}

.slide-marcas-content{
    margin-top: 65px;
}
.slide-marcas-content ul li img{
    object-fit: fill;
}

/* ---------- Tabla Marcas --------- */

.wap2 {
  margin: 85px 65px 0 65px;
}

.intro-marcas {
        display: grid;
        text-align: center;
        place-items: center;
    }

.h5.pedido {
        color: #06548c;
        font-family: quick;
        font-size: 24px;
        font-weight: bold;
    }

.intro-marcas p {
        margin-bottom: 20px;
    }

.boton-cotizar {
        padding: 1em 3em;
        border-radius: 5px;
        color: #fff;
        z-index: 1;
        background: #34495E;
        position: relative;
        font-weight: 600;
        font-size: 17px;
        -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
        box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
        transition: all 250ms;
        overflow: hidden;
        cursor: pointer;
    }

.boton-cotizar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: #278CD9;
        z-index: -1;
        -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
        box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
        transition: all 250ms;
    }

.boton-cotizar:hover {
        color: #fff;
    }

.boton-cotizar:hover::before {
        width: 100%;
    }

.acordeon__item {
        position: relative;
        font-family: quick;
    }

.acordeon input {
        display: none;
    }

.acordeon i {
        position: absolute;
        transform: translate(-6px, 0);
        margin-top: 22px;
        right: 50px;
    }

.acordeon i:before,
.acordeon i:after {
        content: "";
        position: absolute;
        background: #fff;
        width: 3px;
        height: 9px;
    }

.acordeon i:before {
        transform: translate(-2px, 0) rotate(45deg);
    }

.acordeon i:after {
        transform: translate(2px, 0) rotate(-45deg);
    }

.acordeon__contenido i:before,i:after {
    transition: all 0.25s ease-in-out;
}

.acordeon input[type="checkbox"] {
        position: absolute;
        cursor: pointer;
        width: 100%;
        z-index: 1;
        opacity: 0;
    }

.acordeon input[type="checkbox"]:checked ~ i:before {
        transform: translate(2px, 0) rotate(45deg);
    }

.acordeon input[type="checkbox"]:checked ~ i:after {
        transform: translate(-2px, 0) rotate(-45deg);
    }

.acordeon__titulo {
        display: block;
        padding: 15px;
        background: #34495E;
        color: #fff;
        font-size: 1.1em;
        cursor: pointer;
        text-align: left;
        border-bottom: 1px solid #fff;
        border-radius: 5px;
    }

.acordeon__titulo:hover {
    background: rgb(54, 65, 66, 0.8);
}

.acordeon__contenido {
        height: 0;
        overflow: hidden;
        margin: 0;
        transition: all 0.5s;
    }

.acordeon input:checked ~ .acordeon__contenido {
        height: auto;
        margin: 15px 0;
}

.info-tabla {
    width: 96%;
    height: 0px;
}

.acordeon__contenido td img {
        max-width: 11rem;
        min-width: 7rem;
        height: auto;
        padding: none;
}

.acordeon__contenido td ul li {
        margin-right: 20px;
        margin-left: 30px;
        margin-top: 2px;
        text-align: left;
        font-family: quick;
        list-style: disc;
    }

/* ---------- Meses sin intereses --------- */

.meses-sin-intereses {
  margin: 2.5rem 2rem;
}

.content-meses-sin-intereses {
    display: flex;
}

.content-meses-sin-intereses .img-intereses {
    width: 50%;
    padding: 3.5rem;
}

.info-meses-sin-intereses {
    width: 50%;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
    }

.info-meses-sin-intereses h6 {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    font-weight: bold;
    font-size: 20px;
    color: #222;
    }

.info-meses-sin-intereses .ic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8EDA70;
    display: grid;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    }

.info-meses-sin-intereses .fa-credit-card {
    color: #fff;
    font-size: 28px;
}

.info-meses-sin-intereses h5 span.intereses-1 {
    font-weight: bold;
    font-size: 3rem;
    color: #06548c;
}

.info-meses-sin-intereses p{
    font-size: 1.8rem;
    color: #000;
}

.info-meses-sin-intereses div{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    line-height: 0;
}

.info-meses-sin-intereses figure{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: #F2F3F9;
    box-shadow: rgb(17 17 26 / 15%) 0px 5px 20px;
    margin-right: 20px;
    padding: 0.5rem;
    cursor: pointer;
}

.info-meses-sin-intereses figure:last-child{
    margin-right: 0;
}

.info-meses-sin-intereses figure .img.img1{
    width: 100%;
    height: 35%;
}

.info-meses-sin-intereses figure .img.img2{
    width: 100%;
    height: 60%;
}

.info-meses-sin-intereses figure .img.img3{
    width: 85%;
    height: 75%;
}

.info-meses-sin-intereses figure .img.img4{
    width: 90%;
    height: 75%;
}

@media only screen and (min-width: 901px) and (max-width: 1150px) {
/* ---------- Tabla de Marcas --------- */

.acordeon {
  width: 100%;
}

.acordeon i {
    position: absolute;
    margin-top: 22px;
    }

.boton-cotizar {
    padding: 20px 50px;
    }

.acordeon__contenido .info-tabla {
    display: block;
    flex-direction: column;
    overflow-x: scroll;
    height: auto;
    }


/* ---------- Meses Sin Intereses --------- */

.meses-sin-intereses {
  margin: 2.5rem 0;
}

.content-meses-sin-intereses {
    display: flex;
    }

.content-meses-sin-intereses .img-intereses {
    width: 50%;
    padding: 2.5rem;
}

.info-meses-sin-intereses {
    width: 50%;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}

.info-meses-sin-intereses .ic {
    width: 40px;
    height: 40px;
    }

.info-meses-sin-intereses h6 {
    margin-bottom: 50px;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    }

.info-meses-sin-intereses .fa-credit-card {
    font-size: 22px;
    }

.info-meses-sin-intereses h5 span.intereses-1 {
    font-size: 3rem;
    }

.info-meses-sin-intereses p {
    font-size: 1.5rem;
    }

.info-meses-sin-intereses figure {
    width: 4rem;
    height: 4rem;
    }

}

@media only screen and (min-width: 601px) and (max-width: 900px) {
/* ---------- Tabla Marcas --------- */
    .wap2{
        margin: 0 35px 0 35px;
    }

    .boton-cotizar {
        padding:  10px 30px;
        font-size: 1em;
    }

    .acordeon__titulo {
        padding: 8px;
        font-size: 15px;
    }

    .info-tabla {
        width: 100%;
    }

    .acordeon__contenido td ul li {
        margin-right: auto;
        margin-left: 10px;
        margin-top: 1px;
        text-align: left;
        font-size: 11px;
    }

    .acordeon i {
        margin-top: 15px;
        right: 40px;
    }
/* ---------- Meses Sin Intereses ------------ */

.meses-sin-intereses {
  margin: 2.5rem 0;
}

    .content-meses-sin-intereses {
    display: flex;
    }

    .content-meses-sin-intereses .img-intereses {
    width: 50%;
    padding: 1rem;
    }

    .info-meses-sin-intereses {
    width: 50%;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    }

    .info-meses-sin-intereses .ic {
    width: 30px;
    height: 30px;
    }

    .info-meses-sin-intereses h6 {
    margin-bottom: 50px;
    text-align: center;
    justify-content: center;
    font-size: 16px;
    }

    .info-meses-sin-intereses .fa-credit-card {
    font-size: 18px;
    }

    .info-meses-sin-intereses h5 span.intereses-1 {
    font-size: 2.7rem;
    }

    .info-meses-sin-intereses p {
    font-size: 1.2rem;
    }

    .info-meses-sin-intereses figure {
    width: 3.2rem;
    height: 3.2rem;
    }

    .slide-marcas-content{
        margin-top: 0px;
    }
}

@media only screen and (max-width: 600px) {
    /* ---------- Tabla Marcas --------- */
.wap2 {
  margin: 0px 35px 0 35px;
}

    .boton-cotizar {
    padding: 10px 20px;
    font-size: 1em;
    }

    .acordeon__titulo {
    padding: 8px;
    font-size: 18px;
    }

    .acordeon i {
    margin-top: 14px;
    right: 40px;
    }

    .acordeon__contenido td ul li {
    margin-right: auto;
    margin-left: 20px;
    margin-top: 5px;
    text-align: left;
    font-size: 12px;
    }

    .acordeon__contenido .info-tabla {
    display: block;
    flex-direction: column;
    overflow-x: scroll;
    height: auto;
    }

/*----------------- Meses Sin Intereses---------------------*/

.meses-sin-intereses {
  margin: 0 0 4rem 0;
}

.content-meses-sin-intereses {
    display: flex;
    flex-direction: column;
}

.content-meses-sin-intereses .img-intereses {
    width: 100%;
    padding: 1.5rem;
}

.info-meses-sin-intereses {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}

.info-meses-sin-intereses .ic {
    width: 30px;
    height: 30px;
}

.info-meses-sin-intereses h6 {
    margin-bottom: 50px;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
}

.info-meses-sin-intereses .fa-credit-card {
    font-size: 18px;
}

.info-meses-sin-intereses h5 span.intereses-1 {
    font-size: 2.8rem;
}

.info-meses-sin-intereses p {
    font-size: 1.2rem;
}

.info-meses-sin-intereses figure {
    width: 3.5rem;
    height: 3.5rem;
}
  .slide-marcas-content{
        margin-top: 0px;
    }

}

