:root {
    /**
     * PRIMARY COLORS
     */
    --primary: #1A1A1A;
    --secondary: #343434;
    --tertirary: #666666;
    --quertanary: #808080;
    --inverse: #FAFAFA;
    --error: #6B1518;
    --warning: #665100;
    --success: #1A6641;
    --border-primary: #E5E5E5;
    --border-secondary: #CCCCCC;
    --border-subtle: #F2F2F2;
    --border-strong: #1A1A1A;
    --icons-primary: #272727;
    /**
     * NEUTRAL COLORS
     */

    --white: #FFFFFF;
    --neutral-01: #FAFAFA;
    --neutral-02: #F2F2F2;
    --neutral-03: #E5E5E5;
    --neutral-04: #D9D9D9;
    --neutral-05: #CCCCCC;
    --neutral-06: #BFBFBF;
    --neutral-07: #B3B3B3;
    --neutral-08: #A5A5A5;
    --neutral-09: #999999;
    --neutral-10: #8D8D8D;
    --neutral-11: #808080;
    --neutral-12: #737373;
    --neutral-13: #666666;
    --neutral-14: #595959;
    --neutral-15: #4D4D4D;
    --neutral-16: #404040;
    --neutral-17: #343434;
    --neutral-18: #272727;
    --neutral-19: #1A1A1A;
    --neutral-20: #0D0D0D;
    --black: #000000;
    /**
     * SEMANTIC COLORS
     */


    --red-01: #DF3A3F;
    --red-02: #B92C31;
    --red-03: #951D21;
    --red-04: #6B1518;
    --yellow-01: #E5B800;
    --yellow-02: #B28F00;
    --yellow-03: #806600;
    --yellow-04: #665100;
    --green-01: #2EB875;
    --green-02: #29A368;
    --green-03: #248F5B;
    --green-04: #1A6641;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semiBold: 600;
    --bold: 700;
    --extraBold: 800;
    /**
     * Filters COLORS
     */
    --filter-inverse: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7483%) hue-rotate(276deg) brightness(108%) contrast(95%);
    --filter-primary: brightness(0) saturate(100%) invert(7%) sepia(1%) saturate(184%) hue-rotate(314deg) brightness(103%) contrast(93%);
    --filter-neutral-05: brightness(0) saturate(100%) invert(84%) sepia(18%) saturate(35%) hue-rotate(316deg) brightness(89%) contrast(109%);
    --filter-neutral-08: brightness(0) saturate(100%) invert(59%) sepia(95%) saturate(0%) hue-rotate(161deg) brightness(93%) contrast(94%);
    --filter-neutral-15: brightness(0) saturate(100%) invert(22%) sepia(54%) saturate(0%) hue-rotate(173deg) brightness(113%) contrast(91%);
}


/*PREMADE DESIGNS*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--primary);
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--regular);
    font-style: normal;
}

body {
    background-color: var(--neutral-01);
    color: var(--primary);
}

    body.dimmed {
        position: relative;
        overflow: hidden; /* Prevent scrolling */
    }

        body.dimmed::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8); /* Semi-transparent overlay */
            z-index: 100; /* Ensure it appears above the content */
        }



button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 16px;
    border-radius: 24px;
    background-color: var(--primary);
    border: none;
    transition: 0.3s ease;
}



.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: var(--filter-inverse);
}


.btn-text {
    color: var(--inverse);
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--semiBold);
}


button:is(:hover, :focus-visible) {
    background-color: var(--inverse);
    border: solid 1px var(--primary);
    transition: 0.3s ease;
    box-shadow: 0 4px 4px rgba(112, 112, 112, 0.4);
}


    button:is(:hover, :focus-visible) .btn-text {
        color: var(--primary);
    }

    button:is(:hover, :focus-visible) .btn-icon {
        filter: var(--filter-primary);
    }


button:active {
    background-color: var(--neutral-15);
    transform: scale(0.95);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    border: none;
    transition: 0.1s ease;
}

    button:active .btn-text {
        color: var(--inverse);
    }

    button:active .btn-icon {
        filter: var(--filter-inverse);
    }






