/*----------------------------------*/
/*			Font - Face				*/
/*----------------------------------*/

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot');
    src: url('../fonts/fontawesome-webfont.eot') format('embedded-opentype'),
        url('../fonts/fontawesome-webfont.woff') format('woff'),
        url('../fonts/fontawesome-webfont.ttf') format('truetype'),
        url('../fonts/fontawesome-webfont.svg#NeoSansLight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'code';
    src: url('../fonts/CODELight.eot');
    src: url('../fonts/CODELight.eot') format('embedded-opentype'),
        url('../fonts/CODELight.woff2') format('woff2'),
        url('../fonts/CODELight.woff') format('woff'),
        url('../fonts/CODELight.ttf') format('truetype'),
        url('../fonts/CODELight.svg#CODELight') format('svg');
    font-weight: normal;
}

@font-face {
    font-family: 'code';
    src: url('../fonts/CODEBold.eot');
    src: url('../fonts/CODEBold.eot') format('embedded-opentype'),
        url('../fonts/CODEBold.woff2') format('woff2'),
        url('../fonts/CODEBold.woff') format('woff'),
        url('../fonts/CODEBold.ttf') format('truetype'),
        url('../fonts/CODEBold.svg#CODEBold') format('svg');
    font-weight: bold;
}


/*----------------------------------*/
/*			CSS GERAL				*/
/*----------------------------------*/

* {
    margin: 0;
}

html {
    position: relative;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* Margin bottom by footer height */
    margin-bottom: 288px;
}

input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}

.e3s_logo {
    width: 100%;
    max-width: 155px;
    display: block;
}

.navbar .btn_login {
    float: right;
    background-color: #2099aa;
    color: #ffffff;
    padding: 5px 40px;
}

.navbar .btn_login:hover {
    text-decoration: none;
}

.navbar {
    border: none;
    margin-top: 30px;
}

.navbar-nav {
    float: right;
    margin: 0;
}

.navbar-collapse {
    margin-top: 85px;
    padding: 0px;
}

.navbar-nav > li {
    float: none;
    display: inline-block;
    vertical-align: bottom;
}

.navbar-nav > li > a {
    font-size: 12px;
    padding: 0px 5px;
    color: #999999;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-nav > li > a:hover, .navbar-nav > li > a.active {
    color: #2099aa;
    background: none;
}

.navbar-nav li:first-of-type {

}

.navbar-nav li:first-of-type:after {

}

/* Responsive menu button */

* {
    margin: 0;
    padding: 0; 
}

/* Responsive icon */

#btn_nav_responsive {
    width: 50px;
    height: 30px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#btn_nav_responsive span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #2099aa;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#btn_nav_responsive span:nth-child(1) {
    top: 0px;
}

#btn_nav_responsive span:nth-child(2), #btn_nav_responsive span:nth-child(3) {
    top: 13px;
}

#btn_nav_responsive span:nth-child(4) {
    top: 26px;
}

#btn_nav_responsive.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#btn_nav_responsive.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#btn_nav_responsive.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#btn_nav_responsive.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navbar-toggle {
    position: relative;
    float: none;
    padding: 0px;
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 0px;
    background: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
    width: 100%;
}

/* Login panel */

#login_panel {
    background-color: #2099aa;
    padding: 10px;
    margin-top: -70px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: none;
}

#login_panel.slide_in {
    margin-top: 0px;
}

#login_panel input[type="text"], #login_panel input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

#login_panel input[type="submit"] {
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 100%;
    background: none;
    height: 40px;
}

#login_panel input[type="submit"]:hover {
    color: #2099aa;
    border: 1px solid #ffffff;
    background: #ffffff;
}

#login_panel ::-webkit-input-placeholder { color: #ffffff; }
#login_panel ::-moz-placeholder {color: #ffffff; }
#login_panel :-ms-input-placeholder { color: #ffffff; } 
#login_panel :-o-input-placeholder { color: #ffffff; }

/* Swiper CSS */

