/* =========================
ULTRA PREMIUM DESIGN SYSTEM
========================= */

:root {

    --primary: #0f172a;
    --secondary: #2563eb;
    --accent: #06b6d4;
    --success: #22c55e;
    --warning: #f59e0b;

    --bg: #f1f5f9;
    --card: #ffffff;

    --text: #0f172a;
    --muted: #64748b;

    --border: #e2e8f0;

    /* gradients */

    --gradient-main: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-hero: linear-gradient(135deg, #0f172a 10%, #1e40af 60%, #06b6d4 100%);
    --gradient-button: linear-gradient(135deg, #22c55e, #16a34a);

    /* shadows */

    --shadow-sm: 0 3px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .10);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .18);

    /* radius */

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

}

/* =========================
GLOBAL
========================= */

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: .3s;
}

/* =========================
NAVBAR
========================= */

.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 18px 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--muted);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
}

/* call button */

.btn-navy {

    background: var(--gradient-main);
    border: none;
    border-radius: 999px;
    color: white;
    padding: 12px 26px;
    font-weight: 600;
    box-shadow: var(--shadow-md);

}

.btn-navy:hover {

    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);

}

/* ===============================
PREMIUM HERO
================================ */

.hero-premium {
    position: relative;
    padding: 90px 20px 70px;
    background: linear-gradient(135deg, #020617, #1e3a8a 60%, #0891b2);
    overflow: hidden;
}

/* grid */

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===============================
LEFT SIDE
================================ */

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.hero-title span {
    color: #22c55e;
}

.hero-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 28px;
}

/* CTA */

.hero-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-rating {
    margin-top: 10px;
    font-size: 14px;
    color: #e2e8f0;
}

/* ===============================
RIGHT SIDE
================================ */

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

/* trust card */

.hero-trust-card {
    position: absolute;
    bottom: -35px;
    left: 20px;
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    width: 220px;
}

.hero-trust-card h4 {
    font-weight: 700;
    font-size: 16px;
}

.hero-trust-card p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}

.trust-stats {
    display: flex;
    justify-content: space-between;
}

.trust-stats strong {
    font-size: 20px;
}

.trust-stats span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

/* ===============================
TABLET
================================ */

@media (max-width:992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-trust-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

}

/* ===============================
MOBILE
================================ */

@media (max-width:480px) {

    .hero-premium {
        padding: 70px 20px 50px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        border-radius: 14px;
    }

    .hero-trust-card {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 20px auto 0;
        width: 90%;
        max-width: 260px;
    }
.hero-grid{
    gap : 0px;
}
}

/* ================================
MODERN CRUISE SECTION
================================ */

.cruise-modern {

    padding: 90px 20px;

    background: linear-gradient(180deg, #ffffff, #f1f5f9);

}

.cruise-modern-grid {

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 70px;

    align-items: center;

}

/* LEFT CONTENT */

.section-badge {

    display: inline-block;

    background: #e0f2fe;

    color: #0369a1;

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 13px;

    margin-bottom: 12px;

}

.cruise-modern-content h2 {

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 18px;

}

.cruise-modern-content span {

    color: #2563eb;

}

.section-subtitle {

    font-size: 17px;

    color: #475569;

    margin-bottom: 26px;

}

/* features */

.feature-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 30px;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 15px;

    color: #334155;

}

.feature-icon {

    background: #eef2ff;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

}

/* CTA */

.section-cta {

    background: linear-gradient(135deg, #22c55e, #16a34a);

    color: white;

    padding: 14px 28px;

    border-radius: 40px;

    font-weight: 700;

    display: inline-block;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

}

/* RIGHT PORT CARDS */

.ports-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}

.port-card {

    background: white;

    padding: 24px;

    border-radius: 18px;

    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .3s;

}

.port-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.port-card h4 {

    font-weight: 700;

    margin-bottom: 6px;

}

.port-card span {

    font-size: 13px;

    color: #64748b;

}

.port-card.highlight {

    background: linear-gradient(135deg, #2563eb, #1d4ed8);

    color: white;

}

.port-card.highlight span {

    color: #e2e8f0;

}

/* ================================
RESPONSIVE
================================ */

@media (max-width:992px) {

    .cruise-modern-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;

    }

    .feature-item {

        justify-content: center;

    }

    .section-cta {

        margin: auto;

    }

}

@media (max-width:480px) {

    .cruise-modern-content h2 {

        font-size: 28px;

    }

    .ports-wrapper {

        grid-template-columns: 1fr;

    }

}

/* ============================
FEATURES SECTION
============================ */

