/*
 Theme Name:   NL Virtual Office
 Description:  Custom child theme for Virtual Office Amsterdam
 Template:     hello-elementor
 Author:       You
 Version:      1.1
*/

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

:root {
    --primary: #0d9488;
    --primary-dark: #0d7b72;
    --dark: #111827;
    --light: #f9fafb;
    --gray: #6b7280;
}

:root {
    --header-height: 30px;
}

main {
    padding-top: var(--header-height);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER – Professional Light Theme (CTA Focused)
   =========================== */
header {
    background: #ffffff;
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
}

/* Container */
nav {
    max-width: 1250px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   LOGO
   =========================== */
.logo {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* ===========================
   DESKTOP MENU
   =========================== */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #111827;
}

/* Underline effect on hover for menu links */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #10B981;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active/current page */
.nav-links .current-menu-item a,
.nav-links .current_page_item a {
    color: #111827;
    font-weight: 600;
}

.nav-links .current-menu-item a::after,
.nav-links .current_page_item a::after {
    width: 100%;
    height: 3px;
    background-color: #10B981;
}

/* ===========================
   CTA BUTTON – High Visibility
   =========================== */
.nav-links .btn {
    background: #10B981; /* Emerald green */
    color: white !important;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-links .btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    color: white;
}

/* ===========================
   MOBILE MENU BUTTON (Hamburger)
   =========================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #374151;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===========================
   MOBILE MENU STYLES
   =========================== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        background: #ffffff;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.8rem;
        border-left: 1px solid #e5e7eb;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        align-items: flex-start;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: #374151;
    }

    .nav-links a:hover {
        color: #10B981;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 1.1rem;
        margin-left: 0;
        margin-top: 1rem;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ===========================
   MOBILE MENU ANIMATION (Hamburger → X)
   =========================== */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    background: #10B981;
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #1bcf93;
    transform: translateY(-2px);
	color:#fff !important;
}


/* Hero */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.lead {
    font-size: 1.4rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Sections */
.features,
.address-preview,
.cta {
    padding: 100px 0 100px;
}

.features {
    background: white;
}

.address-preview {
    background: var(--dark);
    color: white;
}

.cta {
    background: linear-gradient(135deg, var(--primary), #14b8a6);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card h3 {
    font-size:
}
		
		/* Make sure the footer has nice spacing after the last section */
main { padding-bottom: 50px; }

/* Optional: add a subtle wave or line before footer */
.cta { position: relative; }
.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), #14b8a6);
}
	

@media(min-width: 576px) {
    .page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main {
        max-width:500px;
    }

    .site-footer.footer-full-width .footer-inner,.site-header.header-full-width .header-inner {
        max-width: 100%;
    }
}

@media(min-width: 768px) {
    .page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main {
        max-width:600px;
    }

    .site-footer.footer-full-width,.site-header.header-full-width {
        max-width: 100%;
    }
}

@media(min-width: 992px) {
    .page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main {
        max-width:800px;
    }

    .site-footer.footer-full-width,.site-header.header-full-width {
        max-width: 100%;
    }
}

@media(min-width: 1200px) {
    .page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main {
        max-width:100% !important
    }

    .site-footer.footer-full-width,.site-header.header-full-width {
        max-width: 100%
    }
}

.location-hero {
    padding: 180px 40px 120px;
    text-align: center;
    color: white;
    margin-top: -120px;
    
    background: 
        radial-gradient(circle, rgba(238, 174, 202, 0) 0%, rgba(148, 187, 233, 0.8) 100%),
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),  /* darkens the image */
        url('https://voservice.nl/wp-content/uploads/2025/12/C4980375-C39F-4CED-B431-4D8473F82623-1024x845-1.jpg') center/cover no-repeat;
        
    background-blend-mode: multiply; /* or overlay / darken */
}

.hero-section {
    padding: 150px 40px 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: url('https://voservice.nl/wp-content/uploads/2025/12/coworking-hereplein.jpg') center/cover no-repeat;
    background-attachment: fixed; /* optional – nice parallax feel */
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top/right/bottom/left: 0 */
    
    /* Natural dark base + your purple-blue radial gradient */
    background: 
        radial-gradient(circle at center, 

            rgba(80, 100, 180, 0.75) 100%
        ),
        rgba(20, 20, 40, 0.65); /* deep, slightly blue-black overlay – very natural */
    background-blend-mode: multiply;
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* buttery smooth */
    opacity: 1;
    z-index: 1;
}