.swiper-container {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    background-image: url('../images/banner_02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    font-size: 18px;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 30%;
}

.swiper-pagination-bullet {
    background: #a2947f;
}

.swiper-pagination-bullet-active {
    background: #e4e0dc;
}

.swiper-slide h3 {
    font-family: 'code';
    font-weight: bold;
    font-size: 30px;
    color: #edd221;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10%;
}

.swiper-slide a {
    display: inline-block;
    font-size: 14px;
    color: #edd221;
    border: 1px solid #edd221;
    margin-top: 10px;
    padding: 10px 40px;
    text-decoration: none;
}

.swiper-slide a:hover {
    color: #ffffff;
    background-color: #edd221;
    border: 1px solid #edd221;
}

.banner_highlight {
    background-color: #2099aa;
    color: #ffffff;
    position: relative;
    padding: 0px;
    z-index: 1;
    margin-top: -100px;
    margin-bottom: 50px;
}

.banner_highlight:before {
    position: absolute;
    background-color: #2099aa;
    top: -60px;
    left: 0px;
    width: 100%;
    height: 65px;
    display: block;
    transform: skewY(-1.5deg);
    transform-origin: right top 0px;
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    z-index: -1;
}

.banner_highlight:after {
    position: absolute;
    background-color: #2099aa;
    bottom: -10px;
    left: 0px;
    width: 100%;
    height: 65px;
    display: block;
    transform: skewY(-1.5deg);
    transform-origin: right top 0px;
    text-align: center;
    font-size: 20px;
    z-index: -1;
}

.banner_highlight h2 {
    position: relative;
    font-family: 'code';
    font-weight: bold;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 20px;
}

.banner_highlight h2:before {
    content: "";
    background-image: url('../images/bullet_titulos.png');
    background-size: 11px 22px;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    left: 0px;
    top: 2px;
    width: 11px;
    height: 22px;
}

.banner_highlight h2 span {
    font-weight: normal;
}

.banner_highlight p {
    font-family: "open sans";
    font-size: 14px;
    color: #ffffff;
    padding-left: 20px;
}

/*News Highlights*/

.news_highlitghs h2 {
    font-family: 'code';
    font-weight: bold;
    color: #edd221;
    margin-top: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news_highlitghs p {
    color: #6b6c6e;
    text-decoration: none;
}

.news_highlitghs p span {
    display: block;
    font-weight: 700;
    color: #2099aa;
    font-size: 12px;
}

.news_highlitghs a, .news_highlitghs a:hover {
    text-decoration: none;
}

.news_highlitghs img {
    width: 100%;
    max-width: 139px;
    display: block;
    margin-bottom: 10px;
}

.news_detail h1 {
    font-size: 25px;
}

.news_detail h1 span {
    display: block;
    font-weight: 700;
    color: #2099aa;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.news_detail a img {
    width: 100%;
    max-width: 960px;
    margin-bottom: 15px;
}

.bt_verTodas {
    position: relative;
    float: right;
    color: #d7c53a !important;
    padding-top: 10px;
    margin-right: 25px;
    margin-top: 25px;
}

.bt_verTodas:after {
    position: absolute;
    content: "";
    background: url('../images/icon_arrow_01.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 17px;
    height: 35px;
    top: 3px;
    right:-25px;
}

.bt_verTodas:hover {
    text-decoration: underline;
}

/*=== Main Content ===*/

.main_content h1 {
    font-family: 'code';
    font-weight: bold;
    color: #edd221;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main_content h2 {
    font-family: 'code';
    font-weight: bold;
    color: #2099aa;
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 21px;
}

.main_content a.btn_voltar {
    display: inline-block;
    text-transform: uppercase;
    font-size: 11px;
    margin-top: -15px;
    margin-bottom: 20px;
    color: #2099aa;
}

.main_content a.btn_voltar {
    color: #2099aa;
}

.main_content p.tit_center {
    color: #2099aa;
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
}

.main_content p {
    color: #6b6c6e;
}

.main_content .tit_green { 
    font-weight: 700;
    color: #2099aa;
    margin-top: 20px;
}

.main_content .txt_caps {
    text-transform: uppercase;
}

.main_content .txt_bold {
    font-weight: 700;
}

.main_content .txt_green {
    color: #2099aa;
}

.main_content ul li {
    list-style-type: none;
    position: relative;
    color: #6b6c6e;
    margin-bottom: 5px;
}

.main_content ul {
    margin-bottom: 30px;
    margin-left: 30px;
}

.main_content ul li:before {
    content: ">";
    font-weight: 700;
    position: absolute;
    left: -15px;
    color: #edd221;
}

ul.valores {
    padding: 0px;
    margin: 0px;
    text-align: center;
}

ul.valores li {
    display: inline-block;
    max-width: 300px;
    vertical-align: top;
    margin: 0px 5px 40px 5px;
    font-size: 13px;
}

ul.valores li:before {
    content: none;
}

ul.valores li img {
    width: 100%;
    max-width: 180px;
}

ul.valores li h2 {
    color: #2099aa;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

/*
h3 {
font-family: 'code';
font-weight: 700;
margin-top: 10px;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}
*/

.saber_mais {
    margin-top: 80px;
}

.saber_mais h3 {
    position: relative;
    font-family: 'code';
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 30px;
    color: #edd221;
    font-size: 30px;
}

.saber_mais h3:before {
    content: "";
    background-image: url('../images/bullet_titulos_02.png');
    background-size: 18px 36px;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    left: 0px;
    top: -4px;
    width: 18px;
    height: 36px;
}

.saber_mais p {
    margin-left: 30px;
}

.saber_mais .bt_verTodas {
    margin-top: -10px;
}

.procuramos {
    margin-top: 80px;
}

.procuramos h3 {
    position: relative;
    font-family: 'code';
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 30px;
    color: #2099aa;
    font-size: 30px;
}

.procuramos h3:before {
    content: "";
    background-image: url('../images/bullet_titulos_03.png');
    background-size: 18px 36px;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    left: 0px;
    top: -4px;
    width: 18px;
    height: 36px;
}

.procuramos p {
    margin-left: 30px;
}

/* News */

.news_filter input[type="text"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #edd221;
    font-style: italic;
    font-size: 16px;
    font-weight: normal;
    margin-top: 16px;
}

.news_filter input[type="submit"] {
    color: #2099aa;
    border: 1px solid #2099aa;
    width: 100%;
    background: none;
    padding: 10px;
}

.news_filter input[type="submit"]:hover {
    color: #ffffff;
    border: 1px solid #2099aa;
    background: #2099aa;
}

.news_pool ul.news_list {
    padding: 0px;
    margin: 60px 0px 0px 0px;
    display: block;
}

.news_pool ul.news_list {
    padding: 0px;
    margin: 60px 0px 0px 0px;
    display: block;
}

.news_pool ul.news_list li {
    display: inline-block;
    list-style-type: none;
    margin: 15px 0px;
    width: 49.5%;
    vertical-align: top;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.news_pool ul.news_list li a {
    color: #6b6c6e;
    text-decoration: none;
}

.news_pool a span {
    display: block;
    font-weight: 700;
    color: #2099aa;
    font-size: 12px;
}

.news_pool img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.news_pool_img {
    background-size:cover;
    background-position:center center;
    background-repeat: no-repeat;
    width:100%;
    height:145px;
    display: block;
    margin-bottom: 10px;
}

.news_pool .btn_verMais {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 200px;
    text-align: center;
    border: 1px solid #2099aa;
    color: #2099aa;
    padding: 10px;
    margin-top: 25px;
}

.news_pool .btn_verMais:hover {
    background-color: #2099aa;
    border: 1px solid #2099aa;
    color: #ffffff;
}

/* Projectos */

.img_projectos {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 230px;
    margin-top: 35px;
}

.yellow_line {
    border: none;
    height: 1px;
    background-color: #edd221;
}

/* Divulgação de Conhecimentos */

.divulgacao_highlight {
    background-color: #dfc622;
    color: #ffffff;
    position: relative;
    padding: 10px 0px 20px 0px;
    z-index: 1;
    margin-top: 25px;
    margin-bottom: 0px;
    min-height: 70px;
}

.divulgacao_highlight:before {
    position: absolute;
    background-color: #dfc622;
    top: -40px;
    left: 0px;
    width: 100%;
    height: 65px;
    display: block;
    transform: skewY(-1.5deg);
    transform-origin: right top 0px;
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    z-index: -1;
}

.divulgacao_highlight h2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.divulgacao_highlight span {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
}

.divulgacao_searchBar {
    background: #2099aa;
    color: #fff;
    margin-bottom: 50px;
}

.divulgacao_searchBar .select2-container {
    width: 100% !important;
    margin: 10px 0px;
}

.divulgacao_searchBar .select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0px;
    background: none;
    padding-left: 20px;
    font-weight: normal;
    outline: none;
}

.divulgacao_searchBar .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
}

.divulgacao_searchBar .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    background-image: url('../images/dropdown_bullet.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 12px;
    height: 7px;
}

.divulgacao_searchBar .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 1px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2099aa;
    color: white;
}

.select2-dropdown {
    border: 1px solid #2099aa;
}

.divulgacao_pool {

}

.divulgacao_article {
    margin-bottom: 30px;
}

.divulgacao_article ul {
    margin: 0px;
    padding: 0px;
}

.divulgacao_article li {
    display: inline-block;
    list-style-type: none;
    margin: 15px 0px;
    width: 49.5%;
    vertical-align: top;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.divulgacao_pool h3 {
    color: #6b6c6e;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
}

.divulgacao_pool p.data {
    display: block;
    font-weight: 700;
    color: #2099aa;
    font-size: 12px;
    text-transform: uppercase;
}

.divulgacao_pool p {
    color: #6b6c6e;
}

.divulgacao_pool a {
    color: #2099aa;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 700;
    display: block;
}

.divulgacao_pool img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.divulgacao_pool_img {
    background-size:cover;
    background-position:center center;
    background-repeat: no-repeat;
    width:100%;
    height:195px;
    display: block;
    margin-bottom: 10px;
}

.material_pool h2 {
    color: #2099aa;
    font-size: 36px;
    text-transform: uppercase;
    margin: 0px;
}

.material_pool h2 span {
    display: block;
    font-size: 18px;
}

.material_list {
    padding: 0px;
    margin: 20px 0px 0px 0px;
}

.material_list li {
    list-style-type: none;
    margin: 10px 0px;
    border-bottom: 1px solid #6b6c6e;
    padding-bottom: 10px;
}

.material_list li a {
    color: #6b6c6e;
    font-weight: 700;
}

.material_list li a:hover {
    text-decoration: none;
}

.material_list li a span.file {
    font-weight: normal;
    text-transform: uppercase;
}

.material_list li a span.data {
    display: block;
    color: #dfc622;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

.participar_highlight {
    background-color: #dfc622;
    color: #ffffff;
    position: relative;
    padding: 10px 0px 20px 0px;
    z-index: 1;
    margin-top: 75px;
    margin-bottom: 0px;
}

.participar_highlight:before {
    position: absolute;
    background-color: #dfc622;
    top: -60px;
    left: 0px;
    width: 100%;
    height: 65px;
    display: block;
    transform: skewY(-1.5deg);
    transform-origin: right top 0px;
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    z-index: -1;
}

.participar_highlight h2 {
    font-size: 18px;
    font-weight: 700;
}

.participar_highlight span {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
}

.participar_highlight a {
    background: none;
    border: 1px solid #ffffff;
    width: 100%;
    height: 90px;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.participar_highlight a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #dfc622;
    text-decoration: none;
}

/* Organizações */

.img_organizacoes {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 230px;
    margin-top: 0px;
}

.organizacoes_info02 {
    margin-top: 50px;
}

.organizacoes_highlight {
    background-color: #dfc622;
    color: #ffffff;
    position: relative;
    padding: 10px 0px 20px 0px;
    z-index: 1;
    margin-top: 75px;
    margin-bottom: 0px;
}

.organizacoes_highlight:before {
    position: absolute;
    background-color: #dfc622;
    top: -30px;
    left: 0px;
    width: 100%;
    height: 65px;
    display: block;
    transform: skewY(-1.5deg);
    transform-origin: right top 0px;
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    z-index: -1;
}

.organizacoes_highlight p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.organizacoes_highlight a {
    background: none;
    border: 1px solid #ffffff;
    width: 100%;
    height: 90px;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.organizacoes_highlight a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #dfc622;
    text-decoration: none;
}

/* Corpos Sociais */
.relatorio_txt a {
    color: #2099aa;
    border: 1px solid #2099aa;
    width: 100%;
    background: none;
    padding: 10px;
    display: block;
    margin-top: 30px;
    text-align: center;
}

.relatorio_txt a:hover {
    color: #ffffff;
    border: 1px solid #2099aa;
    background: #2099aa;
    text-decoration: none;
}


/*=== Ficha de Inscrição ===*/

#form_inscricao h2 {
    margin-top: 40px;
}

#form_inscricao h2.first {
    margin-top: 0px;
}

#form_inscricao input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background: rgba(231,231,231,0.5);
    color: #6b6c6e;
}

#form_inscricao textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background: rgba(231,231,231,0.5);
    color: #ffffff;
    height: 120px;
    resize: none;
    color: #6b6c6e;
}

