<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.bg-style {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.light-blue-text {
    color: #2BD0EF;
}

.red-text {
    color: #A11728;
}

.bg-blue {
    background-color: #1C355E;
}

.bg-light-blue {
    background-color: #2BD0EF;
}

.bg-red {
    background-color: #8E202B;
}

.bg-light-gray{
    background-color: #EEEEEE;
}

.bg-white {
    background-color: #FFFFFF;
}

.extra-bold {
    font-weight: 900;
}

.light-hr {
    border-top: 4px solid #FFFFFF;
    width: 18%;
    margin-left: 0;
    margin-top: 0;
}

.light-blue-hr {
    border-top: 4px solid #30AFC6;
    width: 35px;
    margin: 1rem auto 1rem 0;
}

.rich a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

h5.rich p,
h5.rich h1,
h5.rich h2,
h5.rich h3,
h5.rich h4{
    line-height: 1.5;
}

div.rich.text-light-gray p,
div.rich.text-light-gray h1,
div.rich.text-light-gray h2,
div.rich.text-light-gray h3,
div.rich.text-light-gray h4,
div.rich.text-light-gray ul {
    color: #999999;
}

div.rich.text-light-gray strong {
    color: #1A3F67;
}

.after-space {
    padding-top: 13rem;
}

.special-position-big {
    position: relative;
    bottom: -5.5rem;
    text-align: center;
    border: 3px solid #1C355E;
}

.special-position-small {
    position: relative;
    bottom: -1.3rem;
    height: 0;
}

.special-position-small .cont-small {
    background-color: #8E202B;
    text-align: center;
}

.special-position-small .cont-small h4 {
    color: #FFFFFF;
    margin-bottom: 0;
}

@font-face {
    font-family: jetsmart-icons;
    font-display: swap;
    src: url('./fonts/jetsmart_icons.otf');
    font-weight: 400;
    font-style: normal
}

#chartersCarousel .arrows {
    font-family: jetsmart-icons, sans-serif;
    font-style: normal;
    font-size: 2rem;
    font-variant: normal;
    text-transform: none;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#chartersCarousel .arrows-left {
    position: absolute;
    left: 40%;
}

#chartersCarousel .arrows-left:before {
    content: "\E95F"
}

#chartersCarousel .arrows-right {
    position: absolute;
    right: 40%;
}

#chartersCarousel .arrows-right:before {
    content: "\E960"
}
#chartersCarousel .carousel-control-prev,
#chartersCarousel .carousel-control-next{
    max-width:100px;
}
#chartersCarousel .carousel-control-next:hover,
#chartersCarousel .carousel-control-prev:hover {
    color: #AC272F;
}

.fly-img {
    max-width: fit-content;
    border-radius: 50%;
    border: 3px solid #1C355E;
    margin-bottom: 1rem;
}

.fly-img p {
    margin: 16px 0;
    font-weight: 900;
    font-size: 4.5rem;
    color: #FFFFFF;
}

.scale-hover-1-05{
    transition: transform ease-in-out .4s, box-shadow ease-in-out .4s;
}

.scale-hover-1-05.hover, .scale-hover-1-05:hover{
    transform: scale(1.05);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
    z-index: 2;
}

.card {
    border: none;
    border-radius: 10px;
}

.card.white {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 13px 0 rgba(214,214,214,1);
    -moz-box-shadow: 0 10px 13px 0 rgba(214,214,214,1);
    box-shadow: 0 10px 13px 0 rgba(214,214,214,1);
}

.buy-pill {
    border-radius: 50rem!important;
    border: 0;
    background-color: #b72831;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    padding: 4px 6px;
    line-height: 1;
    position: relative;
    width: 100%;
    max-width: fit-content;
}

.buy-pill:hover {
    background-color: #00396f;
    color: #ffffff;
    border: none;
}

.buy-pill .buy-text{
    padding: 0 .6rem;
    font-weight: 700;
}
.buy-pill .buy-icon{
    font-size: 36px;
}

.buy-pill.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.rotate-arrow-open {
    -webkit-animation: rotate-arrow-open 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-arrow-open 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes rotate-arrow-open {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}
@keyframes rotate-arrow-open {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

.rotate-arrow-close {
    -webkit-animation: rotate-arrow-close 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-arrow-close 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes rotate-arrow-close {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@keyframes rotate-arrow-close {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.custom-width figure {
    text-align: center;
}

.custom-width img {
    max-width: 100%;
    height: auto;
}

.land-subtitle {
    font-size: 35px;
    line-height: 20px;
}


.land-titles:before,
.land-titles:after {
    display: none;
}

#box-3 li .raw-container * {
    margin-bottom: 0;
}

#box-3 a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

img.icons {
    width: 200px;
}

@media (max-width: 768px) {
    .land-title-1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .icon-img {
        max-width: 60px;
    }

    .fly-img p {
        margin: 8px 0;
        font-size: 2.5rem;
    }

    .scale-hover-1-05:hover {
        transform: scale(1.03);
    }

    .land-title-1 {
        font-size: 20px;
    }
 }</pre></body></html>