/* bg-header index */
.bg-header{
    background-image: url(../img/fondo/bg-h.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
/* header-text-button-wrapper index */         
.header-text-button-wrapper{
    display: grid;
    grid-template-rows: 1fr 0.5fr;
    align-items: center;
    justify-items: center;
    margin-top: 10%;
}
.header-text-button-wrapper > .header-text{
    width: 60%;
    text-align: center;
}
.header-text-button-wrapper > .header-text h1{
    color: white;
}
.header-text-button-wrapper > .header-button{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
/* text-content-wrapper index */
.text-content-wrapper{
    padding: 40px 30px 60px 30px;
    display: flex;
    justify-content: center;
}
.text-content-wrapper > .content{
    width: 70%;
}
.text-content-wrapper > .content > .content-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
    justify-content: center;
    padding: 40px 0;
}
.text-content-wrapper > .content .content-grid > .sub-header-text > .sub-header{
    border-bottom: 2px solid #04d9ff;
    padding-bottom: 10px;
}
.text-content-wrapper > .content > .content-grid > .sub-header-text > .icon img{
    width: 80px;
}
.text-content-wrapper > .content > .content-grid > .sub-header-text > .icon{
    text-align: center;
}
/* counter-wrapper */
.counter-wrapper{
    background-image: url(../img/cabeceras/contador.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 70px 20px;
}
.counter-wrapper > .container{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    justify-content: center;
}
.counter-wrapper > .container > .counter-item{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 20px;
    justify-content: center;
    align-items: start;
    align-content: start;
}
.counter-wrapper > .container > .counter-item > .number{
    text-align: right;
}
.counter-wrapper > .container > .counter-item > .number h1{
    font-size: 55px;
    margin: 0;
    color: #04d9ff;
}
.counter-wrapper > .container > .counter-item > .text-btn{
    text-align: left;
}
.counter-wrapper > .container > .counter-item > .text-btn > .txt h3{
    margin-top: 0;
    color: white;
}
.counter-wrapper > .container > .counter-item > .text-btn > .btn a{
    text-decoration: none;
    color: white;
    cursor: pointer;
    margin-right: 10px;
}
.counter-wrapper > .container > .counter-item > .text-btn > .btn i{
    font-size: 15px;
    cursor: pointer;
}
/* partners wrapper */
.partner-wrapper{
    background-color: black;
    padding: 30px 40px;
}
.partner-wrapper > .content-grid{
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-gap: 10px;
    justify-content: center;
}
.partner-wrapper > .content-grid > .header{
    text-align: right;
}
.partner-wrapper > .content-grid > .slider > .slide-track > .slide > .partner-icon{
    max-width: 100px;
}
/* text-content-wrapper-about index */
.text-content-wrapper-about{
    padding: 40px 30px 60px 30px;
    display: flex;
    justify-content: center;
}
.text-content-wrapper-about > .content{
    width: 70%;
}
/* text-content-wrapper-law index */
.text-content-wrapper-law{
    padding-top: 50px;
    padding-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: center;
}
.text-content-wrapper-law > .content{
    width: 70%;
}
.text-content-wrapper-law > .content > .img-text{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.text-content-wrapper-law > .content > .img-text > .img{
    width: 250px;
    text-align: center;
}
/* cookies index */
.cookie-disclaimer {
    background: #04d9ffa0;
    color: black;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99;
    position: fixed;
}
.cookie-disclaimer .container {
    text-align: center;
    padding: 20px;
}
.cookie-disclaimer .container a{
    color: black;
    cursor: pointer;
    font-weight: bolder;
}
.cookie-disclaimer > .container > .btn {
    padding: 10px;
    cursor: pointer;
    border: black;
    background-color: #04d9ff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.cookie-disclaimer > .container > .btn:hover, .btn:active {
    padding: 10px;
    cursor: pointer;
    border: black;
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.cookie-disclaimer .cookie-close{
    float: right;
    padding: 10px;
    cursor: pointer;
}
/* mediaquery index */
@media (max-width: 1090px){
    .text-content-wrapper-law > .content > .img-text{
        display: block;
    }
    .text-content-wrapper-law > .content > .img-text > .img{
        width: 250px;
        margin: auto;
    }
    .counter-wrapper > .container > .counter-item > .number h1{
        font-size: 50px;
    }
}
@media (min-width:916px) and (max-width:1600px){
    .counter-wrapper > .container > .counter-item{
        display: block;
    }
    .counter-wrapper > .container > .counter-item > .number{
        text-align: center;
    }
    .counter-wrapper > .container > .counter-item > .text-btn{
        text-align: center;
    }
}
@media (max-width:915px){
    .text-content-wrapper > .content > .content-grid{
        display: block;
    }
    .text-content-wrapper > .content > .content-grid > .sub-header-text{
        padding: 0 0 30px 0;
    }
    .text-content-wrapper > .content > .content-grid > .sub-header-text > .sub-header{
        text-align: center;
    }
    .counter-wrapper > .container{
        display: block;
        text-align: center;
    }
    .counter-wrapper > .container > .counter-item{
        padding-bottom: 30px;
    }
    .partner-wrapper > .content-grid{
        display: block;
    }
    .partner-wrapper > .content-grid > .header{
        text-align: center;
    }
}
@media (max-width:415px){
    .bg-header{
        background-image: url(../img/fondo/bg-v.jpg);
    }    
    .header-text-button-wrapper{
        grid-gap: 0px;
        margin-top: 8%;
    }
    .header-text-button-wrapper > .header-text{
        width: 80%;
    } 
    .text-content-wrapper-law{
        padding-left: 20px;
        padding-right: 20px;
    }
    .text-content-wrapper > .content{
        width: 100%;
    }
    .text-content-wrapper-law > .content{
        width: 100%;
    }
    .counter-wrapper > .container{
        width: 100%;
    }
    .counter-wrapper > .container > .counter-item > .number h1{
        font-size: 40px;
    }
}