/***********************/
/***** BREVEMENTE ******/
/***********************/

body {
    position: fixed;
    width: 100%;
    height: 100%;
}
.brevemente {
    height:100%;
    width: 100%;
    overflow: hidden;
    background-color: black;
}
.img-section .img::before {
    content: "";
    top: 0;
    background-color: #707070;
    display: block;
    position: absolute;
    transition: var(--transition);
    pointer-events: none;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
}


.img-section {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.img-section .img{
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.img-section .img img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 570px;
    transition: var(--transition);
}

.desc .logo {
    max-width: 279px;
    max-height: 57px;
    display: block;
    margin: auto;
    position: relative;
}

.desc .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.desc .title {
    font-size: 38px;
    font-family: var(--font-family);
    font-weight: bold;
    line-height: 1.26;
    letter-spacing: normal;
    text-align: center;
    color: white;
    margin: 55px 0 15px;
}
.desc .subtitle {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    text-align: center;
    color: white;
    max-width: 430px;
    margin: auto;
}


.info {
    position: absolute;
    bottom: 0;
    color: white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 39px;
    transition: var(--transition);
    font-family: var(--font-family);
    font-weight: 500;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.13;
    letter-spacing: normal;
    text-align: left;
}

.info a:hover {
    opacity: 0.6;
}


.img-section.onFullscreen .info {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}


.social-box {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.social-box a i {
    font-size: 18px;
    height: 19px;
}





@media (max-width: 992px) {

    .info {
        padding: 30px 39px;
        text-align: center;
        line-height: 1.6;
        font-size: 14px;
    }

    
}



@media (max-width: 768px) {
    
    .desc{
        width: 100%;
        padding-inline: 30px;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -20%);
    }
    .desc .title {
        font-size: 26px;
        margin-top: 30px;
    }

    .desc .logo {
        max-width: 160px;
    }
    
}


@media (max-width: 460px) {
    
    .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
 
}