.features-modern {

    padding: 100px 20px;

    background: linear-gradient(180deg, #ffffff, #f1f5f9);

}

.features-header {

    text-align: center;

    max-width: 700px;

    margin: auto;

    margin-bottom: 60px;

}

.features-header h2 {

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 14px;

}

.features-header span {

    color: #2563eb;

}

.features-header p {

    font-size: 17px;

    color: #64748b;

}

/* GRID */

.features-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

/* FEATURE CARD */

.feature-box {

    background: white;

    padding: 30px;

    border-radius: 20px;

    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .3s;

}

.feature-box:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);

}

/* ICON */

.feature-icon {

    width: 52px;

    height: 52px;

    background: #eef2ff;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

}

.feature-icon svg {

    color: #2563eb;

}

/* TEXT */

.feature-box h3 {

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 10px;

}

.feature-box p {

    font-size: 14px;

    color: #64748b;

}

/* CTA CARD */

.feature-box.highlight {

    background: linear-gradient(135deg, #2563eb, #1d4ed8);

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.feature-box.highlight p {

    color: #e2e8f0;

}

.feature-box.highlight a {

    margin-top: 16px;

    background: white;

    color: #1d4ed8;

    padding: 12px 20px;

    border-radius: 30px;

    font-weight: 600;

    width: fit-content;

}

/* ============================
RESPONSIVE
============================ */

@media (max-width:992px) {

    .features-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width:600px) {

    .features-grid {

        grid-template-columns: 1fr;

    }

    .features-header h2 {

        font-size: 28px;

    }

}

/* ================================
HOW IT WORKS SECTION
================================ */

.parking-process {

    padding: 40px 20px;

    background: linear-gradient(180deg, #f8fafc, #eef2ff);

}

/* HEADER */

.process-header {

    text-align: center;

    max-width: 700px;

    margin: auto;

    margin-bottom: 60px;

}

.process-tag {

    display: inline-block;

    background: #e0f2fe;

    color: #0369a1;

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 13px;

    margin-bottom: 12px;

}

.process-header h2 {

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 12px;

}

.process-header span {

    color: #2563eb;

}

.process-header p {

    font-size: 17px;

    color: #64748b;

}

/* IMAGE */

.process-visual {

    position: relative;

    max-width: 900px;

    margin: auto;

    margin-bottom: 60px;

}

.process-visual img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

/* badges */

.visual-badges {

    position: absolute;

    top: 20px;

    left: 20px;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}

.visual-badges span {

    background: rgba(0, 0, 0, .7);

    color: white;

    padding: 6px 10px;

    font-size: 12px;

    border-radius: 6px;

}

/* STEPS */

.steps-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.step-card {

    background: white;

    padding: 30px;

    border-radius: 20px;

    border: 1px solid #e2e8f0;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .3s;

}

.step-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

/* step number */

.step-number {

    width: 46px;

    height: 46px;

    background: #2563eb;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    margin: auto;

    margin-bottom: 14px;

    font-size: 18px;

}

/* text */

.step-card h4 {

    font-weight: 700;

    margin-bottom: 10px;

}

.step-card p {

    font-size: 14px;

    color: #64748b;

}

/* ================================
RESPONSIVE
================================ */

@media (max-width:992px) {

    .steps-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media (max-width:600px) {

    .steps-grid {

        grid-template-columns: 1fr;

    }

    .process-header h2 {

        font-size: 28px;

    }

}

/* ===============================
PORT LISTING SECTION
=============================== */

.ports-modern {

    padding: 40px 20px;

    background: linear-gradient(180deg, #ffffff, #f8fafc);

}

/* HEADER */

.ports-header {

    text-align: center;

    max-width: 700px;

    margin: auto;

    margin-bottom: 60px;

}

.ports-header h2 {

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 12px;

}

.ports-header p {

    color: #64748b;

    font-size: 17px;

}

/* GRID */

.ports-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

/* CARD */

.port-modern-card {

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .3s;

}

.port-modern-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);

}

/* IMAGE */

.port-image {

    position: relative;

    height: 200px;

}

.port-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* badge */

.port-badge {

    position: absolute;

    top: 15px;

    right: 15px;

    background: #22c55e;

    color: white;

    padding: 5px 10px;

    font-size: 11px;

    border-radius: 6px;

}

.port-badge.warning {

    background: #f59e0b;

}

/* INFO */

.port-info {

    padding: 22px;

}

.port-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 6px;

}

.port-top h3 {

    font-weight: 700;

    font-size: 18px;

}

.port-rating {

    font-size: 14px;

    font-weight: 600;

}

/* offer */

.port-offer {

    font-size: 13px;

    color: #64748b;

    margin-bottom: 14px;

}

/* features */

.port-features {

    display: flex;

    gap: 10px;

    font-size: 13px;

    color: #475569;

    margin-bottom: 18px;

}

/* bottom */

.port-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.port-price {

    font-size: 22px;

    font-weight: 800;

    color: #1e3a8a;

}

.port-price small {

    font-size: 13px;

    color: #64748b;

}

/* CTA */

.port-btn {

    background: linear-gradient(135deg, #f97316, #ea580c);

    color: white;

    padding: 8px 16px;

    border-radius: 20px;

    font-size: 13px;

    font-weight: 600;

}

/* note */

.ports-note {

    text-align: center;

    margin-top: 50px;

    font-weight: 600;

    color: #334155;

}

/* RESPONSIVE */

@media (max-width:992px) {

    .ports-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width:600px) {

    .ports-grid {

        grid-template-columns: 1fr;

    }

    .ports-header h2 {

        font-size: 28px;

    }

}


/* ===============================
CRUISE ALTERNATIVE MODERN
=============================== */

.cruise-alternative-modern {

    padding: 40px 20px;

    background: linear-gradient(180deg, #f8fafc, #eef2ff);

}

.alt-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 20px;

    align-items: center;

}

/* LEFT CONTENT */

.alt-badge {

    display: inline-block;

    background: #e0f2fe;

    color: #0369a1;

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 13px;

    margin-bottom: 14px;

}

.alt-text h2 {

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 18px;

}

.alt-text h2 span {

    color: #2563eb;

}

.alt-desc {

    font-size: 17px;

    color: #475569;

    margin-bottom: 30px;

}

/* FEATURE GRID */

.alt-features-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 30px;

}

.alt-card {

    background: white;

    padding: 20px;

    border-radius: 16px;

    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    transition: .3s;

}

.alt-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.alt-card svg {

    color: #2563eb;

    margin-bottom: 10px;

}

.alt-card h4 {

    font-weight: 700;

    margin-bottom: 6px;

}

.alt-card p {

    font-size: 14px;

    color: #64748b;

}

/* TRUST TEXT */

.alt-trust {

    font-weight: 600;

    color: #334155;

}

/* RIGHT VISUAL */

.alt-visual {

    display: flex;

    justify-content: center;

}

.alt-visual-card {

    background: white;

    padding: 40px;

    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

    border: 1px solid #e2e8f0;

    max-width: 320px;

}

.alt-visual-card h3 {

    font-weight: 700;

    margin-bottom: 18px;

}

.alt-visual-card ul {

    list-style: none;

    padding: 0;

}

.alt-visual-card li {

    margin-bottom: 12px;

    font-size: 15px;

    color: #475569;

}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width:992px) {

    .alt-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .alt-features-grid {

        grid-template-columns: 1fr 1fr;

    }

    .alt-visual {

        margin-top: 40px;

    }

}

@media (max-width:600px) {

    .alt-features-grid {

        grid-template-columns: 1fr;

    }

    .alt-text h2 {

        font-size: 28px;

    }

}

/* =========================
FAQ
========================= */

.accordion-item {

    border-radius: var(--radius-md);

    border: 1px solid var(--border);

    overflow: hidden;

}

.accordion-button {

    font-weight: 600;

}

.accordion-button:not(.collapsed) {

    background: #eef2ff;

    color: var(--secondary);

}

/* =========================
CTA SECTION
========================= */

.need-parking-section {

    padding: 80px 0;

}

.parking-box {

    background: white;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);

}