button.white {
    background-color: var(--white);
    border: solid 1px var(--border-primary);
}


    button.white .btn-icon {
        filter: var(--filter-primary);
    }


    button.white .btn-text {
        color: var(--primary);
    }





    button.white:is(:hover, :focus-visible) {
        background-color: var(--primary);
        border: none;
    }


        button.white:is(:hover, :focus-visible) .btn-text {
            color: var(--inverse);
        }

        button.white:is(:hover, :focus-visible) .btn-icon {
            filter: var(--filter-inverse);
        }





.icon24 {
    width: 24px;
    height: 24px;
}


.icon32 {
    width: 32px;
    height: 32px;
}



address {
    font-style: normal;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}



body.loaded {
    /*overflow: overlay;*/
}

/*WEBSITE DESIGNS*/

/*NAVBAR*/

.navbar {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: var(--neutral-01);
    margin: 0; /* Ensure no margins break the flow */
    padding: 0; /* Remove any conflicting padding */
    width: 100%; /* Ensure full width */
    height: 88px;
}

    .navbar.active {
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

.navbar-container {
    width: 100%;
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 88px;
    padding-right: 88px;
    width: 100%;
}

.nav-menu-btn {
    width: 32px;
    height: 32px;
    margin-right: auto;
}


.nav-menu-btn:is(:hover, :focus-visible) {
    cursor: pointer;
}

.logo-nav {
    width: 168px;
    height: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.contact-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 10px 16px 10px 16px;
    border-radius: 24px;
    border: solid 1px var(--border-primary);
    text-decoration: none;
    margin-left: auto;
}


.contact-nav-container:is(:hover, :focus-visible) {
    cursor: pointer;
    border: solid 1px var(--border-strong);
 
}


.nav-menu-icon {
    width: 20px;
    height: 20px;
}

.contact-nav-text {
    color: var(--primary);
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--semiBold);
}









.navbar-responsive-container {
    width: 600px;
    height: 100vh;
    background-color: var(--neutral-01);
    position: fixed;
    top: 0;
    left: -600px;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    padding: 64px 64px 38px 64px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: scroll;
}


    .navbar-responsive-container.active {
        transform: translateX(600px); /* Slide into view */
        display: block;
    }

.close-btn-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}


.close-btn-container:is(:hover, :focus-visible) {
    cursor: pointer;
}


.close-navbar-btn-icon {
    width: 32px;
    Height: 32px;
}

.close-navbar-btn-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--primary);
    font-weight: var(--semiBold);
}


.navbar-links-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}


.navbar-links-container {
    margin-top: 64px;
}


.single-navbar-link-container {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.navbar-link-name {
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--semiBold);
    color: var(--tertirary);
}

.navbar-link-line {
    width: 48px;
    height: 2px;
    background-color: var(--primary);
    display: none;
}


.single-navbar-link-container.active .navbar-link-name {
    color: var(--primary);
}

.single-navbar-link-container.active .navbar-link-line {
    display: block;
}

.single-navbar-link-container:is(:hover, :focus-visible) {
    cursor: pointer;
}

    .single-navbar-link-container:is(:hover, :focus-visible) .navbar-link-name {
        color: var(--primary);
    }


.navbar-bottom-container {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.navbar-contact-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--semiBold);
    color: var(--tertirary);
}

.navbar-contact-container {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
}


.navbar-contact-link-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 72px;
    border-bottom: solid 1px var(--border-subtle);
}

.navbar-contact-link {
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    font-weight: var(--semiBold);
    color: var(--primary);
}









/* FOOTER SECTION */

.footer-container {
    position: relative;
    width: 100%;
    height: 440px;
    background-color: var(--primary);
    margin-top: -28px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.footer-links-logo-container {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 64px;
}

.footer-links-container {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.footer-link {
    color: var(--inverse);
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--bold);
    padding: 12px;
    text-decoration: none;
}


.additional-footer-container {
    width: 100%;
    height: 76px;
    margin-top: 72px;
    display: flex;
    justify-content: space-between; /* Ensure spacing between the sections */
    align-items: center;
    padding: 0px 102px;
    position: relative;
}

.scnawel-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    left: 102px; /* Align to the left side */
}

.footer-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--inverse);
    font-weight: var(--medium);
}

.scanwel-logo {
    width: 120px;
    height: 16px;
}


.footer-contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    margin: 0 auto; /* Center this section */
}

