/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
html *,
html *::before,
html *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 245px;
  }
}

body {
  margin: 0;
  padding: 0;
  background-color: #d5dde7;
  font-family: Domine, serif;
  font-size: 1.1rem;
  line-height: 1.2;
}
body h1, body h2 {
  margin: 0;
}
body p {
  line-height: 1.5;
}

.wrapper {
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .wrapper {
    overflow: initial;
  }
}

.cover-img {
  display: none;
}
@media (min-width: 992px) {
  .cover-img {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    width: 100%;
    height: 100vh;
    filter: brightness(0.7);
    z-index: -1;
  }
}

.header {
  position: relative;
  top: 0;
  color: #ffffff;
}
@media (min-width: 680px) {
  .header {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .header {
    position: sticky;
    overflow: hidden;
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/valencia-spain.jpg) no-repeat top center;
  background-size: cover;
  filter: brightness(0.7);
  z-index: -1;
}
@media (min-width: 680px) {
  .header::before {
    height: 375px;
  }
}
@media (min-width: 992px) {
  .header::before {
    height: 100vh;
  }
}
.header header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
@media (min-width: 680px) {
  .header header {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .header header {
    width: calc(100vw - 240px);
  }
}
.header header h1, .header header h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: clamp(32px, 1rem + 5vw, 64px);
}
.header header h1 {
  margin-top: 40px;
}
@media (min-width: 480px) {
  .header header h1 {
    margin-top: 20px;
  }
}

#menu-button {
  position: absolute;
  top: 2%;
  right: 2%;
  fill: #ffffff;
  cursor: pointer;
  transition: all 0.4s linear;
  z-index: 1;
}
#menu-button > rect {
  transition: all 0.4s linear;
}
#menu-button.close-menu rect:first-child {
  transform: rotate(45deg) translate(14px, -18px);
}
#menu-button.close-menu rect:nth-child(2) {
  opacity: 0;
}
#menu-button.close-menu rect:last-child {
  transform: rotate(-45deg) translate(14px, 16px);
  transform-origin: bottom left;
}
@media (min-width: 480px) {
  #menu-button {
    top: 3%;
  }
}
@media (min-width: 680px) {
  #menu-button {
    top: 5%;
  }
}
@media (min-width: 992px) {
  #menu-button {
    display: none;
  }
}

#host-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 10px;
  color: #333333;
}
@media (min-width: 680px) {
  #host-container {
    flex-direction: row;
    color: #ffffff;
  }
}
#host-container > p {
  margin: 0;
  text-align: end;
}
#host-container + hr {
  display: block;
  margin-bottom: 0;
}
@media (min-width: 480px) {
  #host-container + hr {
    display: none;
  }
}

.uni-logo {
  height: clamp(70px, 8.2vw, 80px);
}
.uni-logo.white {
  display: none;
}
.uni-logo.black {
  display: block;
}
@media (min-width: 680px) {
  .uni-logo.white {
    display: block;
  }
  .uni-logo.black {
    display: none;
  }
}

#eps {
  font-size: calc(1rem + 2vw);
  text-align: center !important;
}

#navbar {
  position: absolute;
  top: 0;
  right: -100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background-color: #27466b;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
