/* Colors */
/* Font sizes */
/* Sizes */
/* Fonts */
/* Paddings and margins */
/* Media queries */
/* Border tables */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700,900&display=swap&subset=latin-ext");
html {
  scroll-behavior: smooth; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Roboto', sans-serif; }

a {
  text-decoration: none;
  color: #002d5f; }

h1 {
  font-weight: 900; }

li {
  list-style: none; }

@media (min-width: 992px) {
  p.h4 {
    font-size: 30px; } }

@media (min-width: 992px) {
  p {
    font-size: 18px; } }

.jumbotron__title {
  font-size: 50px;
  padding: 0;
  margin: 0; }

.jumbotron__text {
  font-size: 20px;
  padding: 0;
  margin: 0; }

/* Components */
.page-title {
  font-weight: bold;
  padding: 10px 0;
  font-size: 2rem;
  text-shadow: 0px 0px 10px #00152c; }
  @media (orientation: landscape) {
    .page-title {
      padding: 10px 0 0; } }
  @media (min-width: 768px) {
    .page-title {
      padding: 10px 0;
      font-size: 3rem; } }

.page-title_white {
  color: #ffbb00; }

.page-title_dark {
  color: #002d5f; }

.section-title {
  font-weight: bold;
  padding: 10px 0;
  font-size: 1.7rem; }
  @media (orientation: landscape) {
    .section-title {
      padding: 10px 0 0; } }
  @media (min-width: 768px) {
    .section-title {
      padding: 10px 0 10px;
      font-size: 2rem; } }

.section-title_white {
  color: white;
  text-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }

.section-title_dark {
  color: #002d5f; }

.article-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0; }
  @media (orientation: landscape) {
    .article-title {
      font-size: 1.6rem; } }
  @media (min-width: 768px) {
    .article-title {
      font-size: 1.6rem; } }
  @media (min-width: 992px) {
    .article-title {
      font-size: 1.7rem; } }

.article-title_dark {
  color: #002d5f; }

.article-title_white {
  color: #ffbb00; }

.article-text {
  font-size: 16px;
  color: #414141; }

/*Hamburger*/
/*button*/
.hamburger {
  margin: 0 20px 0 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: white;
  width: 50px;
  height: 40px;
  position: relative;
  overflow: hidden;
  display: block; }
  @media (min-width: 992px) {
    .hamburger {
      display: none; } }
  .hamburger:hover {
    cursor: pointer; }
  .hamburger .hamburger_elem1,
  .hamburger .hamburger_elem2,
  .hamburger .hamburger_elem3 {
    background-color: #002d5f;
    height: 5px;
    transition: .2s; }
  .hamburger .hamburger_elem1 {
    position: absolute;
    top: 0;
    width: 100%;
    transform: none; }
  .hamburger .hamburger_elem2 {
    position: absolute;
    top: 17.5px;
    width: 100%; }
  .hamburger .hamburger_elem3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: none; }
  .hamburger .hamburger_elem1_added {
    transform: rotate(45deg) translateX(12px) translateY(13px); }
  .hamburger .hamburger_elem2_added {
    width: 0; }
  .hamburger .hamburger_elem3_added {
    transform: rotate(-45deg) translateX(12px) translateY(-13px); }

/*Buttons More*/
.btn-outline-light {
  background-color: transparent;
  border: transparent;
  text-transform: uppercase;
  position: relative;
  z-index: 1; }
  @media (min-width: 992px) {
    .btn-outline-light {
      border: solid 1px #ffbb00;
      border-radius: 0; } }
  .btn-outline-light:hover {
    background-color: #ffbb00; }
    .btn-outline-light:hover .pseudo:before, .btn-outline-light:hover .pseudo:after {
      animation: none; }
  .btn-outline-light .pseudo {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .btn-outline-light .pseudo:before {
      content: '';
      display: block;
      position: absolute;
      padding: 0;
      height: 12px;
      width: 10%;
      top: 33%;
      z-index: -1;
      transform: skewX(-10deg);
      animation: movingBgc1 2s ease-in-out 1s infinite, movingBgTrnsp1 2s linear 1s infinite; }

@keyframes movingBgc1 {
  0% {
    left: 10%; }
  100% {
    left: 80%; } }

@keyframes movingBgTrnsp1 {
  0% {
    background-color: rgba(29, 29, 29, 0); }
  50% {
    background-color: rgba(29, 29, 29, 0.3); }
  100% {
    background-color: rgba(29, 29, 29, 0); } }
    .btn-outline-light .pseudo:after {
      content: '';
      display: block;
      position: absolute;
      padding: 0;
      height: 12px;
      width: 6%;
      top: 33%;
      transform: skewX(-10deg);
      animation: movingBgc2 2s ease-in-out 1s infinite, movingBgTrnsp2 2s linear 1s infinite; }

@keyframes movingBgc2 {
  0% {
    left: 10%; }
  100% {
    left: 80%; } }

@keyframes movingBgTrnsp2 {
  0% {
    background-color: rgba(29, 29, 29, 0); }
  50% {
    background-color: rgba(29, 29, 29, 0.5); }
  100% {
    background-color: rgba(29, 29, 29, 0); } }

.btn-outline-dark {
  border: transparent;
  color: #002d5f;
  position: relative;
  text-transform: uppercase; }
  .btn-outline-dark:hover {
    background-color: transparent;
    border: none;
    color: #414141; }
    .btn-outline-dark:hover:after {
      content: '';
      display: block;
      border-bottom: solid 1px #414141;
      position: absolute;
      animation: movingBorder 2s ease-out infinite; }

@keyframes movingBorder {
  0% {
    left: 48%;
    width: 5%; }
  50% {
    left: 8%;
    width: 78%; }
  100% {
    left: 48%;
    width: 5%; } }

.back-top {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  font-size: 18px;
  font-weight: bold;
  border: solid 2px rgba(255, 255, 255, 0.2);
  text-shadow: 0px 0px 5px rgba(48, 48, 48, 0.5);
  outline: none;
  background-color: rgba(48, 48, 48, 0.1);
  box-shadow: 0px 0px 5px rgba(48, 48, 48, 0.5);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 15px 14px;
  transition: .2s;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }
  .back-top:hover {
    background-color: #414141;
    color: white;
    border-color: white; }

.row div .circle {
  margin: 0 auto;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  text-align: center;
  background-color: #414141;
  background-position: center; }
  .row div .circle img {
    width: 150px;
    margin: 0 auto;
    padding: 0;
    transition: .6s;
    opacity: .8; }

.row div:hover .circle img {
  width: 155px;
  opacity: 1; }

.row div:hover div .h5 {
  color: #ffbb00; }

.smooth-stripes {
  display: none; }
  @media (min-width: 992px) {
    .smooth-stripes {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      height: 100%;
      width: 20%; }
      .smooth-stripes .smooth-stripes__element {
        height: 100%;
        width: 100%; }
        .smooth-stripes .smooth-stripes__element .smooth-stripes__stripe {
          stroke: #204a87;
          fill: #204a87; }
          .smooth-stripes .smooth-stripes__element .smooth-stripes__stripe:nth-of-type(2) {
            stroke: #004d5f;
            fill: #004d5f; } }

/* Sections */
.navbar {
  height: 100px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  line-height: 90px;
  z-index: 4;
  position: relative;
  /*list*/ }
  @media only screen and (orientation: landscape) {
    .navbar {
      height: 90px;
      line-height: 80px; } }
  @media only screen and (orientation: landscape) and (max-height: 600px) {
    .navbar {
      height: 80px;
      line-height: 70px; } }
  .navbar .navbar-brand {
    padding-left: 20px; }
    .navbar .navbar-brand img {
      max-height: 60px;
      max-width: 140px; }
  .navbar .nav_links {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 0px;
    background-color: white;
    text-align: center;
    overflow: hidden;
    transition: .5s; }
    .navbar .nav_links .row {
      justify-content: center;
      flex-direction: column;
      margin: 10vh auto; }
      @media only screen and (max-height: 600px) {
        .navbar .nav_links .row {
          margin-top: 2vh; } }
      .navbar .nav_links .row .box {
        height: 20%; }
        @media only screen and (orientation: landscape) {
          .navbar .nav_links .row .box {
            height: 15vh; } }
        .navbar .nav_links .row .box .nav-item {
          display: inline-block;
          text-decoration: none;
          color: #002d5f;
          font-size: 20px;
          text-transform: uppercase;
          margin: 0 auto;
          width: auto; }
        .navbar .nav_links .row .box:hover .nav-item {
          color: #414141;
          position: relative; }
          .navbar .nav_links .row .box:hover .nav-item:after {
            content: '';
            display: block;
            border-bottom: solid 1px #414141;
            position: absolute;
            bottom: 30%;
            animation: movingBorderA 1s ease-out;
            left: 4%;
            width: 88%; }

@keyframes movingBorderA {
  0% {
    left: 48%;
    width: 5%; }
  100% {
    left: 4%;
    width: 88%; } }
    @media (min-width: 992px) {
      .navbar .nav_links {
        height: 80px;
        line-height: 80px;
        width: 80%; }
        .navbar .nav_links .row {
          flex-direction: row;
          height: 80px;
          margin: 0; }
          .navbar .nav_links .row .box {
            height: 100%;
            padding: 0 3%;
            min-width: 100px; }
            .navbar .nav_links .row .box .nav-item {
              padding: 0;
              font-size: 18px; } }
  .navbar .nav_links_added {
    height: 88vh;
    box-shadow: 0 15px 20px -10px rgba(0, 0, 0, 0.1); }
    @media (min-width: 992px) {
      .navbar .nav_links_added {
        height: 80px; } }

footer {
  background-color: #414141;
  color: white;
  padding: 10px 0; }
  footer .container {
    padding: 0;
    max-width: 100%;
    margin: 0;
    display: block;
    position: relative; }
    @media (min-width: 992px) {
      footer .container {
        max-width: 1200px;
        margin: 0 auto; } }
    footer .container .row {
      width: 100%;
      margin: 0;
      padding: 0 1%; }
      @media only screen and (orientation: landscape) {
        footer .container .row {
          padding: 0 10%; } }
      @media (min-width: 768px) {
        footer .container .row {
          padding: 0 10%; } }
      @media (min-width: 1024px) {
        footer .container .row {
          padding: 0 5%; } }
      footer .container .row .col {
        margin: 0;
        position: relative; }
        footer .container .row .col ul li {
          font-size: 14px; }
        footer .container .row .col img {
          width: 60px;
          position: absolute;
          right: 5%;
          top: 10px; }
          @media (min-width: 1024px) {
            footer .container .row .col img {
              left: 40%;
              transform: translateX(-50%); } }
          @media (min-width: 1140px) {
            footer .container .row .col img {
              left: 50%;
              transform: translateX(-50%); } }
      footer .container .row:nth-of-type(2) {
        border-top: solid 0.5px #bdced6;
        padding-top: 20px; }
        footer .container .row:nth-of-type(2) .col p {
          font-size: 14px;
          color: white; }
        footer .container .row:nth-of-type(2) .col div {
          font-size: 14px;
          color: #bdced6; }
          footer .container .row:nth-of-type(2) .col div a {
            font-size: 14px;
            color: #bdced6; }
          footer .container .row:nth-of-type(2) .col div:nth-of-type(2) {
            display: none; }
        @media (min-width: 1024px) {
          footer .container .row:nth-of-type(2) {
            border-top: none;
            position: absolute;
            top: 0;
            right: 0; }
            footer .container .row:nth-of-type(2) .col p,
            footer .container .row:nth-of-type(2) .col div {
              text-align: right; } }

/* First Page*/
body {
  margin: 0 auto;
  /*sections*/
  /*footer*/ }
  body header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white; }
  body main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; }
    @media (min-width: 576px) {
      body main section {
        margin-bottom: 40px; } }

.jumbotron {
  background-color: #00152c;
  background-image: url("../../images/map-of-europe-equidistant-hi.png"), linear-gradient(to bottom, #004d5f, #00152c);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  border-radius: 0%;
  text-align: center;
  position: relative;
  color: white;
  height: 80vh;
  padding: 10px; }
  @media only screen and (orientation: landscape) {
    .jumbotron {
      width: 100%;
      max-width: 1200px;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 576px) and (max-width: 1199.9px) {
    .jumbotron {
      margin-left: 0;
      margin-right: 0;
      max-width: 1200px; } }
  @media (min-width: 992px), (min-aspect-ratio: 4 / 3) {
    .jumbotron {
      background-image: url("../../images/map-of-europe-equidistant-hi.png"), url("../../images/keyboard-right-arrow-button-blue2.png"), url("../../images/keyboard-right-arrow-button-blue3.png"), linear-gradient(to bottom, #004d5f, #00152c);
      background-position: bottom right, left, left;
      background-size: contain, 25%, 35%; } }
  .jumbotron .row {
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    flex-direction: column; }
    @media only screen and (orientation: portrait) {
      .jumbotron .row {
        flex-direction: column; } }
    @media (min-aspect-ratio: 16 / 7) {
      .jumbotron .row {
        padding: 2%; } }
    .jumbotron .row .box {
      display: flex;
      flex: 1;
      align-items: center; }
      .jumbotron .row .box:first-of-type {
        background-image: url("../../images/atom-seablue-col.png");
        background-size: 15vh;
        background-repeat: no-repeat;
        background-position: center;
        line-height: 100%; }
        @media only screen and (orientation: portrait) {
          .jumbotron .row .box:first-of-type {
            flex: 2;
            padding: 0 8%; } }
        @media (min-width: 992px) {
          .jumbotron .row .box:first-of-type {
            height: 15vh;
            flex: 2; } }
        @media (min-aspect-ratio: 16 / 7) {
          .jumbotron .row .box:first-of-type {
            flex: 1; } }
        .jumbotron .row .box:first-of-type img {
          display: inline-block;
          height: 5vw;
          line-height: 66px;
          margin: 0 5px 5px; }
          @media only screen and (orientation: portrait) {
            .jumbotron .row .box:first-of-type img {
              height: 5vh; } }
          @media (min-aspect-ratio: 16 / 7) {
            .jumbotron .row .box:first-of-type img {
              height: 40px; } }
        .jumbotron .row .box:first-of-type .jumbotron__title {
          display: inline-block;
          font-size: 5vw; }
          @media only screen and (orientation: portrait) {
            .jumbotron .row .box:first-of-type .jumbotron__title {
              font-size: 6vh; } }
          @media only screen and (min-width: 1200px) {
            .jumbotron .row .box:first-of-type .jumbotron__title {
              font-size: 66px; } }
          @media (min-aspect-ratio: 16 / 7) {
            .jumbotron .row .box:first-of-type .jumbotron__title {
              font-size: calc(38px + 2vh); } }
        .jumbotron .row .box:first-of-type .my-4 {
          background-color: white; }
      .jumbotron .row .box:nth-of-type(2) {
        align-self: center; }
        @media (min-width: 992px) {
          .jumbotron .row .box:nth-of-type(2) {
            max-width: 700px; } }
        .jumbotron .row .box:nth-of-type(2) .jumbotron__text {
          font-size: calc(14px + 1vh);
          color: #bdced6; }
          @media only screen and (orientation: portrait) {
            .jumbotron .row .box:nth-of-type(2) .jumbotron__text {
              font-size: 2.5vh; } }
          @media (min-width: 992px) {
            .jumbotron .row .box:nth-of-type(2) .jumbotron__text {
              font-size: 3vh;
              text-align: center; } }
          @media (min-width: 1200px) {
            .jumbotron .row .box:nth-of-type(2) .jumbotron__text {
              font-size: calc(14px + 1vh); } }
          @media (min-aspect-ratio: 16 / 7) {
            .jumbotron .row .box:nth-of-type(2) .jumbotron__text {
              font-size: calc(16px + 1vh); } }
      .jumbotron .row .box:nth-of-type(3) {
        display: none; }
        @media (min-width: 992px) and (min-height: 768px) {
          .jumbotron .row .box:nth-of-type(3) {
            display: flex;
            align-self: center; }
            .jumbotron .row .box:nth-of-type(3) div {
              width: 90px;
              height: 90px;
              background-image: url("../../images/academic-slider.png");
              background-size: 90px;
              background-repeat: no-repeat;
              background-position: top;
              animation: movingIcons 12s steps(3) infinite; }
          @keyframes movingIcons {
            0% {
              background-position: 0 0; }
            100% {
              background-position: 0 -320px; } } }
      @media (min-width: 768px) {
        .jumbotron .row .box:nth-of-type(4) {
          min-height: calc(50px + 1vh); } }
      @media (min-aspect-ratio: 16 / 7) {
        .jumbotron .row .box:nth-of-type(4) {
          min-height: 50px; } }

#second-page #description, #third-page #description, #fourth-page #description {
  height: 250px;
  position: relative;
  overflow: hidden; }
  #second-page #description .row .img-container, #third-page #description .row .img-container, #fourth-page #description .row .img-container {
    position: absolute;
    top: 0;
    right: 0;
    display: none; }
    @media (min-width: 768px) {
      #second-page #description .row .img-container, #third-page #description .row .img-container, #fourth-page #description .row .img-container {
        display: block; }
        #second-page #description .row .img-container img, #third-page #description .row .img-container img, #fourth-page #description .row .img-container img {
          height: 100%;
          transform: translate(40%, -40%); } }

#info {
  padding-bottom: 20px; }
  #info .row {
    padding: 0 5%; }
    @media (min-width: 768px) {
      #info .row {
        padding: 0 1%; } }
    #info .row div {
      padding-top: 20px;
      color: #204a87;
      /*&:first-of-type {
                div {

                    img {
                        width: 100px;
                        padding: 0px;
                    }
                }
            }*/ }
      @media (min-width: 992px) {
        #info .row div {
          padding: 20px 20px; } }
      #info .row div div img {
        width: 100px;
        padding: 10px; }

#description {
  padding-bottom: 20px;
  background-image: linear-gradient(to bottom, #004d5f, #00152c);
  position: relative;
  display: flex; }
  @media only screen and (orientation: landscape) {
    #description {
      width: 100%;
      max-width: 1200px; } }
  @media (min-width: 576px) and (max-width: 1199.9px) {
    #description {
      margin-left: 0;
      margin-right: 0;
      max-width: 1200px; } }
  @media (min-width: 768px) {
    #description {
      padding: 30px 0; } }
  @media (min-width: 992px) {
    #description {
      height: 400px;
      padding: 10px 0; } }
  #description .row {
    width: 100%;
    padding: 0 5%;
    margin: 0; }
    #description .row div {
      padding-top: 20px; }
      @media (min-width: 576px) {
        #description .row div div.img-container {
          padding-top: 0px; } }
      #description .row div div.img-container img {
        width: 150px; }
        @media only screen and (orientation: landscape) and (max-height: 320.9px) {
          #description .row div div.img-container img {
            width: 80px;
            padding-top: 20px; } }
      @media only screen and (orientation: landscape) {
        #description .row div:first-of-type {
          padding-top: 0; } }
    @media (min-width: 992px) {
      #description .row .description__content {
        padding: 0; } }
    #description .row .description__content div {
      color: white; }
      @media only screen and (orientation: landscape) {
        #description .row .description__content div p.h4 {
          padding-top: 20px; } }
      @media only screen and (orientation: landscape) and (max-height: 320.9px) {
        #description .row .description__content div p.h4 {
          padding-top: 0px; } }
      #description .row .description__content div .h4 {
        font-weight: bold; }

