* {
    box-sizing: border-box;
    font-family: Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

p {
    font-family: Lato, Arial, sans-serif;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

h1,
h2,
h3,
h4 {
    font-family: Poppins, Arial, sans-serif;
    color: #001a71;
}

@-moz-keyframes fade-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
        filter: blur(2px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@-webkit-keyframes fade-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
        filter: blur(2px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@-o-keyframes fade-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
        filter: blur(2px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fade-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
        filter: blur(2px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@-moz-keyframes background-animation {
    0% {
        background-size: 120%;
        background-position: 0 0;
    }

    to {
        background-size: 100%;
        background-position: 40% 0;
    }
}

@-webkit-keyframes background-animation {
    0% {
        background-size: 120%;
        background-position: 0 0;
    }

    to {
        background-size: 100%;
        background-position: 40% 0;
    }
}

@-o-keyframes background-animation {
    0% {
        background-size: 120%;
        background-position: 0 0;
    }

    to {
        background-size: 100%;
        background-position: 40% 0;
    }
}

@keyframes background-animation {
    0% {
        background-size: 120%;
        background-position: 0 0;
    }

    to {
        background-size: 100%;
        background-position: 40% 0;
    }
}

.service-site .service-section {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

@media screen and (max-width: 680px) {
    .service-site .service-section {
        flex-wrap: wrap;
    }
}

.service-site .service-section .text-container {
    width: 58%;
    grid-area: text-container;
}

    .service-site .service-section .text-container h2 {
        margin-top: .5em;
    }

    .service-site .service-section .text-container p {
        margin-bottom: 20px;
        line-height: 1.6em;
        opacity: .7;
    }

    .service-site .service-section .text-container .italic {
        font-style: italic;
    }

.service-site .service-section .images-container {
    width: 38%;
    margin-bottom: 20px;
}

    .service-site .service-section .images-container .image {
        width: 100%;
        height: 460px;
        border-radius: 5px;
        margin-bottom: 10px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }

@media screen and (max-width: 680px) {
    .service-site .service-section .images-container .image {
        height: 200px;
    }
}

@media screen and (max-width: 680px) {
    .service-site .service-section .images-container,
    .service-site .service-section .text-container {
        width: 100%;
    }
}

.form-container {
    background: #f3f3f8;
}

    .form-container h1 {
        line-height: 1.1em;
    }

    .form-container p {
        margin-top: 10px;
        font-size: 1.2em;
        opacity: .8;
    }

    .form-container form {
        margin-top: 40px;
    }

        .form-container form .form-row {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

            .form-container form .form-row .column {
                width: 48%;
                display: flex;
                flex-direction: column;
            }

@media screen and (max-width: 680px) {
    .form-container form .form-row .column {
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    .form-container form .form-row .column:last-child {
        margin-top: 30px;
    }
}

.form-container form .form-row .column .input-group {
    position: relative;
}

    .form-container form .form-row .column .input-group:last-child input,
    .form-container form .form-row .column .input-group:last-child textarea {
        margin-bottom: 0;
        resize: none;
    }

    .form-container form .form-row .column .input-group input,
    .form-container form .form-row .column .input-group textarea {
        outline: 0;
        height: 50px;
        width: 100%;
        padding: 20px;
        margin-bottom: 30px;
        transition: all .3s ease-in-out;
        border: 1px solid #d3d3d3;
    }

        .form-container form .form-row .column .input-group input:focus,
        .form-container form .form-row .column .input-group textarea:focus {
            outline: 0;
            box-shadow: 0 0 1px 2px rgba(204, 132, 67, .5);
        }

		.form-container form .form-row .column .input-group label {
			font-size: .85rem;
			position: absolute;
			top: -10px !important;
			left: 0 !important;
			opacity: 1;
			pointer-events: none;
			transition: all .2s ease-in-out;
			padding-left: 5px;
			background: transparent;
		}


        .form-container form .form-row .column .input-group label.filled {
            font-size: .7rem;
            margin-bottom: 5px;
            top: -20px;
            left: 0;
        }

    .form-container form .form-row .column .input-group .form-input {
        transition: border .3s ease-in-out;
    }

        .form-container form .form-row .column .input-group .form-input.valid {
            border-bottom: 2px solid #32cd32;
        }

        .form-container form .form-row .column .input-group .form-input.invalid {
            border-bottom: 2px solid orange;
        }

        .form-container form .form-row .column .input-group .form-input[required].invalid {
            border-bottom: 2px solid red !important;
        }

    .form-container form .form-row .column .input-group .required-symbol {
        font-weight: 700;
        color: #cc8443;
    }

.form-container form .form-row .grow-group {
    flex-grow: 1;
}

    .form-container form .form-row .grow-group textarea {
        height: 100% !important;
    }

@media screen and (max-width: 680px) {
    .form-container form .form-row input[type=submit] {
        width: 100%;
    }
}

.form-container form .form-row input[type=submit].disabled {
    opacity: .3;
    pointer-events: none;
}

.form-container form #submit-container {
    width: unset;
}

.form-container .captcha-alert,
.form-container .top-form-alert {
    display: block;
    font-size: .8rem;
    opacity: .7;
    margin: 15px 0;
}

    .form-container .captcha-alert.pull-right,
    .form-container .top-form-alert.pull-right {
        text-align: right;
        display: block;
    }

.form-container .top-form-alert {
    margin-top: 15px;
}

.navbar .top-navbar {
    background-color: #00599a;
    height: 40px;
    padding: 0 5%;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    width: 100%;
    z-index: 10;
}

    .navbar .top-navbar a {
        color: #fff;
        line-height: 40px;
        margin-left: 30px;
        font-size: .9em;
        opacity: .8;
        transition: opacity .1s ease-in-out;
    }

        .navbar .top-navbar a:hover {
            opacity: 1;
        }

        .navbar .top-navbar a i {
            margin-right: 7px;
            font-size: .9em;
        }

.navbar .top-navbar-placeholder {
    height: 40px;
    width: 100%;
    visibility: hidden;
}

.navbar .main-navbar {
    height: 120px;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 680px) {
    .navbar .main-navbar {
        padding: 10px 5%;
        height: auto;
    }
}

.navbar .main-navbar .logo-container {
    width: 20%;
    padding-top: 10px;
}

@media screen and (max-width: 680px) {
    .navbar .main-navbar .logo-container {
        width: 80%;
        padding-top: 0;
    }
}

.navbar .main-navbar .logo-container .logo {
    background-image: url(img/logos/logo_with_text.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0;
    height: 60px;
}

.navbar .main-navbar nav ul {
    display: flex;
    justify-content: space-between;
}

    .navbar .main-navbar nav ul li {
        list-style: none;
        display: inline;
        text-align: center;
    }

        .navbar .main-navbar nav ul li a {
            color: #001a71;
            margin-left: 20px;
            line-height: 80px;
            font-weight: 500;
            white-space: nowrap;
            transition: color .2s ease-in-out;
        }

            .navbar .main-navbar nav ul li a:hover {
                color: #cc8443;
            }

       /* .navbar .main-navbar nav ul li:last-child a {
            display: inline-block;
            padding: 5px 40px;
            background-color: #cc8443;
            color: #fff;
            line-height: 40px;
            margin-top: 15px;
            margin-left: 60px;
            border-radius: 5px;
            opacity: .9;
            transition: opacity .2s ease-in-out;
        }

            .navbar .main-navbar nav ul li:last-child a:hover {
                opacity: 1;
            }
		Comentado para sacar el boton de la pagina de inicio que antes era Solicitar personal*/ 

@media screen and (max-width: 680px) {
    .navbar .main-navbar nav {
        display: none;
    }
}

.navbar .main-navbar .mobile-menu-toggle-icon {
    padding-top: 10px;
    font-size: 2em;
    cursor: pointer;
    margin-top: calc(40px - 1em);
    color: #00599a;
}

@media screen and (min-width: 680px) {
    .navbar .main-navbar .mobile-menu-toggle-icon {
        display: none;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

    .menu-overlay .sidebar {
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 0;
        left: 0;
        background-color: #cc8443;
        z-index: 100;
        padding: 20px;
        box-shadow: 0 0 20px #000;
        transition: all .3s ease-in-out;
    }

        .menu-overlay .sidebar .logo-container {
            margin-top: 30px;
            margin-bottom: 50px;
        }

@media screen and (max-width: 680px) {
    .menu-overlay .sidebar .logo-container {
        margin: 10px 0 20px;
    }
}

.menu-overlay .sidebar .logo-container .logo {
    background-image: url(img/logos/logo.png);
    background-position: 50%;
    background-size: contain;
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    opacity: .7;
}

@media screen and (max-width: 680px) {
    .menu-overlay .sidebar .logo-container .logo {
        display: none;
    }
}

.menu-overlay .sidebar .logo-container .company-name {
    text-align: center;
    margin-top: 10px;
    left: 0;
    top: 0;
}

    .menu-overlay .sidebar .logo-container .company-name h1 {
        color: #000;
        opacity: .6;
        font-weight: 600;
        text-transform: uppercase;
    }

@media screen and (max-width: 680px) {
    .menu-overlay .sidebar .logo-container .company-name h1 {
        font-size: 2em;
        line-height: 1em;
    }
}

.menu-overlay .sidebar ul {
    list-style: none;
    text-align: center;
}

    .menu-overlay .sidebar ul li a {
        color: #000;
        font-size: 1.5em;
        opacity: .7;
        display: inline-block;
        padding: 10px 0;
        position: relative;
    }

@media screen and (max-width: 680px) {
    .menu-overlay .sidebar ul li a {
        font-size: 1em;
    }
}

.menu-overlay .sidebar ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 50px;
    left: calc(50% - 25px);
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.menu-overlay .sidebar ul li:last-child a:after {
    display: none;
}

.menu-overlay .sidebar .sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #955c28;
    border-top: 2px solid #6b421d;
}

    .menu-overlay .sidebar .sidebar-footer .location-container .ubication {
        margin: 15px 0;
        text-align: center;
    }

        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .address,
        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .name,
        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .tel {
            margin-bottom: 2px;
            opacity: .7;
        }

        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .name {
            font-weight: 500;
        }

        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .address,
        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .tel {
            font-size: .8em;
        }

        .menu-overlay .sidebar .sidebar-footer .location-container .ubication .tel {
            opacity: .5;
        }

    .menu-overlay .sidebar .sidebar-footer .social-links-container {
        display: flex;
        justify-content: space-evenly;
        background: #6b421d;
        padding: 10px;
    }

        .menu-overlay .sidebar .sidebar-footer .social-links-container i {
            color: #e6c2a1;
            font-size: 1.5em;
        }

.menu-overlay .sidebar-underlay {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: .8;
    z-index: 99;
    transition: all .3s ease-in-out;
}

.menu-overlay-hidden {
    pointer-events: none;
}

    .menu-overlay-hidden .sidebar {
        visibility: hidden;
        position: absolute;
        left: -250px;
    }

    .menu-overlay-hidden .sidebar-underlay {
        opacity: 0;
        pointer-events: none;
    }

.hero {
    background-color: rgba(204, 132, 67, .2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    min-height: calc(100vh - 160px);
    display: flex;
    justify-content: flex-end;
    padding: 30px 5%;
    position: relative;
}

    .hero:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 0;
    }

@media screen and (max-width: 680px) {
    .hero:before {
        opacity: .4;
    }
}

.hero .hero-content {
    width: 49%;
}

@media screen and (max-width: 1080px) {
    .hero .hero-content {
        width: 75%;
    }
}

@media screen and (max-width: 680px) {
    .hero .hero-content {
        width: 100%;
    }
}

.hero .hero-content h1 {
    opacity: 0;
    text-align: right;
    line-height: 1.2em;
    color: #001a71;
}

@media screen and (max-width: 680px) {
    .hero .hero-content h1 {
        font-size: 1.6em;
    }
}

@media screen and (min-width: 1080px) {
    .hero .hero-content h1 {
        font-size: 2.3em;
    }
}

.hero .hero-content .hero-modules-container {
    padding-top: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
}

@media screen and (max-width: 680px) {
    .hero .hero-content .hero-modules-container {
        padding-top: 20px;
        flex-wrap: wrap;
        margin-bottom: 0;
    }
}

.hero .hero-content .hero-modules-container .hero-link-module {
    height: 230px;
    background-color: hsla(0, 0%, 100%, .7);
    padding: 15px 10px 90px;
    border-radius: 5px;
    width: 48%;
    position: relative;
    opacity: 0;
    transition: all .2s ease-in-out;
    bottom: 0;
    float: right;
}

hero-modules-container .hero-link-module:nth-child(1) {
    margin-right: 2%;
}

hero-modules-container .hero-link-module:nth-child(2) {
    margin-left: 2%;
}

@media screen and (max-width: 680px) {
    .hero .hero-content .hero-modules-container .hero-link-module {
        width: 100%;
        margin-bottom: 30px;
    }
}

.hero .hero-content .hero-modules-container .hero-link-module .title {
    font-family: Poppins, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.hero .hero-content .hero-modules-container .hero-link-module .paragraph {
    margin-bottom: 5px;
    opacity: .8;
    font-size: .9em;
}

.hero .hero-content .hero-modules-container .hero-link-module .cta {
    margin-top: 30px;
    display: inline-block;
    width: calc(100% - 20px);
    height: 50px;
    padding: 0 10px;
    line-height: 50px;
    background: #cc8443;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    bottom: 15px;
    opacity: .9;
    border-bottom: 1px solid #804f23;
    transition: opacity .2s ease-in-out;
}

    .hero .hero-content .hero-modules-container .hero-link-module .cta:hover {
        opacity: 1;
    }

.hero-content .hero-modules-container .hero-link-module,
.hero-content h1 {
    animation-name: fade-up;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: 2.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.hero-content .hero-modules-container .hero-link-module {
    animation-delay: 2.75s;
}

    .hero-content .hero-modules-container .hero-link-module:last-child {
        animation-delay: 3s;
    }

#index .hero {
    background-position: top;
}

@media screen and (max-width: 680px) {
    #index .hero {
        background-position: 20%;
    }
}

.thin-header {
    background-color: #f3f3f8;
    padding: 20px 5%;
}

@media screen and (max-width: 680px) {
    .thin-header {
        padding: 30px 5%;
    }
}

.thin-header h1 {
    line-height: 1em;
}

.thin-header .subtitle {
    margin-top: 10px;
}

.step-container {
    margin-bottom: 40px;
}

    .step-container .step-title {
        margin-bottom: 10px;
    }

        .step-container .step-title .step-number,
        .step-container .step-title h2 {
            display: inline;
            font-size: 2em;
            line-height: 1em;
        }

        .step-container .step-title .step-number {
            margin-right: 10px;
            font-size: 2em;
            font-family: Poppins, Arial, sans-serif;
            font-weight: 600;
            color: #cc8443;
        }

    .step-container .paragraphs-container p {
        margin-bottom: 10px;
        opacity: .8;
        line-height: 1.5em;
    }

.section {
    padding: 40px 5%;
}

    .section h2 {
        font-size: 2em;
        margin-bottom: 15px;
        line-height: 1.2em;
        text-align: left;
    }

    .section .link-module-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .section .text-container p {
        opacity: .7;
    }

    .section#our-services {
        background: #f5f5f5;
        padding-bottom: 0;
    }

        .section#our-services .link-module-container {
            flex-wrap: wrap;
        }

            .section#our-services .link-module-container:hover .regular-link-module {
                opacity: .7;
            }

            .section#our-services .link-module-container a {
                width: 32%;
                margin-right: 1px;
                width: 32%;
            }

                .section#our-services .link-module-container a .regular-link-module {
                    position: relative;
                    bottom: 0;
                    transition: all .2s ease-in-out;
                }

                .section#our-services .link-module-container a:hover .regular-link-module {
                    opacity: 1 !important;
                    bottom: 5px;
                    box-shadow: 0 5px 49px #d3d3d3;
                }

@media screen and (max-width: 680px) {
    .section#our-services .link-module-container a {
        width: 100%;
        margin-bottom: 15px;
    }
}

.section#how-we-work {
    background: #f5f5f5;
    padding-bottom: 0;
}

@media screen and (max-width: 680px) {
    .section#how-we-work .link-module-container {
        flex-wrap: wrap;
    }
}

.section#who-we-are .main-data-container {
    display: grid;
    grid-template-columns: 55% 40%;
    grid-template-rows: auto;
    grid-template-areas: "text logo";
    grid-column-gap: 5%;
    margin-bottom: 10px;
}

