/** -----------------------------------------------------------------------
*
*   font-family: 'Open Sans', sans-serif;
*
*   -----------------------------------------------------------------------
*
*   .verde-claro {
*       color: #27D170;
*   }
*
*   .verde-escuro {
*       color: #21BF64;
*   }
*
*
*
*   @media(max-width:767px) { }
*
*   @media(min-width:768px) { }
*
*   @media (min-width:768px) and (max-width:991px) { }
*
*   @media(min-width:992px) { }
*
*   @media (min-width:992px) and (max-width:1199px) { }
*
*   @media(min-width:1200px) { }
*
*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4D4D4D;
    background-color: #F2F2F2;
}

h2 {
    margin-top: 20px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    color: #21BF64;
}

h3 {
    margin-top: 20px;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}

h4 {
    margin-top: 20px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

p,
ul,
li {
    margin: 10px 0;
}

ul,
ol,
li {
    padding-left: 0;
    padding-right: 0;
}

nav ul {
    margin: 0 0 0 4px;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 0 0 -4px;
}

nav a {
    outline: none;
}

a,
a:hover,
a:focus {
    color: #333;
    text-decoration: none;
}

.container {
    width: 886px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
  .container {
  }
}

@media (min-width: 992px) {
  .container {
  }
}

@media (min-width: 1200px) {
  .container {
  }
}


/** -----------------------------------------------------------------------
 *  HEADER
 *  -----------------------------------------------------------------------
 */

.header {
    position: relative;
    width: 100%;
    height: 230px;
    padding-top: 80px;
    background-color: #27D170;
/**    
	background-color: #366C5F;
 */
 background-color: #008a84;
    z-index: 100;
}

.header-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #21BF64;
    border-bottom: 1px solid #2DB359;
    z-index: 999;
}

.header-bar .container {
    width: 1024px;
    padding-left: 16px;
    padding-right: 16px;
}

.logo {
    float: left;
    width: 224px;
    height: 40px;
    outline: none !important;
}

h1.logo {
    margin-top: 20px;
    margin-bottom: 20px;
    background-image: url("../img/sanfeed.svg");
    background-position: center top;
    background-repeat: no-repeat;
}

.no-svg h1.logo {
    background-image: url("../img/sanfeed.png");
}

.main-menu {
    float: right;
    color: #7FF5B2;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    text-transform: uppercase;
}

.main-menu .menu-item {
    margin-left: 20px;
    padding-top: 20px;
}

.main-menu a,
.main-menu a:active,
.main-menu a:visited,
.main-menu a:focus {
    display: block;
    color: #7FF5B2;
}

.main-menu a:hover {
    color: #FFF;
}

.main-menu .active {
    background-image: url("../img/menu-active.svg");
    background-position: center top;
    background-repeat: no-repeat;
}

.no-svg .main-menu .active {
    background-image: url("../img/menu-active.png");
}

.main-menu .active a,
.main-menu .active a:active,
.main-menu .active a:visited,
.main-menu .active a:hover,
.main-menu .active a:focus {
    color: #FFF;
}


.header h2 {
    color: #FFF;
}

.about .header,
.programme .header,
.application .header,
.board .header,
.institutions .header,
.news .header {
    background-position: center bottom;
    background-repeat: no-repeat;
}

.about .header { background-image: url("../img/bg-header-cow.svg"); }
.no-svg .about .header { background-image: url("../img/bg-header-cow.png"); }

.programme .header { background-image: url("../img/bg-header-fish.svg"); }
.no-svg .programme .header { background-image: url("../img/bg-header-fish.png"); }

.application .header { background-image: url("../img/bg-header-sheep.svg"); }
.no-svg .application .header { background-image: url("../img/bg-header-sheep.png"); }

.board .header { background-image: url("../img/bg-header-dog.svg"); }
.no-svg .board .header { background-image: url("../img/bg-header-dog.png"); }

.institutions .header { background-image: url("../img/bg-header-turkey.svg"); }
.no-svg .institutions .header { background-image: url("../img/bg-header-turkey.png"); }

.news .header { background-image: url("../img/bg-header-tuna.svg"); }
.no-svg .news .header { background-image: url("../img/bg-header-tuna.png"); }

