/****************** VARIABLES & CLASSES SETTING *******************/

html {
    font-size: 62.5%;
}

*[href^="http"], *[href^="/"], a, a * {
    cursor: pointer !important;
}



body {
    font-size: 16px;
    position: relative;
    color: var(--Color-Black);
    min-height: 100vh !important;
}

.body-content {
    height: 100%;
    /*padding-bottom: 5rem;*/
}
.body {
    min-height: 100vh !important;
}

:root {
    /*COLORS*/
    --Color-White: #fff;
    --Color-Black: #121212;
    --Color-Primary: #322FB1;
    --primary: #322FB1;
    --Color-Primary-Dark: #152767;
    --Color-Primary-Light: #6d5ae4;
    --Color-Secondary: #e22464;
    --secondary: #e22464;
    --Color-Secondary-Light: #ff6291;
    --Color-Secondary-Dark: #aa003a;
    --Color-Gray: #828282;
    --Color-Gray-Light: #EDEDED;
    --Color-Gray-Pale: #f5f5f5;
    --Color-Gray-Dark: #676767;
    --Color-Gradation: linear-gradient(to right,var(--Color-Secondary-Light),var(--Color-Secondary-Dark));
    --Color-Facebook: #3D47AB;
    --Color-Linkedin: #16207F;
    --Color-Twitter: #2CD6FA;
    --Color-Pinterest: #E60219;
    --Color-Youtube: #ff0000;
    --Color-Instagram: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --Color-Violet: #9D3ED7;
    --Color-Green: #3CBA76;
    --Color-Olive: #5B843B;
    --Color-Ocre: #B89724;
    --Color-Purple: #9A4077;
    --Color-Brown: #C1755D;
    --Color-Red: #ff0000;
    /*FONTS*/
    --Font-Serif: 'Noto Serif KR', serif;
    --Font-Text: 'Nanum Gothic', sans-serif;
    --Font-Title: 'Noto Sans KR', sans-serif;
    --Font-Size-Title-Big: 4.5rem;
    --Font-Size-Title-Medium: 3rem;
    --Font-Size-Title-Small: 2.8rem;
    --Font-Size-Text-Big: 2.2rem;
    --Font-Size-Text-Medium: 1.8rem;
    --Font-Size-Text-Small: 1.4rem;
    --Font-Size-Text-Xsmall: 1.2rem;
    --Transition: all 300ms ease;
}

a:hover {
    color: var(--Color-Secondary);
}

.font-family-1 {
    font-family: var(--Font-Title);
}

.font-family-2 {
    font-family: var(--Font-Text);
}

.font-family-3 {
    font-family: var(--Font-Serif);
}

.title-big {
    font-size: var(--Font-Size-Title-Big);
}

.title-medium {
    font-size: var(--Font-Size-Title-Medium);
}

.title-small {
    font-size: var(--Font-Size-Title-Small);
}

.text-big {
    font-size: var(--Font-Size-Text-Big);
}

.text-medium {
    font-size: var(--Font-Size-Text-Medium);
}

.text-small {
    font-size: var(--Font-Size-Text-Small) !important;
}

.text-xsmall {
    font-size: var(--Font-Size-Text-Xsmall);
}

.section-heading {
    background-image: var(--Color-Gradation);
    clip-path: text;
    color: transparent !important;
}

.bg-color-black {
    background-color: var(--Color-Black);
}

.bg-color-white {
    background-color: var(--Color-White);
}

.bg-color-primary {
    background-color: var(--Color-Primary-Dark) !important;
}

.bg-color-secondary {
    background-color: var(--Color-Secondary) !important;
}

.bg-color-gray-pale {
    background-color: var(--Color-Gray-Pale);
}

.bg-color-gray {
    background-color: var(--Color-Gray);
}

.bg-color-gray-light {
    background-color: var(--Color-Gray-Light);
}

.bg-color-gray-dark {
    background-color: var(--Color-Gray-Dark) !important;
}

.bg-color-hover-primary:hover {
    background-color: var(--Color-Primary);
}

.bg-color-primary-dark {
    background-color: var(--Color-Primary-Dark);
}

.bg-color-hover-primary-dark:hover {
    background-color: var(--Color-Primary-Dark);
}


.bg-color-hover-black:hover {
    background-color: var(--Color-Black);
}
.bg-color-hover-secondary-light:hover {
    background-color: var(--Color-Secondary-Light) !important;
}

.bg-color-hover-secondary:hover {
    background-color: var(--Color-Secondary);
}

.bg-color-violet {
    background-color: var(--Color-Violet) ;
}

.bg-color-purple {
    background-color: var(--Color-Purple) ;
}

.bg-color-green {
    background-color: var(--Color-Green) ;
}

.bg-color-olive {
    background-color: var(--Color-Olive) ;
}

.bg-color-brown {
    background-color: var(--Color-Brown) ;
}

.bg-color-ocre {
    background-color: var(--Color-Ocre) ;
}

.bg-color-primary-light {
    background-color: var(--Color-Primary-Light);
}

.bg-color-red {
    background-color: var(--Color-Red);
}
.color-white {
    color: var(--Color-White) !important;
}

a.color-white {
    color: var(--Color-White);
    text-decoration-color: var(--Color-White);
}
.color-black {
    color: var(--Color-Black);
}

.color-primary {
    color: var(--Color-Primary);
}

.color-primary-dark {
    color: var(--Color-Primary-Dark);
}

.color-primary-light {
    color: var(--Color-Primary-Light);
}

.color-secondary {
    color: var(--Color-Secondary);
}

.color-secondary-light {
    color: var(--Color-Secondary-Light);
}

.color-secondary-dark {
    color: var(--Color-Secondary-Dark);
}

.color-gray {
    color: var(--Color-Gray);
}

.color-hover-white:hover {
    color: var(--Color-White);
}