@media screen and (max-width: 680px) {
    .section#who-we-are .main-data-container {
        grid-template-columns: 100%;
        grid-template-rows: 300px;
        grid-template-areas:
            "logo"
            "text";
        grid-row-gap: 20px;
    }
}

.section#who-we-are .main-data-container .text-container {
    grid-area: text;
    padding: 100px 0;
}

@media screen and (max-width: 680px) {
    .section#who-we-are .main-data-container .text-container {
        padding: 0;
    }
}

.section#who-we-are .main-data-container .text-container p {
    margin-bottom: 20px;
}

@media screen and (max-width: 680px) {
    .section#who-we-are .main-data-container .text-container p {
        text-align: justify;
    }
}

.section#who-we-are .main-data-container .text-container p:last-child {
    margin-top: 40px;
}

.section#who-we-are .main-data-container .logo-container {
    grid-area: logo;
}

@media screen and (max-width: 680px) {
    .section#who-we-are .main-data-container .logo-container {
        margin-bottom: 20px;
    }
}

.section#who-we-are .main-data-container .logo-container .logo {
    height: 100%;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.section#our-services-container {
    background: #fff;
}

@media screen and (max-width: 680px) {
    .section#our-services-container {
        padding-bottom: 10px;
    }
}

.section#our-services-container .link-module-container {
    flex-wrap: wrap;
    justify-content: space-evenly;
}

    .section#our-services-container .link-module-container:hover a {
        opacity: .7;
    }

    .section#our-services-container .link-module-container a {
        width: 32%;
        margin-bottom: 40px;
        transition: all .2s ease-in-out;
    }

