#view{
    margin-top: 140px;
    min-height: 45vh;
    padding: 1rem 3rem 3rem 3rem;
}
#view_footer{
    background-color: #363331;
    padding: 160px 120px;
    color: white;
}
@media (max-width: 992px) {
    #view{
        margin-top: 140px;
        min-height: 45vh;
        padding: 1rem;
    }
    #view_footer {
        padding: 80px 0;
    }
}

#view_footer #scroll_to_top{
    float: right;
    color: white;
    opacity: 0.5;
    cursor: pointer;
}
#view_footer #scroll_to_top:hover{
    opacity: 1;
    transition: 0.2s;
}

#home_bg_wrapper {
    margin-top: calc(-3rem - 140px);
    margin-left: -3rem;
    margin-right: -3rem;
}
@media (max-width: 992px) {
    #home_bg_wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}
#home_bg_image{
    height: 66vh;
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Portfolio */
.card-portfolio-subpagina{
    text-align: center;
    padding: 5rem;
    color: rgba(0,0,0,.55);
    cursor: pointer;
}
.card-portfolio-subpagina:hover{
    color: rgba(0,0,0);
    transition: all .5s;
}

/* Portfolio */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
}
.image-gallery .image {
    padding: 10px;
    width: 50%;
    height: fit-content;
}

/* Contact */
.label-form-contact{
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .188rem;
    line-height: 1.5;
    text-transform: uppercase;
}
.input-form-contact{
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.29;
    text-transform: none;
    color: #495057;
    box-shadow: none;
    outline: none;
    background-color: #fcfcfc;
    border: 1px solid #e9e9e9;
    border-radius: 0;
    padding: 20px;
    -webkit-appearance: none;
    -webkit-animation: autofill 1s both;
    animation: autofill 1s both;
}
.input-form-contact:focus{
    background-color: #fcfcfc;
    border: 1px solid #8d8d8d;
    box-shadow: none;
    outline: none;
}
input[type='text'].input-form-contact {
    height: 50px;
}
textarea.input-form-contact {
    height: 200px;
}

/* Admin */
.header-admin{
    /*
    position: fixed;
    display: block;
    width: calc(100% - 8rem);
    */
    padding: 1rem 1rem 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(108,117,125,0.4);
    border-radius: .25rem;
    border: 2px solid black;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.header-admin i{
    float: right;
    color: #6c757d!important;
}
.view-admin{
    margin-top: -3rem;
    /*
    padding-left: 1rem!important;
    padding-right: 1rem!important;
    */
}