.color-hover-primary:hover {
    color: var(--Color-Primary) ;
}

.color-hover-primary-light:hover {
    color: var(--Color-Primary-Light);
}

.color-hover-secondary:hover {
    color: var(--Color-Secondary);
}

.color-hover-secondary-light:hover {
    color: var(--Color-Secondary-Light);
}

.color-violet {
    color: var(--Color-Violet);
}

.color-purple {
    color: var(--Color-Purple);
}

.color-green {
    color: var(--Color-Green);
}

.color-olive {
    color: var(--Color-Olive);
}

.color-brown {
    color: var(--Color-Brown);
}

.color-youtube {
    color: var(--Color-Youtube);
}

.color-facebook {
    color: var(--Color-Facebook);
}

.border-none {
    border: none !important;
    border-bottom: none !important;
}

    .border-none:hover {
        border: none !important;
        border-bottom: none !important;
    }

.border-bottom-white {
    border-bottom: 1px solid var(--Color-White) !important;
    border-bottom-color: var(--Color-White) !important;
}

@media (max-width: 991px) {
    html {
        font-size: 8px;
    }
}

.spacing-1 {
    letter-spacing: 1px;
}

.box-shadow-big {
    box-shadow: 1rem 2rem 3rem rgba(0,0,0,.4);
    transition: var(--Transition);
}

    .box-shadow-big:hover {
        box-shadow: .3rem .5rem 1rem rgba(0,0,0,.6);
    }

input, input:focus, input:active {
    outline:none;
    border-top: none;
    border-top-color: transparent;
}
textarea, textarea::placeholder,
input, input::placeholder {
    font-size: var(--Font-Size-Text-Small) !important;
}

textarea.placeholder-black::placeholder,
input.placeholder-black::placeholder {
    color: var(--Color-Black);
}

input.placeholder-white::placeholder {
    color: var(--Color-White);
}

input.placeholder-white {
    color: var(--Color-White);
}

input, input.form-control, textarea {
    border: 1px solid var(--Color-Gray-Light) !important;
    border-radius: 4px !important;
    background-color: var(--Color-White) !important;
}

.border-radius-small {
    border-radius: 4px;
}

.border-radius-big {
    border-radius: 1.5rem;
}

th, td {
    align-content: center;
}

/****************** GLOBAL ELEMETNS *******************/
* {
    box-sizing: border-box;
    line-height: 1.2;
}

button, .btn-wide, .btn-small {
    text-decoration: none !important;
    border: none;
    outline: none;
}

button:active, button:focus, button:link {
    outline: none;
}

a, body a {
    text-decoration: none;
}

a i, a div {
    text-decoration: none !important;
}

.btn-admin {
    /*    max-width: 16rem;*/
    font-family: var(--Font-Title);
    height: 5rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: 0 .4rem .4rem rgba(0,0,0,.3);
    transition: all ease 350ms;
    text-align: center;
    line-height: 1.2;
    border: none;
    outline: none;
    padding: 0 2rem;
}

    .btn-admin:hover, .btn-admin:focus, .btn-admin:active {
        box-shadow: 0 .1rem .3rem rgba(0,0,0,.7);
    }

.btn-xsmall {
    min-width: 5rem !important;
    max-width: 10rem !important;
    font-size: 1.3rem !important;
    padding: .5rem 1rem !important;
    font-family: var(--Font-Title);
    height: 3.5rem !important;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: 0 .3rem .4rem rgba(0,0,0,.3);
    transition: all ease 350ms;
    text-align: center;
    line-height: 1.2;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: none !important;
}

    .btn-xsmall:hover {
        background-color: var(--Color-Gray);
        box-shadow: 0 1px 1px rgba(0,0,0,.6);
    }

.btn-wide {
    min-width: 22rem;
    max-width: 300px;
    min-height: 5rem;
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: 0 .4rem 1rem rgba(0,0,0,.4);
    transition: all ease 350ms;
    text-align: center;
    line-height: 1.2;
    padding: 0 2.5rem;
    font-family: var(--Font-Title) !important;
    border: none !important;
}

    .btn-wide:hover, .btn-wide:focus, .btn-wide:active {
        box-shadow: 0 .1rem .3rem rgba(0,0,0,.7);
        color: var(--Color-White) !important;
    }

.btn-small {
    min-width: 13rem !important;
    max-width: 18rem !important;
    height: 5rem !important;
    font-size: 1.5rem !important;
    letter-spacing: 0 !important;
}

.btn-members {
    width:30rem;
    max-width: 35rem;
}

.btn-black {
    background-color: var(--Color-Black);
    color: var(--Color-White) !important;
}

.btn-black:hover {
    background-color: var(--Color-Primary);
}

.btn-border {
    font-size: 2rem;
/*    font-weight: bold;*/
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    padding: 0 2.5rem;
    font-family: var(--Font-Title) !important;
    background-color: var(--Color-White) !important;
    border: 2px solid var(--Color-Black) !important;
    color: var(--Color-Black) !important;
    transition: var(--Transition);
    box-shadow: none;
    width: 100%;
    min-width: 30rem;
    min-height: 6rem;
    text-decoration: none !important;
}

.btn-border:hover {
    background-color: var(--Color-Black) !important;
/*    border: 2px solid var(--Color-Black);*/
    color: var(--Color-White) !important;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--Color-Primary-Dark) !important;
    color: var(--Color-White);
}

.btn-secondary {
    background-color: var(--Color-Secondary) !important;
    color: var(--Color-Black);
}

    .btn-primary:hover,
    .btn-secondary:hover {
        background-color: var(--Color-Black) !important;
        color: var(--Color-White) !important;
    }

@media (max-width: 991px) {
    .btn-wide {
        min-width: 15rem;
        max-width: 50vw;
        font-size: 1.8rem;
    }
}

