@font-face {
    font-family: 'NimbusSansL';
    src: url('./fonts/NimbusSanL-Bol-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Kalam';
    src: url('./fonts/Kalam-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pragati Narrow';
    src: url('./fonts/PragatiNarrow-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


* {
    box-sizing: border-box;
}

body {
    background-color: hsl(220, 80%, 25%);
    background-color: var(--bgcolor);
    background-image: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
    background-image: radial-gradient(at top left, var(--gradient-start), var(--gradient-end));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    background-size: cover;
    margin: 0;
}

@media print {
    body {
        background-color: white;
        color: black;
    }
}

a:link, a:visited {
    text-decoration: none;
    color: hsl(220, 80%, 25%);
    color: var(--menu);
}

a:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}

@media print {
    a:link, a:visited, a:hover {
        text-decoration: none;
        color: hsl(220, 80%, 25%);
        color: var(--menu);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'NimbusSansL', sans-serif;
    font-size: 1.75vw;
    font-weight: bold;
    font-style: italic;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 4vmax;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 3vw;
    }
}

hr {
    color: hsl(355, 75%, 48%);
    color: var(--hbar);
    border: 2px solid var(--hbar);
}

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

@media print {
    video {
        display: none;
    }
}


#menubar {
    font-family: 'NimbusSansL', sans-serif;
    font-size: 1.125vw;
    font-weight: bold;
    background-color: White;
    height: 100%;
    width: 25%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: auto;
}

@media screen and (min-width: 768px) and (orientation: landscape) {
    #menubar {
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
    }
}

@media screen and (max-width: 767px) {
    #menubar {
        width: 100%;
        height: auto;
        font-size: 2.25vmax;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    #menubar {
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 1.75vw;
        align-items: center;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
    }
}

@media print {
    #menubar {
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        padding-bottom: 2rem;
    }
}

#logo {
    max-height: 20%;
    order: 1;
}

@media screen and (max-width: 767px) {
    #logo {
        display: block;
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    #logo {
        width: 40%;
        height: auto;
    }
}

@media print {
    #logo {
        width: 50%;
        height: auto;
    }
}

#logo img {
    width: 95%;
    height: auto;
    margin-left: 2.5%;
    padding-top: 0.5em;
}


#logo-long {
    display: block;
}

#logo-extralong {
    display: none;
}

@media screen and (orientation: portrait) {
    #logo-long {
        display: none;
    }

    #logo-extralong {
        display: block;
    }
}

@media print {
    #logo-long {
        display: none;
    }

    #logo-extralong {
        display: block;
    }
}

#menu-links {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    #menu-links {
        order: 3;
        width: 100%;
        padding: 0.5rem;
        display: none;
        flex-wrap: nowrap;
        justify-content: space-around;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    #menu-links {
        order: 3;
        width: 100%;
        padding: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
}

@media print {
    #menu-links {
        display: none;
    }
}

.fa-external-link-alt {
    font-size: 50%;
    vertical-align: super;
}


#menu-toggle {
    display: none;
    width: 100%;
    text-align: center;
    color: hsl(220, 80%, 25%);
    color: var(--menu);
}

@media screen and (max-width: 767px) {
    #menu-toggle {
        order: 2;
        display: block;
    }
}

#menu-toggle:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}

.menu-link {
    width: 100%;
    height: 2em;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    font-size: 125%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    .menu-link {
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.lookatme a:link, .lookatme a:visited {
    color: hsl(120,100%,20%);
}

.lookatme a:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}

.social-links {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

@media screen and (max-width: 767px) {
    .social-links {
        width: 40%;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    .social-links {
        width: 12rem;
    }
}

.current-page a {
    color: Black;
    text-transform: uppercase;
    font-size: 82.5%;
}

#location {
    order: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
    #location {
        order: 4;
        margin: auto;
        display: none;
        align-items: center;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    #location {
        order: 2;
        width: 60%;
        height: 100%;
        flex-direction: row;
        padding-right: 0.5rem;
    }
}

@media print {
    #location {
        order: 2;
        width: 50%;
        height: 100%;
        flex-direction: row;
        padding-right: 0.5rem;
        font-size: 1.5vmax;
    }
}

#telephone, #address, #hours, #hours2 {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.75em;
    text-align: center;
    color: Black;
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    #telephone, #address, #hours, #hours2 {
        display: block;
        width: 100%;
        padding-top: 1rem;
    }
    #telephone {
        padding-top: 1.75rem;
    }
}

#hours {
    display: none;
}

#hours2 {
    display: none;
    font-size: 50%;
}

#location table {
    display: inline;
    border-collapse: collapse;
}

#hours td {
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 80%);
    width: 1.5em;
    height: 1.5em;
}

#hours td:last-child {
    border-style: none;
    padding-left: 1.5em;
    width: auto;
}

#telephone:hover, #address:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}






#page-content {
    padding: 0;
    font-family: 'Pragati Narrow', serif;
    color: White;
    font-size: 1.333vw;
}

@media screen and (min-width: 768px) and (orientation: landscape) {
    #page-content {
        margin: 0;
        margin-left: 25%;
    }
}

