.home_0{
    height: 6rem;
    width: 100%;
}

header{
    z-index: 1;
    position: fixed;
    width: 100%;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

header .redes_container {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 5rem;
    padding-left: 5rem;
}

header .redes_container img {
    background-color: white; 
}

header .redes_container div{
    background-color: white;
    widows: 250px;
}

header .redes_container .redes {
    background-color: white;
    color: black;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    width: 25rem;
    padding-right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

header .redes_container .redes a{
    background-color: white;
    text-decoration: none;
    color: black;
}

header .redes_container .redes a:hover{
    cursor: pointer;
}

header .redes_container .redes select{
    color: black;
    background-color: white;
    border: none;
    appearance: none;
    padding: 0 1em 0 0;
    outline: none;
}

header .redes_container .redes select::-ms-expand {
    display: none;
}

.main_container {
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 5rem;
    padding-left: 5rem;
}

.main_nav {
    width: 25rem;
    background-color: black;
    color: white;
    padding-bottom: 1rem;
    padding-top: 1rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.main_nav a{
    background-color: black;
    color: white;
    padding-bottom: 5px;
    border-bottom: black;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    text-decoration: none;
}

.main_nav a:hover{
    cursor: pointer;
    border-bottom: white;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.subtitle{
    background-color: black;
    color: white;
    text-align: left;
    font-weight: 300;
    font-size: 1.2rem;
}

.subtitle a{
    margin: 0;
    padding: 0;
    color: white;
    text-decoration: none;
}

.bold {
    background-color: black;
    font-weight: 500;
}

h6 {
    width: 250px;
    font-weight: 900;
}

@media screen and (max-width: 1150px) {
    header {
        display: none;
    }

    .home_0 {
        display: none;
    }
}