body {
    font-display: swap;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    text-transform: none;
    color: #666;
}

h1, h2, h3, h4, h5, h6, a, button {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

strong, b {
    font-weight: 600;
}

.btn {
    padding: 7px 15px;
    color: #fff;
    background-color: #63282C;
    border: 2px solid transparent;
    transition: .3s ease-in-out;
    font-size: .8rem;
}

@media only screen and (min-width: 560px) {
    .btn {
        padding: 10px 20px;
        font-size: .9rem;
    }
}

.btn:hover {
    border: 2px solid #63282C;
    color: #fff;
    background-color: transparent;
}

.logo img {
    width: 80px;
}

@media only screen and (min-width: 560px) {
    .logo img {
        width: 150px;
    }
}

.header-info h2{
    font-size: .9rem;
    line-height: 1.3;
    font-family: 'Oswald', sans-serif;
    color: #295422;
}

@media only screen and (min-width: 996px) {
    .header-info h2{
        font-size: 1.3rem;
    }
}

.header-principal {
    padding: 15px;
}

.info-empresa {
    font-size: .8rem;
    background-color: #2a5323;
    color: #fff;
    padding: 5px;
    display: none;
}

@media only screen and (min-width: 996px) {
    .info-empresa {
        display: block;
    }
}

.info-empresa i {
    color: #b9c9b7;
    margin-right: 5px;
}

.info-empresa span {
    margin-right: 30px;
}

.header-info {
    display: flex;
    justify-content: flex-end;
}

.header-info h2 span {
    color: #63282C;
}

.header-info .horario {
    display: none;
}

@media only screen and (min-width: 768px) {
    .header-info .horario {
        display: block;
    }

    .header-info h2:first-child {
        margin-right: 20px;
    }
}

.horario {
    margin-left: 10px;
}

.nav-toggler {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

@media only screen and (min-width: 768px) {
    .nav-toggler, .overlay {
        display: none;
    }

    .nav, .nav-toggler {
        border-top: 2px solid #eee;
        border-bottom: 2px solid #eee;
    }
}

.overlay {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    position: fixed;
    top: 3.5rem;
    right: 3.5rem;
    background: #37692e;
    z-index: 998;
    transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
    opacity: 0;
    overflow-y: hidden;
}

.main-nav {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    width: 0;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    color: #fff;
    font-size: 1.2rem;
    position: relative;
}

.nav-link:hover, .nav-link:focus {
    color: #fff;
}

.nav-link::before, .nav-link::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    content: '';
    opacity: 0;
    transition: .2s ease-in;
    transform: translateY(-15px);
}

.nav-link::before {
    top: 0;
    transform: translateY(48px);
}

.nav-link:hover::before, .nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover::before {
    transform: translateY(38px);
}

.nav-link:hover::after {
    transform: translateY(-5px);
}

@media only screen and (min-width: 768px) {
    .main-nav {
        opacity: 1;
        position: static;
        height: auto;
        width: 100%;
    }

    .close-nav {
        display: none;
    }

    .nav-list {
        position: static;
        top: 0;
        left: 0;
        transform: none;
        justify-content: center;
        flex-flow: row;
        padding: 5px 0;
    }

    .nav-link {
        color: #555;
        transition: .3s ease-in;
    }

    .nav-link:hover, .nav-link:focus {
        color: #63282C;
        opacity: .8;
    }
}

.nav-toggle-btn {
    padding: 10px 20px 15px;
    transition: .3s linear;
    margin: 0;
    cursor: pointer;
    text-align: right;
    display: inline-block;
}

.nav-toggle-btn:hover {
    color: #295422;
    opacity: .8;
}

.nav-toggle-text {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    margin-right: 2px;
    font-size: .9rem;
    position: relative;
    top: 9.5px;
}

.nav-icon-bar {
    position: relative;
}

.nav-icon-bar, .nav-icon-bar::before, .nav-icon-bar::after {
    width: 1.6rem;
    height: 3px;
    background-color: #888;
    display: inline-block;
    transition: all .2s linear;
}

.nav-icon-bar::before, .nav-icon-bar::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-btn:hover .nav-icon-bar,
.nav-toggle-btn:hover .nav-icon-bar::before,
.nav-toggle-btn:hover .nav-icon-bar::after {
    background-color: #295422;
}

.nav-icon-bar::before {
    top: -.55rem;
    width: 2.15rem;
    left: -9px;
}

.nav-toggle-btn:hover .nav-icon-bar::before {
    transform: scaleX(0.72);
    transform-origin: right;
}

.nav-icon-bar::after {
    top: .6rem;
}

.mostrar-nav ~ .overlay {
    transform: scale(80);
    opacity: 1;
}

.mostrar-nav ~ .main-nav {
    opacity: 1;
    width: 100%;
}

.close-nav {
    color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.close-nav:hover {
    opacity: .7;
}

.banner .col-12 {
    padding-left: 0;
    padding-right: 0;
}

.banner .container {
    max-width: 100%;
}

.banner-img, .banner-info {
    height: 50vh;
}

.banner-img {
    display: none;
}

@media only screen and (min-width: 768px) {
    .banner-img, .banner-info {
        height: 80vh;
    }

    .banner-img {
        display: block;
    }
}

.banner-img {
    background: url('../img/banner.jpg') center center no-repeat;
    background-size: cover;
}

.banner-info {
    background-color: #37692e;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-image: url('../img/banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
}

@media only screen and (min-width: 768px) {
    .banner-info {
        background-image: none;
    }
}

.banner-info p {
    font-size: .8rem;
    line-height: 1.6;
}

.banner-info h2 {
    font-size: 1.4rem;
    display: inline-block;
}

.banner-info h2:after {
    content: "";
    display: block;
    width: 70%;
    padding-top: 10px;
    border-bottom: 5px solid #b9c9b7;
    margin-bottom: 10px;
}

@media only screen and (min-width: 560px) {
    .banner-info p {
        font-size: .9rem;
    }
    
    .banner-info h2 {
        font-size: 2rem;
    }
}

.servicios {
    padding: 3rem 0;
}

.servicios .icono {
    margin-right: 25px;
    color: #63282C;
}

.servicios .descripcion h4 {
    text-transform: capitalize;
    font-size: 1.4rem;
    color: #295422;
    letter-spacing: 0;
}

.servicios .descripcion p {
    font-size: .9rem;
}

.acerca {
    padding: 5rem 0;
    background-color: #eee;
}

.acerca h2 {
    text-align: center;
    color: #295422;
}

.acerca h2:after {
    content: "";
    display: block;
    width: 50%;
    margin: 0 auto;
    padding-top: 10px;
    border-bottom: 5px solid #b9c9b7;
    margin-bottom: 10px;
}

@media only screen and (min-width: 560px) {
    .acerca h2:after {
        width: 20%;
    }
}

.acerca a {
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all .2s ease-in;
}

.acerca i {
    text-decoration: none;
    color: red;
    margin-right: 5px;
    opacity: .8;
}

.acerca a.link:hover,
.acerca a.link:focus {
    background: none;
    color: #007bff;
    opacity: 1;
    transform: scale(1.03);
    text-decoration: underline;
}

.acerca a:hover i,
.acerca a:focus i {
    text-decoration: none;
}

.acerca h4 {
    font-size: 1.2rem;
    text-transform: capitalize;
    letter-spacing: 0;
    color: #295422;
}

.acerca a:hover {
    opacity: .7;
    background-color: #295422;
    color: #fff;
    border-color: transparent;
}

.acerca p, .acerca li {
    font-size: .9rem;
}

.acerca img {
    max-width: 100%;
}

.acerca .container {
    margin-top: 3rem;
}

.acerca ul {
    padding-left: 15px;
}

/* PAGO INSIBS */
.pago-insibs {
    padding: 4rem 0;
    background: url(../img/pagoinsibs-bg.jpg) center center no-repeat/cover, rgba(0, 0, 0, .4);
    background-blend-mode: color-burn;
    box-shadow: 4px 5px 3px 3px rgba(0, 0, 0, .4);
}

.pago-insibs .col-md-6 {
    background-color: #295422;
    color: #fff;
    padding: 2.5rem 1.5rem;
    max-width: 37rem;
    border-radius: 5px;
}

.pago-insibs .col-md-6 img {
    max-width: 10rem;
    width: 100%;
    margin-bottom: 1rem;
}

.contacto h5 {
    font-size: 1rem;
    text-transform: capitalize;
}

.contacto h2:after {
    content: "";
    display: block;
    width: 50%;
    padding-top: 10px;
    border-bottom: 5px solid #37692e;
    margin-bottom: 10px;
}

.contacto {
    padding: 5rem 0;
    background-color: #333;
    color: #fff;
}

.contacto p {
    font-size: .9rem;
}

.contacto i {
    color: #37692e;
}

.contacto input, .contacto textarea, .contacto select {
    background-color: #444;
    color: #aaa;
    border-radius: 0;
    font-size: .9rem;
    border-color: transparent;
}

.contacto input::placeholder, .contacto textarea::placeholder {
    color: #aaa;
    font-size: .9rem;
}

.contacto input:hover, 
.contacto textarea:hover, 
.contacto select:hover, 
.contacto input:hover::placeholder, 
.contacto textarea:hover::placeholder,
.contacto input:focus, 
.contacto textarea:focus, 
.contacto select:focus, 
.contacto input:focus::placeholder, 
.contacto textarea:focus::placeholder {
    background-color: #444;
    border-color: #aaa;
    color: #eee;
    outline: 0;
    box-shadow: none;
}

.contacto .btn {
    background-color: #295422;
    border-radius: 5px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
}

.contacto .btn:hover,
.contacto .btn:focus {
    background-color: #b9c9b7;
    color: #295422;
    border-color: transparent;
}

.main-footer {
    padding: 5rem 0 0;
    background-color: #37692e;
    color: #fff;
    position: relative;
}

.main-footer .horario {
    margin-left: 0;
}

.main-footer h4 {
    text-transform: capitalize;
}

.main-footer .nav {
    border: none;
}

.main-footer .nav-item {
    margin-left: 30px;
    width: 20%;
}

.main-footer .nav-item:before {
    content: '\2192';
    position: absolute;
    left: 15px;
    transition: all .2s ease-in-out;
}

.main-footer .nav-link::before, .main-footer .nav-link::after {
    display: none;
}

.main-footer .nav-link {
    color: #fff;
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    padding-left: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    display: inline-block;
}

.main-footer .nav-item:hover::before,
.main-footer .nav-item:focus::before {
    transform: translateX(5px)
}

.main-footer small {
    background-color: #295422;
}