* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.barlow {
    font-family: 'Barlow';
    font-weight: 500;
}

.raleway {
    font-family: 'Raleway';
    font-weight: 500;
}

/* hero section  */
.hero-section {
    position: relative;
    height: 500px;
}

.hero-section-content-wrapper {
    position: absolute;
    height: 500px;
    width: 95vw;
    max-width: 1400px;
    margin: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-section img.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-text span {
    color: #FFC21C;
    /* yellow highlight */
    font-weight: 600;
}

.tag-img {
    position: absolute;
    bottom: clamp(5px, 2vw, 20px);
    right: clamp(-7px, -3vw, -10px);
    width: clamp(160px, 25vw, 270px);
    height: clamp(180px, 28vw, 280px);
    z-index: 999;
}

.stats-wrapper {
    background: #FF7700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(-50px, -3.5vw, -30px);
    z-index: 10;
    display: flex;
    justify-content: space-around;
    margin: auto;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
}

.stats-image {
    height: clamp(1.3rem, 4vw, 4.2rem);
}

.stats-text {
    font-size: clamp(0.5rem, 1.2vw, 2.2rem);
}

/* home page  */

.home-card-main {
    display: flex;
    gap: 10px;
}


.home-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 0.5fr);
    gap: 20px;
    /* spacing between cards */
}

.home-card {
    background: url(../media/card-background.png);
    height: 245px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 18px;
    cursor: pointer;
}

.home-card:hover {
    background: url(../media/orange-bg.png);
}

.home-card:hover .card-heading {
    color: white;
}

.home-card:hover .helper-card-bottom {
    filter: brightness(0) invert(1);
}

.home-card-mobile-wrapper {
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.home-card-mobile-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}


.home-card-mobile {
    background: url(../media/card-background.png);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 18px;
    min-width: 32%;
    scroll-snap-align: start;
}

.home-card-form {
    width: 45%;
    max-width: 460px;
    height: 526px;
    border: 1px solid #ff7700;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    margin: 0 auto;
}

.home-left-arrow {
    display: none;
    border: 1px solid black;
    border-radius: 999px;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.home-left-arrow:hover:not(:disabled) {
    background: black;
    color: white;
}

.home-right-arrow {
    display: none;
    border: 1px solid black;
    border-radius: 999px;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.home-right-arrow:hover:not(:disabled) {
    background: black;
    color: white;
}

.home-left-arrow:focus-visible,
.home-right-arrow:focus-visible {
    outline: 2px solid #ff7700;
    outline-offset: 2px;
}

.home-left-arrow:disabled,
.home-right-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Tablet */
@media (max-width: 1390px) {
    .home-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-card-main {
        flex-direction: column;
    }

    .home-card-wrapper {
        display: none
    }

    .home-card-mobile-wrapper {
        display: flex;
        gap: 10px;
    }

    .home-right-arrow {
        display: flex;

    }

    .home-left-arrow {
        display: flex;
    }

    .home-card-form {
        width: 100%;
        max-width: 460px;
    }



}

@media (max-width: 720px) {
    .home-card-mobile {
        min-width: 49%;
    }
}

@media (max-width: 400px) {
    .home-card-mobile {
        min-width: 100%;
    }
}



/* start driving  */
.start-driving-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
}

.start-driving-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.start-driving-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 100%;
    max-width: 1400px;
    width: 95vw;
    gap: 10px;
}

.start-driving-content .text {
    font-size: clamp(1.3rem, 2.8vw, 2.8rem);
    font-weight: 500;
    flex: 1;
    max-width: 70%;
}

@media (max-width: 650px) {
    .start-driving-content {
        flex-direction: column;
    }

    .start-driving-content .text {
        text-align: center;
        max-width: 100%;
    }
}


/* about us  */
.about-us-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 40px;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
}

.about-us-text-wrapper {
    width: 47%;
    height: fit-content;
}

.about-us-heading {
    font-weight: 600;
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
}

.about-us-image-content {
    position: relative;
    height: 100%;
    width: 47%;
    min-height: 800px;
}

.about-us-image-content img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
}

@media (max-width: 700px) {
    .about-us-text-wrapper {
        width: 95%;
    }

    .about-us-image-content {
        width: 95%;
        min-height: 300px;
    }

    .about-us-wrapper {
        padding: 20px;
    }
}



/* contact  */
.location-info-heading {
    font-size: clamp(1.2rem, 3.2vw, 3.2rem);
    color: white;
}

.location-info-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 20px;
    max-width: 1400px;
    border: 1px solid #FF7700;
    border-radius: 20px;
    width: 95vw;
    margin: 20px auto;
}




.contact-card {
    position: relative;
    width: 48%;
}

.contact-card-bg-image {
    width: 100%;
    min-height: 330px;
}

.contact-map {
    width: 48%;

}

.contact-map img {
    width: 100%;
    height: 100%;
}