@media screen and (max-width: 680px) {
    .section#our-services-container .link-module-container a {
        width: 100%;
    }
}

.section#our-services-container .link-module-container a:hover {
    opacity: 1;
    transform: translateY(-10px);
}

.section#our-services-container .link-module-container a .regular-link-module {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 680px) {
    .section#our-services-container .link-module-container a .regular-link-module .image-container {
        height: 200px;
    }
}

.section#our-services-container .link-module-container a .regular-link-module .details-container {
    min-height: 220px;
}

@media screen and (max-width: 680px) {
    .section#our-services-container .link-module-container a .regular-link-module .details-container {
        min-height: unset;
    }
}

.section#other-services-container {
    display: block;
}

    .section#other-services-container .service-group {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        flex-direction: row-reverse;
    }

@media screen and (max-width: 680px) {
    .section#other-services-container .service-group {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 680px) {
    .section#other-services-container .service-group .images-container,
    .section#other-services-container .service-group .text-container {
        width: 100% !important;
    }
}

.section#other-services-container .service-group .text-container {
    width: 58%;
}

.section#other-services-container .service-group .images-container {
    width: 38%;
}

@media screen and (max-width: 680px) {
    .section#other-services-container .service-group .images-container .image {
        height: 200px;
        display: none;
    }
}