#executive {
  padding-bottom: 20px;
  padding-top: 20px;
  margin: 0 auto;
  text-align: center; }
  #executive .h3 {
    font-weight: bold;
    color: #002d5f;
    padding: 10px 0; }
    @media (min-width: 768px) {
      #executive .h3 {
        padding: 10px 0 30px; } }
  #executive .row {
    padding: 0 5%; }
    @media (min-width: 768px) {
      #executive .row {
        padding: 0 1%; } }
    #executive .row div {
      padding: 20px 0; }
      #executive .row div .circle {
        padding: 0; }
      #executive .row div div .h5 {
        font-weight: bold; }
        #executive .row div div .h5:first-of-type {
          color: #204a87;
          font-weight: normal; }

/* Second Page*/
#activity {
  padding: 20px 0 20px; }
  @media screen and (orientation: portrait) {
    #activity {
      padding: 30px 0 20px; } }
  #activity .row {
    padding: 0 5%;
    margin: 0 auto; }
    @media (min-width: 768px) {
      #activity .row {
        padding: calc(10px + 1%) 1%; } }
    #activity .row .activity__col {
      color: #204a87;
      border: solid 2px #bdced6;
      border-radius: 5px;
      margin: 30px 10px;
      transition: 0.3s;
      /*&:first-of-type {
                div {

                    img {
                        width: 100px;
                        padding: 0px;
                    }
                }
            }*/ }
      @media (min-width: 768px) {
        #activity .row .activity__col:hover {
          border-color: #204a87; }
        @keyframes rotation {
          0% {
            transform: rotate(0deg); }
          100% {
            transform: rotate(360deg); } }
          #activity .row .activity__col:hover .activity__img .activity__img-box img {
            animation-name: rotation;
            animation-duration: 1s; } }
      @media (min-width: 992px) {
        #activity .row .activity__col {
          padding: 0 20px; } }
      #activity .row .activity__col div,
      #activity .row .activity__col a {
        padding: 20px 5px; }
      #activity .row .activity__col .activity__img {
        position: relative;
        height: 50px; }
        #activity .row .activity__col .activity__img .activity__img-box {
          position: absolute;
          width: 120px;
          padding: 10px;
          top: 0px;
          left: 50%;
          transform: translate(-50%, -50%);
          background-color: white; }
          #activity .row .activity__col .activity__img .activity__img-box img {
            width: 100px;
            padding: 10px; }
      #activity .row .activity__col .activity__title .article-title {
        color: #204a87; }
      #activity .row .activity__col .activity__description {
        text-align: left; }
        #activity .row .activity__col .activity__description p {
          font-weight: 100;
          color: #414141;
          font-size: 17px; }