@media (max-width:1199px) {

    .header-bar .container {
        width: 100%;
    }

    .main-menu {
        /*font-weight: normal;*/
    }

}


/** -----------------------------------------------------------------------
 *  CONTENT
 *  -----------------------------------------------------------------------
 */

.main {
    display: block;
    position: relative;
    width: 100%;
    min-height: 350px;
    padding-top: 10px;
    padding-bottom: 30px;
    background-color: #FFF;
    border-bottom: 1px solid #E5E5E5;
}

.column {
    position: relative;
    float: left;
    z-index: 1;
}

.content-left {
    width: 598px;
}

.content-right {
    width: 288px;
    padding-left: 16px;
    padding-right: 16px;
}

.content-left a, .content-left a:active, .content-left a:visited, .content-left a:focus,
.content-right a, .content-right a:active, .content-right a:visited, .content-right a:focus {
    text-decoration: underline;
}

.content-left a:hover,
.content-right a:hover {
    color: #21BF64;
    text-decoration: none;
}

.list-intro {
    margin-top: 30px;
    margin-bottom: 0;
}

.list-with-lines {
    margin-bottom: 30px;
    border-top: 1px solid #999;
}

.list-with-lines li {
    margin: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #999;
}

ul.list-with-lines {
    list-style: none;
}

ol.list-with-lines li {
    list-style-position: inside;
}

ol.list-with-lines ol {
    margin: 0 0 0 20px; 
    border: none;
}

ol.list-with-lines ol li {
    list-style-position: outside;
    border: none;
}