input {
    background-color: transparent !important;
    outline: none;
    border: none !important;
    border-top: none !important;
    border-bottom: 1px solid var(--Color-Black) !important;
    font-size: var(--Font-Size-Text-Small);
    padding-bottom: 5px;
    margin: 2rem auto;
    border-radius: 0 !important;
}

textarea {
    font-size: var(--Font-Size-Text-Small) !important;
    font-family: var(--Font-Text);
}
textarea, .form-control {
    border-radius: 0 !important;
    border-color: var(--Color-Black);
}

.liststyle-none {
    list-style: none;
}

.text-underline {
    text-decoration: underline !important;
}

.text-hover-underline:hover {
    text-decoration: underline !important;
}

.tooltip {
    font-family: var(--Font-Text);
    font-size: var(--Font-Size-Text-Small);
    background-color: var(--Color-Gray-Light) !important;
    background: var(--Color-Gray-Light) !important;
    border-bottom-color: none !important;
    border-top-color: none !important;
}

    .tooltip .tooltip-arrow, .popper .popper__arrow {
        border-color: none !important;
        /*    background-color: var(--Color-Gray-Light) !important;*/
        color: var(--Color-Gray-Light) !important;
        border-bottom-color: var(--Color-Gray-Light) !important;
        border-top-color: var(--Color-Gray-Light) !important;
    }

    .tooltip div {
        background-color: var(--Color-Gray-Light);
        color: var(--Color-Black);
        /*    padding: 1rem 1.2rem;*/
        border-radius: 4px;
        /*    transform: translateY(-1rem);*/
    }




.scroll-to-top {
    border-radius: 50% !important;
    bottom: 3rem !important;
    right: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 6rem !important;
    height: 6rem !important;
}

    .scroll-to-top i {
        font-size: var(--Font-Size-Text-Big) !important;
        /*    line-height: var(--Font-Size-Text-Big);
    margin: 0;*/
        margin-bottom: .5rem;
    }



.line-height-1 {
    line-height: 1.4 !important;
}

.videoWrapper {
    position: relative !important;
    padding-bottom: 56.25% !important; /* 16:9 */
    height: 0 !important;
    overflow: hidden !important;
}

    .videoWrapper iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

/*################## LAYOUT ##################*/
/*=============== Header ===============*/

/*FEEDBACK*/
#feedbackModal .modal-content {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    max-width: 90% !important;
    width: 55rem;
}


#logo {
    max-height: 80px;
    max-width: 80vw;
}

@media all and (max-width: 991px) {
    #logo {
        max-height: 60px;
        width: auto;
    }
}

@media (max-width: 575px) {
    #logo {
        max-height: 50px;
    }
}

#header * {
    transition: all 350ms ease;
}
#header-top {
    height: 4rem !important;
}
#header-top,
#header-bottom > div {
    max-width: 1600px !important;
    margin: 0 auto;
}

#header .social-icons li.social-icon {
    border: 1px solid var(--Color-Black);
}

    #header .social-icons li.social-icon:hover,
    #header .social-icons li.social-icon:hover a {
        background-color: var(--Color-Black) !important;
        color: var(--Color-White) !important;
    }

#header .social-icons li.social-icon {
    padding: 0.3rem !important;
}

    #header .social-icons li.social-icon a i {
        font-size: var(--Font-Size-Text-Medium) !important;
    }

@media (max-width: 991px) {
    #header .social-icons li.social-icon a i {
        font-size: var(--Font-Size-Text-Small) !important;
    }
}

#header .social-icons li.social-icon:hover a i {
    color: var(--Color-White) !important;
}

#header-search {
    border: none;
    border-bottom: 1px solid var(--Color-Gray-Light);
    border-radius: 0 !important;
}

#header .header-nav-main nav > ul > li.dropdown {
/*    padding: 1.5rem 0.8rem;*/
}

#header .header-nav-main nav > ul > li.dropdown > a {
    font-family: var(--Font-Title) !important;
    font-weight: 300 !important;
    /*    font-weight: bold !important;*/
    font-size: 1.8rem !important;
    /*    font-size: var(--Font-Size-Text-Small);*/
    letter-spacing: 1px !important;
    text-align: center;
    height: 100% !important;
    padding: 1.5rem 0.8rem;
}

#header .header-nav-main nav > ul > li.dropdown:hover > a {
    background-color: var(--Color-Primary-Light);
    color: var(--Color-White) !important;
}

    #header .header-nav-main nav > ul > li.dropdown.open > a:before,
    #header .header-nav-main nav > ul > li.dropdown.accessibility-open > a:before,
    #header .header-nav-main nav > ul > li.dropdown:hover > a:before {
        border-bottom: none !important;
    }

#header .header-nav-main nav > ul > li,
#header .header-nav-main nav > ul > li:hover {
    border: none !important;
}

#header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-item {
    height: 100%;
    display: flex;
    align-items: center;

    /*    justify-content: center;*/
}

#header .header-btn-collapse-nav {
    float: right !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.dropdown-item::after {
    font-size: var(--Font-Size-Text-Xsmall) !important;
    transform: translateX(1rem);
}


@media (min-width: 992px) {
    .dropdown-item__main {
        max-width: 14rem;
    }
}

@media (max-width: 1260px) {
    .dropdown-item__main {
        font-size: 1.5rem !important;
        letter-spacing: 0;
    }

    #header .header-nav-main nav > ul > li.dropdown > a {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 991px) {
    .dropdown-item__main {
        letter-spacing: 1px;
    }
}




#header .header-nav-main.header-nav-main-square nav > ul > li.dropdown,
#header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu,
#header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu * {
    color: var(--Color-Black);
    margin: 0;
    font-family: var(--Font-Title);
    letter-spacing: 1px;
}

/*DROPDOWN SUBMENU DOWN CARET ICON*/
.dropdown-submenu__icon {
    width: .8rem;
    height: auto;
    margin-left: .5rem !important;
}


