body #kcwHeader {
    background: #fff;
    font-size: 16px !important;
    line-height: 32px;
    color: #ffffff;
    margin: 0 auto;
    padding: 1rem;
    word-wrap: break-word !important;
    font-family: "Work Sans", sans-serif;
    max-width: 1440px;
}


#kcwHeader a {
    color: #FFF;
}


#kcwHeader #kcw__container {
    margin: 0 auto;

}

#kcwHeader p {
    text-align: center;
}

#kcwHeader .kcw__toggle,
#kcwHeader input[type=checkbox] {
    display: none;
}

/* Giving a background-color to the nav container. */
#kcwHeader nav {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    align-items: center;
    align-content: center;
}

#kcwHeader .kcw__navitems {
    display: flex;
    align-items: center;
}

#kcwHeader .kcw__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#kcwHeader .kcw__logo {
    display: block;
    padding: 0 30px;
    float: left;
    width: 100%;
    font-size: 20px;
    margin: 1rem 0rem;
    line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

#kcwHeader nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
#kcwHeader nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
#kcwHeader nav ul li {
    margin: 0px;
    display: inline-block;
}

/* Styling the links */
#kcwHeader nav a {
    display: block;
    padding: 0rem 1rem;
    color: #464f5b;
    text-decoration: none;
    font-size: 16px;
}


#kcwHeader nav ul li ul li:hover {
    color: #1c78ca;
}

/* Background color change on Hover */
#kcwHeader nav a:hover {
    color: #1c78ca;
    font-weight: bold;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
#kcwHeader nav ul ul {
    display: none;
    position: absolute;
    top: 2rem;
    width: 100%;
    width: 15rem;
    background-color: #fff;
    /* has to be the same number as the "line-height" of "nav a" */

}

#kcwHeader nav ul ul ul {
    display: none;
    position: relative;
    top: 4rem;
    /* has to be the same number as the "line-height" of "nav a" */

}

/* Display Dropdowns on Hover */
#kcwHeader nav ul li:hover>ul {
    display: inherit;
    z-index: 99;
}

/* Fisrt Tier Dropdown */
#kcwHeader nav ul ul li {
    width: auto;
    float: none;
    display: list-item;
    position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
#kcwHeader nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 0px;
}


/* Change ' +' in order to change the Dropdown symbol */
#kcwHeader li>a:after {
    content: ' +';
}

#kcwHeader li>a:only-child:after {
    content: '';
}

#kcwHeader .kcw__mobileOnly {
    display: none;
}



/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

    #kcwHeader li a {
        padding: 14px 20px;
    }

    #kcwHeader .kcw__toggle {
        padding-left: 40px !important;
    }

    #kcwHeader .kcw__toggle-mobile {
        padding-left: 40px !important;
    }

    #kcwHeader .kcw__logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    #kcwHeader nav {
        margin: 0;
        padding: 0;
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    #kcwHeader .kcw__navitems {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    #kcwHeader .kcw__buttons {
        display: none;
    }

    #kcwHeader .kcw__mobileOnly {
        display: block;
        padding: 10px;
    }

    #kcwHeader .kcw__toggle-mobile {
        width: 90%;
    }


    /* Hide the navigation menu by default */
    /* Also hide the  */
    #kcwHeader .kcw__toggle+a,
    #kcwHeader .kcw__menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    #kcwHeader .kcw__toggle {
        display: block;
        background: #fff;
        padding: 14px 20px;
        color: #464f5b;
        text-decoration: none;
        border: none;
    }

    #kcwHeader .kcw__toggle-mobile {
        display: block;
        background: #9262ac;
        padding: 14px 20px;
        color: #FFF;
        text-decoration: none;
        border: none;
    }

    #kcwHeader .kcw__toggle:hover {
        color: #1c78ca;
    }

    /* Display Dropdown when clicked on Parent Lable */
    #kcwHeader [id^="kcw__drop"]:checked+ul {
        display: block;
    }

    /* Change menu item's width to 100% */
    #kcwHeader nav ul li {
        display: block;
        width: 100%;
    }

    #kcwHeader nav ul ul .kcw__toggle,
    #kcwHeader nav ul ul a {
        padding: 0 40px;
    }

    #kcwHeader nav ul ul ul a {
        padding: 0 0px;
    }


    #kcwHeader nav ul li ul li .kcw__toggle,
    #kcwHeader nav ul ul a,
    #kcwHeader nav ul ul ul a {
        padding: 14px 20px;
        color: #464f5b;
    }


    #kcwHeader nav ul li ul li .kcw__toggle,
    #kcwHeader nav ul ul a {
        background-color: #fff;
    }

    /* Hide Dropdowns by Default */
    #kcwHeader nav ul ul {
        float: none;
        position: static;
        color: #464f5b;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    #kcwHeader nav ul ul li:hover>ul,
    #kcwHeader nav ul li:hover>ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    #kcwHeader nav ul ul li {
        display: block;
        width: 100%;
    }

    #kcwHeader nav ul ul ul li {
        position: relative;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

}

@media all and (max-width : 330px) {

    #kcwHeader nav ul li {
        display: block;
        width: 94%;
    }

}

#kcwHeader .kcw__violetButton>a {
    background-color: #9262ac !important;
    font-weight: 700;
    border: solid 2px #9262ac !important;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: 50px;
    color: #fff !important;
    min-height: 40px;
    align-content: center;
    margin: 0rem .5rem;
}


