/*departamento css*/
/*banner-capa*/
#banner .box-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
}

#banner .box-center .blox {
    padding: 1rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, .7);
    margin-bottom: 1.7rem;
}

#banner .box-center .logo {
    width: 20rem;
}

#banner .leg {
    font-size: 2.5rem;
    color: var(--cz-10);
}

#banner .box-footer {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cz-10);
}

/*info-dep*/
#info-dep {
    background-color: var(--cz-10);
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

#info-dep .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}

#info-dep .bgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
}

#info-dep .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#info-dep .content > h1{
    font-size: 50pt;
}
#info-dep .content > .hr{
    --hr-color: #1F1F1F;
}

#info-dep .content section {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

#info-dep .content section .sec-1 {
    flex-shrink: .3;
    flex-basis: 30rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#info-dep .content section .sec-2 img {
    width: 30rem;
}

/* vitrine model */
.vit-model {
    background-color: #1F1F1F;
    color: #ededed;
    padding: 20px;
}

.vit-model>section.texts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
}

.vit-model>section.texts .icones {
    flex: 1 1 0;
}

.vit-model>section.texts .icones .logo {
    display: block;
    margin: 30px auto 50px auto;
    width: 450px;
    padding: 20px;
    background-color: #00000000;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.vit-model>section.texts .icones .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vit-model>section.texts .icones .icons>img {
    height: 100px;
    padding: 10px;
    background: none;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
}

.vit-model>section.texts .text {
    padding: 2.5rem;
    flex: 1 1 0;
}

.vit-model>section.texts .text h1 {
    font-family: kelson;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.vit-model>section.texts .text h2 {
    font-family: akrobat;
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: 1rem;
    font-weight: 300;
}

/*medias and screen*/
/**tv is all**/
/**desktop**/
@media only screen and (max-width: 1200px) {
    #info-dep .content section {
        align-self: flex-start;
        justify-content: flex-start;
    }
    .vit-model>section.texts .text{
        padding: 1rem;
    }
    .vit-model>section.texts{
        padding: 1.5rem;;
    }
}

/**laptop**/
@media only screen and (max-width: 1024px) {
    #info-dep .content section .sec-1 {
        flex-basis: 30rem;
    }
    .vit-model>section.texts .text{
        padding: .5rem;
    }
    .vit-model>section.texts{
        padding: 1rem;;
    }
    .vit-model>section.texts .icones .logo{
        width: 350px;
    }
}

/**tablet**/
@media only screen and (max-width: 768px) {
    #info-dep .content section {
        flex-direction: column;
    }

    #info-dep .content section>* {
        flex-basis: auto !important;
    }

    #info-dep .content section .sec-2 img {
        width: auto;
    }
    .vit-model>section.texts{
        flex-direction: column;
    }
    .vit-model>section.texts .icones{
        order: 1;
    }
    .vit-model>section.texts .text{
        order: 2;
    }
}

/**mobile**/
@media only screen and (max-width: 570px) {
    #banner .box-center .logo {
        width: 10rem;
    }

    #banner .leg {
        font-size: 1.5rem;
    }
    .vit-model>section.texts .icones .logo{
        width: 300px;
    }
}

/*micro-mobile*/
@media only screen and (max-width: 370px) {}