#header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu {
    padding: 20px;
    transform: translateY(-2px);
}

    #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu li {
        width: 100%;
        text-align: left !important;
/*        padding: 5px 0;*/
        display: flex;
        justify-content: start;
    }

        #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu li .dropdown-item {
            padding: 1rem 2rem;
            letter-spacing: 1px;
            text-align: start !important;
            font-weight: 400;
            display: block !important;
            font-size: 1.4rem;
        }

        #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu li a:hover {
            color: var(--Color-Secondary);
            background-color: transparent !important;
        }

.header-nav-main.collapse {
    width: 100vw;
}

.header-nav-main nav {
    border: none;
    width: 100%;
}

@media (max-width: 1199px) {
    #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown a {
        font-size: 2rem !important;
    }
}

/*@media (max-width: 1100px) {
    #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown a {
        font-size: 1.3rem !important;
    }
}*/
@media (max-width: 991px) {
    .header-body {
        height: auto !important;
    }

    /*When Toggle, NO LIMIT OF HEIGHT OF NAV*/
    #header .header-nav-main nav {
        max-height: none !important;
    }

    .header-nav-main nav {
        width: 100vw !important;
    }

    #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown a {
        font-size: 1.5rem !important;
    }
    .dropdown-item__main {
        font-size: 2rem !important;
    }

    #header .header-nav-main.header-nav-main-square nav > ul > li.dropdown .dropdown-menu li .dropdown-item {
        padding: .5rem 1rem;
    }
}

#header .header-container {
/*    min-height: 124px;*/
}

/*#header .header-column .header-row {
    min-height: 80px;
}*/

@media (max-width: 575px) {
    #header .header-container {
        min-height: 70px;
        padding: 0 20px;
    }
}

@media screen and (min-width: 992px) {
    .desktopHide {
        display: none !important;
    }
}

i.fa-chevron-down::before {
    display: none;
}

#header .header-nav-main nav > ul > li > a {
    color: var(--Color-Black);
}


/**************** FOOTER ******************/
#footer-form-wrapper {
    background-image: linear-gradient(to bottom, var(--Color-White) 50%, var(--Color-Black) 50%) !important;
}

#footer-form {
    display: flex !important;
    justify-content: center;
}

    #footer-form > div {
        min-width: 60vw;
        max-width: 85vw;
    }


#footer {
/*    height: auto;
    position: absolute;
*/    bottom: -4px;
    padding-bottom: 4px;
    height:auto;
    width: 100%;
    left: 0;
    z-index: 10 !important;
    background-color: var(--Color-Primary-Dark) !important;
}

@media (max-width: 991px) {
    #footer {
        position: relative;
    }
}



#footer * {
    transition: all 350ms ease;
}

.footer__logos img {
    max-width: 90%;
    width: auto;
    display: block;
}

.footer__logos .logo {
    max-height: 80px;
}

.footer__logos .logo {
    max-height: 80px;
}

.footer__item * {
    color: var(--Color-White);
}

.footer__item {
    font-size: var(--Font-Size-Text-Small);
}



    .footer__item:hover *,
    .footer__item:active *,
    .footer__item:focus * {
        color: var(--Color-Secondary);
        cursor: pointer;
        border-color: var(--Color-Secondary);
    }

.footer__item-icon {
    border-radius: 50%;
    border: 1px solid var(--Color-White);
    min-width: 43px !important;
    min-height: 43px !important;
}


.footer__item > h5 {
    color: var(--Color-White) !important;
}

.footer__item:hover h5 {
    color: var(--Color-Secondary) !important;
}

#footer .careapp {
    max-height: 6rem;
}

@media (max-width: 991px) {
    .footer__item, .footer__item * {
        font-size: 1.8rem !important;
    }

    .footer__item-icon {
        min-width: 35px !important;
        min-height: 35px !important;
    }

    .footer__logos .logo {
        max-height: 60px !important;
    }

    #footer .careapp {
        max-height: 5rem !important;
    }
}

@media (max-width: 576px) {
    .footer__item, .footer__item * {
        font-size: 1.5rem !important;
        letter-spacing: 0 !important;
    }
}

#footer .divider {
    height: 1px;
    background-color: var(--Color-Gray-Light);
}

#footer .social-icons .social-icon {
    border: 1px solid var(--Color-White);
    background-color: var(--Color-Black);
}

    #footer .social-icons .social-icon a {
        background-color: var(--Color-Black);
    }

        #footer .social-icons .social-icon a i {
            color: var(--Color-White);
        }

    #footer .social-icons .social-icon:hover {
        border: 1px solid var(--Color-Secondary) !important;
        color: var(--Color-Secondary) !important;
    }

        #footer .social-icons .social-icon:hover a {
            color: var(--Color-Secondary) !important;
        }

#footer .footer-item.social:hover * {
    border-color: var(--Color-Secondary);
    color: var(--Color-Secondary);
}




