html {
    background: #007a78;
}

body {
    background-color: #007a78;
    font-family: 'Hind Madurai';
}

.post,
.page {
    margin: 0px !important;
}

#barrareservar-movil {
    position: fixed;
    bottom: 0px;
    z-index: 999999;
}


#cabecera {
    top: 0px;
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 20px 30px 0px 30px;
}

#hamburguer {
    position: fixed;
    right: 30px;
    top: 25px;
    z-index: 9999999999999
}

#menu {
    background: #007a78;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    text-align: left;
    top: 0;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 1100;
}

#menu.open {
    opacity: 1;
    visibility: visible;
}

#menu.open li:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#menu.open li:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#menu.open li:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

#menu.open li:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#menu.open li:nth-child(5) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

#menu.open li:nth-child(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

#menu.open li:nth-child(7) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

#menu.open li:nth-child(8) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

#menu.open li:nth-child(9) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

#menu.open li:nth-child(10) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

#menu.open li:nth-child(11) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

#menu.open li {
    -webkit-animation-duration: 1.0s;
    animation-duration: 1.0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

#menu ul:hover a {
    opacity: 0.5;
}

#menu ul a {
    -webkit-transform: translateZ(0);
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

#menu ul a:hover {
    opacity: 1;
}

#menu .main-nav {
    position: relative;
    /*top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
      */
}

#menu .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu .main-nav a {
    color: #1a171b;
    display: block;
    font-size: 24px;
    /*font-weight: bold;*/
    padding: 0px 10px;
    text-decoration: none;
    text-transform: uppercase;
}

#menu .main-nav a:first {
    padding-top: 0;
}

#menu .menu-footer {
    padding: 2rem;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

#menu .menu-footer ul {
    /* display: inline-block;*/
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu .menu-footer ul li {
    /*display: inline;*/
    margin: 0 1rem;
}

#menu .menu-footer a {
    font-size: 24px;
    color: #1a171b;
    text-decoration: none;
    text-transform: none;
}

.toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    float: right;
    height: 50px;
    outline: none;
    padding: 0;
    pointer-events: initial;
    position: relative;
    vertical-align: middle;
    width: 50px;
    z-index: 9999999;
}

.toggle-menu span {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 25px);
    position: absolute;
    top: calc(50% - 1px);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 50px;
}

.toggle-menu span:before,
.toggle-menu span:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 50px;

}

.toggle-menu span:before {
    top: 7px;
}

.toggle-menu span:after {
    top: -7px;
}


.toggle-menu.active span {
    background-color: transparent;
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
}

.toggle-menu.active span:before,
.toggle-menu.active span:after {
    -webkit-transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
}

.toggle-menu.active span:before {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu.active span:after {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.txtmenu {
    font-family: 'Inter';
    font-size: 24px;
    color: #fff;
    padding-left: 60px;
    padding-top: 10px;
}

/*segundo toggle menu*/
.toggle-menu-abierto {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    float: right;
    height: 50px;
    outline: none;
    padding: 0;
    pointer-events: initial;
    position: relative;
    vertical-align: middle;
    width: 50px;
    z-index: 9999999;
}

.toggle-menu-abierto span {
    background-color: #000;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 25px);
    position: absolute;
    top: calc(50% - 1px);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 50px;
}

.toggle-menu-abierto span:before,
.toggle-menu-abierto span:after {
    background-color: #000;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 50px;

}

.toggle-menu-abierto span:before {
    top: 7px;
}

.toggle-menu-abierto span:after {
    top: -7px;
}


.toggle-menu-abierto.active span {
    background-color: transparent;
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
}

.toggle-menu-abierto.active span:before,
.toggle-menu-abierto.active span:after {
    -webkit-transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
}

.toggle-menu-abierto.active span:before {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu-abierto.active span:after {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.txtmenu-abierto {
    font-family: 'Inter';
    font-size: 24px;
    color: #000;
    padding-left: 60px;
    padding-top: 10px;
}



/*RESERVA*/
#reserva {
    background: #fff;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    text-align: left;
    top: 0;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 9999999;
}

#reserva.open {
    opacity: 1;
    visibility: visible;
}

/*FIN RESERVA*/



.scrolled {
    background-color: #000 !important;
    height: 90px !important;
    transition: 0.3s;
}

.logo {
    position: fixed;
    top: 20px;
    left: 30px;
}

.favicon {
    position: fixed;
    top: 20px;
    left: 30px;
}

.visible {
    opacity: 1;
    transition: 0.3s;
}

.invisible {
    opacity: 0;
    transition: 0.3s;
}

#menuizquierda {
    position: fixed;
    z-index: 99;
    width: auto;
    bottom: 30px;
}

.ptit a.hfe-menu-item {
    font-size: 24px !important;
    font-weight: 200 !important;
}

.listaiconos .elementor-icon-list-item {
    align-items: flex-start !important;
}

.listaiconos .elementor-icon-list-icon {
    margin-top: 5px;
}

a.colornegro {
    color: #000 !important;

}

a.colornegro:hover {
    color: #efb810 !important;

}

a.colorblanco {
    color: #fff !important;

}

a.colorblanco:hover {
    color: #efb810 !important;

}

a.colorblanco i {
    color: #fff !important;
}

a.colorblanco:hover i {
    color: #efb810 !important;
}

a.colornegro i {
    color: #000 !important;
}

a.colornegro:hover i {
    color: #efb810 !important;
}



/*menu footer*/

.menufooter a {
    color: #fff;
}

.menufooter a:hover {

    color: #fff;
    text-decoration: underline;

}




/*BLOG*/
.blog main,
.single main {
    max-width: 780px;

    margin: 0px auto;
}

.blog main a,
.single main a,
.oferta-trabajo a {
    color: #fff !important;
    font-size: 32px;
    font-weight: 300;
    text-decoration: none;
}

.blog main .entry-content,
.single main .entry-content {
    color: #fff;
}

article {
    border-bottom: 1px solid #47aaa8;
    padding-bottom: 35px;
}

a.boton-leermas {
    font-size: 13px !important;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 5px 15px;
    font-weight: 400;
    margin-top: 25px;
    display: inline-block;
}

a.boton-leermas:hover {
    font-size: 13px !important;
    text-transform: uppercase;
    border: 1px solid #efb810;
    background-color: #efb810;
    padding: 5px 15px;
    font-weight: 400;
    margin-top: 25px;
    display: inline-block;
}

/*OFERTAS TRABAJO*/

.contenedor-ofertas-trabajo {}

.oferta-trabajo {
    border-left: 5px solid #efb810;
    padding: 25px;
    margin-bottom: 35px;
    display: block;
}

.titoferta {
    font-size: 26px;
    color: #fff;
    font-weight: 500;
}

.contoferta {
    font-family: 'Hind Madurai';
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.textpopup {
    text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.59);
}

article {
    border-bottom: 1px solid #47aaa8;
    padding: 0px 20px 35px 20px;
}

@media only screen and (max-width: 800px) {

    .wpcf7 input[type=text],
    .wpcf7 input[type=email],
    .wpcf7 textarea {
        color: #666;
        border: 1px solid #ccc;
        border-radius: 3px;
        padding: 3px;
        width: 100%;
    }
}