

/*
@media screen and (max-width: 843px)
@media screen and (max-width: 768px)
@media screen and (max-width: 480px) {
    ...
}
*/


.wrapper {
    width: 90%;
    max-width: 71.375rem;
    margin: 0 auto;
}


#sky {
    background-color: var(--blueDark);
    height: var(--topMenuHeight);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 101;
}

#topMenu {
    display: flex;
    height: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

#cellMobileMenuButton {
    display: none;
}

@media screen and (max-width: 480px) {
    .logoImage {
        width: 140px;
    }
}

@media screen and (max-width: 568px) {
    #menu_desktop, #cellLangMenuDesk {
        display: none;
    }
    #cellMobileMenuButton {
        display: block;
    }
}

@media screen and (max-width: 824px) and (orientation: landscape) {
    #menu_desktop, #cellLangMenuDesk {
        display: none;
    }
    #cellMobileMenuButton {
        display: block;
    }
    #menuHolder {
        height: var(--topMenuHeight);
    }
}



/*    -------------   mobile menu    -------------    */


#menuMobile {    
    position: fixed;
    width: 100%;
    height: 100%;
    top: var(--topMenuHeight);
    left: 0;
    z-index: 100;
    background-color: var(--blueMiddle);
    transition: .5s ease-out;
}

#menuMobile.hidden {    
    opacity: 0;
    left: -100%;
}

#menuMobile ul {    
    list-style: none;
    text-transform: uppercase;
}

#menuMobile a {    
    color: #ffffff;
    text-decoration: none;
    font-family: 'MuseoThin';
}

#menuMobile a.selected {
    color: var(--menuSelectedColor);
}

ul#mobile_menu_list {
    margin: 34px 10px 44px 0px;
    font-size: 22px;
    line-height: 54px;
}

@media screen and (max-height: 568px) {
    ul#mobile_menu_list {
        line-height: 42px;
        margin-top: 26px;
        margin-bottom: 32px;
    }
}

#mobile_lang {
    border-top: 1px solid white;
    padding-top: 34px;
}

#mobile_lang li {
    display: inline-block;
    color: var(--menuSelectedColor);    
    font-size: 16px;
    margin-left: 14px;
}



/*    -------------   hamburger    -------------    */

.mobile-hamburger {
    width: 30px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-hamburger div {
    background-color: #ffffff;
    /*width: 30px;*/
    height: 4px;
    border-radius: 2px;
}

.mobile-hamburger div:first-of-type {
    -ms-transform: translateY(-3px) rotate(0deg);
    transform: translateY(-3px) rotate(0deg);
}

.mobile-hamburger div:last-of-type {
    -ms-transform: translateY(3px) rotate(0deg);
    transform: translateY(3px) rotate(0deg);
}

.mobile-hamburger div {
    transition: .5s ease-out;
}

.openMobileMenu .mobile-hamburger div:first-of-type {
    transform: translateY(2px) rotate(45deg);
}

.openMobileMenu .mobile-hamburger div:last-of-type {
    transform: translateY(-2px) rotate(-45deg);
}


/*    -------------  color text block    -------------    */

.bloque {
    padding: 6rem 0;
}

.block_color_white {
    background-color: #ffffff;
    color: #051D49;
    font-family: 'MuseoThin';
}

.block_color_blue {
    background-color: #2576C0;
    color: #ffffff;
    font-family: 'MuseoUltraThin';
}

.block_color_navy {
    background-color: #000046;
    color: #ffffff;
    font-family: 'MuseoUltraThin';
}


.block_color_red {
    background-color: #ff0000;
    color: #ffffff;
    font-family: 'MuseoUltraThin';
}



.block_dos_columnas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: row;
}

.block_dos_columnas > h1, .block_dos_columnas > div {
    width: 45%;
}

.block_dos_columnas > h1 {
    font-size: 36px;
    line-height: 130%;
}

.block_dos_columnas > h1 a {
    color: #2576C0;
}

.block_dos_columnas > div p {
    margin-bottom: 16px;
    font-size: 17px;    
    line-height: 130%;
}

