@import url("bootstrap-custom.css");

html {
    font-display: swap
}

:root {
    --primary: #274040;
    --secondary: #BF3B0B;
    --accent: #F24738;
    --accent-2: #F2C572;
    --text-color: #000000;
    --white: #FFFFFF;
    --black: #000000;
    --light-bg: #F7F7F5
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    letter-spacing: 0;
    font-size: 22px;
    line-height: 25px
}

.bg-light-theme {
    background-color: var(--light-bg) !important
}

.bg-primary-theme {
    background-color: var(--primary) !important;
    color: var(--white)
}

.bg-secondary-theme {
    background-color: var(--secondary) !important;
    color: var(--white)
}

.text-primary-theme {
    color: var(--primary) !important
}

.text-secondary-theme {
    color: var(--secondary) !important
}

.text-accent {
    color: var(--accent) !important
}

.text-accent-2 {
    color: var(--accent-2) !important
}

.btn-primary-theme {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white)
}

.btn-primary-theme:hover,
.btn-primary-theme:focus {
    background-color: #1f3232;
    border-color: #1f3232;
    color: var(--white)
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 8px
}

.btn-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary)
}

.btn-dark-theme {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white)
}

.btn-dark-theme:hover {
    background-color: #a33208;
    border-color: #a33208
}

.btn-outline-dark {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
    border-color: var(--black);
    border-width: 2px;
    color: var(--black)
}

.btn-outline-dark:hover {
    background-color: #a33208;
    border-color: #a33208
}

.btn-outline-white {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
    border-color: var(--white);
    border-width: 2px;
    color: var(--white)
}

.btn-outline-white:hover {
    background-color: #fff;
    border-color: #fff
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white)
}

.btn-accent:hover {
    background-color: #d93d2f;
    border-color: #d93d2f
}

.card {
    border-radius: 12px;
    border: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05)
}

.card-header {
    background-color: transparent;
    font-weight: 600
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(39, 64, 64, 0.2)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: 0.5px
}

a {
    color: var(--primary);
    text-decoration: none
}

a:hover {
    color: var(--accent)
}

.navbar {
    background-color: transparent;
    -webkit-backdrop-filter: blur(10px);
    transition: all 100ms ease-in-out;
    padding: 1.5rem 0;
    position: sticky;
    top: 0px;
    margin-bottom: -114px;
    width: 100%;
    z-index: 999
}

.navbar.fixed {
    top: 0;
    background-color: rgba(0, 0, 0, .4) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.navbar .navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s ease
}

.navbar-brand svg {
    width: 200px;
    fill: #fff
}

.skye-logovr svg {
    width: 250px;
    fill: #fff;
    margin: 30px 0 20px 0
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    position: relative;
    transition: color 0.3s ease;
    font-size: 20px;
    letter-spacing: 3px
}

.navbar.scrolled .nav-link {
    color: rgba(0, 0, 0, 0.8) !important
}

.navbar .nav-link:hover {
    color: var(--accent) !important
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--secondary) !important
}

.btn-white:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease
}

.navbar .nav-link:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0)
}

.navbar .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3)
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4)
}

.navbar.scrolled .btn-primary {
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2)
}

.navbar.fixed {
    top: 0
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    color: #fff
}

.footer {
    background-color: var(--footer-bg);
    color: var(--text-light)
}

.hero-section {
    padding: 5rem 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    border-radius: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: end
}

.hero-section.banner-home {
    background-image: url('../images/banner-home.jpg');
    background-image: image-set(url('../images/banner-home-480.webp') 480w, url('../images/banner-home-768.webp') 768w, url('../images/banner-home-1200.webp') 1200w, url('../images/banner-home-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-home-768.webp') 1x, url('../images/banner-home-1600.webp') 2x)
}

.hero-section.banner-residences {
    background-image: url('../images/banner-residences.jpg');
    background-image: image-set(url('../images/banner-residences-480.webp') 480w, url('../images/banner-residences-768.webp') 768w, url('../images/banner-residences-1200.webp') 1200w, url('../images/banner-residences-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-residences-768.webp') 1x, url('../images/banner-residences-1600.webp') 2x)
}

.hero-section.banner-gallery {
    background-image: url('../images/banner-gallery.jpg');
    background-image: image-set(url('../images/banner-gallery-480.webp') 480w, url('../images/banner-gallery-768.webp') 768w, url('../images/banner-gallery-1200.webp') 1200w, url('../images/banner-gallery-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-gallery-768.webp') 1x, url('../images/banner-gallery-1600.webp') 2x)
}

