<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">a {
  color: #000;
}

/* header */

.header {
  background-color: rgb(13, 13, 13);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  top: 0;
  margin: 0;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: rgb(13, 13, 13);
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: rgb(224, 224, 224);
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo-header {
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

.header &gt; .logo-header &gt; img {
  width: 30%;
  float: left;
  margin-left: 20px;
  margin-top: 17px;
}
/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
  border: 1px solid rgb(224, 224, 224);
  margin: 10px;
}

.header .menu-icon .navicon {
  background: rgb(224, 224, 224);
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: rgb(224, 224, 224);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 5120px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.entrades-menu {
  cursor: pointer;
  color: rgb(13, 13, 13);
  /*background: rgb(225,227,0);*/
}

.menu &gt; li {
  text-align: center;
  text-transform: uppercase;
  margin: 10px;
}

.entrades-menu:hover {
  color: rgb(13, 13, 13);
}

.menu &gt; li &gt; a:hover {
  color: rgb(13, 13, 13);
}

.lang-menu-mobile {
  display: none;
}

/* Dropdown Button */
.dropbtn {
  background-color: rgb(13, 13, 13);
  color: rgb(224, 224, 224);
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-right: 5px;
  margin-top: 5px;
}

/* Dropdown button on hover &amp; focus */
.dropbtn:hover,
.dropbtn:focus {
}

/* The container &lt;div&gt; - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(13, 13, 13);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 16px !important;
  color: rgb(13, 13, 13);
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: rgb(13, 13, 13);
}

.dropdown-content-selected {
  background-color: #ddd;
  color: rgb(13, 13, 13) !important;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

/* 48rem = 1280px */

@media (min-width: 80rem) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }

  .header &gt; .logo-header &gt; img {
    width: 12% !important;
  }
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 50%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
}

.header__logo {
  float: left;
  color: rgb(224, 224, 224);
  font-size: 0.5rem;
  font-weight: 600;
  inline-size: 16rem;
  line-height: 1;
  margin-inline-end: auto;
  text-align: center;
  text-transform: uppercase;
  transition: height 0.3s ease-in-out;
}

.header__logo__date {
  display: block;
  margin-top: 10px;
}

.header__logo a {
  display: block;
  margin-block-start: 0.3rem;
}

.header__logo img {
  width: 65%;
}

.lang-nav {
  position: relative;
  color: rgb(13, 13, 13);
  font-size: 1.6em;
}

.lang-nav-sect {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 1%;
  padding-top: 1%;
}

.lang-nav-sect &gt; nav &gt; a {
  text-decoration: none; /* no underline */
  color: rgb(13, 13, 13);
}
</pre></body></html>