.text-highlight {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.image-elements {
    margin-top: 40px;
    margin-bottom: 40px;
}

.content-right .intro {
    margin-bottom: 18px;
}

.content-right .intro-industry {
    margin-top: 15px;
    margin-bottom: 15px;
}

.single-element {
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: 155px;
    z-index: 0;
}


/** -----------------------------------------------------------------------
 *  BOX ITEMS
 *  -----------------------------------------------------------------------
 */

.box-item {
    position: relative;
    width: 100%;
    min-height: 98px;
    margin-bottom: 10px;
    padding: 11px 16px;
    font-size: 13px;
    line-height: 1.4;
}

.box-item a {
    outline: none;
    -webkit-transition: background-color 0.25s linear;
    -moz-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
}

.box-item .box-item-title,
.box-item .box-item-text {
    margin: 0;
    padding: 0;
}

.box-item .box-item-title {
    text-transform: uppercase;
}

.box-item .box-item-link {
    display: block;
    position: absolute;
    width: 37px;
    height: 37px;
    top: 0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
}

.box-title {
    margin-bottom: 12px;
}

.highlight {
    padding: 0;
    color: #FFF;
    background-color: #21BF64;
}

.highlight .highlight-title {
    font-size: 14px;
    font-weight: 600;
}

.highlight .highlight-link {
    background-image: url("../img/box-plus-green-dark.svg");
}

.no-svg .highlight .highlight-link {
    background-image: url("../img/box-plus-green-dark.png");
}

.highlight a {
    display: block;
    min-height: 98px;
    padding: 12px 16px;
}

.highlight a,
.highlight a:visited,
.highlight a:active,
.highlight a:hover,
.highlight a:focus {
    color: #FFF;
    text-decoration: none;
}

.highlight a:hover,
.highlight a:focus {
    background-color: #1CA355;
}

.theme {
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #FFF;
    background-color: #27D170;
}

.theme .theme-text {
    padding-right: 16px;
}

.theme .theme-link {
    background-image: url("../img/box-plus-green-light.svg");
}

.no-svg .theme .theme-link {
    background-image: url("../img/box-plus-green-light.png");
}

.theme a {
    display: block;
    min-height: 98px;
    padding: 12px 16px;
}

.theme a,
.theme a:visited,
.theme a:active,
.theme a:hover,
.theme a:focus {
    color: #FFF;
    text-decoration: none;
}

.theme a:hover,
.theme a:focus {
    background-color: #1CA355;
}


.partner {
    padding: 0px;
    background-color: #F5F5F5;
}

.partner-logo {
    margin-top: 5px;
}

.partner .partner-link {
    background-image: url("../img/box-plus-gray.svg");
}

.no-svg .partner .partner-link {
    background-image: url("../img/box-plus-gray.png");
}


/** -----------------------------------------------------------------------
 *  HOMEPAGE
 *  -----------------------------------------------------------------------
 */

.home .header {
    height: 595px;
}

.doctoral-programme {
    width: 100%;
    height: 515px;
    margin: 0;
    padding: 0;
    background-image: url("../img/doctoral-programme.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

.no-svg .doctoral-programme {
    background-image: url("../img/doctoral-programme.png");
}

.home .highlights {
    margin-top: 58px;
}


/** -----------------------------------------------------------------------
 *  APPLICATION
 *  -----------------------------------------------------------------------
 */

.application .list-intro {
    margin-top: 10px;
}


/** -----------------------------------------------------------------------
 *  BOARD
 *  -----------------------------------------------------------------------
 */

.board .list-intro {
    /*color: #000;*/
}


/** -----------------------------------------------------------------------
 *  INSTITUTIONS
 *  -----------------------------------------------------------------------
 */

.institutions .list-with-lines {
    margin-top: 18px;
}

.institution-logo,
.institution-text {
    display: inline-block;
    vertical-align: middle;
}

.institution-logo {
    width: 256px;
    width: 202px;
    margin-left: -4px;
}

.institution-text {
    width: 342px;
    width: 396px;
}

.industrial-partners {
    margin-top: 60px;
}


/** -----------------------------------------------------------------------
 *  DOWNLOADS
 *  -----------------------------------------------------------------------
 */

.download {
    display: block;
    min-height: 80px;
    margin-top: 16px;
    margin-bottom: 30px;
    text-decoration: none !important;
    outline: none;
    background-position: left center;
    background-repeat: no-repeat;
}

.download-document {
    padding-left: 78px;
    background-image: url("../img/download.svg");
}

.no-svg .download-document {
    background-image: url("../img/download.png");
}


/** -----------------------------------------------------------------------
 *  NEWS AND MEDIA
 *  -----------------------------------------------------------------------
 */

.news-item {
    border-top: 1px solid #999;    
}

.news-item:last-of-type {
    border-bottom: 1px solid #999;
}

.news-item .news-title {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
    color: #21BF64;
}

.news-item .news-type {
    margin-top: 3px;
}

.news-item .news-type span {
    padding: 1px 12px 2px 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    background-color: #21BF64;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.news-item .news-text {
    margin-top: 30px;
}

.news-item .news-downloads span {
    color: #21BF64;
}

.news-item .news-downloads a {
    display: inline-block;
    padding-left: 25px;
    line-height: 22px;
    background-image: url("../img/icon-download.svg");
    background-position: 0 5px;
    background-repeat: no-repeat;
}

.no-svg .news-item .news-downloads a {
    background-image: url("../img/icon-download.png");
}

.news-item .news-downloads a,
.news-item .news-downloads a:visited,
.news-item .news-downloads a:active,
.news-item .news-downloads a:hover,
.news-item .news-downloads a:focus {
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    color: #21BF64;
}

.news .content-right .downloads {
    margin-top: 6px;
}

.news .content-right .download {
    min-height: 0;
    margin: 0;
}

.news .content-right .download,
.news .content-right .download:active,
.news .content-right .download:visited,
.news .content-right .download:hover,
.news .content-right .download:focus {
    color: #21BF64;
    font-weight: 600;
}


/** -----------------------------------------------------------------------
 *  FOOTER
 *  -----------------------------------------------------------------------
 */

.footer {
    color: #808080;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
}

.footer .sponsors {
    margin-top: 20px;
    margin-bottom: 40px;
}

.footer p {
    margin: 0;
    line-height: 25px;
}

.footer a {
    font-weight: 600;
    text-decoration: none;
}


/** -----------------------------------------------------------------------
 *  HELPER CLASSES
 *  -----------------------------------------------------------------------
 */

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bold {
    font-weight: 600;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-glow  {
    outline: none;
    box-shadow:none !important;    
}

.is-table {
    display: table;
    height: 100%;
}

.is-table > .cell {
    display: table-cell;
    vertical-align: middle;
}

