main {
    display: table;
    width: 100%;
}

#sectionLeft {
    padding-left: .5%;
    display: table-cell;
    width: 29%;
}

#sectionRight {
    padding-right: .5%;
    display: table-cell;
    width: 69%;
}

header > a {
    text-decoration: none;
}

header > a > h1 {
    background-color: #2663a4;
    color: #fff;
    margin: 0;
    padding: 0;
    font-style: italic;
    padding: 2rem 1rem;
}

.bg-blue {
    background-color: #2663A4;
}

.furaje-container {
    background-color: #fff;
}

header > a, header > a:hover {
    text-decoration: none;
}

nav.navbar .navbar-header > a.navbar-title {
    display: none;
}

header > a > h1 {
    background-size: auto 80px;
    background-clip: content-box;
}

@media only screen and (max-width : 767px) {
    #sectionLeft {
        display: block;
        width: 100%;
    }
    
    #sectionRight {
        display: block;
        width: 100%;
    }
    
    header > a > h1 {
        color: rgba(0,0,0,0);
    }
    
    nav.navbar .navbar-header > a.navbar-title {
        display: block;
    }
}