#form_inscricao input[type="submit"] {
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 100%;
    background: none;
    height: 90px;
}

#form_inscricao input[type="submit"]:hover {
    color: #2099aa;
    border: 1px solid #ffffff;
    background: #ffffff;
}

#form_inscricao ::-webkit-input-placeholder { color: #c3c3c3; }
#form_inscricao ::-moz-placeholder {color: #c3c3c3; }
#form_inscricao :-ms-input-placeholder { color: #c3c3c3; } 
#form_inscricao :-o-input-placeholder { color: #c3c3c3; }

#form_inscricao label {
    color: #6b6c6e;
    font-weight: normal;
    margin:10px 5px 20px 0px;
}

#form_inscricao input[type="radio"] {
    margin-left: 10px;
}

#form_inscricao .select2-container {
    width: 100% !important;
    margin: 0px;
}

#form_inscricao .select2-container--default .select2-selection--single {
    background: rgba(231,231,231,0.5);
    border: none;
    border-radius: 0px;
    padding: 5px;
    font-weight: normal;
    outline: none;
    color: #6b6c6e;
    height: 40px;
    margin-bottom: 10px;
}

#form_inscricao .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6b6c6e;
}

#form_inscricao .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    width: 40px;
}

#form_inscricao .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 8px 6px 0 6px;
}

