@import url("https://fonts.googleapis.com/css?family=Exo:400,700");

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Exo", sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

header {
  max-height: 400px;
  display: block;
  overflow: hidden;
  position: relative;
}

.context {
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 1;
}

.context h1 {
  text-align: center;
  color: #fdfdfd;
  font-size: 30px;
  top: 60%;
  position: absolute;
  left: 0;
  right: 0;
}

.area {
  /*background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);*/
  background: radial-gradient(ellipse at bottom, #123a6b 0%, #171a2f 100%);
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
  width: 100%;
  height: 100vh;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.img-round {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 150px;
  border: 10px solid white;
  border-radius: 100%;
  overflow: hidden;
  height: 150px;
  top: 10%;
}

.img-round img {
  max-width: 100%;
}

.icons {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  text-align: center;
  color: #fdfdfd;
  top: 75%;
}

.icons a {
  color: #fdfdfd;
  margin: 0 5px;
  font-size: 30px;
  text-decoration: none !important;
}

.icons a:hover {
  color: #e91e63;
}

.menu {
  background: #14294c;
  font-family: "Exo";
  padding: 5px 0;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu li {
  display: inline-block;
  margin: 0 15px;
}
.menu a {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #fdfdfd;
  display: block;
  position: relative;
  padding: 4px 0;
}
.menu a::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fdfdfd;
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
.menu a:not(.active):hover::before {
  transform: scale3d(1, 1, 1);
}
.menu-1 a:not(.active)::before {
  background: #e91e63;
  transform-origin: 100% 50%;
}
.menu-1 a:not(.active):hover::before {
  transform-origin: 0 50%;
}

.menu .active {
  color: #e91e63;
}

article {
  padding: 25px;
  margin: auto;
  max-width: 80%;
  width: 100%;
}

.additional-info .year {
  font-size: 30px;
  color: rgb(233 30 99 / 30%);
  min-height: 40px;
}

.additional-info .location {
  opacity: 0.5;
  min-height: 22px;
}

.additional-info .category {
  float: right;
  vertical-align: top;
  opacity: 0.5;
  min-height: 22px;
  text-align: right;
  margin-left: 10px;
  margin-top: -35px;
}

.external-link {
  display: inline;
}

.external-link a {
  color: #e91e63;
  opacity: 0.5;
  font-size: 18px;
  position: relative;
  top: 6px;
  vertical-align: top;
}

.external-link a:hover {
  opacity: 1;
}

.news-box .title {
  max-width: 65%;
  margin: auto;
  font-weight: bold;
  font-size: 20px;
}

.additional-info {
  margin-bottom: -3.5rem;
}

.news-box {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgb(233 30 99 / 50%);
  margin-bottom: 25px;
}

.news-box .text {
  max-width: 65%;
  margin: auto;
  font-size: 15px;
  padding-top: 3px;
}

.news-box .title.publication {
  font-size: 16px;
}

.news-box .authors {
  max-width: 65%;
  margin: auto;
  font-size: 14px;
}
.menu-section {
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.menu-section span {
  cursor: pointer;
  padding: 0 1px;
  margin: 0 2px;
}
.menu-section span.active {
  cursor: default;
}
.menu-section span.active,
.menu-section span:hover {
  color: #e91e63;
}

article p {
  max-width: 60%;
  margin: auto;
  padding: 20px 0;
  text-align: justify;
}

.contact {
  text-align: center;
  font-size: 13px;
  margin-top: 25px;
}

.contact a {
  color: #e91e63;
}

@media screen and (max-width: 810px) {
  article p {
    max-width: 100%;
  }
  .news-box .year {
    display: inline-block;
  }

  .news-box .location {
    vertical-align: middle;
    margin-left: 10px;
    float: right;
  }

  .news-box .additional-info {
    margin-bottom: 10px;
  }
  .news-box .text,
  .news-box .authors,
  .news-box .title {
    max-width: 100%;
  }

  .additional-info .category {
    margin-top: 0px;
  }
}

@media screen and (max-width: 500px) {
  .additional-info {
    margin-bottom: 15px;
  }
  .menu a {
    font-size: 14px;
    padding: 2px 0;
  }
  .menu li {
    margin: 0 7px;
  }
}