@media screen and (max-width: 680px) {
    .section#other-services-container .service-group .images-container .image:first-child {
        display: block !important;
    }
}

.section#faq-container .question-container {
    margin-bottom: 50px;
}

    .section#faq-container .question-container h2 {
        font-size: 1.3em;
    }

    .section#faq-container .question-container p {
        text-align: justify;
        margin-bottom: 20px;
        line-height: 1.5em;
    }

.section#what-sets-us-apart .image {
    background-size: contain;
    height: 100%;
}

@media screen and (max-width: 680px) {
    .section#what-sets-us-apart .image {
        height: 200px;
    }
}

.section#our-history {
    background-color: #f3f3f8;
    display: block;
}

    .section#our-history .text-container {
        width: 100%;
    }

        .section#our-history .text-container .grid-container {
            width: 100%;
            display: grid;
            grid-template-columns: 25% 25% 4% 38%;
            grid-template-rows: repeat(2, auto);
            grid-column-gap: 2%;
            grid-row-gap: 30px;
            grid-template-areas:
                "boy-image paragraph-1 paragraph-1 woman-image"
                "paragraph-2 paragraph-2 paragraph-2 car-image";
        }

@media screen and (max-width: 680px) {
    .section#our-history .text-container .grid-container {
        grid-template-columns: 100%;
        grid-template-rows: 200px auto 200px auto auto 200px auto;
        grid-template-areas:
            "woman-image"
            "paragraph-1"
            "boy-image"
            "paragraph-2"
            "car-image";
    }
}