@media screen and (max-width: 767px) {
    #page-content {
        font-size: 3vmax;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    #page-content {
        margin: 0;
        margin-top: 20%;
        font-size: 2vw;
    }
}

@media print {
    #page-content {
        font-size: 1.75vmax;
    }
}

#page-content a:link, #page-content a:visited {
    text-decoration: none;
    color: hsl(220, 80%, 65%);
    color: var(--link);
}

#page-content a:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}

#copyright {
    width: 100%;
    text-align: center;
    font-family: 'Pragati Narrow', serif;
    font-size: 1vw;
    color: White;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) and (orientation: landscape) {
    #copyright {
        margin-left: 25%;
        width: 75%;
    }
}

@media screen and (orientation: portrait) {
    #copyright {
        font-size: 2vmax;
    }
}

@media print {
    #copyright {
        font-size: 1vmax;
        padding-top: 1rem;
    }
}


#copyright a:link, #copyright a:visited {
    text-decoration: none;
    color: hsl(220, 80%, 65%);
    color: var(--link);
}

#copyright a:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}


.content-text {
    width: 60rem;
    max-width: 90%;
    margin: auto;
    padding: 0.5rem;
}

.white-box {
    box-shadow: 5px 5px 10px 10px var(--gradient-start);
    color: hsl(220, 80%, 65%);
    color: var(--box-text);
    background-color: White;
}

@media print {
    .white-box {
        box-shadow: none;
        border: 2px solid black;
    }
}

.info-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.info-boxes > div {
    margin: 1rem;
    padding: 1rem;
    width: 25rem;
    text-align: center;
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    .info-boxes > div {
        width: 27.5%;
        padding: 0.5rem;
    }
}

@media print {
    .info-boxes > div {
        width: 28.75%;
        padding: 0.25rem;
    }
}

.info-boxes table {
    margin: auto;
}

.info-boxes td {
    padding-left: 1rem;
    padding-right: 1rem;
}

.info-boxes img {
    display: block;
    height: 6rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    .info-boxes img {
        height: 4rem;
    }
}

@media print {
    .info-boxes img {
        height: 3rem;
    }
}



.slideshow {
    width: 100%;
    margin: 0;
    padding: 0;
}

@media print {
    .slideshow {
    }
}

.slide {
    display: none;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 95vh;
    margin: auto;
    padding: 0;
}

.text-slide > div {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.text-slide q {
    display: block;
    font-family: Kalam, sans-serif;
    font-size: 175%;
    line-height: 1.333em;
    width: 80%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .text-slide q {
        font-size: 100%;
        width: 90%;
    }
}

.quote-source {
}


.active-slide {
    display: block;
}









#popup-background {
    position: fixed;
    display: none;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: Black;
    background-color: hsla(0, 0%, 0%, 0.7);
    background-color: var(--popup-bg);
}

#popup-background > div {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#popup-ad {
    font-family: 'NimbusSansL', sans-serif;
    font-weight: bold;
    background-color: White;
    width: 50%;
    z-index: 3;
}

@media screen and (orientation: portrait) {
    #popup-ad {
        width: 90%;
    }
}

#popup-top {
    font-weight: bold;
    font-size: 1.5vmax;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    #popup-top {
        font-size: 3vmin;
    }
}

#popup-nowopen {
    color: hsl(355, 75%, 48%);
    color: var(--package-highlight);
    display: inline-block;
    padding: 1rem;
    display: none;
}

#popup-nowopen.gallery {
    display: none;
}

#popup-title {
    display: inline-block;
    padding: 1rem;
}

#popup-close-button {
    float: right;
    font-size: 200%;
    padding: 0.25rem;
}

#popup-close-button:hover {
    color: White;
    background-color: hsl(355, 75%, 48%);
    background-color: var(--link-hover);
}

#popup-content img {
    display: block;
    width: 100%;
    height: auto;
}

#popup-gvmessage {
    background-color: hsl(220, 80%, 25%);
    background-color: var(--bgcolor);
    background-image: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
    background-image: radial-gradient(at top left, var(--gradient-start), var(--gradient-end));
    background-repeat: no-repeat;
    color: White;
    font-family: 'Pragati Narrow', serif;
    font-size: 1.75rem;
    font-weight: 400;
    padding: 1rem;
}

#popup-gvmessage button {
    background-color: White;
    color: black;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem;
    font-family: 'NimbusSansL', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
}

#popup-gvmessage button:hover {
    color: White;
    background-color: hsl(355, 75%, 48%);
    background-color: var(--link-hover);
}

#popup-gvmessage a:link, #popup-gvmessage a:visited {
    text-decoration: none;
    color: hsl(220, 80%, 65%);
    color: var(--link);
}

#popup-gvmessage a:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}



.youtube-embed {
    display: block;
    width: 64vw;
    height: 36vw;
    margin: auto;
    padding: 1rem;
}

@media screen and (max-width: 767px) {
    .youtube-embed {
        width: 96vw;
        height: 54vw;
    }
}

@media print {
    .youtube-embed {
        display: none;
    }
}