.block_dos_columnas > div p:last-of-type {
    margin: auto auto 50px auto;
}


.boton_turquesa {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    color: white;
    background: #48adff;
    cursor: pointer;
}

.block_dos_columnas a:hover {
    opacity: 0.7;
}


@media screen and (max-width: 480px) {
    .bloque {
       padding: 4rem 0;
    }
    .block_dos_columnas {
       flex-direction: column;
    }
    .block_dos_columnas > h1, .block_dos_columnas > div {
       width: 93%;
    }
    .block_dos_columnas > h1 {
       font-size: 32px;
       margin-bottom: 2rem;
    }
}


/*    -------------   form    -------------    */

#formFields input {
    background-color: #17487F;
    color: #ffffff;
    width: 80%;
    border: 0px;
    font-size: 1rem;
    padding: 7px 10px;
    margin-bottom: 24px;
    display: block;
}

#formFields input.bad {
    border: 2px solid red;
}

#formFields input:last-of-type {
    margin-bottom: 52px;
}

input::placeholder {
    color: #6C87AC;
}

input:-ms-input-placeholder {
    color: #6C87AC;
}

input::-ms-input-placeholder {
    color: #6C87AC;
}

#messWait, #messGood, #messError {
    display: none;
}

@media screen and (max-width: 480px) {
    #formFields input {
       width: 100%;
    }
}












.imagus_simplicus img {
    width: 100vw;
    display: block;
}







/*    -------------  stinky blocks    -------------    */

#stinky_columns {
    margin-top: 200px;
}

.item_block {
    /*overflow: hidden;*/
    /*position: -webkit-sticky;
    position: sticky;
    top: 100px;*/
    display: flex;
    /*flex-direction: row;*/
    align-items: flex-start;
    flex-wrap: wrap;
}

.item_block > div {
    /*width: 50%;*/
    flex: 0 50%;
}

.item_block > div:first-of-type {
   /* position: -webkit-sticky;
    position: sticky;
    top: 50px;*/
    
}

.item_block > div:last-of-type {
    /*float: right;*/
}

.item_block p {
    margin: 50px;
    font-size: 30px;
    line-height: 150%;
}

.item_block h1 {
    margin: 50px;
    font-size: 70px;
    /*line-height: 150%;*/
    font-family: "MontserratBlack"
}

.item_block img {
    width: 100%;
    display: block;
    margin: 50px 0;

}

.stnk {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}










/*    -------------   footer    -------------    */

#footer {
    background-color: #000046;
    padding: 50px 0;
}

#footer a:hover {
    opacity: 0.7;
}

.footer_first_row {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 480px) {
    #logo_footer {
       display: none;
    }
}





.social-follow {
    /*float: right;*/
    list-style: none;
}

.social-follow li {
    display: inline-block;
    margin: 0;
    margin-right: 8px;
}

.social-follow li a {
    padding: 0;
    margin: 0;
    font-size: 28px;
    line-height: 1;
    color: #5BBEFF;
    width: 30px;
    height: 30px;
    display: block;
    margin-left: 0;
    position: relative;
    top: 0;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    text-align: right;
}

.social-follow a span, .social-follow button span, .social-share a span, .social-share button span {
    display: none;
}

.facebook::before, .google_plus::before, .instagram::before, .linkedin::before, .twitter::before, .youtube::before {
    display: inline-block;
    font-family: Icons;
}

.facebook::before { content: "\e802"; }
.youtube::before { content: "\e80c"; }
.instagram::before { content: "\e804"; }
.twitter::before { content: "\e807"; }

.social-follow li a:hover {
    top: -4px;
    opacity: 0.7;
}









.footer_second_row {
    padding: 10px 0 30px;
}

#footer_menu li {
    padding: 0 20px 0 0;
    display: inline-block;
    font-size: 15px;
}

#footer_menu a {
    color: #5bbeff;    
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    #footer_menu li {
        display: block;
        /*font-size: 16px;*/
        line-height: 200%;
        xfont-family: 'MuseoRegular';
    }
}

.footer_copy {
    color: #397e9a;
    font-size: 13px;
}