/* =========================
FOOTER
========================= */

footer {

    background: #020617;

}

footer a:hover {

    color: white;

}



/* =========================
RESPONSIVE
========================= */

@media (max-width:992px) {

    .hero-h1 {
        font-size: 40px;
    }

    .cruise-container {
        grid-template-columns: 1fr;
    }

    .alt-features {
        grid-template-columns: 1fr;
    }

    .trust-box-wrapper {
        position: static;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

}

@media (max-width:576px) {

    .hero-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .hero-h1 {
        font-size: 32px;
    }

    .navbar-brand span {
        font-size: 18px;
    }

}


.subpage-section {
    background: #f7fafd;
    min-height: 100vh;
    width: 100vw;
    padding: 44px 0 38px 0;
    font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
}

.subpage-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border-radius: 11px;
    padding: 30px 18px 16px 18px;
    box-shadow: 0 2px 28px rgba(70, 120, 180, 0.07);
    margin-top: 50px;
}

.subpage-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #191a2a;
    margin-bottom: 24px;
    text-align: left;
}

.subpage-container p,
.faq-answer {
    color: #232b39;
    font-size: 1.13rem;
    margin-bottom: 20px;
    line-height: 1.48;
}

.faq-question {
    font-size: 1.17rem;
    font-weight: 600;
    margin: 21px 0 5px 0;
    color: #1976f3;
}