.hero-section.banner-contact {
    background-image: url('../images/banner-contact.jpg');
    background-image: image-set(url('../images/banner-contact-480.webp') 480w, url('../images/banner-contact-768.webp') 768w, url('../images/banner-contact-1200.webp') 1200w, url('../images/banner-contact-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-contact-768.webp') 1x, url('../images/banner-contact-1600.webp') 2x)
}

.hero-section.banner-amenities {
    background-image: url('../images/banner-amenities.jpg');
    background-image: image-set(url('../images/banner-amenities-480.webp') 480w, url('../images/banner-amenities-768.webp') 768w, url('../images/banner-amenities-1200.webp') 1200w, url('../images/banner-amenities-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-amenities-768.webp') 1x, url('../images/banner-amenities-1600.webp') 2x)
}

.hero-section.banner-location {
    background-image: url('../images/banner-loc.jpg');
    background-image: image-set(url('../images/banner-loc-480.webp') 480w, url('../images/banner-loc-768.webp') 768w, url('../images/banner-loc-1200.webp') 1200w, url('../images/banner-loc-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-loc-768.webp') 1x, url('../images/banner-loc-1600.webp') 2x)
}


.section-edge {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center
}

.section-overlap {
    padding: 160px 0 0 0 !important
}

.hero-section p {
    font-size: 22px;
    font-weight: 300
}

.hero-section p:last-child {
    margin: 0
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color)
}

.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md)
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(76, 201, 240, 0.25)
}

.rounded-lg {
    border-radius: 15px
}

.shadow-custom {
    box-shadow: var(--shadow-md)
}

.section-padding {
    padding: 5rem 0
}

.color-swatch {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 10px
}

.swatch-primary {
    background-color: var(--primary-color)
}

.swatch-secondary {
    background-color: var(--secondary-color)
}

.swatch-accent {
    background-color: var(--accent-color)
}

.swatch-success {
    background-color: var(--success-color)
}

.swatch-warning {
    background-color: var(--warning-color)
}

.swatch-danger {
    background-color: var(--danger-color)
}

.ticker {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    z-index: 1;
    position: relative
}

.banner-home {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.hero-section::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0
}

.hero-section .container {
    z-index: 1
}

.banner-home h1 {
    font-size: 36px;
    font-weight: 400
}

.section {
    position: relative;
    width: 100%;
    padding: 80px 0
}

.section-title {
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 45px;
    line-height: 100%;
    text-transform: uppercase
}

h3.section-title {
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 32px;
    text-transform: uppercase
}

.section-text {}

.section .btn {
    text-transform: uppercase;
    padding: 10px 25px
}

.section img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.media-box {
    width: 100%;
    height: 400px;
    overflow: hidden
}

.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.section-intro {
    min-height: 100vh
}

.section-intro .hero-image {
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
    overflow: hidden;
    position: relative
}

.section-gallery .gallery-grid-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px
}

.gap-20 {
    gap: 20px
}

.section-gallery .gallery-bottom {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px
}

.section-gallery .gallery-cta {
    background: #c44816;
    color: #fff;
    padding: 60px 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.section-gallery .gallery-cta h2 {
    letter-spacing: 3px
}

.section-gallery .gallery-cta .btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    letter-spacing: 4px;
    max-width: 200px
}

.section-gallery .gallery-cta .btn:hover {
    background: #fff;
    color: #c44816
}

h1.page-title {
    font-size: 58px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase
}

.plan-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap
}

.plan-filters button {}

.plan-filters button.active {
    background: var(--primary);
    color: #fff
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center
}

.plan-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    width: 370px;
    max-width: 100%;
    text-align: center
}

.plan-card img {
    width: 100%;
    height: auto;
    margin-bottom: 25px
}

.plan-card h3 {
    margin: 10px 0;
    font-size: 36px;
    letter-spacing: 1px
}

.plan-meta {
    color: #555;
    margin-bottom: 8px
}

.plan-price {
    font-weight: 600;
    margin-bottom: 25px
}

.plan-card a {}

.plan-card.hide {
    display: none
}

.image-edge {
    position: relative;
    margin-right: calc(-28vw+50%)
}

.image-edge img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-edge-overlap {
    margin-right: calc(-35.2vw+50%);
    margin-bottom: -120px;
    position: relative;
    z-index: 2
}

.overlap-left {
    padding: 0 0 80px 0 !important
}

.overlap-left .image-edge-overlap {
    margin-left: calc(-35.2vw+50%);
    margin-top: -120px;
    margin-bottom: 0;
    margin-right: 0
}

.image-edge-overlap img {
    width: 100%;
    object-fit: cover
}

.section-features {
    padding-top: 160px !important
}

.section-apartment {
    padding: 160px 0 !important
}

.feature-list {
    padding-left: 1rem
}

.feature-list li {
    margin-bottom: 0.6rem
}

.custom-tab-nav {
    gap: 5px;
    align-items: center
}