.section#our-history .text-container .grid-container .paragraph-1 {
    grid-area: paragraph-1;
}

.section#our-history .text-container .grid-container .paragraph-2 {
    grid-area: paragraph-2;
}

.section#our-history .text-container .grid-container .paragraph-3 {
    grid-area: paragraph-3;
}

.section#our-history .text-container .grid-container .paragraph-4 {
    grid-area: paragraph-4;
}

.section#our-history .text-container .grid-container .image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}

.section#our-history .text-container .grid-container #rosalia {
    grid-area: woman-image;
}

.section#our-history .text-container .grid-container #boy {
    grid-area: boy-image;
}

.section#our-history .text-container .grid-container #car {
    grid-area: car-image;
}

.section#who-is-enrique-barrios .image {
    background-size: contain;
    height: 80%;
}

@media screen and (max-width: 680px) {
    .section#who-is-enrique-barrios .image {
        height: 200px;
    }
}

.blue-bar {
    background: #00599a;
    color: #fff;
    text-align: -webkit-center;
    padding: 30px 1%;
}

    .blue-bar:hover p {
        opacity: 1;
    }

    .blue-bar p {
        font-size: 2em;
        font-family: Lato, Arial, sans-serif;
        display: inline-block;
        opacity: .8;
        transition: opacity .2s ease-in-out;
    }