/* Hover → only soft lightening, never too bright */
.hero-section:hover::before {
    opacity: 1;                   /* reduces the whole overlay by ~45% */
    background: 
        radial-gradient(circle at center, 
            rgba(80, 100, 180, 0.45) 80%
        ),
        rgba(20, 20, 40, 0.35);       /* much less dark, but still tasteful */
}

.hero-section > * {
    position: relative;
    z-index: 2;
}


/* ==== ADD THIS CSS (copy exactly) ==== */
.fixed-photos-section {
    padding: 100px 20px;
    background: #fdfdfd;
}

.fixed-photos-grid {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-link {
    flex: 1;                        /* each takes exactly 33.3% */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.photo-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.photo-link img {
    width: 100%;
    height: 360px;                  /* fixed height = perfect uniformity */
    object-fit: cover;              /* crops nicely, never distorts */
    display: block;
}

/* Mobile – stack vertically */
@media (max-width: 900px) {
    .fixed-photos-grid {
        flex-direction: column;
        gap: 24px;
    }
    .photo-link img {
        height: 300px;
    }
}

/* PREMIUM ICON CARDS – 2025 style (FIXED) */
.icon-card {
    position: relative;
    padding-top: 100px;           /* makes room for the icon */
    transition: all 0.4s ease;
    overflow: hidden;
}

.icon-circle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: white;
    transition: all 0.4s 
ease;
}

.icon-card:hover .icon-circle {
    transform: translateX(-50%) translateY(-8px) scale(1.1);
}

.icon-card:hover {
    transform: translateY(-12px);
}

/* Optional: nicer card background on hover */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

/* Mobile: reduce icon size */
@media (max-width: 768px) {
    .icon-circle { width: 80px; height: 80px; font-size: 36px; top: -20px; }
    .icon-card { padding-top: 90px; }
}

@media (max-width: 768px) {
	.flag {font-size:30px;}
	.h1-title {
	font-size:40px;
}
}

.h1-title {
	font-size:60px;
}

.background1 {
	    padding: 160px 0 100px;
	    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        url("https://voservice.nl/wp-content/uploads/2025/12/IMG_20251210_160725-scaled-e1765380155763.jpg'");
    text-align: center;
    background-image:
        radial-gradient(circle at center, rgba(0, 13, 53, 0.8) 80%),
        url("https://voservice.nl/wp-content/uploads/2025/12/IMG_20251210_160725-scaled-e1765380155763.jpg");
	background-size:cover;
	    background-attachment: fixed;
	background-position:center;
	color:#fff;

}

.flag {
	font-weight:500;
	font-size:40px;
}
.lead {
	font-weight:500;
	font-size:20px;
}

/* TEXT + IMAGE + CHECKMARKS BLOCK – 2025 style */
.text-image-usp {
    padding: 120px 0 0 0;
    background: #f8fafc;
}

.ti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.ti-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ti-text .lead {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.checkmark-list li {
    font-size: 1.15rem;
    margin: 1rem 0;
    padding-left: 2.2rem;
    position: relative;
    color: #1e293b;
}

.checkmark-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: bold;
}

.ti-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile – stack vertically */
@media (max-width: 992px) {
    .ti-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .ti-text h2 { font-size: 2.4rem; }
    .ti-image img { max-width: 480px; margin: 0 auto; display: block; }
}

.text-image-usp-2 {
    padding: 140px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

/* BEAUTIFUL ADDRESS BLOCK WITH IMAGE */
.address-highlight {
    padding: 100px 40px 0px;
    background: linear-gradient(to bottom, #e0f2fe 0%, #fff 100%);
}

.highlight-intro {
    padding: 90px 0 20px;
    text-align: center;
    background-color:#111827;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff !important;
}


.address-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;   /* Horizontal space only */
    row-gap: 0;         /* Or a smaller value if you need vertical between rows */
    align-items: start; /* Prevents vertical stretching/centering that can create perceived gaps */
    max-width: 1280px;
    margin: 0 auto;
}

.content-unit-txt ul li:before {
    color: #3c3;
    content: "✓";
	 font-size: 27px !important;
	font-weight: 900;
    left: 0;
    margin-right: 10px;
    position: relative;
}

.content-unit-txt ul li {
	 font-size: 19px !important;
	font-weight: 500;
	text-align:left;
}

.h1home {
	text-align:left;
	font-size:40px;
}

.content-unit-txt ul {
    list-style: none;
}

.content-unit-txt {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
    z-index: 150;
}


.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.address-text h2 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.glass-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(13,148,136,0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.glass-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.address {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.8;
    color: #0f172a;
    margin: 1.5rem 0;
}

.glass-card .note {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 1.5rem;
    opacity: 0.95;
}

.address-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile – stack */
@media (max-width: 992px) {
    .address-grid { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .address-text h2 { font-size: 2.5rem; }
    .address-image img { max-width: 500px; margin: 0 auto; display: block; }
}

.site-footer {
	margin-top:0 !important;
}

/* CONTACT FORM 7 – PREMIUM MATCHING STYLE */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,0.15);
}

.wpcf7-form textarea {
    min-height: 160px;
    resize: vertical;
}

/* Submit Button – matches your .btn class */
.wpcf7-form input[type="submit"] {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(13,148,136,0.3);
    width: auto;
    display: inline-block;
}

.wpcf7-form input[type="submit"]:hover {
    background: #0d7b72;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13,148,136,0.4);
}

/* Success / Error Messages */
.wpcf7-response-output {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #86efac;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Optional: make form full-width on mobile */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 1.5rem;
    }
}


.address-image h3 {
	padding:20px;
	font-size:30px;
}
.address-image strong {
	padding:20px;
}

.introtext {
	padding:30px;
	font-size:18px;
}

/* ===========================
   GLOBAL MOBILE FIXES
   =========================== */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    body {
        font-size: 16px;
        line-height: 1.65;
    }

    /* Prevent fixed background issues on iOS */
    .hero-section,
    .background1,
    .highlight-intro {
        background-attachment: scroll !important;
    }
}