/*ALERT BAR*/
.alert-dismissable .close, .alert-dismissible .close {
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -2rem;
    color: var(--White);
    margin: 0;
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.close {
    float: right;
    font-size: 21px;
    color: var(--Color-White);
    /*    margin-right: 20px;*/
}


/**************** CALENDAR BUTTON ******************/

.quick-button__container {
    position: fixed;
    z-index: 1000 !important;
    width: auto;
    height: auto;
    right: 3rem;
    bottom: 9rem;
}
.quick-button {
  position: relative;

    z-index: 1000 !important;
    margin-bottom: 1rem;
}

    .quick-button a {
        position: relative;
        border-radius: 50%;
        height: 6rem;
        width: 6rem;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 1.5rem 2.5rem rgba(0,0,0, 0.3);
        transition: var(--Transition);
        
    }

    .quick-button > a > i {
        transition: var(--Transition);
    }


        .quick-button a:hover {
            transform: translateY(-0.3rem) scale(1.05);
            box-shadow: 0 1rem 2rem rgba(0,0,0, 0.5);
        }

    .quick-button.calendar {
/*        right: 3rem;
        bottom: 3rem;*/
    }

        .quick-button.calendar a {
            background-color: var(--Color-Secondary-Dark);
        }

            .quick-button.calendar a:hover {
                background-color: var(--Color-Black);
            }

    .quick-button.feedback {
/*        right: 3rem;
        bottom: 17rem;*/
    }

        .quick-button.feedback a {
            background-color: var(--Color-Facebook);
        }

            .quick-button.feedback a:hover {
                background-color: var(--Color-Black);
            }

    .quick-button.accessibility {
/*        right: 3rem;
        bottom: 10rem;*/
/*        background-color: transparent;*/
        
    }

    .quick-button.accessibility > a > i {
        font-size: 6.2rem;
    }

        .quick-button.accessibility a {
            background-color: var(--Color-White);
            color: var(--Color-Facebook);
        }

            .quick-button.accessibility a:hover {
                color: var(--Color-Black);
            }

/*################## HOME PAGE ##################*/
/**************** HOME - SLIDER  ******************/
.home__slider {
    background-image: url("../images/photos/home_slider_1.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;
    
}


.home__slider-text {
    background-color: rgba(255,255,255,.3);
    max-height: 50%;
    min-height: 200px;
    padding: 5rem 10rem;
}

    .home__slider-text > h1 {
        position: relative;
    }



.home__slider-quote.left {
    position: absolute;
    top: .5rem;
    left: -3.5rem;
}

@media (max-width: 991px) {
    .home__slider {
        background-position: 20% 50%;
    }
}

@media (max-width: 575px) {
    .home__slider-quote.right {
        position: absolute;
        bottom: .5rem;
        right: -2rem;
    }
}



/**************** HOME - PRIORITIES  ******************/

.home__priorities {
    transform: translateY(-20vh);
}

.home__priority > div {
    padding: 5rem;
    transition: var(--Transition);
}

.home__priority img {
    max-height: 14rem;
}

@media (max-width: 991px) {
    .home__priority img {
        max-height: 12rem;
    }
}

.home__priority-backtext a,
.home__priority-backtext a * {
    color: var(--Color-White) !important;
    transition: var(--Transition);
    line-height: 1.5;
}

.home__priority-backtext  a:hover,
.home__priority-backtext  a:hover * {
    color: var(--Color-Secondary);
}

.home__priority-backtext p {
    margin: 0;
    padding: 0;
}
.home-card {
    perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 38rem;
}

.card-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    height: 100%;
    transition: all 0.8s ease;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0,0,0, 0.15);
    cursor: pointer;
}

.hide{
    display: none !important;
}


/*.card-side__back li {
    margin-bottom: 5rem 0;
}

.card-side__back li:not(:last-child) {
    border-bottom: 1px solid var(--Color-Gray);
}*/

/*.card-side__back {
    transform: rotateY(180deg);
    background-color: var(--Color-Black);
}

.home-card:hover .card-side__front {
    transform: rotateY(-180deg);
}

.home-card:hover .card-side__back {
    transform: rotateY(0);
}
*/
/**************** HOME - WELCOME  ******************/

.home__welcome {
    min-height: 30vh;
    padding-bottom: 5rem;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 15%, var(--Color-Secondary-Light) 15%, var(--Color-Secondary-Light) 85%, rgba(255,255,255,0) 85%);
}

.home__welcome-title {
    color: var(--Color-Secondary-Dark) !important;
}

/**************** HOME - EVENTS ******************/

.home__events {
    padding: 5rem 0;
    margin: 5rem 0;
    min-height: 110vh;
    background-image: url("../images/photos/home_events2.jpeg");
    background-position: center;
    background-size: cover;
    position: relative;
    clip-path: polygon(0 10vh, 100% 0, 100% 100vh, 0 110vh);
}

    .home__events .home__events-bg {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(255,255,255,.9);
        z-index: -1 !important;
    }

    .home__events .home__events-content {
        z-index: 1000 !important;
    }

.home__events-item {
    border-left: 5px solid var(--Color-Black);
    margin-bottom: 1rem;
    color: var(--Color-Black);
    transition: var(--Transition);
}

.home__events-item h4 {
    transition: var(--Transition);
}

.home__events-item:hover {
    border-color: var(--Color-Primary-Dark);
}

.home__events-item:hover h4 {
    color: var(--Color-Primary-Dark);
}



/**************** HOME - MEMBERS ******************/
.home__members {
    margin: 24rem 0;
}

.home_members-btn {
    padding: 5rem;
    min-width: 24rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15rem;
    transition: var(--Transition);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.2);
}

.home_members-btn:hover, .home_members-btn:active, .home_members-btn:focus {
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.4);
    background-color: var(--Color-Secondary) !important;
}

.home_members-btn:hover img, .home_members-btn:active img, .home_members-btn:focus img {
    background-color: transparent !important;

}

.home__members img {
    max-height: 7rem;
    width: auto;
}


/**************** HOME - ANNOUNCEMENTS ******************/
.home__announcements {
    margin: 8rem 0;
    position: relative;
    min-height: 30vh;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 10%, var(--Color-Secondary-Light) 10%);
}




/*################## SECTIONS & PAGES SETTING ##################*/
/**************** SECTION SETTING ******************/
/* HEADING SMALL*/
.section-header-small {
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    background-color: transparent !important;
    position: relative;
    max-height: 45vh;
    border-radius: 2rem;
    overflow: hidden;
}

    .section-header-small .section-bg {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        /*    min-height: 50vh;*/
        background-position: center;
        background-size: cover;
        position: absolute;
        z-index: 0 !important;
        background-image: url("/Content/images/church/section-bg.jpg");
    }

        .section-header-small .section-bg::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(0,0,0,.5);
        }

    .section-header-small .section-title {
        z-index: 101 !important;
    }

        .section-header-small .section-title * {
            color: var(--Color-White);
            transition: var(--Transition);
        }

        .section-header-small .section-title p a:hover {
            color: var(--Color-Secondary);
        }