#conferences {
  background-color: #bdced6;
  width: 100%;
  margin-left: 0;
  margin-right: 0; }
  #conferences .section-title {
    text-align: center;
    margin: 0;
    padding: 30px 0 0; }
  #conferences .row {
    padding: calc(20px + 2%) calc(5px + 1%) calc(20px + 5%);
    margin: 0 auto; }
    @media screen and (orientation: portrait) {
      #conferences .row .conference__content {
        padding: 0; } }
    #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container {
      display: flex;
      flex-wrap: nowrap;
      flex-direction: row;
      align-items: center; }
      #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item {
        flex: 1; }
        #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item:nth-of-type(2) {
          flex: 8; }
        #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container {
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          background-color: white;
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }
          @media (orientation: portrait) {
            #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container {
              flex-direction: column; } }
          #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container .carousel-container__item {
            flex: 1;
            padding: 8px;
            text-align: left;
            align-items: stretch; }
            #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container .carousel-container__item:first-of-type {
              flex: 2; }
            #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container .carousel-container__item img {
              width: 100%; }
            #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container .carousel-container__item div {
              display: flex;
              bottom: 0;
              justify-content: center;
              align-items: flex-end; }
              #conferences .row .conference__content #carouselConference .carousel-inner .carousel-item .carousel-container .carousel-container__item .carousel-container__inner-container .carousel-container__item div a {
                color: #002d5f; }

