/* Start custom CSS for html, class: .elementor-element-124030c *//*==================================================
                PRIMO SHINE HEADER
                PART 1 / 3
==================================================*/

.ps-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: 0.35s ease;
}

.ps-header-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 18px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}

/*==================================================
                HEADER SCROLL
==================================================*/

.header-scrolled {
    background: #0a0a0a;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.header-scrolled .ps-header-container {
    padding-top: 12px;
    padding-bottom: 12px;
}

/*==================================================
                    LOGO
==================================================*/

.ps-logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.ps-logo img {
    height: 58px;
    width: auto;

    display: block;
}

/*==================================================
                  DESKTOP NAV
==================================================*/

.ps-nav {
    margin-left: auto;
    margin-right: 40px;
}

.ps-nav ul {
    display: flex;
    align-items: center;

    gap: 45px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.ps-nav li {
    margin: 0;
    padding: 0;
}

.ps-nav a {
    position: relative;

    display: inline-block;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.5px;

    padding: 5px 0;

    transition: color 0.3s ease;
}

/* Hover */

.ps-nav a:hover {
    color: #ffc400;
}

/*==================================================
                ACTIVE UNDERLINE
==================================================*/

.ps-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #ffc400;

    transition: width 0.3s ease;
}

.ps-nav a:hover::after {
    width: 100%;
}

.ps-nav a.active {
    color: #ffc400;
}

.ps-nav a.active::after {
    width: 100%;
}

/*==================================================
                  BOOK NOW BUTTON
==================================================*/

.ps-book-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 14px 30px;

    border-radius: 50px;

    background: #ffc400;
    color: #000000;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: 0.35s ease;
}

.ps-book-btn:hover {
    color: #000000;

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(255, 196, 0, 0.35);
}

/*==================================================
                PRIMO SHINE HEADER
                PART 2 / 3
==================================================*/

/*==========================
        HAMBURGER
===========================*/

.ps-menu-toggle{

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    cursor:pointer;

    width:48px;

    height:48px;

    padding:0;

    border:none;

    background:transparent;

    outline:none;

    appearance:none;

    -webkit-appearance:none;

}


/* Hamburger Lines */

.ps-menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:#ffffff;

    border-radius:20px;

    transition:.3s ease;

}


/* Hover */

.ps-menu-toggle:hover{

    background:transparent !important;

    border:none !important;

    outline:none;

}


/* Golden Hamburger on Hover */

.ps-menu-toggle:hover span{

    background:#ffc400;

}


/* Remove browser focus color */

.ps-menu-toggle:focus{

    background:transparent !important;

    border:none !important;

    outline:none !important;

    box-shadow:none !important;

}


/* Active / Click */

.ps-menu-toggle:active{

    background:transparent !important;

    border:none !important;

    outline:none;

}

.ps-menu-toggle:active span{

    background:#ffc400;

}

/*==================================================
                MOBILE MENU
==================================================*/

.ps-mobile-menu {
    position: fixed;

    top: 0;
    right: -100%;

    width: 300px;
    max-width: 85vw;

    height: 100vh;

    box-sizing: border-box;

    background: #111111;

    display: flex;

    flex-direction: column;

    padding: 120px 35px 40px;

    gap: 30px;

    overflow-y: auto;

    transition: right 0.4s ease;

    z-index: 9998;

    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
}

/* OPEN MOBILE MENU */

.ps-mobile-menu.active {
    right: 0;
}

/*==================================================
              MOBILE MENU LINKS
==================================================*/

.ps-mobile-menu a {
    display: block;

    color: #ffffff;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: color 0.3s ease;
}

.ps-mobile-menu a:hover {
    color: #ffc400;
}

/*==================================================
              MOBILE BOOK BUTTON
==================================================*/

.ps-mobile-menu .mobile-book-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 20px;

    padding: 15px;

    background: #ffc400;

    color: #000000 !important;

    text-align: center;

    border-radius: 50px;

    font-weight: 700;
}

.ps-mobile-menu .mobile-book-btn:hover {
    color: #000000 !important;

    transform: translateY(-2px);
}

/*==================================================
                PRIMO SHINE HEADER
                PART 3 / 3
==================================================*/

/*==================================================
                    TABLET
==================================================*/

@media (max-width: 1100px) {

    .ps-nav ul {
        gap: 25px;
    }

    .ps-nav {
        margin-right: 25px;
    }

    .ps-book-btn {
        padding: 13px 22px;
    }

}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 992px) {

    /* HEADER */

    .ps-header {
        width: 100%;
    }

    .ps-header-container {
        width: 100%;

        padding: 18px 20px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        box-sizing: border-box;
    }


    /* LOGO */

    .ps-logo {
        flex-shrink: 0;
    }

    .ps-logo img {
        height: 50px;
        width: auto;
    }


    /* HIDE DESKTOP NAV */

    .ps-nav {
        display: none !important;
    }


    /* HIDE DESKTOP BOOK BUTTON */

    .ps-book-btn {
        display: none !important;
    }


    /* SHOW HAMBURGER */

    .ps-menu-toggle {
        display: flex !important;

        visibility: visible !important;
        opacity: 1 !important;

        margin-left: auto;
    }


    /* MOBILE MENU */

    .ps-mobile-menu {
        display: flex !important;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .ps-header-container {
        padding: 15px 16px;
    }

    .ps-logo img {
        height: 46px;
    }

    .ps-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .ps-menu-toggle span {
        width: 27px;
        height: 3px;
    }

    .ps-mobile-menu {
        width: 280px;
        max-width: 85vw;

        padding: 110px 28px 35px;

        gap: 26px;
    }

    .ps-mobile-menu a {
        font-size: 17px;
    }

}


/*==================================================
            VERY SMALL MOBILE
==================================================*/

@media (max-width: 360px) {

    .ps-logo img {
        height: 42px;
    }

    .ps-mobile-menu {
        width: 260px;
    }

}/* End custom CSS */