/* LEFT TOP - SIDEBAR*/
.section-sidebar {
    box-shadow: 0 5px 8px rgba(0,0,0,.15);
    background-color: var(--Color-Gray-Light);
    margin-bottom: 8rem;
    padding: 0;
}

    .section-sidebar  li {
        display: flex;
        padding: 1rem 2rem;
        text-align: center;
        align-items: center;
        min-height: 5rem;
        width: 100%;
        color: var(--Color-Primary-Dark);
/*        background-color: var(--Color-Gray-Light);*/
        text-transform: uppercase;
        font-size: var(--Font-Size-Text-Small);
        font-family: var(--Font-Title);
        font-weight: bold;
        letter-spacing: 1px;
    }


        .section-sidebar  li.active {
            background-color: var(--Color-Gray-Light);
            color: var(--Color-Secondary);
        }

            .section-sidebar  li.active > a {
                color: var(--Color-Secondary);
                text-decoration: underline;
            }

        .section-sidebar li:hover a {
            color: var(--Color-Primary-Light);
            text-decoration: underline;
        }

        .section-sidebar  li:first-child {
            font-size: var(--Font-Size-Text-Medium);
            text-align: left;
            background-color: var(--Color-Gray);
            color: var(--Color-White);
        }

            .section-sidebar  li:first-child:hover {
                color: var(--Color-White) !important;
            }

@media (max-width: 1199px) {
    .section-sidebar  li:first-child {
        font-size: var(--Font-Size-Text-Small);
    }

    .section-sidebar  li:not(:first-child) {
        font-size: var(--Font-Size-Text-Xsmall);
    }
}

.section-sidebar  li:not(:last-child) {
    border-bottom: 1px solid var(--Color-White);
}

/*LEFT BOTTOM - LIST OF CONTENTS*/
.section-sidelist {
    background-color: var(--Color-Secondary-Light);
    padding: 0;
}

    .section-sidelist > li {
        padding: 2rem 2.4rem !important;
        font-family: var(--Font-Title);
        font-size: var(--Font-Size-Text-Small);
        letter-spacing: 1px;
    }

    .section-sidelist li:first-child {
        font-weight: bold;
        text-transform: uppercase;
        font-size: var(--Font-Size-Text-Medium);
        font-family: var(--Font-Title);
        color: var(--Color-Black);
/*        background-color: var(--Color-Black);*/
    }

    .section-sidelist li:not(:first-child):hover a {
        color: var(--Color-Primary-Dark);
    }

.section-content {
    padding: 5rem 0rem 15rem 0rem;
}

.section-right > div > form > input {
    width: 80%;
}

.section-right > div > form > button {
    background-color: transparent !important;
}

.section-right input[type=radio] {
    -ms-transform: scale(1.5) !important; /* IE 9 */
    -webkit-transform: scale(1.5) !important; /* Chrome, Safari, Opera */
    transform: scale(1.5) !important;
    background-color: var(--White);
    border-radius: 50%;
}


/**************** DESCRIPTIVE PAGES SETTING ******************/
.page-section {
    margin-bottom: 3rem;
}

    .page-section p,
    .page-section ul,
    .page-section li,
    .page-html {
        line-height: 1.5;
    }

.page-content {
    margin-bottom: 6vh;
}

.page-iframe p {
    font-family: var(--Font-Text) !important;
    font-size: var(--Font-Size-Text-Medium) !important;
    color: var(--Color-Black);
    text-align: left !important;
}

.page-iframe p.title {
    font-family: var(--Font-Title) !important;
    text-transform: uppercase;
}

.page-heading,
.page-description,
.page-list,
.page-images,
.page-files,
.page-buttons,
.page-iframe,
.page-html {
    margin-bottom: 2rem;
}


.page-section p a {
    font-weight: bold;
    color: var(--Color-Secondary);
    transition: var(--Transition);
}

.page-section p a:hover {
    color: var(--Color-Primary);

}

.page-section:not(:first-child) .page-heading {
    margin-top: 5rem;
}

.page-image {
    display: flex;
    justify-content: center !important;
/*    max-height: 45rem;*/
}

.page-image a.float-left {
    float: none !important;
    width: 100%;
}

.page-images {
    display:flex;
    justify-content: center !important;
}


.page-image img {
    margin-bottom: 1rem;
    min-width: 35rem;
/*    max-width: 80%;*/
    max-height: 45rem;
    width: auto;
    height: auto;
    border: 1px solid #c0c0c0;
/*    box-shadow: 0 .7rem 1.2rem rgba(0,0,0,.2);*/
    transition: var(--Transition);
    margin: 2rem auto;
}

.page-image img:hover {
    box-shadow: 0 3px 7px rgba(0,0,0,.4);
}

.page-images-double .page-image img {
    height: 40rem;
    width: auto;
    object-fit: cover;
}

.page-images-multi .page-image img {
    height: 30rem;
    width: auto;
    object-fit: cover;
}

.program-modal .page-images-double .page-image img,
.program-modal .page-images-multi .page-image img {
    height: auto !important;
}

.page-image {
    font-size: var(--Font-Size-Text-Xsmall);
    font-family: var(--Font-Text);
}

/*.page-files > div > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--Font-Size-Text-Xsmall);
    font-family: var(--Font-Text);
}*/

/*.page-files > div > a > img {
    height: 7rem;
    width: auto;
    font-family: var(--Font-Text);
    margin-bottom: 1rem;
}

.page-files > div > iframe {
    display: block;
    width: 100%;
    margin: 3rem auto !important;
}*/