#form_inscricao .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
}

#form_inscricao .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2099aa;
    color: white;
}

#form_inscricao .select2-dropdown {
    border: 1px solid #6b6c6e;
}

#form_inscricao .select2-container--default .select2-results__option[aria-selected=true] {
    background: rgba(231,231,231,0.5);
}

#form_inscricao input[type="submit"] {
    background: none;
    color: #2099aa;
    border: 1px solid #2099aa;
    width: 100%;
    max-width: 180px;
    height: 50px;
    margin-top: 20px;
}

#form_inscricao input[type="submit"]:hover {
    color: #ffffff;
    border: 1px solid #2099aa;
    background: #2099aa;
}


/*=== Footer ===*/

.footer_spacer {
    height: 50px;
    width: 100%;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: auto;
    background-color: #2099aa;
    color: #ffffff;
}

#footer p {
    text-align: right;
}

#footer p.e3s {
    position: relative;
    font-family: 'code';
    font-weight: normal;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 15px;
    text-align: left;
}

#footer p.e3s:before {
    content: "";
    background-image: url('../images/bullet_titulos.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    left: 0px;
    top: 1px;
    width: 7px;
    height: 15px;
}

#footer p.e3s span {
    font-weight: 700;
}

#contactos_footer {
    margin-top: 10px;
    margin-bottom: 60px;
    float: left;
    width: 100%;
}

