html {
    font-family: C059, "Times New Roman", Times, serif;
    scroll-behavior: smooth !important;
}

body {
    margin: 0;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100vw;
}

header {
    height: 40px;
    width: calc(100vw - 40px);
    padding: 12px 20px;
    background: white;
    color: #085596;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

#logo {
    position: absolute;
    top: 12px;
    left: 12px;
}

#logo img {
    height: 42px;
    width: 54px;
}

nav {
    display: flex;
    align-items: center;
    width: 500px;
    margin: 9px auto;
}

button[title="Menu"] {
    display: none;
}

@media screen and (max-width: 900px) {
    nav {
        display: none;
        background: #085596;
        width: 100vw;
        position: absolute;
        top: 55px;
        left: 0;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
    }

    nav ol {
        flex-direction: column;
        width: 100%;
    }

    nav ol li {
        width: 100%;
        border-bottom: 2px solid #fff3;
        padding-top: 4px !important;
    }

    nav ol li:last-child {
        border-bottom: none;
    }

    nav ol li a {
        margin: 0;
        color: white !important;
        width: 100%;
        padding: 12px 20px;

        font-size: 20px !important;
        font-weight: 600 !important;
    }

    nav ol li a:hover {
        line-height: unset !important;
        border-bottom: none !important;
    }

    button[title="Menu"] {
        display: block;
        background: url("../img/menu.svg") no-repeat !important;
        background-size: 100%;
        border: none;
        float: left;
        height: 40px;
        width: 40px;
    }

    #logo {
        margin: 0 auto;
        display: block;
        position: unset;
    }

}

@media screen and (max-width: 480px) {
    #logo {
        margin: 0 48px !important;
        display: block;
        position: unset;
    }
}

nav ol {
    display: flex;
    list-style-type: none;
    margin: 0;
    line-height: 24px;
    padding: 0;
}

nav ol {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ol li a {
    display: flex;
    align-items: center;
    margin: 0 12px;
    font-size: 16px;
    text-decoration: none;
    color: #085596;
}

nav ol li a img {
    margin-left: 6px;
}

nav ol li a:hover {
    line-height: 20px;
    border-bottom: 2px solid #085596;
}

nav ol li a:hover img {
    margin-top: -1px;
}

.tel {
    position: absolute;
    top: 12px;
    right: 18px;
    width: 180px;
    white-space: nowrap;
}

.tel > a, a:visited {
    color: #085596;
    text-decoration: none;
}

.tel > a > em {
    font-size: 20px;
    font-style: normal;
    line-height: 42px;
}

main {
    margin-top: 62px;
    flex: 1;
}

.hero {
    position: relative;
    height: 360px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #085596;
    color: transparent;
}


.carousel img {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.carousel img.active {
    transform: translateX(-100%);
}

.carousel img.inactive {
    transform: translateX(-200%);
}

.carousel img.hidden {
    opacity: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0006;
}

.hero-content img:first-of-type {
    height: 240px;
}

.hero-content img:last-of-type {
    height: 40px;
}

.about {
    background: #fff;
    padding: 24px 40px;
    margin: 0 auto;
    max-width: 1284px;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
}

.properties {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px 42px;
    background: #fff;
    font-size: 18px;
    text-align: justify;
    max-width: 1284px;
    margin: 0 auto;
}

.property-example {
    width: 90%;
    height: 200px;
    box-shadow: 10px 10px 0 0 #042c4d;
    border: 5px solid #085596;
    margin: 0 auto 42px;
}

#select {
    margin-left: 52px;
}

#select .property-example {
    background: url("../img/select.webp") no-repeat;
    background-size: cover;
    background-position-y: bottom;
}

#premier {
    margin-right: 52px;
}

#premier .property-example {
    background: url("../img/premier.webp") no-repeat;
    background-size: cover;
    background-position-y: bottom;
}

#select h2 {
    color: #085596;
    font-family: Select, sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 32px;
}