@media (max-width: 700px) {
    .subpage-container {
        padding: 20px 5px 8px 5px;
        box-shadow: none;
        border-radius: 0;
    }

    .subpage-title {
        font-size: 1.36rem;
        margin-bottom: 19px;
    }

    .subpage-section {
        padding: 24px 0 16px 0;
        margin-top: 50px;
    }

    .faq-question {
        font-size: 1.09rem;
    }

    .subpage-container p,
    .faq-answer {
        font-size: 1.01rem;
    }
}

/* bottom CTA */
.bottom-banner {
    background: #1e247e;
    border: 2px solid #0a78bc;
    z-index: 10;
    box-shadow: 0 -1px 3px #0a78bc;
    border-radius: 8px;
    padding: 8px 10px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    bottom: 2px;
    left: 0;
    right: 0;
    width: auto;
    margin: 0 2px;
    color: #ffffff;
}

.banner-left img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.banner-middle {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    color: #ffffff;
    font-size: 11px;
}

.banner-middle strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    color: #ffffff;
}

.banner-middle .discount {
    color: #fff;
    background: #28a745;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.banner-right .call-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #28a745;
    color: #fff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
}

/* call  */

.callIcon1 {
    position: relative;
    right: 8px;
    top: 1px;
}

.callIcon1 a._phonebox {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #c60001;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #106e00;
    animation: zoom-in-zoom-out 2s ease-out infinite;
    text-decoration: none;
}

.callIcon1 a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: block;
    padding-bottom: 1px;
    line-height: 25px;
    position: relative;
    top: -1px;
    z-index: 10;
}

.wifi-symbol {
    display: block;
    position: absolute;
    top: 6px;
    left: 12px;
    display: inline-block;
    height: 36px;
}

.wifi-symbol .wifi-circle.first {
    -o-animation-delay: 800ms;
    -moz-animation-delay: 800ms;
    -webkit-animation-delay: 800ms;
    animation-delay: 800ms;
    width: 15px;
    height: 15px;
    left: 16px;
    top: 0px;
}

.wifi-symbol .wifi-circle {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 21.4285714286px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-color: #fff;
    border-style: solid;
    border-width: 2px 2px 0 0;
    -webkit-border-radius: 0 100% 0 0;
    border-radius: 0 100% 0 0;
    opacity: 0;
    -o-animation: wifianimation 2.5s infinite;
    -moz-animation: wifianimation 2.5s infinite;
    -webkit-animation: wifianimation 2.5s infinite;
    animation: wifianimation 2.5s infinite;
}

.wifi-symbol .wifi-circle.second {
    width: 12px;
    height: 12px;
    -o-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
    left: 14px;
    top: 5px;
}

.wifi-symbol .wifi-circle.third {
    width: 8px;
    height: 8px;
    left: 12px;
    top: 10px;
}

.wifi-symbol .fourth {
    width: 30px;
    height: 36px;
    background: url(https://www.redumbrellaholidays.com/Content/images/animatePhone.png) left center no-repeat;
    background-size: 20px;
    display: inline-block;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.3, 1.3);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes wifianimation {

    0% {
        opacity: 1;
    }

    5% {
        opactiy: 1;
    }

    6% {
        opactiy: .8;
    }

    100% {
        opactiy: .8;
    }
}

._txtpuk small {
    font-size: 11px;
}

.stickybottom_uk {
    padding-top: 6px;
    padding-bottom: 4px;
}

@media (max-width:500px) {
    .bottom-banner {
        font-size: 12px;
        padding: 6px 8px;
    }

    .banner-left img {
        width: 40px;
        height: 40px;
    }

    .banner-middle {
        font-size: 10px;
    }

    .banner-middle strong {
        font-size: 14px;
        margin-top: 2px;
    }
}

@media (min-width:500px) {
    .bottom-banner {
        display: none;
    }
}


.logo-modern{
font-size:22px;
font-weight:800;
letter-spacing:1px;
text-decoration:none;
font-family:'Inter',sans-serif;
display:flex;
align-items:center;
gap:3px;
}

.logo-port{
color:#0f172a;
}

.logo-park{
color:#2563eb;
}

.logo-finder{
color:#06b6d4;
}

/* hover */

.logo-modern:hover .logo-park{
color:#1d4ed8;
}

.logo-modern:hover .logo-finder{
color:#0891b2;
}