/* Footer style */

#kcwFooter .kcw__is-layout-flex {
    display: flex;
}

#kcwFooter .kcw__footer-card {
    font-family: "Work Sans", sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    background: #1C78CA;
    color: #fff;
    border-radius: 4rem;
    padding: 2.5rem;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card {
        max-width: 90%;
    }
}

#kcwFooter .kcw__footer-card .kcw__footer-top {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: #4E99D3;
    border-radius: 5rem;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-top {
        padding: 1rem;
    }
}

#kcwFooter .kcw__footer-top .kcw__footer-brand {
    min-width: 33%;
}

#kcwFooter .kcw__footer-card .kcw__footer-top .kcw__footer-brand img {
    width: 80%;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-top .kcw__footer-brand img {
        width: 100%;
    }
}

/* Tablet and desktop badge visibility */
@media (min-width: 770px) and (max-width: 1024px),
(min-width: 1025px) {
    #kcwFooter .kcw__footer-card .kcw__badges-desktop {
        display: flex;
    }

    #kcwFooter .kcw__footer-card .kcw__badges-mobile {
        display: none;
    }
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__badges-desktop {
        display: none;
    }

    #kcwFooter .kcw__footer-card .kcw__badges-mobile {
        display: flex;
    }
}

/* Footer badges */
#kcwFooter .kcw__footer-card .kcw__footer-badges {
    display: flex;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-badges {
        gap: 0;
        margin-top: 2rem;
    }
}

#kcwFooter .kcw__footer-card .kcw__footer-badges li img {
    max-width: 5rem;
    width: auto;
    height: 3rem;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-badges li img {
        height: 3rem;
        width: auto;
    }
}

@media (min-width: 1025px) {
    #kcwFooter .kcw__footer-card .kcw__footer-badges li img {
        height: 6rem;
    }
}

/* Footer links */
#kcwFooter .kcw__footer-card .kcw__footer-links {
    gap: 2rem;
    justify-content: space-between;
    width: auto;
}

@media (min-width: 1025px) {
    #kcwFooter .kcw__footer-card .kcw__footer-links {
        margin: 2rem !important;
    }
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-links {
        flex-direction: column;
    }
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col {
    flex: 1 1 calc(20% - 1.6rem);
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu {
    list-style: none;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu li {
    margin: 0.5rem 0;
    list-style-type: none;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu li a {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    font-weight: 600;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu li a:hover {
    opacity: 0.8;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu .kcw__no-link {
    cursor: default;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu .kcw__no-link>a:hover {
    opacity: 1;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu .kcw__no-link ul a:hover {
    opacity: 0.8;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu .kcw__sub-menu {
    padding-inline-start: 0;
}

#kcwFooter .kcw__footer-card .kcw__footer-links .kcw__footer-col .kcw__footer-menu .kcw__sub-menu li a {
    font-weight: 300;
}

/* CTA + Social section */
#kcwFooter .kcw__footer-card .kcw__footer-cta-social {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: #4E99D3;
    border-radius: 5rem;
    flex-direction: column;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social {
        border-radius: 2rem;
    }
}

@media (min-width: 1280px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social {
        flex-direction: row !important;
    }
}

#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-ctas {
    display: flex;
    gap: 2rem;
    padding: 0;
    list-style: none;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-ctas {
        gap: 1.5rem;
        margin: 2rem 0;
        flex-direction: column;
    }
}

@media (min-width: 770px) and (max-width: 1024px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-ctas {
        margin: auto auto 3rem auto;
    }
}

@media (min-width: 1280px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-ctas {
        margin: auto 0 auto 3rem !important;
    }
}

#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-ctas a {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-ctas a:hover {
    opacity: 0.8;
}

/* Footer right */
#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 770px) and (max-width: 1024px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right {
        margin: auto;
    }
}

@media (min-width: 1280px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right {
        margin: 0 !important;
    }
}

#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__footer-social {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__footer-social a {
    display: flex;
    width: 2rem;
    height: 2rem;
    opacity: 1;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__footer-social a {}
}

#kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__footer-social a:hover {
    opacity: 0.8;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__wp-block-buttons {
        margin-top: 2rem;
        width: 100%;
    }

    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__wp-block-buttons .kcw__wp-block-button {
        width: 100%;
    }

    #kcwFooter .kcw__footer-card .kcw__footer-cta-social .kcw__footer-right .kcw__wp-block-buttons .kcw__wp-block-button a {
        padding: 0.5rem;
    }
}

/* Footer bottom */
#kcwFooter .kcw__footer-bottom {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

#kcwFooter .kcw__footer-bottom .kcw__footer-legal {
    display: flex;
    gap: 2rem;
    margin: 0;
    list-style: none;
}

@media (max-width: 769px) {
    #kcwFooter .kcw__footer-bottom .kcw__footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

#kcwFooter .kcw__footer-bottom .kcw__footer-legal a {
    color: #464F5B;
    text-decoration: none;
    opacity: 1;
}

#kcwFooter .kcw__footer-bottom .kcw__footer-legal a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

#kcwFooter .kcw__footer-bottom .kcw__footer-legal span {
    color: #464F5B;
}



#kcwFooter .kcw__screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

#kcwFooter .kcw__footer-menu li a {
    font-size: 16px;
}