@media screen and (max-width: 680px) {
    .blue-bar p {
        font-size: 1.5em;
    }
}

.blue-bar a {
    color: #fff;
}

.link-module-container a {
    width: 49%;
}

    .link-module-container a .regular-link-module {
        border-radius: 5px;
        background: #fff;
        box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    }

        .link-module-container a .regular-link-module .image-container {
            background-size: cover;
            background-position: 50%;
            background-repeat: no-repeat;
            height: 200px;
            border-radius: 5px 5px 0 0;
        }

@media screen and (min-width: 1800px) {
    .link-module-container a .regular-link-module .image-container {
        height: 350px;
    }
}

.link-module-container a .regular-link-module .details-container {
    padding: 30px;
    min-height: 174px;
}

    .link-module-container a .regular-link-module .details-container h3,
    .link-module-container a .regular-link-module .details-container p {
        color: #000;
    }

    .link-module-container a .regular-link-module .details-container h3 {
        margin-bottom: 10px;
        font-size: 1.3em;
        line-height: 1.2em;
    }

    .link-module-container a .regular-link-module .details-container p {
        font-size: .9em;
        opacity: .7;
        line-height: 1.5em;
    }

@media screen and (min-width: 1800px) {
    .link-module-container a .regular-link-module .details-container p {
        font-size: 1.1em;
    }
}

.lower-link-container {
    padding-bottom: 50px;
    display: flex;
    width: 100%;
}

    .lower-link-container a,
    .lower-link-container input[type=submit] {
        width: 250px;
        height: 50px;
        display: inline-block;
        text-align: center;
        color: #fff;
        background: #cc8443;
        border-radius: 5px;
        padding: 15px 5px;
        border: 0;
        font-weight: 500;
        opacity: .9;
        transition: opacity .2s ease-in-out;
    }

        .lower-link-container a:hover,
        .lower-link-container input[type=submit]:hover {
            opacity: 1;
        }

@media screen and (max-width: 680px) {
    .lower-link-container a,
    .lower-link-container input[type=submit] {
        width: 100%;
    }
}

.lower-link-container input[type=submit] {
    cursor: pointer;
    margin-top: 20px;
    width: 200px;
    font-size: 1em;
}

.lower-link-container.push-right {
    justify-content: flex-end;
}

.map-container {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 680px) {
    .map-container {
        flex-wrap: wrap;
    }
}

.map-container .map-module {
    width: 48%;
}

@media screen and (max-width: 680px) {
    .map-container .map-module {
        width: 100%;
        margin-bottom: 40px;
    }
}

.map-container .map-module .title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.map-container .map-module .tel,
.map-container .map-module address {
    font-style: normal;
    opacity: .7;
}

.map-container .map-module .subtitle,
.map-container .map-module .tel,
.map-container .map-module address {
    line-height: 1.5em;
}

.map-container .map-module iframe {
    margin-top: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.step-module {
    background: #fff;
    width: 23%;
    padding: 25px 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    border-radius: 5px;
    animation: fade-up .5s ease-in-out .25s 1 forwards;
}

@media screen and (max-width: 680px) {
    .step-module {
        width: 100%;
        margin-bottom: 15px;
    }
}

.step-module .icon-container {
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}

.step-module .title-container {
    font-size: .9em;
    margin-bottom: 15px;
}

    .step-module .title-container span {
        font-family: Poppins, Arial, sans-serif;
        font-weight: 600;
    }

    .step-module .title-container .step-number {
        font-size: 1.8em;
        opacity: .7;
        margin-right: 3px;
        color: #cc8443;
    }

    .step-module .title-container .title {
        font-size: 1.8em;
        color: #00599a;
    }

.step-module .paragraph-container p {
    opacity: .7;
    font-size: .9em;
    text-align: justify;
}

.vp-overlay {
    background: #cc8443;
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    transition: all .5s ease-in-out;
    z-index: 25;
}

    .vp-overlay .logo {
        background-image: url(img/logos/logo.png);
        background-position: 50%;
        background-size: contain;
        width: 300px;
        height: 300px;
        position: relative;
        top: calc(50vh - 150px);
        left: calc(50vw - 150px);
        background-repeat: no-repeat;
        transform: rotateY(90deg);
        filter: grayscale(100%);
        opacity: .4;
        animation-name: fade-up-ol;
        animation-duration: 1s;
        animation-delay: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

.overlay-hidden {
    display: block;
    opacity: 0;
    pointer-events: none;
}

.go-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #cc8443;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 20;
    transition: all .5s ease-in-out;
    filter: blur(0);
}

    .go-up.go-up-hidden {
        bottom: 10px;
        opacity: 0;
        filter: blur(3px);
    }

@-moz-keyframes fade-up-ol {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: .4;
    }
}