.custom-tab-nav .nav-link {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 18px;
    color: #0d6efd;
    font-weight: 500
}

.custom-tab-nav .nav-link.active {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08)
}

.gallery-grid div {
    height: 300px
}

.gallery-img {
    width: 100%;
    cursor: pointer
}

.modal-dark {
    background: rgba(0, 0, 0, .95)
}

.modal-img {
    max-width: 90vw;
    max-height: 80vh
}

.modal-caption {
    margin-top: 14px;
    color: #ddd;
    font-size: 15px;
    text-align: center
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px
}

.modal-prev {
    left: 30px
}

.modal-next {
    right: 30px
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer
}

.section-floorplans {
    min-height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image: url('../images/banner-floorplans.jpg');
    background-image: image-set(url('../images/banner-floorplans-480.webp') 480w, url('../images/banner-floorplans-768.webp') 768w, url('../images/banner-floorplans-1200.webp') 1200w, url('../images/banner-floorplans-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-floorplans-768.webp') 1x, url('../images/banner-floorplans-1600.webp') 2x)
}

.section-locbg {
    min-height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image: url('../images/banner-loc.jpg');
    background-image: image-set(url('../images/banner-loc-480.webp') 480w, url('../images/banner-loc-768.webp') 768w, url('../images/banner-loc-1200.webp') 1200w, url('../images/banner-loc-1600.webp') 1600w);
    background-image: -webkit-image-set(url('../images/banner-loc-768.webp') 1x, url('../images/banner-loc-1600.webp') 2x)
}

.section-amenities,
.section-loc {
    min-height: 100vh
}

.footer-section {
    background-color: #f7f7f5;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-size: 24px
}

.social-icon:hover {
    background-color: #000;
    color: #fff
}

.copyrights {
    margin: auto 0 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0
}

.copyrights a {
    color: #fff
}

.copyrights .copyinfo {
    margin: 0
}

.copyrights .f-list {
    float: right;
    list-style: none;
    margin: 0
}

.copyrights .container {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.widget-list li {
    margin-bottom: 5px
}

.widget-list a {
    color: #000;
    text-decoration: none;
    font-weight: 400
}

.widget-list a:hover {
    text-decoration: underline
}

.loc-grid {
    display: flex
}

.loc-grid div {
    height: 675px
}

.section-lounge {
    min-height: 100vh;
    background: url(../images/bg-lounge.jpg) no-repeat center center fixed;
    background-size: cover
}

.contact-form-section {
    background: #fff
}

.contact-form .form-label {
    margin-bottom: 0.5rem
}

.underline-input {
    border: none;
    border-bottom: 2px solid var(--accent);
    border-radius: 0;
    padding: 0.5rem 0;
    font-size: 16px;
    box-shadow: none
}

.underline-input:focus {
    border-color: #000;
    box-shadow: none
}

textarea.underline-input {
    resize: none
}

@media (max-width:1200px) {
    .navbar .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .banner-home {
        padding: 0
    }
}

@media (max-width:992px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 90%
    }

    .section {
        padding: 40px 0;
        min-height: 100px
    }

    .section-apartment {
        padding: 120px 0 !important
    }

    .section-overlap,
    .section-apartment {
        padding-top: 40px !important
    }

    .overlap-left {
        padding-bottom: 40px !important
    }

    .section-gallery .gallery-bottom {
        grid-template-columns: 1fr 2fr
    }

    .gallery-cta {
        align-items: center
    }

    .image-edge,
    .image-edge-overlap {
        margin-right: calc(-50vw+50%)
    }

    .overlap-left .image-edge-overlap {
        margin-left: calc(-50vw+50%)
    }

    .fullwidth {
        margin-right: calc(-50vw+50%);
        margin-left: calc(-50vw+50%)
    }

    .section-edge {
        padding-bottom: 0
    }

    .navbar {
        margin-bottom: -101px;
        background-color: rgba(0, 0, 0, .4) !important;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05)
    }

    .navbar-nav {
        margin: 10% auto
    }

    .navbar .nav-item {
        margin: 0 !important
    }

    .navbar li .btn-white {
        margin-top: 10px
    }

    .ticker {
        font-size: 18px;
        line-height: 24px
    }

    .skye-logovr svg {
        width: 180px
    }
}

