@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap');


@font-face {
    font-family: 'BDScript-Regular';
    src: url('../font/BDScript-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --dark-blue: #1C3052;
}

* {
    box-sizing: border-box;
}



html,
body {
    height: 100%;
    margin: 0;
}


.links:hover {
    color: var(--dark-blue);
    cursor: pointer;
}

/* ---------------------------------------- NAVBAR ------------------------------------------ */

.container.full {
    min-height: 100%;
    min-width: 100%;
    background-size: cover;
}

nav {
    transition: background-color 0.9s;
    background: rgba(255, 255, 255, 15%) 0% 0% no-repeat padding-box;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.logo {
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    transition: font-size .4s;
}

.logo:hover {
    color: var(--dark-blue);
}


ul.d-flex,
li {
    list-style-type: none;
    margin-bottom: 0;
}

.div-link {
    margin: 0px 35px;
}

.desktop-menu {
    display: none;
    margin-bottom: 0;
}

.a-nav-link {
    font-size: 1.1rem;
    transition: font-size .4s;
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease-in-out;
    letter-spacing: 5px;
}

.a-nav-link:before {
    content: '';
    background: var(--dark-blue);
    display: block;
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.a-nav-link:hover {
    background-position: 0;
    color: var(--dark-blue);
}

.a-nav-link:hover::before {
    width: 100%;
}

.a-nav-link.selected {
    background-position: -100%;
}

.a-nav-link.selected::before {
    width: 100%;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    transform: none;
}

.navbar-toggler-icon {
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(28, 48, 82)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler[aria-expanded="true"]>.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(28, 48, 82)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

#hamburgerMenu {
    z-index: 5;
}

.navbar-mobile {
    height: 80%;
    width: 80%;
    opacity: 0;
    bottom: 4%;
    background-color: rgba(255, 255, 255, 15%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
}

.navbar-toggler {
    color: transparent;
}

.navbar-mobile.show {
    opacity: 1;
    transition: opacity 0.4s;
}


/* ---------------------------------------- FOOTER ------------------------------------------ */
footer {
    display: grid;
    background: url("../img/banner/footer-luxury-beach-cayman-islands.webp") no-repeat bottom center;
    background-size: cover;
}

.footer-logo {
    width: 280px;
}

.footer-logo.index-logo-footer {
    margin-top: 5rem;
}

footer.index {
    margin-top: -175px;
}

.link-email:hover {
    cursor: pointer;
    color: var(--dark-blue);
}

.div-link {
    margin: 0px 35px;
}

.link-footer {
    transition: font-size .4s;
    display: inline-block;
    position: relative;
    font-size: 10px;
    transition: all 0.3s ease-in-out;
}

.link-footer:before {
    content: '';
    background: var(--dark-blue);
    display: block;
    position: absolute;
    color: var(--dark-blue);
    ;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.link-footer:hover {
    background-position: 0;
    color: var(--dark-blue);
}

.link-footer:hover::before {
    width: 100%;
}

.link-footer.selected {
    background-position: -100%;
    color: var(--dark-blue);
}

.link-footer.selected::before {
    width: 100%;
    color: var(--dark-blue);
}

.div-link {
    margin: 0px 0px;
}

.ps-p {
    padding-right: 80px;
}

.mx-width {
    max-width: 800px;
}

.ps-p {
    padding-right: 40px;
}

@media (min-width: 375px) {

    /* ---------------------------------------- NAVBAR ------------------------------------------ */
    .navbar-toggler-icon {
        width: 10vw;
    }

    .logo {
        font-size: 81px;
    }

    .navbar-toggler-icon {
        width: 2.4rem !important;
        height: 2.4rem !important;
    }

    .a-nav-link{
        letter-spacing: 5px;
    }
    
    .navbar-mobile {
        bottom: 0%;
        width: 80%;
        height: 80%;
    }

    /* ---------------------------------------- FOOTER ------------------------------------------ */

    .ps-p {
        padding-right: 40px;
    }

    .link-footer {
        font-size: 12px;
    }

    .footer-logo {
        width: 280px;
    }

}

@media (min-width: 576px) {
    /* ---------------------------------------- NAVBAR ------------------------------------------ */

    .navbar-toggler-icon {
        width: 10vw;
    }

    .logo {
        font-size: 81px;
    }

    .navbar-toggler-icon {
        width: 2.4rem !important;
        height: 2.4rem !important;
    }
    
    .navbar-mobile {
        bottom: 4%;
        width: 80%;
        height: 80%;
    }

    .a-nav-link{
        letter-spacing: 5px;
    }


    /* ---------------------------------------- FOOTER ------------------------------------------ */

    .footer-logo {
        width: 380px;
    }

    .div-link {
        margin: 0px 0px;
    }

    .link-footer {
        font-size: 15px;
    }
}

@media (min-width: 768px) {

    /* ---------------------------------------- NAVBAR ------------------------------------------ */

    .navbar-toggler-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    nav.onScroll a.logo {
        font-size: 60px
    }

    nav.onScroll ul .a-nav-link {
        font-size: 16px;
    }

    .a-nav-link{
        letter-spacing: 5px;
    }

    .logo {
      font-size: 81px;
    }

    .navbar-mobile {
        top: 10%;
        right: 4.5%;
        height: 300px;
        width: 35%;
    }

    /* ---------------------------------------- FOOTER ------------------------------------------ */
    .footer-logo.index-logo-footer {
        margin-top: 5rem;
    }

    .ps-p {
        padding-right: 0px;
    }

    .link-footer {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    /* ---------------------------------------- NAVBAR ------------------------------------------ */

    .logo {
        font-size: 80px;
    }

    .a-nav-link {
        font-size: 16px;
        letter-spacing: 5px;
    }


    .div-link {
        margin: 0px 20px;
    }

    .desktop-menu {
        display: flex;
    }

    /* ---------------------------------------- FOOTER ------------------------------------------ */

    .ps-p {
        padding-right: 0px;
    }

    .footer-logo.index-logo-footer {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    /* ---------------------------------------- NAVBAR ------------------------------------------ */

    .logo {
        font-size: 80px;
    }

    .desktop-menu {
        display: flex;
    }

    .div-link {
        margin: 0px 20px;
    }

    .a-nav-link {
        font-size: 16px;
        letter-spacing: 5px;
    }

    /* ---------------------------------------- FOOTER ------------------------------------------ */

    .ps-p {
        padding-right: 0px;
    }

    .footer-logo.index-logo-footer {
        margin-top: 0;
    }

    .link-footer {
        font-size: 15px;
    }
}

@media (min-width: 1400px) {
    /* ---------------------------------------- NAVBAR ------------------------------------------ */

    .logo {
        font-size: 115px;
    }

    .a-nav-link {
        font-size: 20px;
        letter-spacing: 5px;
    }
}