.contact-info-link-footer {
    text-decoration: none;
    color: var(--neutral-06);
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--semiBold);
}

    .contact-info-link-footer:hover {
        color: var(--white);
    }



.terms-conditions-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
    position: absolute;
    right: 102px; /* Align to the right side */
}

.terms {
    font-size: 12px;
    line-height: 16px;
    font-weight: var(--medium);
    color: var(--inverse);
    text-decoration: none
}


    .terms:is(:hover, :focus-visible) {
        color: white;
        cursor: pointer;
    }

.created-by {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: var(--medium);
    color: var(--neutral-04);
    gap: 4px;
}

.codemode {
    width: auto;
    height: 16px;
}







/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--neutral-01);
    color: var(--primary);
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: solid 1px var(--neutral-05);
    margin-right: 24px;
    text-decoration: none;
    rotate: 270deg;
}

.back-top-arrow {
    rotate: 270deg;
    filter: var(--filter-inverse);
    width: 20px;
    height: 20px;
    /* filter: var(--black-filter); */
}



.back-top-btn:is(:hover, :focus-visible) {
    background-color: var(--white);
    color: black;
    border: none;
}



    .back-top-btn:is(:hover, :focus-visible) .back-top-arrow {
        filter: var(--filter-primary);
    }

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
}


.load-more-container{
    display: flex;
    justify-content: center;
    align-items: center;    
    width: 100%;    
    margin-top: 32px;
}   

.btn-load-more{
    background-color: transparent;
    border: solid 1px var(--border-primary);
}


.btn-load-more .btn-text{
    color: var(--primary);

}




@media (width < 950px) {

    .navbar-container{
        padding: 0px 24px;
    }

    .footer-links-container{
        width: auto;
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }


    .created-by{
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column;

    }

    .additional-footer-container {

        padding: 0px 64px;
    }


}




@media (width < 800px) {

    .footer-container{
        height: auto;
        padding-bottom: 48px;
    }


    .footer-links-logo-container{

        flex-direction: column-reverse;

        gap: 32px;
    }

    .footer-links-container{

        flex-direction: column;
        gap: 16px;
    }

    .footer-link{
        color: var(--inverse);
        font-size: 14px;
        line-height: 20px;
        font-weight: var(--bold);
        padding: 0px;

    }


    .additional-footer-container {
        width: 100%;
        height: auto;
        margin-top: 48px;
        position: relative;
        padding: 0px;
        gap: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column !important;
    }

    .scnawel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        position: relative;
        left: 0px; /* Align to the left side */
    }

    .footer-text{
        font-size: 14px;
        line-height: 20px;
        color: var(--inverse);
        font-weight: var(--medium);
    }

    .scanwel-logo{
        width: 120px;
        height: 16px;
    }


    .footer-contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        margin: 0 0;
    }

    .contact-info-link-footer{
        text-decoration: none;
        color: var(--neutral-06);

        font-size: 14px;
        line-height: 20px;
        font-weight: var(--semiBold);
    }

    .contact-info-link-footer:hover{
        color:var(--white);
    }



    .terms-conditions-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        right: 0px; /* Align to the right side */
    }


    .created-by{
        display: flex;
        justify-content: center;
        align-items: center;

        font-size: 12px;
        line-height: 16px;
        font-weight: var(--medium);
        color:var(--neutral-04);
        gap: 4px;
    }



    .navbar-responsive-container {
        width: 100%;
        height: 100%;
        background-color: var(--neutral-01);
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9999;
        transition: transform 0.3s ease-in-out;
        padding: 64px 64px 38px 64px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: scroll;
    }

    .navbar-responsive-container.active {
        transform: translateX(100%); /* Slide into view */
        display: block;
    }



}

@media (width < 700px) {
    .contact-nav-text{
        display: none;
    }


    .contact-nav-container{
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }
}



@media (width < 500px) {
    .footer-logo{
        width: 220px;
    }




    .navbar-responsive-container {
        padding: 32px;

    }

    .navbar-bottom-container {
        margin-top: 96px;

    }


    .navbar-contact-container {
        width: 100%;
    }
    .navbar-contact-link {
        text-decoration: none;
        font-size: 14px;
        line-height: 20px;
        font-weight: var(--semiBold);
        color: var(--primary);
    }

}

@media (width < 380px) {

    .logo-nav{
        width: 120px;
    }
}


