@font-face {
    font-family: "Archivo-BlackItalic";
    src: url("../fonts/Archivo-BlackItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Archivo-Bold";
    src: url("../fonts/Archivo-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Archivo-Regular";
    src: url("../fonts/Archivo-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Hind-Regular";
    src: url("../fonts/Hind-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.Archivo-BlackItalic {font-family: 'Archivo-BlackItalic', sans-serif;}
.Archivo-Bold {font-family: 'Archivo-Bold', sans-serif;}
.Archivo-Regular {font-family: 'Archivo-Regular', sans-serif;}
.Hind-Regular {font-family: 'Hind-Regular', sans-serif;}

:root {
    --max-width: 1280px;
    /*--font: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Ubuntu,sans-serif;*/
    --font: 'Hind-Regular', sans-serif;
    --sides: 30px;
}

/* LIGHT THEME */
:root {
    --background: #fff;
    --invert-background: #000;
    --surface: rgba(0, 0, 0, .02);
    --border: rgba(0, 0, 0, .08);
    --color: #000;
    --invert-color: #fff;
    /*--primary: #a386de;*/
    /*--primary_darker: #ceb6ff;*/
    /*--primary_lighter: #e6dbfc;*/
    --primary: #ed4441;
    --primary_darker: #ad201e;
    --primary_lighter: #ef7573;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    outline: 0;
}

[v-cloak] {
    display: none;
}

html {
    min-width: 320px;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    text-align: left;
    direction: ltr;
}

html,
body {
    float: left;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
}

body {
    background: var(--background);
    color: var(--color);
    font-family: var(--font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7em;
}

a {
    text-decoration: none;
    color: var(--color);
}

.a {
    text-decoration: underline;
    color: var(--primary);
}

.a:hover {
    color: var(--primary_lighter);
}

a:hover,
a:active,
a:focus {
    outline: none;
}

.text-center {
    text-align: center;
}

video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

figure, picture, img {
    display: block;
    vertical-align: bottom;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

.lazy {
    opacity: 0;
}

.lazy.loaded {
    opacity: 1;
    transition: opacity .2s linear 0s;
}


.boxed {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-width);
}

.boxed-sides {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-width);
    padding: 0 var(--sides);
}

h1, h2, h3, h4, h5, h6, p {
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}

h1 {
    font-size: 38px;
    line-height: 36px;
}

.button,
.textarea,
.input {
    font-family: var(--font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7em;
}

.input,
.textarea,
.select {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    background: var(--background);
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 3px;
    color: #000;
    margin: 0;
    padding: 0;
}

.input:focus,
.textarea:focus,
.select:focus {
    border-color: var(--primary);
}

.label {
    font-size: 15px;
    font-weight: bold;
}
.input,
.select {
    height: 48px;
    line-height: 46px;
    padding: 0 14px;
}
.textarea {
    padding: 14px;
    height: 200px;
    min-height: 200px;
    resize: vertical;
    overflow: auto;
}
.input-error {
    font-size: 14px;
    color: red;
    font-weight: bold;
}
.input-success {
    border-radius: 3px;
    padding: 10px 20px;
    color: green;
    font-weight: bold;
    text-align: center;
    background: #f0ffe9;
    border: 1px solid #a1b995;
}
.button {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 0 20px;
    background: var(--primary);
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}
.box-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}
.form-grid {
    display: grid;
    grid-template: auto / 1fr;
    gap: 30px;
    margin: 0 auto;
    max-width: 768px;
}
.form-line {
    display: grid;
    grid-template: auto / 1fr;
    gap: 0 14px;
    align-items: center;
}

.grecaptcha-badge {
    display: none !important;
}

@media (min-width: 768px) {
    .button:hover {
        background: var(--primary_darker);
    }
    .label {
        text-align: right;
    }
    .input-error {
        text-align: right;
        grid-column: 1 / span 2;
    }
    .box-form {
        padding: 60px 30px;
    }
    .form-line {
        grid-template: auto / 140px 1fr;
    }
    .form-line-full {
        grid-template: auto / 1fr;
    }
    h1 {
        font-size: 48px;
        line-height: 46px;
    }
}

/* HEADER */
.main-header {
    position: sticky;
    z-index: 99;
    top: -59px;
    background: var(--background);
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, .1);
}

.header-grid {
    display: grid;
    grid-template: auto / 1fr;
    padding: 0 0 10px 0;
}

.logo {
    margin: 0 auto;
    width: 140px;
    padding: 20px 0;
}

.logo-a {
    display: block;
}

.logo-svg {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    max-height: 100%;
    text-align: center;
    color: var(--color);
    fill: currentColor;
}

.nav {
    display: grid;
    grid-template: auto / repeat(3, 1fr);
    margin: 0 calc(var(--sides) * -1);
}

.nav-item {
    color: #000;
    white-space: nowrap;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

@media (min-width: 768px) {
    .main-header {
        top: 0;
    }

    .header-grid {
        grid-template: auto / 140px 1fr;
        align-items: center;
        padding: 10px 0;
    }

    .nav {
        grid-template: auto / repeat(3, auto);
        justify-self: end;
        margin: 0;
    }

    .nav-item {
        font-size: 16px;
        text-transform: uppercase;
    }

    .nav-item + .nav-item {
        padding-left: 30px;
    }

    .nav-item:hover {
        color: var(--primary);
    }
}

/* FOOTER */
.main-footer {
    background: #222;
    padding: 60px 0;
    color: #fff;
}
.main-footer a {
    color: #fff;
}

.f-grid {
    display: grid;
    grid-template: auto / 1fr;
    grid-template-areas:
            "f_logo"
            "f_text"
            "f_contact"
            "f_btn"
            "f_social"
            "f_links"
            "f_copy";
    gap: 20px 0;
    padding: 0 20px;
}

.f-col-logo {grid-area: f_logo; text-align: center; padding-bottom: 40px;}
.f-col-text {
    grid-area: f_text;
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    max-width: 590px;
    justify-self: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 0 0 40px;
    margin-bottom: 20px;
}
.f-col-contact {grid-area: f_contact; padding: 0 40px;}
.f-col-links {grid-area: f_links; text-align: center;}
.f-col-copy {grid-area: f_copy; text-align: center; font-size: 13px;}
.f-col-btn {grid-area: f_btn; text-align: center; padding: 0 40px; align-self: center;}
.f-col-social {grid-area: f_social; text-align: center; padding: 0; align-self: center;}

.f-col-contact p {
    line-height: 24px;
    margin: 5px 0;
}

.f-col-contact svg {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 24px;
    color: inherit;
    fill: currentColor;
    margin-right: 5px;
}

.f-logo-svg {
    width: 140px;
}

.f-col-links {
    padding: 40px 0 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.f-col-links p {
    width: auto;
    display: inline-block;
    margin: 0 10px;
}

.f-col-links a {
    color: inherit;
}

.f-col-links a:hover {
    opacity: .7;
}

.f-col-social a {
    display: inline-block;
    vertical-align: top;
    margin: 15px 8px 0;
}

.f-col-social a:hover {
    opacity: .7;
}

@media (min-width: 768px) {
    .f-grid {
        grid-template: auto / 1fr 300px;
        grid-template-areas:
                "f_logo f_logo"
                "f_text f_text"
                "f_contact f_btn"
                "f_social f_social"
                "f_links f_links"
                "f_copy f_copy";
    }
    .f-col-contact {
        padding: 0 0 0 40px;
    }
    .f-col-text {
        padding: 0 40px 30px;
        margin-bottom: 30px;
    }
    .f-col-links {
        padding: 30px 0 0;
        margin-top: 30px;
    }
    .f-col-btn {
        padding: 0 40px 0 0;
    }
}

.hero-video {
    display: block;
    margin: -20px auto 0;
    max-width: calc(var(--max-width) + var(--sides));
}

.module-box-video {
    background: #000;
    position: relative;
    padding-top: 56.2963%;
}

.mbv-main-button {
    position: absolute;
    z-index: 10;
    left: 0; top: 0;
    right: 0; bottom: 0;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    transition: all .2s linear 0s;
}

.mbv-play-icon {
    position: absolute;
    left: auto;
    bottom: auto;
    top: 20px;
    right: 20px;
    margin: 0;
    width: 56px;
    height: 56px;
    color: #fff;
    background: rgba(0, 0, 0, .1);
    box-shadow: 4px 4px 14px 4px rgba(0, 0, 0, .2);
    border-radius: 50%;
}

.mbv-poster {
    position: absolute;
    z-index: 5;
    left: 0; top: 0;
    right: 0; bottom: 0;
    background: transparent no-repeat center center / cover;
}

.mbv-iframe {
    position: absolute;
    z-index: 15;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    vertical-align: baseline;
    background: transparent;
}

@media (min-width: 768px) {
    .mbv-main-button:hover {
        cursor: pointer;
        background: rgba(0, 0, 0, .25);
    }

    .mbv-play-icon {
        top: 40px;
        right: 40px;
    }
}

/* MODULE HERO */
.module-hero {
    background: #000 no-repeat center bottom / cover;
    position: relative;
    min-height: calc(100vh - 120px);
}

.module-hero:after {
    content: '';
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
}

.module-hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2vh;
    padding: var(--sides) 0;
    align-items: start;
    justify-items: start;
}

.mhg-text-one {
    font-size: 38px;
    line-height: 36px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.mhg-text-two {
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
    .module-hero {
        min-height: 50vh;
    }

    .module-hero-grid {
        gap: 4vh;
        padding: 10vh 0;
    }

    .mhg-text-one {
        font-size: 48px;
        line-height: 46px;
    }

    .mhg-text-two {
        width: 50%;
        font-size: 21px;
        line-height: 31px;
    }
}

/* MODULE BOX */
.module-box {}

.module-box-grid {
    display: grid;
    gap: 2vh;
    padding: 10vh 0;
}

.module-box-inner {
    display: grid;
    gap: 2vh;
    align-content: center;
}

.mbg-text-two {
    font-size: 21px;
    line-height: 31px;
}

.mbg-text-one {
    font-size: 38px;
    line-height: 36px;
}
.mbg-text-three {
    font-size: 16px;
    line-height: 27px;
}
.mbg-button {
    min-width: 315px;
}

.module-box-home .module-box-inner {align-content: start;}
.box-destinations-explore-mexico {background: var(--surface);}
.box-explore-mexico-explore-mexico {background: var(--surface);}
.box-text-center {text-align: center;}

@media (min-width: 768px) {
    .module-box-grid {
        grid-template: auto / repeat(2, 1fr);
        gap: 4vh 80px;
    }

    .module-box-inner {
        gap: 4vh;
    }

    .module-box-full {
        grid-column: 1 / span 2;
    }

    .mbg-text-one {
        font-size: 48px;
        line-height: 46px;
    }
}

/* MODULE MORE DESTINATIONS COMING SOON */
.module-mdcs {
    background: var(--surface);
}

.module-mdcs-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2vh;
    padding: 10vh 0;
    align-items: center;
    justify-items: stretch;
}

.mmdcsg-list {
    display: grid;
    grid-template: auto / 1fr;
    gap: 2vh;
}

.mmdcsg-text-one {
    font-size: 38px;
    line-height: 36px;
}

.mmdcsg-text-two {
    font-size: 28px;
    line-height: 26px;
    padding-bottom: 10px;
    color: var(--primary);
}

.mmdcsg-text-three {
    font-size: 18px;
    line-height: 23px;
}

@media (min-width: 768px) {
    .module-mdcs-grid {
        gap: 4vh;
    }

    .mmdcsg-list {
        grid-template: auto / repeat(4, 1fr);
    }

    .mmdcsg-text-one {
        font-size: 48px;
        line-height: 46px;
    }
}

/* MODULE OUR GUIDES */
.module-our-guides {
    background: #fff;
}

.module-our-guides-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template: auto / 1fr;
    gap: 4vh;
    padding: 10vh 0;
}

.mogg-text-zero {
    font-size: 38px;
    line-height: 36px;
}

.mogg-text-one {
    font-size: 28px;
    line-height: 26px;
    padding: 10px 0;
    text-align: center;
}

.mogg-text-two {
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    opacity: .5;
}

@media (min-width: 768px) {
    .module-our-guides-grid {
        grid-template: auto / repeat(3, 1fr);
    }

    .mogg-text-zero {
        grid-column: 1 / span 3;
        font-size: 48px;
        line-height: 46px;
    }
}

/* MODULE EXCLUSIVE OFFER */
.module-exclusive-offer {
    background: #000 no-repeat center center / cover;
    position: relative;
}

.module-exclusive-offer:after {
    content: '';
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

.module-exclusive-offer-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template: auto / 1fr;
    gap: 4vh;
    padding: 10vh 0;
}

.meog-text-zero {
    font-size: 28px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

.meog-text-one {
    font-size: 38px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

.meog-text-two {
    font-size: 28px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

.meog-button {
    max-width: 375px;
}

@media (min-width: 768px) {
    .module-exclusive-offer-grid {
        padding: 20vh 0;
    }

    .meog-text-one {
        font-size: 48px;
        line-height: 46px;
    }

    .meog-text-one br {
        display: none;
    }
}

/* MODULE GALLERY */
.module-gallery {
    background: #fff;
}

.module-gallery-listing {
    display: grid;
    grid-template: auto / repeat(1, 1fr);
}

@media (min-width: 768px) {
    .module-gallery-listing {
        grid-template: auto / repeat(4, 1fr);
    }
}

/* PAGE CONTACT */
.page-contact {
    padding: 60px 0;
}

.contact-box {
    background: var(--surface);
    padding: 40px;
}