*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}
.contenedor-ext{
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contenedor-interno{
    width: 75%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.img-dinamic{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
/* .img-band{
    transform: translate(30%, 0%);
    
} */
.case-home{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: auto;
  }
  
.btn-your-style{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
    padding: 10px 40px;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
    /* width: 400px;
    height: 15px; */
    margin: 1em 0em 7em 0em;
}
.span-your-style {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 1.2em;
}
.btn-your-style::after{
    content: "";
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: white;
}
.btn-your-style::before{
    content: "";
    z-index: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#FDDE5C), color-stop(#F8AB5E), color-stop(#F56A62), color-stop(#A176C8), color-stop(#759BEB), color-stop(#65BEB3), to(#70DB96));
    background: -webkit-linear-gradient(left, #FDDE5C 0%, #F8AB5E calc(100% / 6), #F56A62 calc(100% / 6 * 2), #A176C8 calc(100% / 6 * 3), #759BEB calc(100% / 6 * 4), #65BEB3 calc(100% / 6 * 5), #70DB96 100%);
    background: linear-gradient(to right, #FDDE5C 0%, #F8AB5E calc(100% / 6), #F56A62 calc(100% / 6 * 2), #A176C8 calc(100% / 6 * 3), #759BEB calc(100% / 6 * 4), #65BEB3 calc(100% / 6 * 5), #70DB96 100%);
}
.btn-your-style:hover::before{
    filter: blur(15px);
    cursor: pointer;
    transition: all .4s linear;
}
.btn-your-style:hover:after{
    filter: blur(3px);
    cursor: pointer;
    transition: all .4s linear;
}




@media only screen and (max-width: 1440px) {
    .case-home{
        width: 115px;
    }
}
@media only screen and (max-width: 1280px){
    .case-home {
        width: 102px;
    }
}
@media only screen and (max-width: 1024px){
    .case-home{
        width: 88px;
    }
}
@media only screen and (max-width: 768px){
    .case-home {
        width: 120px;
    }
    .btn-your-style{
        margin: 1em 0em 5em 0em;
    }
    .img-dinamic {
        width: 180%;
    }

}
@media only screen and (max-width: 414px){
    .img-dinamic {
        width: 247%;
        height: 163px;
    }
    .case-home {
        width: 88px;
    }

}
  
/* ====  Refine Search in Categories  ===== */
.refine-section{
    width: 100%;
    height: auto;
    padding: 4rem 0rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #f5f5f5;
    border-bottom: 5px solid #fff;
}
.h3-refine{
    text-transform: capitalize;
    margin-bottom: 20px;
}
.ul-refine {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 40px;
    margin: 5px;
}
.li-refine{
    margin: 7px;
}
.li-refine a{
  padding: 5px 20px;
  border: 1px solid #3c3c3c;
  border-radius: 3px;
  transition: all .4s linear;
}

.li-refine a:hover{
    background-color: #000;
    color: #fff;
}