#premier h2 {
    color: #085596;
    font-family: "Bahnschrift", sans-serif;
    font-weight: 600;
    font-stretch: semi-condensed;
    letter-spacing: 3px;
    text-align: center;
    font-size: 32px;
}

#premier a, #select a {
    color: #085596 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

#premier a:hover, #select a:hover {
    text-decoration: underline !important;
}

.properties p {
    padding: 0 42px;
}

button {
    display: block;
    margin: 0 auto 20px;
    background: #085596;
    border: 1px solid #085596;
    color: #fff;
    text-decoration: none !important;
    padding: 10px 18px 6px;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

a:has(button) {
    text-decoration: none !important;
    margin: 0 auto;
    width: fit-content;
    display: block;
    height: 40px;
}

button:hover {
    background: #fff;
    color: #085596;
}

button:active {
    opacity: 0.6;
}

.compass {
    display: flex;
}

.compass img {
    height: 80px;
    width: 80px;
}

@media screen and (max-width: 1024px) {
    .properties {
        flex-direction: column-reverse;

    }

    .compass {
        margin-top: 32px !important;
        justify-content: center;
        align-items: center;
    }

    .line {
        height: 2px;
        width: 100%;
        background: #0071ac;
        margin: 24px 3px 24px 0 !important;
    }

    .properties div:not(.line):not(.compass) {
        width: 90% !important;
        margin: 0 auto !important;
    }

    .properties p {
        margin: 36px 0 24px;
        padding: 4px !important;
    }
}

#why {
    background: #085596;
    color: #fff;
    padding: 20px 90px 52px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    scroll-margin-top: 64px;
}

section h2 {
    font-weight: 600;
    font-size: 36px;
    text-align: center;
}

.points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1284px;
}

.points div {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.points h3 {
    font-size: 30px;
    font-style: italic;
    margin-bottom: 12px;
}

.points .divisor {
    margin: 0;
    opacity: 0.2;
    border-left: 6px double #fff;
    width: 0;
}

@media screen and (max-width: 1294px) {
    .points .d2 {
        display: none;
    }

    .peace {
        margin: 0 76px;
    }
}

@media screen and (max-width: 900px) {
    .points .d1 {
        display: none;
    }

    .buck {
        margin: 0 76px;
    }
}

@media screen and (max-width: 580px) {
    .peace, .buck {
        margin: 0;
    }

    #why {
        padding: 20px;
    }
}

#why button {
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 18px 6px;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

#why button:hover {
    background: #fff;
    color: #085596;
}

#why button:active {
    opacity: 0.8;
}

#testimonials {
    padding: 20px 24px;
    scroll-margin-top: 64px;
}

#testimonials a:has(button) {
    margin-top: 32px;
    margin-bottom: 18px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.featured {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 16px;
}

.featured h3 {
    margin: 0;
    font-size: 20px;
    color: #085596;
}

.bigscores {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    width: 100%;
}

.bigscore {
    text-align: center;
    margin: 14px 0;
    width: 140px;
}

.bigscore h3 {
    font-size: 26px;
    color: #085596;
}

.bigscore p {
    margin: 0;
    opacity: 0.6;
}

#total-reviews {
    margin-top: 6px;
    opacity: 0.6;
    color: black;
}

.feedback {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
    max-width: 640px;
    padding: 28px 28px 20px;

    background: #efefef;
}

.feedback-rating {
    display: flex;
    justify-content: center;
}

.feedback-rating , .feedback-info {
    width: 200px;
}

.feedback-info p {
    margin: 6px;
    font-size: 16px;
    color: #4d4d4d;
    text-align: center;
}