.page-html a:not(.color-black) {
    color: var(--Color-Secondary);
    font-weight: bold;
    transition: var(--Transition);
}

    .page-html a:not(.color-black):hover {
        text-decoration: underline !important;
        color: var(--Color-Primary);
    }

.page-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.page-grid::after {
  content: "";
  flex: auto;
}

/**************** DETAIL PAGES & MODALS : ELEMENTS SETTING ******************/
.modal-xl {
    width: 90vw !important;
}

.card-body .has-user-generated-content p,
.card-body .has-user-generated-content .text-body-medium,
.card-body p {
    font-family: var(--Font-Text);
    font-size: var(--Font-Size-Text-Small);
    color: var(--Color-Black);
    margin-bottom: 4rem;
}

.card-body .structured-content h2 {
    font-weight: bold;
    font-size: var(--Font-Size-Text-Big);
    font-family: var(--Font-Title);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--Color-Black);
    margin: 2rem 0;
}
/* VIDEO THUMBNAIL (with link) */
.image-videothumb {
    position: relative;
}

    .image-videothumb img {
        filter: brightness(.6);
    }

    .image-videothumb .image-videothumb__icon {
        position: absolute;
        height: 10rem;
        width: 10rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--Color-White);
        border-radius: 50%;
        z-index: 10000 !important;
        padding: 2rem;
        cursor: pointer;
    }

.image-videothumb__icon .play-triangle {
    background-color: var(--Color-White);
    clip-path: polygon(100% 44%, 20% 0, 20% 100%);
    width: 100%;
    height: 100%;
}


/* TABLE */
.content-table a:focus,
.content-table a:hover,
.content-table a:active {
    color: var(--Color-White);
}

.content-table-row * {
    transition: var(--Transition);
}

.content-table-row:not(:last-child) {
    border-bottom: 1px solid var(--Color-Gray-Light);
}

.content-table-row > div:not(:last-child) {
    border-right: 1px solid var(--Color-Gray-Light);
}

.content-table-row > div:hover > h5 {
    color: var(--Color-Secondary-Dark);
}
.content-table-row > div:hover > p {
    color: var(--Color-White) !important;
}

@media (max-width: 991px) {
    .content-table-row > div:first-child {
        border-bottom: 1px solid var(--Color-Gray-Light);
    }
}

@media (max-width: 767px) {
    .content-table-row:not(:last-child) {
        border-bottom: 1px solid var(--Color-Gray);
    }
}

.content-date {
    font-family: var(--Font-Title);
    font-weight: 300;
    font-size: var(--Font-Size-Text-Medium);
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.content-text {
    font-family: var(--Font-Text);
    font-size: var(--Font-Size-Text-Small);
    margin-bottom: 3rem;
}

.program-modal a {
    font-family: var(--Font-Text);
    font-size: var(--Font-Size-Text-Small);
    font-weight: bold;
    color: var(--Color-Secondary);
    /*    margin-bottom: 1.5rem !important;*/
}

.program-modal .card-body p,
.program-modal .card-body p span {
    font-family: var(--Font-Text);
    font-size: var(--Font-Size-Text-Small);
}

.content-info {
    font-family: var(--Font-Text);
    font-size: var(--Font-Size-Text-Small);
    margin-bottom: 3rem;
}


/* If only image, use 'content-img'. If image with link, 'content-img-link'. */
.content-img-link,
.content-img {
    width: 50%;
    margin: 2rem auto;
}


.content-link {
    font-family: var(--Font-Title);
    font-weight: bold;
    color: var(--Color-Secondary);
    text-decoration: none;
    transition: var(--Transition);
}

    .content-link:hover, .content-link:active, .content-link:focus {
        color: var(--Color-Primary);
    }

.content-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.content-socials__icon {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--Color-Black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Color-White);
}

    .content-socials__icon,
    .content-socials__icon * {
        transition: var(--Transition);
    }

        .content-socials__icon:not(:last-child) {
            margin-right: 1rem;
        }

        .content-socials__icon:hover {
            background-color: var(--Color-Black) !important;
        }

.content-socials__icon {
    font-size: var(--Font-Size-Text-Big);
}

    .content-socials__icon:hover i {
        color: var(--Color-White);
    }

.content-share {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 3rem auto;
}

.content-share__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .content-share__icon,
    .content-share__icon * {
        transition: var(--Transition);
    }

        .content-share__icon i {
            color: var(--Color-White);
            font-size: var(--Font-Size-Text-Big) !important;
        }

        .content-share__icon:not(:last-child) {
            margin-right: 1rem;
        }

        .content-share__icon:hover {
            background-color: black;
        }

        .content-share__icon.facebook {
            background-color: var(--Color-Facebook);
        }

        .content-share__icon.twitter {
            background-color: var(--Color-Twitter);
        }

        .content-share__icon.pinterest {
            background-color: var(--Color-Pinterest);
        }

        .content-share__icon.email {
            background-color: var(--Color-Gray);
        }

        .content-share__icon.linkedin {
            background-color: var(--Color-Linkedin);
        }

        .content-share__icon.instagram {
            background-image: var(--Color-Instagram);
        }






/*################## PAGE-SPECIFIC STYLING ##################*/
/**************** EVENTS - SPECIAL PROGRAMS ******************/


.programs__content {
    margin-bottom: 5vh;
}

.modal-dialog-wi-centered {
    margin: 1.75rem auto;
    position: relative;
}


.calendar-content,
.event-list-content {
    padding: 8rem 3rem 10rem 3rem !important;
}

/*.calendar-content .btn-calendar {
    display: none;
}

.event-list-content .btn-list {
    display: none;
}*/


