body {
    margin:0 !important;
    padding:0 !important;
}

:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary_color: #f5f5f5;
    --secondary_color: #e0131e;
    --accent_color: #007f39;

    --primary_inverse: #1D1D1D;
    --grey_shade: #808080;
}

.line_break {
    width: 100%;
    height: 0.1vh;
    background-color: #BBB;
    margin-top: 2vh;
    margin-bottom: 2vh;
    border-radius: 2000vh;
}


.green_button_outline {
    color: var(--primary_inverse) !important;
    transition: all 0.2s ease-in-out !important;
    font-weight: 500 !important;
    border: solid var(--accent_color) !important;
}

.green_button_outline:hover {
    color: var(--primary_color) !important;
    background-color: var(--accent_color) !important;
    border: solid #005928 !important;
}

.tag {
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: var(--secondary_color);
    width: auto;
    transform: translate(-50%, -100%);
    padding: 1rem;
    text-align: center;
    justify-content: center;
}

.tag p {
    text-align: center;
    color: var(--primary_color);
    font-weight: bold;
}


/*Navigation Bar Variables*/
#cs-navigation .cs-li-link:hover {
    color: var(--grey_shade);
    transition: 0.29s ease-out;
}

#cs-navigation .cs-li-link.cs-active {
    color: var(--accent_color);
}

#cs-navigation .cs-li-link {
    font-weight: bold;
    text-decoration: none;
    color: var(--headerColor);
}

#cs-navigation .cs-social-link:hover {
    background-color: var(--secondary_hover);
}

#cs-navigation .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(10000%);
}

#cs-navigation .cs-social-link {
    text-decoration: none;
    width: 3rem;
    height: 3rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

#cs-navigation .cs-social-link i::before {
    color: red;
    font-size: 1.25vw;
}


.change_language_container .dropdown-menu {
    margin-top: 1.5vw;
}

#languageDropdown {
    background-color: var(--primary_inverse);
    /* margin-bottom: 3vw; */
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    /* Navigation Bar*/
    #cs-navigation {
        position: absolute;

        /* Other possible options */
        /* position: fixed; */
    }

    #cs-navigation .cs-social a i::before {
        color: black;
    }

    #cs-navigation .cs-li-link {
        font-size: 1.2vw;
    }

    #cs-navigation .cs-phone:hover {
        color: var(--accent_color);
        transition: all 0.3s ease-in-out;
    }

    #cs-navigation .cs-logo img {
        height: auto !important;
        width: 9vw !important;
    }

    .mobile_language_selection {
        display: none;
    }
}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    #cs-navigation {
        position: absolute;
    }
    
    #cs-navigation .cs-ul {
        gap: 3rem !important;
    }

    #cs-navigation .cs-li-link {
        font-size: 3vh;
    }

    #cs-navigation .cs-logo {
        max-width: 30vw;
    }

    .rtl #cs-navigation .cs-logo {
        max-width: 40vw;
        margin: 0 auto 0 50%;
    }

    .dekstop_language_selection {
        display: none;
    }
}