h2 {
    font-size: 18px;
}


#logo-container {
    display: block;
    width: 50%;
}

/* main title + Excerpt */

.excerpt-wrapper {
    display: flex;
    justify-content: center;
    color: black;
}

.main-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 38px;
}

.excerpt-text {
    display: block;
}

.menu-mob ul li a{
    color: white;
    text-decoration: none;
}

.menu-mob ul {
    list-style-type: none;
    text-align: center;
}


#menu-button {
    color: white;
    top: 44%;
    display: block;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    float: right;
}

.button-wrapper {
    padding-right: var(--side-blank-mob);
    width: 50%;
}

.pc {
    display: none;
}

.menu-pc {
    display: hidden;
}

#index-title {
    margin: 10px 0;
    width: 100%;
}

#toggle-index {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

#index-title-text {
    /*text-align: center;*/
    flex-grow: 1;
}

#index-title-arrow {
    position: absolute;
    top: 10px;  
    right: 79px;
}

.fixed-index {
    position: fixed;
    width: 100%;
    z-index: 100;
}

.content_text_anchor {
    top: -150px;
    position: relative;
    display: block;
    visibility: hidden;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
  }
  
 
.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

button {
    border: none;
    background-color: transparent;
    outline: none;
}

.index ul {
    list-style-type: none;
    margin-top: 15px;
    margin-bottom: 15px;
    @media only screen and (max-width:1120px) {
        margin-top: 0px;
    }
}

.index ul li {
    margin-bottom: 1em;
    
}

.index ul li a {
    text-decoration: none;
    color: #333333;
    font-size: 1em;
    
}

#content_banner {
    text-align: center;
}

#content-banner-2-media {
    text-align: center;
}

#content-banner-2-text {
    text-align: left;
    font-size: 12px;
    width: 300px;
    margin: 0 auto 20px auto;
}


.bottom-section {
    color: #FFFFFF; 
    background-color: #000000;
    display:grid;
    justify-items: center;
}

.risk-warning {
	padding: 20px 0;
    min-width: 80%;
    width: 90%;
}


/* Call to action */
#cta {
    position: fixed;
    width: 100vw;
    height: 60px; 
    background-color:var(--excerpt-bg);
    bottom: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease;

    color: #FFFFFF;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
}

#cta-placeholder {
    height: 60px;
    background-color: var(--base_dark);
}

#cta a {
    color: #FFFFFF;
    text-decoration: none;
}

/* menu-button*/

#menu-button
{
  display: block;
  position: relative;
  margin-left: 5%;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menu-button a
{
  text-decoration: none;
  color: #021842;
  transition: color 0.3s ease;
}

#menu-button a:hover
{
    font-weight: bold;
}

#menu-button input
{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

#menu-button span
{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: black;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

#menu-button span:first-child
{
    transform-origin: 0% 0%;
}

#menu-button span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

#menu-button input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #021842; /* color de la cruz*/
}

#menu-button input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menu-button input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
    position: fixed;
    width: 300px;
    margin: -100px 0 0 -200px;
    padding: 50px;
    padding-top: 125px;

    background: #FFFFFF; 
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(100%, 0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

    height: 500vh;
    border-width: 0px 0px 0px 2px;
    border-color: rgb(92, 91, 91);
    border-style: none none none solid
}

#menu li
{
    padding: 10px 0;
    font-size: 22px;
}

#menu-button input:checked ~ ul
{
    transform: none;    
}