.contact-card-data {
    position: absolute;
    top: 0;
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    height: 100%;
}

@media (max-width: 650px) {
    .location-info-wrapper {
        flex-direction: column;
        padding: 10px;
    }

    .contact-card {
        width: 100%;
    }

    .contact-map {
        width: 100%;
    }
}

/* footer */
.footer {
    background: url(../media/footer-bg.png);
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    height: 270px;
    min-height: fit-content;
    width: 90%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-option-list {
    display: flex;
    justify-content: center;
    align-items: end;
    flex: 1;
    max-width: 500px;
    justify-content: space-around;
    gap: 10px;
}

.footer-copy {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-desktop-heading {
    display: block;
}

.footer-mobile-heading {
    display: none;
}

@media (max-width: 970px) {
    .footer-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footer {
        background: url(../media/footer-mobile-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .footer-copy {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .footer-desktop-heading {
        display: none;
    }

    .footer-mobile-heading {
        display: block;
    }
}

/* navbar */
.nav-arrow {
    filter: brightness(0);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    border-bottom: 2px solid #e0e0e0;
    background: #fff;
    font-family: Arial, sans-serif;
    max-width: 1400px;
    margin: auto;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}


.nav-bar-desktop-link {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
}

.navbar .nav-link.active {
    color: #e8830a;
    border-bottom: 2px solid #e8830a;
}

.nav-link.active .nav-arrow {
    filter: none;
}

.navbar .nav-link:hover {
    color: #e8830a;
}

.navbar .nav-link:hover .nav-arrow {
    filter: none;
}

.navbar .nav-link .arrow {
    font-size: 8px;
    color: #888;
}

.navbar .nav-link.active .arrow {
    color: #e8830a;
}

.navbar .cta-btn {
    background: #ff7700;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.navbar .cta-btn-mobile {
    background: #fff;
    color: #ff7700;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.navbar .cta-btn:hover {
    background: #ff7700;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.mobile-nav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 220px;
    background: #ff7700;
    border-radius: 18px;
    padding: 12px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 25px;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav-close {
    width: 40px;
    height: 35px;
    align-self: end;
    cursor: pointer;
}

.mobile-nav-link {
    background: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.mobile-nav-link.mobile-nav-link-active {
    background: rgb(255, 255, 255);
    border: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #ff7700;
    text-decoration: none;

}


@media (max-width: 1120px) {
    .nav-bar-desktop-link {
        display: none;
    }

    .cta-btn {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}


/* helper card  */
.helper-card {
    background: url("../media/card-background.png");
    max-width: 460px;
    flex: 1 1 calc(33.333% - 20px);
    min-height: 313px;
    border-radius: 18px;
    padding: 22px 22px 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.helper-card-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-heading {
    font-size: 1.5rem;
}

.card-des {
    font-size: clamp(0.9rem, 1vw, 1.1rem);

}

.helper-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    flex-wrap: wrap-reverse;
    gap: 5px;
}

.helper-card-bottom img {
    margin: 5px 0px;
}


/* together card  */
.together-card {
    max-width: 460px;
    min-height: 258px;
    background: url("../media/card-background.png");
    border-radius: 18px;
    padding: 22px 22px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* table designs  */
.tbl-wrap {
    width: 99%;
    margin: auto;
    font-family: var(--font-sans);
    font-size: 14px;
    max-width: 1400px;
}

.tbl-head {
    display: flex;
    background: #FF7700;
    color: #fff;
    font-weight: 500;
}

.tbl-row {
    display: flex;
}

.tbl-row:nth-child(even) {
    background: #fff;
}

.tbl-row:nth-child(odd) {
    background: #fafafa;
}

.tbl-row .tbl-cell {
    flex: 1;
    padding: 8px 0px;
    border: 1px solid #FF7700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tbl-row .tbl-cell-multipledata {
    flex: 1;
    padding: 0px;
    border: 1px solid #FF7700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tbl-row .tbl-cell-multipledata .tbl-cell {
    flex: 1;
    padding: 8px 0px;
    border: none;
    /* remove all borders first */
    border-right: 1px solid #FF7700;
    /* add only right */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.tbl-row .tbl-cell-multipledata .tbl-cell:last-child {
    border-right: none;
}

.tbl-head .tbl-cell {
    flex: 1;
    padding: 8px 0px;
    border-right: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* common css  */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner img {
    width: 100%;
}

.banner-text {
    font-size: clamp(1.7rem, 5vw, 5rem);
    position: absolute;
    color: white;
    text-align: center;
    font-family: 'Raleway';
    font-weight: 500
}

.button-white {
    background: white;
    border: none;
    border-radius: 8px;
    color: #ff7700;
    font-weight: 600;
    padding: 15px 20px;
}

.ptext {
    font-size: clamp(0.8rem, 1.2vw, 1.4rem);
    font-family: 'Raleway';
    font-weight: 500
}

.orange-text-heading {
    color: #FF7700;
}

.orange-button {
    background: #FF7700;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}


.three-card {
    flex: 1 1 calc(33.333% - 20px);
    position: relative;
    overflow: hidden;
}

.two-card {
    flex: 1 1 calc(48% - 20px);
}

/* Tablet */
@media (max-width: 992px) {
    .three-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .three-card {
        flex: 1 1 100%;
    }

    .two-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 650px) {

    .two-card {
        flex: 1 1 100%;
    }
}


/* form  */
.form-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.form-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.radio-option,
.input-field,
.textarea-field {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 0.93rem;
    transition: background 0.2s, border-color 0.2s;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    cursor: pointer;
}

/* .radio-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
} */

.radio-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
}

.radio-option input[type="radio"]:checked {
    border-color: #fff;
    background: radial-gradient(circle, #fff 40%, transparent 41%);
}

.radio-option span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-field {
    padding: 13px 18px;
    outline: none;
    font-size: 0.93rem;
    width: 100%;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

/* .input-field:focus {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
} */

/* Viðmerking textarea */
.textarea-field {
    grid-column: 1 / -1;
    padding: 14px 18px;
    resize: vertical;
    min-height: 130px;
    outline: none;
    font-size: 0.93rem;
    font-family: inherit;
    width: 100%;
}

.textarea-field::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.textarea-field:focus {
    /* background: rgba(255, 255, 255, 0.22); */
    border-color: #fff;
}

.submit-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.btn-submit {
    background: #ff7700;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 60px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}


@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .form-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

.check-icon{
    width: clamp(1.2rem,1.7vw,1.7rem);
    height: clamp(1.2rem,1.7vw,1.7rem) ;
}



/* ===== FIX 1: Remove blue highlight on menu items ===== */
.nav-bar-desktop-link ul li a,
.nav-bar-desktop-link ul li.current-menu-item a,
.nav-bar-desktop-link ul li.current_page_item a,
.nav-bar-desktop-link ul li.current-menu-ancestor a {
    background: transparent !important;
    background-color: transparent !important;
    color: #000 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Active/current page link color */
.nav-bar-desktop-link ul li.current-menu-item a,
.nav-bar-desktop-link ul li.current_page_item a {
    color: #FFA500 !important; /* orange for active page */
}

/* ===== FIX 2: Navbar stays on top ===== */
.navbar {
    position: relative !important;
    z-index: 9999 !important;
    background: #fff !important;
}

/* ===== FIX 3: Page content goes below navbar ===== */
.banner,
.page-content,
h1.banner-text,
.entry-title {
    position: relative !important;
    z-index: 1 !important;
}

/* ===== FIX 4: Menu list clean styling ===== */
.nav-bar-desktop-link ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: transparent !important;
}

.nav-bar-desktop-link ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.nav-bar-desktop-link ul li a {
    text-decoration: none !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 600 !important;
    font-size: clamp(0.75rem, 1vw, 0.95rem) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.nav-bar-desktop-link ul li a:hover {
    color: #FFA500 !important;
    background: transparent !important;
}


/* Page banner/heading fix */
.banner {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
}

.banner-text {
    position: absolute !important;
    z-index: 2 !important;
    /* make sure it's inside banner not overlapping navbar */
}

/* Remove border/outline on active menu item */
.nav-bar-desktop-link ul li.current-menu-item,
.nav-bar-desktop-link ul li.current_page_item {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.nav-bar-desktop-link ul li.current-menu-item a,
.nav-bar-desktop-link ul li.current_page_item a {
    color: #FFA500 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Fix navbar overflow */
.navbar {
    position: relative !important;
    overflow: visible !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Constrain inner navbar content */
.navbar > * {
    position: relative;
    z-index: 10;
}

/* Fix CTA button */
.navbar .cta-btn {
    position: relative !important;
    z-index: 10 !important;
    white-space: nowrap;
    flex-shrink: 0;
}


/* Fix banner section */
.banner {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    min-height: 300px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.banner .banner-text {
    position: absolute !important;
    z-index: 2 !important;
    color: white !important;
    text-align: center !important;
}

.navbar {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 5px 40px !important; /* use padding instead */
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}


/* Style all paragraphs inside about section description */
.description-content p {
    font-size: clamp(0.8rem, 1.2vw, 1.4rem) !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

/* Orange heading paragraphs - target by content pattern */
.description-content p.orange-text-heading {
    color: #FF7700 !important;
    font-family: 'Raleway', sans-serif !important;
}

/* Bold span */
.description-content span {
    font-weight: 600 !important;
    font-family: 'Raleway', sans-serif !important;
    display: block !important;
    margin-bottom: 8px !important;
}


/* contact form 7 csss */


/* Use the textarea tag + your class to force priority */
textarea.textarea-tilmelding {
    margin-top: 20px !important;
    display: block; /* Ensure margin applies correctly */
    width: 100%;
}