@-webkit-keyframes fade-up-ol {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: .4;
    }
}

@-o-keyframes fade-up-ol {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: .4;
    }
}

@keyframes fade-up-ol {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: .4;
    }
}

footer {
    padding: 40px 5%;
    background: #e6e6e6;
}

    footer .footer-container {
        display: grid;
        grid-template-columns: 1.5fr 2.5fr 1.5fr 2fr;
        grid-template-rows: auto;
        grid-template-areas: "logo us links contact";
        grid-column-gap: 20px;
    }

@media screen and (max-width: 680px) {
    footer .footer-container {
        grid-template-columns: 20% 75%;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "logo us"
            "logo links"
            "logo contact";
        grid-column-gap: 5%;
        grid-row-gap: 30px;
    }
}

footer .footer-container h4 {
    color: #000;
    font-weight: 600;
    font-size: .8em;
}

footer .footer-container .logo {
    height: 100px;
    width: 70%;
    grid-area: logo;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: all .2s ease-in-out;
    opacity: .8;
    filter: grayscale(100%);
}

@media screen and (max-width: 680px) {
    footer .footer-container .logo {
        opacity: 1;
        filter: grayscale(0);
    }
}

footer .footer-container .logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media screen and (max-width: 680px) {
    footer .footer-container .logo {
        width: 100%;
        background-image: url(img/logos/logo.png) !important;
    }
}

footer .footer-container .us-column {
    grid-area: us;
}

    footer .footer-container .us-column .title {
        margin-bottom: 20px;
    }

    footer .footer-container .us-column p {
        font-size: .8em;
        line-height: 1.4em;
        opacity: .6;
    }

footer .footer-container .link-column {
    grid-area: links;
}

    footer .footer-container .link-column .link-group {
        margin-top: 5px;
        margin-bottom: 15px;
    }

        footer .footer-container .link-column .link-group a {
            color: #000;
            font-size: .8em;
            display: block;
            opacity: .6;
            font-family: Lato;
            margin-bottom: 5px;
        }

            footer .footer-container .link-column .link-group a:hover {
                opacity: .8;
            }

footer .footer-container .contact-column {
    grid-area: contact;
}

    footer .footer-container .contact-column .ubication {
        color: #000;
        opacity: .6;
        margin-bottom: 15px;
    }

        footer .footer-container .contact-column .ubication a {
            color: unset;
        }

        footer .footer-container .contact-column .ubication .address,
        footer .footer-container .contact-column .ubication .tel {
            font-size: .8em;
        }

footer .footer-social-links {
    margin-top: 30px;
    border-top: 1px solid #d3d3d3;
    padding-top: 30px;
}

    footer .footer-social-links .link-container {
        width: 30%;
        margin: 0 35%;
        display: flex;
        justify-content: center;
    }

        footer .footer-social-links .link-container a,
        footer .footer-social-links .link-container i {
            color: #00599a;
        }

        footer .footer-social-links .link-container a {
            margin: 0 10px;
            opacity: .9;
            transition: opacity .1s ease-in-out;
        }

            footer .footer-social-links .link-container a:hover {
                opacity: 1;
            }

        footer .footer-social-links .link-container i {
            font-size: 2.5em;
        }

.tel_1:hover {
    color: white;
}

.tel_sub_1:hover {
    color: white;
}

.tel_2:hover {
    color: white;
}

.tel_sub_2:hover.float-container {
    padding: 50px;
}

.float-child {
    width: 50%;
    float: left;
}

.whatsapp-container {
    position: fixed;
    bottom: 80px;
    right: 10px;
    z-index: 999;
}

.whatsapp-link {
    display: flex;
    justify-content: center; /* Centra horizontalmente el contenido */
    align-items: center; /* Centra verticalmente el contenido */
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Cambia este color según tu preferencia */
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    transition: background-color 0.3s ease;
}

    .whatsapp-link:hover {
        background-color: #128c7e; /* Cambia este color según tu preferencia */
    }

    .whatsapp-link i {
        font-size: 24px; /* Ajusta el tamaño del icono según sea necesario */
        color: #fff; /* Cambia el color del icono según tu preferencia */
    }


/*----------------------------------------------------------------------------------------------------------------------------*/