@media (max-width:767px) {
    .navbar-brand svg {
        width: 120px
    }

    .section-title {
        font-size: 40px
    }

    .footer-section .section-title {
        font-size: 32px
    }

    h3.section-title {
        font-size: 40px
    }

    .section .btn {
        width: 100%;
        padding: 10px
    }

    .hero-section {
        padding: 40px 0;
        min-height: 70vh
    }

    .banner-home {
        min-height: 100vh;
        margin-top: 25px
    }

    .section-gallery .gallery-cta .btn {
        max-width: 100%
    }

    .section-gallery .gallery-grid-top {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        height: auto
    }

    .section-gallery .gallery-bottom {
        gap: 10px
    }

    .gap-20 {
        gap: 10px
    }

    .full-col {
        grid-column: 1 / -1
    }

    .section-gallery .gallery-bottom {
        grid-template-columns: 1fr;
        height: auto
    }

    .section-gallery .media-box,
    .section-gallery .gallery-cta {
        height: 260px
    }

    .section-gallery .gallery-cta {
        padding: 40px 10%;
        align-items: start;
        height: 200px
    }

    .section-gallery .gallery-cta h2 br {
        display: none
    }

    .section-locbg,
    .section-lounge,
    .section-floorplans {
        min-height: 75vh;
        padding-bottom: 0
    }

    .banner-home h1 {
        font-size: 28px
    }

    h1.page-title {
        font-size: 50px
    }

    .section .nav .btn {
        padding: 6px 10px;
        font-size: 18px
    }

    .gallery-grid div {
        height: 150px
    }

    .loc-grid div {
        height: 300px;
        padding: 5px;
        margin: 0
    }

    .copyrights .container {
        padding: 0
    }

    .copyrights {
        font-size: 14px
    }

    .plan-filters {
        display: grid;
        grid-template-columns: 2fr 2fr
    }

    .feature-list {
        margin: 0
    }

    .feature-list li {
        margin: 0;
        line-height: 26px
    }

    .custom-tab-nav li {
        width: 100%
    }

    .widget-title {
        font-size: 30px
    }

    .section-loc-gallery {
        padding: 0
    }
}

@media (max-width:480px) {
    .hero-section {
        background-attachment: scroll
    }

    .hero-section.banner-home {
        background-image: url('../images/banner-home-480.webp') !important
    }

    .hero-section.banner-residences {
        background-image: url('../images/banner-residences-480.webp') !important
    }

    .hero-section.banner-gallery {
        background-image: url('../images/banner-gallery-480.webp') !important
    }

    .hero-section.banner-contact {
        background-image: url('../images/banner-contact-480.webp') !important
    }

    .hero-section.banner-amenities {
        background-image: url('../images/banner-amenities-480.webp') !important
    }

    .hero-section.banner-location {
        background-image: url('../images/banner-loc-480.webp') !important
    }

    .section-floorplans {
        background-image: url('../images/banner-floorplans-480.webp') !important;
        background-attachment: scroll !important
    }

    .section-locbg {
        background-image: url('../images/banner-loc-480.webp') !important;
        background-attachment: scroll !important
    }
}

@media (max-width:380px) {
    .copyrights {
        font-size: 12px
    }
}

@media (max-width:359px) {
    .copyrights .container {
        flex-direction: column
    }
}

.hamburger {
    background: none;
    border: 0
}

.hamburger svg {
    width: 36px;
    height: 36px
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: #2f4746;
    color: #fff;
    padding: 40px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1050;
    overflow: auto
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible
}

@media (min-width:992px) {
    .mobile-nav {
        display: none !important
    }
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    padding: 0
}

.nav-links {
    margin-top: 40px
}

.nav-links a {
    display: block;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease
}

.nav-links a:nth-child(1) {
    transition-delay: 0.05s
}

.nav-links a:nth-child(2) {
    transition-delay: 0.1s
}

.nav-links a:nth-child(3) {
    transition-delay: 0.15s
}

.nav-links a:nth-child(4) {
    transition-delay: 0.2s
}

.nav-links a:nth-child(5) {
    transition-delay: 0.25s
}

.nav-links a:nth-child(6) {
    transition-delay: 0.3s
}

.mobile-nav.active .nav-links a {
    opacity: 1;
    transform: translateY(0)
}

.apply-btn {
    display: block;
    margin: 40px 0 30px 0;
    padding: 16px;
    border: 2px solid #fff;
    text-align: center;
    color: #fff;
    text-decoration: none;
    letter-spacing: 6px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0.4s, transform 0.35s ease 0.4s
}

.mobile-nav.active .apply-btn {
    opacity: 1;
    transform: translateY(0)
}

.apply-btn:hover {
    color: #2F4746;
    background: #fff
}

.connect {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0.5s, transform 0.35s ease 0.5s
}

.mobile-nav.active .connect {
    opacity: 1;
    transform: translateY(0)
}

.connect h4 {
    margin-bottom: 12px;
    letter-spacing: 2px
}

.connect p,
.connect a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px
}

.social {
    margin-top: 20px;
    display: flex;
    gap: 12px
}

.social a {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold
}

.connect a {
    color: #fff
}