/* ===========================
   HEADER & NAVBAR
   =========================== */
@media (max-width: 768px) {

    header {
        height: auto;
    }

    nav {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}


/* ===========================
   HERO SECTIONS
   =========================== */
@media (max-width: 768px) {

    .hero {
        padding: 120px 20px 80px;
    }

    .hero h1,
    .h1-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero p.lead,
    .lead {
        font-size: 1.1rem;
    }

    .flag {
        font-size: 2rem;
    }

    .location-hero,
    .hero-section {
        padding: 120px 20px 90px;
    }
}

/* ===========================
   SECTIONS & SPACING
   =========================== */
@media (max-width: 768px) {

    .features,
    .address-preview,
    .cta,
    .fixed-photos-section,
    .text-image-usp,
    .text-image-usp-2,
    .address-highlight {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* ===========================
   CARDS & GRIDS
   =========================== */
@media (max-width: 768px) {

    .grid {
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }
}

/* ===========================
   ICON CARDS
   =========================== */
@media (max-width: 768px) {

    .icon-card {
        padding-top: 85px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 32px;
        top: -25px;
    }
}

/* ===========================
   TEXT + IMAGE BLOCKS
   =========================== */
@media (max-width: 768px) {

    .ti-text h2 {
        font-size: 2rem;
    }

    .ti-text .lead {
        font-size: 1.1rem;
    }

    .checkmark-list li {
        font-size: 1.05rem;
    }
}

/* ===========================
   ADDRESS SECTIONS
   =========================== */
@media (max-width: 768px) {

    .address-text h2 {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .address {
        font-size: 1.3rem;
    }

    .address-grid,
    .address-grid-2 {
        gap: 3rem;
    }
}

/* ===========================
   BUTTONS & CTA
   =========================== */
@media (max-width: 768px) {

    .btn,
    .nav-links .btn {
        width: 100%;
        padding: 16px;
        font-size: 1.05rem;
        text-align: center;
    }
}

/* ===========================
   FOOTER & FORMS
   =========================== */
@media (max-width: 768px) {

    .wpcf7-form {
        padding: 1rem;
    }

    .wpcf7-form input[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .address-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .address-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .h1home,
    .content-unit-txt,
    .address-grid-2 div {
        text-align: center;
    }
}

@media (max-width: 768px) {

    :root {
        --header-height: 70px;
    }

    .hero,
    .hero-section,
    .location-hero,
    .highlight-intro {
        margin-top: 0 !important;
		        padding-top: 50px !important;

    }
	
	main {
    padding-top: 40px;
}
}


element.style {
}
jj {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