/* ===== CTA DOBLE: TARJETAS GRANDES REDONDEADAS ===== */
.cta-hero {
    position: relative;
    padding: 24px 5%;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
    max-width: 1120px;
    margin-left: auto;
    margin-right: 5%; /* empuja hacia la derecha como el diseño actual */
}

@media (max-width: 980px) {
    .cta-cards {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }
}

/* Tarjeta base */
.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 28px 26px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.10), inset 0 0 0 1px rgba(255,255,255,.08);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    min-height: 260px;
}

/* Colores de marca */
.cta-blue {
    background: #0A62A2; /* azul marca */
    color: #fff;
}

.cta-amber {
    background: #CC8443; /* ámbar marca */
    color: #1d1d1f;
}

/* Asegurar contraste en texto dentro de cada variante */
.cta-blue .cta-text {
    color: rgba(255,255,255,.9);
}

.cta-amber .cta-text {
    color: rgba(0,0,0,.8);
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(0,0,0,.16), inset 0 0 0 1px rgba(255,255,255,.12);
}

/* Badge superior */
.cta-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: .80rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
}

.cta-amber .cta-badge {
    background: rgba(0,0,0,.12);
    color: #1d1d1f;
}

/* Título y texto */
.cta-title {
    font-family: Poppins, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 6px 0 0 0;

}

.cta-text {
    font-size: .98rem;
    line-height: 1.45;
    margin-top: 2px;
}

/* Solo la palabra subrayada dentro del título azul 
.cta-blue .cta-title {
    color: #0ea5e9;
    text-decoration-color: #fff;
}*/

/* Botón dentro de la tarjeta */
.cta-button {
    margin-top: 10px;
    align-self: flex-start;
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.85);
    color: #fff;
    background: transparent;
}

.cta-amber .cta-button {
    border-color: rgba(0,0,0,.75);
    color: #1d1d1f;
    background: rgba(255,255,255,.2);
}

.cta-card:hover .cta-button {
    background: rgba(255,255,255,.12);
}

.cta-amber:hover .cta-button {
    background: rgba(255,255,255,.32);
}

/* Opcional: suavizar el fondo hero para que las tarjetas resalten */
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.45), rgba(255,255,255,0));
    pointer-events: none;
}


select.form-input {
    width: 100%;
    box-sizing: border-box;
}
.input-group select.form-input {
    margin-bottom: 20px;
}
#search-region.form-input {
    height: 48px; /* mismo alto que los inputs */
    padding: 0 15px; /* mismo padding */
    line-height: 48px; /* centra el texto */
    box-sizing: border-box;
}


/* Que el SELECT tenga el mismo alto, padding y separación que los inputs */
.form-container form .form-row .column .input-group select.form-input {
    height: 50px; /* igual que los inputs */
    width: 100%;
    padding: 0 20px; /* como los inputs */
    margin-bottom: 30px; /* espacio con el de abajo */
    border: 1px solid #d3d3d3;
}

    /* Placeholder interno del select: gris hasta que elija valor (requiere option value="") */
    .form-container form .form-row .column .input-group select.form-input:invalid {
        color: #777;
    }

    .form-container form .form-row .column .input-group select.form-input option {
        color: #000; /* las opciones reales en negro */
    }

/* Si preferís ocultar el label del select (porque usamos la 1ª opción como placeholder) */
.form-container form .form-row .column .input-group label[for="search-region"] {
    display: none;
}


/* que el bloque del video ocupe todo el ancho del grid */
.video-container {
  grid-column: 1 / -1;   /* <— clave para grid */
  justify-self: center;  /* centra el propio bloque dentro del grid */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;        /* espacio con el texto de arriba/abajo */
  clear: both;           /* por si hay floats sueltos */
}

.video-container video {
  width: min(90vw, 900px);  /* responsivo y limitado */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* === FIX CAMPOS FORMULARIO AGENCIA ENRIQUE === */
input.form-input,
textarea.form-input,
select.form-input {
    display: block;
    width: 100%;
    box-sizing: border-box;

    /* que el texto no se pegue arriba */
    padding: 12px 16px !important;
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 44px;

    /* por si alguna regla rara los achica */
    font-size: 16px;
}

/* placeholders alineados */
input.form-input::placeholder,
textarea.form-input::placeholder {
    line-height: 1.4;
}

/* Forzar que el texto dentro de inputs y selects no suba y empuje al label */
.input-group input.form-input,
.input-group select.form-input,
.input-group textarea.form-input {
    padding-top: 18px !important;
}