#navbar.menu-opened {
  right: 0;
  opacity: 1;
}
@media (min-width: 992px) {
  #navbar {
    position: fixed;
    right: 0;
    width: 240px;
    height: auto;
    background-color: transparent;
    opacity: 1;
  }
}
#navbar ul {
  margin: 0;
  padding-left: 0;
}
#navbar ul li {
  list-style: none;
}
#navbar ul li a {
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 0;
  color: #ffffff;
  transition: all 0.2s linear;
}
#navbar ul li a.button {
  margin: 8px 0;
}
#navbar ul li a:hover, #navbar ul li a:focus {
  color: #eac19c;
}
#navbar ul li a.social-icon > svg > path {
  fill: #ffffff;
  transition: all 0.2s linear;
}
#navbar ul li a.social-icon:hover > svg > path, #navbar ul li a.social-icon:focus > svg > path {
  fill: #eac19c;
}
#navbar ul li a.social-icon:not(:last-child) {
  margin-right: 0.25rem;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
}
@media (min-width: 480px) {
  .main {
    background-color: transparent;
  }
}
@media (min-width: 992px) {
  .main {
    width: calc(100vw - 240px);
  }
}
.main section {
  width: 100%;
  padding: 0;
}
.main section:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .main section {
    padding: 1.875rem;
    background-color: white;
    border-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .main section {
    max-width: 960px;
  }
}
.main section p {
  margin: 0 0 10px;
}
.main section p:last-child {
  margin-bottom: 0;
}
.main section a {
  color: #3070bc;
  font-weight: bold;
  text-decoration: none;
}
.main section a:hover, .main section a:focus {
  text-decoration: underline;
}
.main section .section-title {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #27466b;
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 480px) {
  .main section .section-title {
    text-align: initial;
  }
}
.main section .person-name {
  font-size: 1.75rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
@media (min-width: 480px) {
  .main section .person-name {
    text-align: initial;
  }
}
.main section .person-picture {
  display: block;
  float: none;
  shape-outside: circle(50%);
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 480px) {
  .main section .person-picture {
    float: left;
    margin-right: 2rem;
    text-align: initial;
  }
}
.main section .person-picture > img {
  border-radius: 50%;
  transition: all 0.2s linear;
}
.main section .editions-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
}
.main section .edition {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.main section .edition > h2:last-of-type {
  margin: 5px 0 10px;
}
.main section .edition > a {
  aspect-ratio: 505/253;
  border-radius: 0.5rem;
  overflow: hidden;
}
.main section .edition > a > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.2s linear;
}
.main section .edition > a:hover > img, .main section .edition > a:focus > img {
  transform: scale(1.2);
}
.main section .edition:not(:last-child) > a {
  margin-bottom: 2.5rem;
}
@media (min-width: 480px) {
  .main section .edition {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 680px) {
  .main section .edition {
    width: calc(33.3333333333% - 1rem);
  }
}
.main hr {
  width: 100%;
  height: 0;
  overflow: visible;
  margin: 2rem 0;
  border: 0;
  border-bottom: 2px dotted #27466b;
}
.main blockquote {
  margin-left: 0;
  margin-right: 0;
  padding: 15px 20px;
  background-color: #f3decb;
  border-left: 5px solid #a78a36;
  border-radius: 0 1rem 1rem 0;
  font-weight: normal;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem !important;
  text-decoration: none;
  border-radius: 0.5rem;
  color: #333333 !important;
  font-weight: normal !important;
  transition: all 0.2s linear;
}
.button:hover, .button:focus {
  text-decoration: none !important;
}
.button.beige {
  background-color: #f3decb;
  border: 1px solid #eac19c;
}
.button.beige:hover, .button.beige:focus {
  background-color: #eac19c;
}
.button.silver {
  background-color: #d5dde7;
  border: 1px solid #b9c6d7;
}
.button.silver:hover, .button.silver:focus {
  background-color: #b9c6d7;
}

.btn-srg {
  margin-top: 1.5rem !important;
  text-align: center;
}
@media (max-width: 479px) {
  .btn-srg {
    margin-bottom: 2rem !important;
  }
}

footer {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 480px) {
  footer {
    padding-top: 0;
  }
}
footer > h1 {
  font-size: calc(12px + 1vw);
}
footer > h2 {
  font-size: calc(10px + 1vw);
}
footer > h1, footer h2 {
  text-align: center;
}
@media (min-width: 992px) {
  footer > h1, footer h2 {
    color: #ffffff;
  }
}
footer a {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 20px;
}
footer a > svg {
  fill: #333333;
  opacity: 0.8;
  z-index: 1;
}
@media (min-width: 992px) {
  footer a > svg {
    fill: #ffffff;
    opacity: 1;
  }
}

#goTop {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}