body {
    background-color: #212338;
}

#root {
    margin: 0px auto 50px auto;
    background-color: #fff;
}

#menu {
    display: flex;
    flex-direction: column;
    background-color: #003866;
}

@media (min-width: 770px) {
    #menu {
        padding: 20px;
    }
}

@media (min-width: 1200px) {
    #menu {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

#menu img {
    height: 66px;
}

#menu #menu-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#menu .nav-tabs {
    border: 0px;
}

@media (min-width: 770px) {
    #menu #menu-links {
        flex-wrap: nowrap;
        justify-content: center;
    }
}

#menu #menu-links button {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    margin-left: 10px;
}

@media (min-width: 1200px) {
    #menu #menu-links li button {
        font-size: 16px;
    }
}

#menu #menu-links .active {
    border: 0px;
    background-color: #003866;
    font-weight: bold;
}

#menu li:hover,
#menu button:hover {
    text-decoration: underline;
    border: 0px;
}

#header {
    padding: 0px;
    position: relative;
}

#header #header-logo img {
    width: 100%;
}

#header #header-text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#header #header-text img {
    width: 70%;
    margin-top: 5%;
}

@media (min-width: 500px) {
    #header #header-text img {
        width: 60%;
        margin-top: 7%;
    }
}

@media (min-width: 1200px) {
    #header #header-text img {
        width: 45%;
    }
}

@media (min-width: 1500px) {
    #header #header-text img {
        width: 40%;
    }
}

@media (min-width: 1800px) {
    #header #header-text img {
        width: 35%;
    }
}

#header-seal {
    display: flex;
    justify-content: center;
    background-color: #1e2134;
    height: 100px;
    position: relative;
}

#header-seal img {
    height: 80px;
    position: absolute;
    bottom: 20px;
}

@media (min-width: 800px) {
    #header-seal img {
        height: 100px;
        top: -25px;
    }
}

@media (min-width: 1200px) {
    #header-seal {
        height: 100px;
    }
    #header-seal img {
        height: 150px;
        top: -95px;
    }
}

@media (min-width: 1500px) {
    #header-seal {
        height: 100px;
    }
    #header-seal img {
        height: 150px;
        top: -105px;
    }
}

@media (min-width: 1800px) {
    #header-seal {
        height: 100px;
    }
    #header-seal img {
        height: 210px;
        top: -150px;
    }
}

#container-nav-tabs {
    background-color: #003866;
    padding-top: 20px;
}
#container-nav-tabs * {
    background-color: #003866;
    color: #fff;
}

div.tab-content {
    height: 100vh;
}

div.tab-pane {
    height: 100vh;
}

iframe {
    min-height: 700px;
}

@media (max-width: 600px) {
    iframe {
        min-height: 400px;
    }
}

.container-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-logos img {
    height: 80px;
    margin: 20px;
}

.logo-caption {
    text-align: center;
}