.contact_form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.contact_form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    height: 90px;
    resize: none;
    color: #ffffff;
}

.contact_form input[type="submit"] {
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 100%;
    background: none;
    height: 90px;
}

.contact_form input[type="submit"]:hover {
    color: #2099aa;
    border: 1px solid #ffffff;
    background: #ffffff;
}

.contact_form ::-webkit-input-placeholder { color: #ffffff; }
.contact_form ::-moz-placeholder {color: #ffffff; }
.contact_form :-ms-input-placeholder { color: #ffffff; } 
.contact_form :-o-input-placeholder { color: #ffffff; }

.social_links {
    display: table;
    margin: 0px;
    padding: 0px;
    float: right;
    border-spacing: 10px;
    border-collapse: separate;
}

.social_links li {
    position: relative;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.social_links li.facebook {
    width: 35px;
    height:35px;
    border-radius: 50%;
    background: #ffffff;
    color: #2099aa;
    font-size: 18px;
}

.social_links li.facebook a {
    color: #2099aa;
    text-decoration: none;
    cursor: pointer;
}

.social_links li.facebook a:hover {
    color: #2099aa;
    text-decoration: none;
}


/* Pagination */

.alert-danger {
    color: #2099aa;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 2px;
}

.alert>p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
}

.alert>ul {
    margin-bottom: 0;
    margin-left: 30px;
}


/*----------------------------------*/
/*		LAYOUT BREAKPOINTS			*/
/*----------------------------------*/

@media screen and (max-width:1200px) {
    .news_pool_img {
        height:120px;
    }

    .divulgacao_pool_img {
        height:160px;
    }

    .navbar-collapse {
        margin-top: 70px;
        padding: 0px;
    }

}

@media screen and (max-width:991px) {
    .news_pool_img {
        height:190px;
    }

    .divulgacao_pool_img {
        height:120px;
    }

    .e3s_logo {
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (max-width:767px) {

    body {
        margin-bottom: 483px;
    }

    .navbar .btn_login {
        float: none;
        padding: 5px 0px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100px;
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }

    .navbar-collapse {
        margin-top: 0px;
    }

    .navbar-nav {
        float: right;
        margin: 0;
        width: 100%;
        margin-top: 15px;
    }

    .navbar-nav > li {
        display: block;
        margin: 2px 0px;
    }

    .navbar-nav > li:first-of-type {
        margin-top: 0px;
    }

    .navbar-nav > li:last-of-type {
        margin-bottom: 0px;
    }

    .navbar-nav > li > a {
        text-align: center;
        padding: 5px;
    }

    .navbar-nav > li > a:hover, .navbar-nav > li > a.active {
        background: #2099aa;
        color: #ffffff;
    }

    #login_panel {
        margin-top: -160px;
        display: none;
    }

    .banner_highlight:before {
        top: -40px;
    }

    .news_filter input[type="submit"] {
        margin-top: 20px;
    }

    .news_pool ul.news_list {
        margin: 10px 0px 0px 0px;
    }

    .news_detail a:nth-child(n+2) img {
        display: none;
    }

    .news_pool_img {
        height:170px;
    }

    .divulgacao_article li {
        width: 100%;
    }

    .divulgacao_pool_img {
        height:240px;
    }

}

@media screen and (max-width:480px) {
    .swiper-slide h3 {
        font-size: 24px;
        margin-top: 100px;
    }

    .news_pool_img {
        height:120px;
    }

    .divulgacao_pool_img {
        height:180px;
    }
}

@media (max-width:991px) and (min-width:767px) {

    .navbar-collapse {
        margin-top: 46px;
    }

    .navbar-nav > li {
        display: inline-block;
    }

    .navbar-nav > li > a {
        font-size: 11px;
        padding: 0px 1px;
    }

    .navbar-collapse {
        margin-top: 25px;
        text-align: center;
    }

    .navbar-nav {
        float: none;
        margin: auto;
    }

    .navbar-nav > li {
        display: inline-block;
        margin-left: 14px;
    }

    .navbar-nav > li:first-of-type {
        margin-left: 0px;
    }

}


@media screen and (min-width:992px){
    .news_pool ul.news_list li {
        width: 24.7%;
    }

}