#books .section-title {
  text-align: center;
  padding: 20px 0; }

#books .row div div div div .card-body .article-title {
  margin-bottom: 10px; }

#books .row div div div div .card-body .card-text {
  color: #414141; }

#journal .section-title {
  text-align: center;
  padding: 20px 0; }

#journal .row div div div div .card-body {
  cursor: pointer; }
  #journal .row div div div div .card-body .article-title {
    margin-bottom: 10px; }
  #journal .row div div div div .card-body .card-text {
    color: #414141; }
  #journal .row div div div div .card-body .list-group {
    text-align: center; }
    #journal .row div div div div .card-body .list-group .list-group-item-action.active {
      background-color: #bdced6;
      border: #bdced6;
      color: #00152c; }

#journal .row:hover div div div div .card-body .list-group .list-group-item-action.active {
  color: white;
  background-color: #204a87; }

/* Third Page*/
#science-council {
  width: 100%;
  max-width: 1200px;
  background-color: #bdced6; }
  #science-council .row .col {
    padding: 40px; }
    #science-council .row .col .container {
      padding: 20px;
      background-color: white; }
      #science-council .row .col .container .table {
        background-color: white;
        margin-bottom: 0;
        box-shadow: rgba(0, 0, 0, 0.1); }
        #science-council .row .col .container .table thead tr {
          background-color: rgba(189, 206, 214, 0.3); }
    @media only screen and (orientation: portrait) {
      #science-council .row .col {
        padding: 10px; }
        #science-council .row .col .container {
          padding: 5px; } }
