        /* Design System Variables */
        :root {
            /* Colors */
            --primary-blue: #2563eb;
            --dark-blue: #1e40af;
            --dark-navy: #1e3a5f;
            --light-blue: #dbeafe;
            --yellow-promo: #FDB913;
            --white: #ffffff;
            --dark-gray: #1f2937;
            --light-gray: #f3f4f6;
            --success-green: #10b981;
            --orange-accent: #f59e0b;

            /* Typography */
            --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-size-base: 16px;
            --line-height-base: 1.6;

            /* Spacing */
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 60px;

            /* Border Radius */
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;

            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            font-size: var(--font-size-base);
            line-height: var(--line-height-base);
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
            cursor: pointer;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }

        /* Header and Navigation */
        .header {
            background-color: var(--dark-navy);
            box-shadow: var(--shadow-sm);
            /* position: sticky;
            top: 0;
            z-index: 1000; */
            transition: box-shadow var(--transition-normal);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm) 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            letter-spacing: 0.5px;
        }

        .logo-top {
            font-size: 1.3rem;
        }

        .logo-bottom {
            font-size: 1rem;
            font-weight: 600;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            /* max-width: 300px; */
            height: 100vh;
            background-color: var(--dark-navy);
            box-shadow: var(--shadow-lg);
            transition: right var(--transition-normal);
            padding: var(--spacing-lg) var(--spacing-md);
            overflow-y: auto;
            z-index: 9999;
        }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu ul {
            list-style: none;
            margin-top: var(--spacing-xl);
        }

        .nav-menu ul li {
            margin-bottom: var(--spacing-md);
        }

        .nav-menu ul li a {
            display: block;
            padding: var(--spacing-sm);
            color: var(--white);
            font-weight: 500;
            transition: color var(--transition-fast);
        }

        .nav-menu ul li a:hover {
            color: var(--yellow-promo);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: var(--spacing-xs);
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            transition: all var(--transition-fast);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Close button for mobile menu */
        .close-menu {
            position: absolute;
            top: var(--spacing-sm);
            right: var(--spacing-sm);
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--white);
            cursor: pointer;
        }

        /* Promotional Banner */
        .promo-banner {
            background-color: var(--yellow-promo);
            color: var(--dark-gray);
            text-align: center;
            padding: var(--spacing-sm) var(--spacing-sm);
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--spacing-xs); 
            position: sticky;
            top: 0;
            z-index: 1000; 
        }

        .promo-code {
            background-color: var(--white);
            color: var(--dark-navy);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.085), rgba(0, 0, 0, 0.07)), linear-gradient(135deg, #37415157 0%, #1f293796 100%), url(./img/parking-herobg.jpg) center / cover no-repeat;
            padding: var(--spacing-xl) var(--spacing-sm);
            text-align: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: var(--white);
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: var(--spacing-lg) 0;
        }

        .hero h1 {
            font-size: 2rem;
            font-weight: bold;
            color: var(--white);
            margin-bottom: var(--spacing-md);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: var(--spacing-lg);
            line-height: 1.6;
            opacity: 0.95;
        }

        .trustpilot {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-xs);
            background-color: rgba(255, 255, 255, 0.1);
            padding: var(--spacing-sm) var(--spacing-md);
            border-radius: var(--radius-md);
            margin-top: var(--spacing-md);
        }

        .trustpilot-stars {
            color: var(--success-green);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .trustpilot-text {
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
        }

      

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            transition: all var(--transition-fast);
            border: none;
            min-height: 44px;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
            width: 100%;
        }

        .btn-primary:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Section Styles */
        .section {
            padding: var(--spacing-lg) 0;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: var(--spacing-md);
            color: var(--dark-gray);
        }

        .section-subtitle {
            text-align: center;
            color: var(--dark-gray);
            margin-bottom: var(--spacing-lg);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .benefit-card {
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
        }

        .benefit-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: var(--spacing-sm);
        }

        .benefit-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: var(--spacing-sm);
            color: var(--primary-blue);
        }

        .benefit-description {
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: var(--spacing-lg) 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
            text-align: center;
        }

        .stat-item {
            padding: var(--spacing-sm);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: var(--spacing-xs);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Steps Section */
        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .step-card {
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            position: relative;
            border-left: 4px solid var(--primary-blue);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: var(--spacing-sm);
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: var(--spacing-sm);
            color: var(--dark-gray);
        }

        .step-description {
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Trust Section */
        .trust {
            background-color: var(--light-gray);
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .partner-logo {
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            color: var(--dark-gray);
            min-height: 100px;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .feature-card {
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: var(--spacing-sm);
            align-items: flex-start;
        }

        .feature-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-weight: bold;
            margin-bottom: var(--spacing-xs);
            color: var(--dark-gray);
        }

        .feature-description {
            font-size: 0.9rem;
            color: #6b7280;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            text-align: center;
            padding: var(--spacing-xl) 0;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: var(--spacing-sm);
        }

        .cta p {
            font-size: 1.1rem;
            margin-bottom: var(--spacing-md);
            opacity: 0.95;
        }

        .cta .btn {
            background-color: var(--white);
            color: var(--primary-blue);
            width: auto;
            display: inline-block;
        }

        .cta .btn:hover {
            background-color: var(--light-gray);
        }

        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: var(--spacing-lg) 0 var(--spacing-md);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: var(--spacing-sm);
            color: var(--white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: var(--spacing-xs);
        }

        .footer-column ul li a {
            color: #d1d5db;
            transition: color var(--transition-fast);
        }

        .footer-column ul li a:hover {
            color: var(--white);
        }

        .footer-tagline {
            color: #d1d5db;
            margin-bottom: var(--spacing-sm);
            font-size: 0.9rem;
        }

        .footer-address {
            color: #d1d5db;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-sm);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background-color var(--transition-fast);
        }

        .social-link:hover {
            background-color: var(--primary-blue);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-md);
            text-align: center;
            color: #d1d5db;
            font-size: 0.9rem;
        }

        /* Overlay for mobile menu */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-normal);
            z-index: 999;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Tablet Styles - 768px and up */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
              .promo-banner{
                font-size: 1rem;
            }

            .logo {
                font-size: 1.8rem;
            }

            .logo-top {
                font-size: 1.5rem;
            }

            .logo-bottom {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles - 1024px and up */
        @media (min-width: 1024px) {
            .container {
                padding: 0 var(--spacing-md);
            }

            .hamburger {
                display: none;
            }

            .nav-menu {
                position: static;
                width: auto;
                height: auto;
                background-color: transparent;
                box-shadow: none;
                padding: 0;
                overflow: visible;
            }

            .nav-menu ul li a {
                color: var(--white);
            }

            .nav-menu ul li a:hover {
                color: var(--yellow-promo);
            }

            .nav-menu ul {
                display: flex;
                gap: var(--spacing-md);
                margin-top: 0;
            }

            .nav-menu ul li {
                margin-bottom: 0;
            }

            .close-menu {
                display: none;
            }

            .hero {
                min-height: 70vh;
                padding: 80px var(--spacing-md);
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .logo {
                font-size: 2rem;
            }

            .logo-top {
                font-size: 1.8rem;
            }

            .logo-bottom {
                font-size: 1.4rem;
            }

            .section {
                padding: var(--spacing-xl) 0;
            }

            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .btn-primary {
                width: auto;
            }

            .booking-form {
                max-width: 900px;
            }
        }

        /* Key Benefits Section - New Design */
        .key-benefits-section {
            background-color: #ffffff;
            padding: 30px 0;
        }

        .key-benefits-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .key-benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .key-benefit-card {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 16px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .key-benefit-card:hover {
            background-color: #f9fafb;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .key-benefit-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .key-benefit-icon svg {
            width: 100%;
            height: 100%;
        }

        .key-benefit-title {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .key-benefit-description {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.5;
        }

        /* Tablet styles for key benefits */
        @media (min-width: 768px) {
            .key-benefits-section {
                padding: 40px 0;
            }

            .key-benefits-container {
                padding: 0 24px;
            }

            .key-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .key-benefit-card {
                padding: 20px;
                flex-direction: row;
                text-align: left;
                align-items: flex-start;
            }

            .key-benefit-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 0;
                margin-right: 16px;
                flex-shrink: 0;
            }

            .key-benefit-content {
                flex: 1;
            }

            .key-benefit-title {
                font-size: 17px;
            }

            .key-benefit-description {
                font-size: 14px;
            }
        }

        /* Desktop styles for key benefits */
        @media (min-width: 1024px) {
            .key-benefits-section {
                padding: 60px 0;
            }

            .key-benefits-container {
                padding: 0 40px;
            }

            .key-benefits-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }

            .key-benefit-card {
                padding: 24px;
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .key-benefit-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 16px;
                margin-right: 0;
            }

            .key-benefit-title {
                font-size: 20px;
                margin-bottom: 12px;
            }

            .key-benefit-description {
                font-size: 15px;
            }
        }

        /* Three Steps Section */
        .three-steps-section {
            background-color: #f9fafb;
            padding: 24px 0;
        }

        .three-steps-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .three-steps-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .three-steps-title {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .three-steps-subtitle {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .three-steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .three-step-card {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .three-step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .three-step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .three-step-icon svg {
            width: 100%;
            height: 100%;
        }

        .three-step-title {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .three-step-description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.7;
        } 
        @media (max-width:500px){
            .key-benefit-card {
                    flex-direction: row;
                    align-items: center;
                    text-align: left;
                    gap: 20px;
            } 
            .hero {
                padding: 10px 16px; 
                min-height: 40vh;
            }
        }

        /* Tablet styles for three steps */
        @media (min-width: 768px) {
            .three-steps-section {
                padding: 40px 0;
            }

            .three-steps-container {
                padding: 0 24px;
            }

            .three-steps-title {
                font-size: 28px;
            }

            .three-steps-subtitle {
                font-size: 15px;
            }

            .three-steps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .three-step-card {
                padding: 24px;
            }

            .three-step-icon {
                width: 120px;
                height: 120px;
            }
        }

        /* Desktop styles for three steps */
        @media (min-width: 1024px) {
            .three-steps-section {
                padding: 60px 0;
            }

            .three-steps-container {
                padding: 0 40px;
            }

            .three-steps-title {
                font-size: 36px;
            }

            .three-steps-subtitle {
                font-size: 16px;
            }

            .three-steps-card {
                padding: 32px;
            }

            .three-step-icon {
                width: 140px;
                height: 140px;
            }

            .three-step-title {
                font-size: 20px;
            }

            .three-step-description {
                font-size: 16px;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        *:focus-visible {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        } 


.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);
}
.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;
  }
  .faq-question { font-size: 1.09rem;}
  .subpage-container p, .faq-answer { font-size: 1.01rem; }
}

/* bottom CTA */
.bottom-banner {
    background: #fdb913;
    border: 2px solid #1e3a5f;
    z-index: 10;
    box-shadow: 0 -1px 3px #1e3a5f;
    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: 1%;
    width: 98%;
    color: #ffffff;
}

.banner-left img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.banner-middle {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    color: #1f2937;
    font-size: 11px;
}

.banner-middle strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    color: #1f2937;
}

.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 (min-width:500px) {
    .bottom-banner {
        display: none;
    }
}