.btn-list,
.btn-calendar {
    width: 100%; 
    max-width: 40vw;
    min-height: 6rem;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: 0 .4rem 1rem rgba(0,0,0,.4);
    transition: all ease 350ms;
    text-align: center;
    line-height: 1.2;
    padding: 0 2.5rem;
    font-family: var(--Font-Title) !important;
    border: none;
}

    .btn-list:hover, .btn-list:focus, .btn-list:active,
    .btn-calendar:hover, .btn-calendar:focus, .btn-calendar:active {
        box-shadow: 0 .1rem .3rem rgba(0,0,0,.7);
    }

#calendar {
    padding: 10rem 2rem 5rem 2rem !important;
}

#calendarSearch select {
    font-size: var(--Font-Size-Text-Small) !important;
    padding: .5rem;
    min-height: 3rem;
}

    #calendar h2, #calendar h1 {
        font-family: var(--Font-Title);
        font-size: var(--Font-Size-Title-Medium);
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 1px;
        margin: 1rem 0 3rem 0;
    }

    #calendar th a {
        font-family: var(--Font-Title);
        font-size: var(--Font-Size-Text-Medium) !important;
        text-transform: uppercase;
    }

    #calendar td a .fc-event-main-frame {
        background-color: var(--Color-Primary);
        border-radius: 3px !important;
        transition: var(--Transition);
    }

        #calendar td a .fc-event-main-frame:hover {
            background-color: var(--Color-Black);
        }

    #calendar td a .fc-event-time {
        font-family: var(--Font-Text);
        font-size: var(--Font-Size-Text-Small) !important;
        min-width: 40px;
    }

    #calendar td a .fc-event-title {
        font-family: var(--Font-Text);
        font-size: var(--Font-Size-Text-Small) !important;
        padding-left: 1rem;
    }

    #calendar .fc-h-event {
        border: none !important;
    }


.mainPage a {
/*    text-decoration: underline;*/
}

.mainPage a > i {
    text-decoration: none !important;
}

.meeting-portal a > i {
    text-decoration: none !important;
}



/*CONTACT FORM*/
#contactForm input,
#contactForm textarea {
    font-size: var(--Font-Size-Text-Small) !important;
}

#contactForm input {
    border-color: var(--Color-White);

}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    font-size: var(--Font-Size-Text-Small) !important;

}


/*ACCESSIBILITY PAGE*/
.section-accessibility .section-bg {
    background-image: url('../images/photos/accessibility-min.jpeg');
}


/*Navigate with Tab button*/
a:focus, a:focus * {
/*    background-color: var(--Color-Black) !important;*/
    color: var(--Color-Secondary) !important;
}

#datatable-default_wrapper {
    width: 100%;
    overflow-x: hidden !important;
}

#datatable-default_paginate ul.pagination {
    width: 90% !important;
    overflow-x: hidden !important;
}


#header .header-nav-bar .header-nav {
    height: auto !important;
}
#header .header-nav-main {
    height: auto !important;
}

#header-logo {
   height: 7rem;
}

.footer-contact-item p {
    color: var(--Color-White);
    margin: 0;
    padding: 0;

}

.footer-contact__wrapper {
    background-color: var(--Color-White);
    border: 1px solid var(--Color-White);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    margin-right: 1rem;
}

.footer-contact__wrapper span {
    color:var(--Color-Primary-Dark);
}

main[role=main], div[role=main] {
    min-height: calc(100vh - 25rem);
    padding-bottom: 0 !important;
    margin: 0;
/*    padding-bottom: 5rem;*/
}

.footer-contact-item:hover p {
    color: var(--Color-Secondary-Light);
}

.footer-contact-item:hover .footer-contact__wrapper {
    background-color: var(--Color-Secondary-Light);
}

.footer-contact-item:hover .footer-contact__wrapper.youtube {
    background-color: var(--Color-Youtube);
}

.footer-contact-item:hover .footer-contact__wrapper.facebook {
    background-color: var(--Color-Facebook);
}

.footer-contact-item:hover .footer-contact__wrapper span,
.footer-contact-item:hover .footer-contact__wrapper i {
    color: var(--Color-White);
}


/*CHURCH : Index */
#home-hero {
    width: 100%;
    height: 50vh;
    border-radius: 4rem;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 50vh;
}
.carousel-item__bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: var(--color-white);
    background-position: center;
    background-blend-mode:lighten;
    background-size: cover;
}

.carousel-item__bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,.3);
}

.carousel-item__bg.slide1 {
    background-image: url("/Content/images/church/hero-1.jpeg")
}

.carousel-item__bg.slide2 {
    background-image: url("/Content/images/church/hero-2.jpeg")
}

.carousel-item__bg.slide3 {
    background-image: url("/Content/images/church/hero-3.jpeg")
}

.carousel-item__bg.slide4 {
    background-image: url("/Content/images/church/hero-4.jpeg")
}

.carousel-item__bg.slide2::after,
.carousel-item__bg.slide4::after{
    background-color: rgba(255,255,255,.6);
}

.home-box__item {
    min-height: 10vh;
    border-radius: 1.5rem;
    text-align: center;
    font-size: var(--Font-Size-Text-Medium);
}

.home-box__board {
    height: 100%;
    width:100%;
/*    border: 1px solid var(--Color-Primary-Dark);*/
background-color: var(--Color-Gray-Pale);
    overflow-y: scroll;
}


input:not([type=checkbox]) {
    font-size: var(--Font-Size-Text-Small) !important;
    padding: 5px 10px;
}

/*#header .header-body .container #header-top .nav .dropdown .dropdown-item:hover {
    background-color: yellow;
}*/
/*.dropdownmenu {
    display: none;
}*/
#header .header-body .container #header-top .nav .dropdown:hover .dropdown-menu,
#header .header-body .container #header-top .nav .dropdown:focus .dropdown-menu {
    display: block !important;
}

.files  img {
    max-width: 7rem;
    height: auto;
}