#partner-links {
    margin: auto;
    max-width: 35rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #partner-links {
        max-width: 90%;
    }
}

@media print {
    #partner-links {
        display: none;
    }
}

.partner-link img {
    width: 90%;
    height: auto;
    margin: auto;
}












body.packages {
    background-image: url('gallery/image-019.jpg');
}

@media print {
    body.packages {
        background-color: white;
    }
}

#flight-packages {
    margin: auto;
}

.flight-package {
    max-width: 50rem;
    padding: 0;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

@media screen and (orientation: portrait) {
    .flight-package {
        max-width: 90%;
        margin-bottom: 3rem;
    }
}

@media print {
    .flight-package {
        max-width: 90%;
        margin-bottom: 2rem;
        font-size: 75%;
    }
    .discontinued {
        display: none;
    }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
    .flight-package:first-child {
        margin-top: 22.5%;
    }
}

.flight-package:last-child {
    margin-bottom: 1rem;
}

.flight-package div:not(.package-details) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
}

.package-name {
    background-color: hsl(220, 80%, 25%);
    background-color: var(--package);
    color: White;
    font-family: 'NimbusSansL', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 175%;
    padding: 1rem;
}

.package-details {
    display: grid;
    grid-template-columns: 33% 34% 33%;
    grid-template-rows: 50% 50%;
    gap: 0;
}

@media screen and (max-width: 767px) {
    .package-details {
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto auto;
    }
}

.package-details > div > div {
    align-items: center;
}

.package-duration , .package-audience, .package-price, .package-price1, .package-price2 {
    border-bottom-style: solid;
    border-right-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 80%);
    color: hsl(220, 80%, 25%);
    color: var(--package);
    font-family: 'NimbusSansL', sans-serif;
    font-weight: bold;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.package-duration, .package-audience, .package-price {
    grid-row-start: 1;
    grid-row-end: 3;
}
.package-price1 {
    grid-row-start: 1;
    grid-row-end: 2;
}
.package-price2 {
    grid-row-start: 2;
    grid-row-end: 3;
}
.package-duration {
    grid-column-start: 1;
    grid-column-end: 2;
}
.package-audience {
    grid-column-start: 2;
    grid-column-end: 3;
}
.package-price, .package-price1, .package-price2 {
    grid-column-start: 3;
    grid-column-end: 4;
}

.package-price, .package-price1 {
    font-size: 200%;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .package-duration, .package-audience, .package-price {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .package-price1 {
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .package-price2 {
        grid-column-start: 2;
        grid-column-end: 3;
    }
    .package-duration {
        grid-row-start: 1;
        grid-row-end: 2;
    }
    .package-audience {
        grid-row-start: 2;
        grid-row-end: 3;
    }
    .package-price, .package-price1, .package-price2 {
        grid-row-start: 3;
        grid-row-end: 4;
    }

    
    .package-duration, .package-audience, .package-price2 {
        font-size: 80%;
    }

    .package-price, .package-price1 {
        font-size: 160%;
    }
}

.package-description, .package-text, .package-disclaimer {
    color: Black;
    padding: 1rem;
    padding-bottom: 0rem;
}

.package-tagline {
    color: hsl(355, 75%, 48%);
    color: var(--package-highlight);
    font-size: 125%;
    font-style: italic;
    font-weight: bold;
    padding-top: 1rem;
    padding-bottom: 0rem;
}

@media print {
    .package-tagline {
        padding-top: 0.5rem;
    }
}

.package-description {
    max-width: 95%;
    margin: auto;
}

.package-description td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: left;
}

.package-description th {
    text-align: center;
    padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
    .package-description th {
        font-size: 90%;
    }
}

.package-disclaimer {
    font-size: 75%;
}










.image-box {
    display: block;
    margin-top: 1rem;
    min-width: 15%;
    max-width: 45%;
}


.image-box img {
    width: 100%;
    height: auto;
}

@media print {
    .image-box {
        display: block;
        width: 30%;
        border: none;
    }
}






.faq-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.faq-box {
    margin: 1rem;
    padding: 1rem;
    width: 40rem;
    max-width: 90%;
}

.faq {
    font-family: 'NimbusSansL', sans-serif;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

.faq .fas {
    float: left;
}

.faq:hover {
    color: hsl(355, 75%, 48%);
    color: var(--link-hover);
}

.faq-answer {
    font-family: 'Pragati Narrow', serif;
    padding: 0.5rem;
    padding-top: 1rem;
    color: Black;
}

@media print {
    .faq-slideshow {
        display: none;
    }
    .faq-answer {
        display: block !important;
        visibility: visible;
    }
}


#map-embed {
    width: 100%;
    height: 50vh;
    border: 0;
}

#contact-hours-print {
    display: none;
}

@media print {
    #map-embed {
        width: 100%;
        height: 40vh;
        border: 0;
    }
    #contact-social {
        display: none;
    }
    #contact-hours-screen {
        display: none;
    }
    #contact-hours-print {
        display: block;
    }
}

#social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: 250%;
}





.hiring {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    width: 75%;
    color: black;
}

.hiring th {
    color: var(--red);
}

.hiring td {
    padding: 0.5rem;
}