.feedback-info em {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.feedback-date {
    margin-top: 0.5em !important;
}

blockquote {
    margin: 6px 24px;
    padding: 10px;
    width: 320px;

    background: #f9f9f9;
    color: #343434;
    position: relative;
}

blockquote:before {
    position: absolute;
    content: open-quote;
    font-size: 4em;
    margin-left: -58px;
    margin-top: -0.4em;
    color: #343434;
}

blockquote:after {
    position: absolute;
    content: close-quote;
    font-size: 4em;
    bottom: 0;
    right: 0;
    margin-right: -38px;
    margin-bottom: -1em;
    color: #343434;
}

blockquote pre {
    display: inline;
    font-family: inherit;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    margin-block: 0;
    white-space: unset;
}

.feedback-scores {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    margin-top: auto;
}

.feedback-scores p {
    text-align: center;
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 600;
    margin: 5px;
}

.feedback-scores .score-value {
    font-size: 28px;
    font-weight: 600;
    color: #323232;
}

.feedback-scores .score-value em {
    font-size: 20px;
    font-style: oblique;
    color: #828282;
}

.testimonials button {
    margin-top: 30px;
}

.cta {
    color: white;
    background: url("../img/bgs/sea.webp") no-repeat bottom;
    background-size: cover;
    min-height: 580px;
    height: calc(80vh + 96px);
}

.cta-content {
    background: #00000066;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.cta-content h2 {
    font-size: 48px;
    margin-top : -24px;
}

.cta-content button {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.cta-content button:hover {
    background: white;
    color: #343434;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    margin-top: 12px;
}

.wline {
    background: white;
    width: 120px;
    height: 1px;
    margin: 24px 8px;
    max-height: 1px;
}

.contact {
    padding: 12px;
    text-decoration: none;
    color: white;

    display: flex;
    align-items: center;
    width: 210px;
}

.contact .ico {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    margin-top: -4px;
}

footer {
    background: #222;
    color: #fff;
}

.footer-top {
    border-bottom: 1px solid #444;
    padding: 32px 20px 20px;
    margin: 0 auto;
    max-width: 1520px;
    display: flex;
}

@media screen and (max-width: 900px) and (min-width: 720px) {
    .footer-top {
        flex-wrap: wrap;
        margin: 0 auto;
        width: 714px;
    }

    .footer-section:first-of-type {
        margin-left: 420px;
    }

    .footer-section:last-of-type {
        order: 3;
    }

    .sails {
        order: 3;
        margin-top: -118px;
    }
}

@media only screen and (max-width: 720px) {
    .footer-top {
        width: 360px;
        align-items: center;
        flex-direction: column !important;
    }

    .footer-section {
        width: 250px;
        margin-top: 12px !important;
    }


    .sails {
        order: 3;
        margin-top: 32px !important;
    }
}

.sails {
    height: 214px;
    aspect-ratio: 360 / 214;
    margin-right: auto;
}

.footer-section {
    padding: 0 48px;
}

.footer-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fbbc14;

}

.footer-section ul {
    padding: 0;
    list-style-type: none;
}

.footer-section li {
    margin-bottom: 18px;
    font-size: 16px;
    white-space: nowrap;
}

.contact-info li {

    margin-bottom: 12px;
}

.footer-section a {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section a:active {
    opacity: 0.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    padding: 14px 36px 18px 36px;
    max-width: 1520px;
    margin: 0 auto;
}

.footer-bottom p {
    padding-top: 4px;
    font-size: 16px;
    font-weight: initial;
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
    color: #5ba7e8;
}

.footer-bottom em {
    color: #8a8a8a;
    margin: 0 0.4em;
}

.iata-logo {
    height: 48px;
    aspect-ratio: 251 / 80;
    margin-left: 32px;
    user-select: none;
}

.ico {
    height: 24px;
    aspect-ratio: 1 / 1;
    margin-right: 8px;
    user-select: none;
    vertical-align: bottom;
}

@media screen and (max-width: 500px) {
    .footer-top .sails {
        height: unset;
        width: 76vw;
        margin: 0 auto;
    }

    .hero-content img:first-of-type {
        height: unset;
        width: 60%;
    }

    .hero-content img:last-of-type {
        height: unset;
        width: 74%;
    }
}