/* custom css */

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
    height: 100%;
    width: 100%;
    margin: 0%;
    padding: 0%;
    overflow-x: hidden;
}

body {
    /*margin-bottom: 60px;*/ /* Margin bottom by footer height */
    overflow-x: hidden !important; /* Hide vertical scrollbar */
}


    body > form {
        min-height: 100vh;
        position: relative;
    }




footer {
    position: absolute;
    /*bottom: 0px;*/
    width: 100%;
    /*height: 60px;  Set the fixed height of the footer here */
    /*line-height: 60px; Vertically center the text there */
    background-color: #f5f5f5;
}



    img, svg {
    max-width: 100%;
}

/*scrollbars*/
/** {
    scrollbar-width: thin;
    scrollbar-color: #0d6efd white;
}*/
    /* Works on Chrome, Edge, and Safari */
    /**::-webkit-scrollbar {
        width: 8px;
        height: 8px
    }

    *::-webkit-scrollbar-track {
        background: white;
        border-left: 1px solid #ccc;
        border-top: 0;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #0d6efd;
        border-radius: 0;
        border: 0px solid white;
    }*/

/*.row {
    --bs-gutter-x: 0px !important;

}*/


.spinner {
    text-align: center;
    height: 100%;
    position: Fixed;
    width: 100%;
    left: 50%;
    top: 0;
    transition:all 1s;
    pointer-events:none
}

.spinner-border {
    margin-top: auto;
    margin-bottom: auto;
}

.spinner {
    text-align: center;
    height: 100%;
    position: Fixed;
    width: 100%;
    left: 0 !important;
    top: 0;
    z-index: 999;
}

.blogCardListImage {
    width: 100%;
}

.blogListImage {
    height: 100%;
    object-fit: cover;
}

/* site sepecific */

.BGGray {
    background-color: #ededed
}

.colContent {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.dropdown-menu li label  {
    padding-left:10px
}
/* overrides */

.carousel-control-next-icon, .carousel-control-prev-icon {
    border-radius: 50%;
    padding: 5px;
    background-size: 40%;
    width: 50px;
    height: 50px;
}

.cardWrapper.row {
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden
}

.container .sitemap h1 {
    font-family: 'Nunito Sans', sans-serif !important;
}

.sitemap-subitems li {
    list-style-type: none;
}

.sitemap-subitems a {
    font-weight: lighter;
    color: #5a5d69
}

.card-description-container {
    background: #e7e7e7;
    border-radius: 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg) 0;
}

.accordion .container, .container:has(.nav-tabs) {
    padding-top: 30px;
    padding-bottom: 30px;
}

.carousel-caption-text h3 strong{
    color: white !important;
}


.accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    font-family: 'Nunito Sans', sans-serif !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.accordion .accordion-button {
    color: black;
}

.accordion .accordion-header:has(.collapsed) {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #121F3E21;
}

.accordion .accordion-body {
    color: var(--bs-body-color);
}

.nav-tabs .nav-link {
    font-weight: 700 !important;
}

.nav-tabs .nav-link.active {
    background: black;
}

.content-card img {
    object-fit: cover !important;
    overflow: hidden !important;
}

.contentCardContainer .card-description-container {
    max-height: 270px;
}

@media (max-width: 767px) {
    .card-description-container {
        border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg)
    }
}


h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "Nunito Sans", sans-serif !important;
}

.carousel-caption {
    left: 0 !important;
    right: 0 !important;
    padding-left:0 !important;
    padding-right: 0 !important;
    background-color: transparent !important;
}

.carousel-inner.rounded-3 {
    border-radius:0 !important;
}

/*.carousel-inner .carousel-item {
    height: 450px !important;
    max-height: auto !important;
}
*/
@media (max-width:767px) {
    .carousel .img-fluid {
        height: 100% !important;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}
.list-item-link .list-item-img {
    transition: all .2s ease-in-out;
    background: var(--bs-gray-100);
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 35px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
}
.list-item-link:hover .list-item-img {
    background: #e1c474;
}
.list-item-link .list-item-img img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    object-position: center;
    transition: all .2s ease-in-out;
}
.list-item-link:hover .list-item-img img {
    filter: invert(1);
}
.list-item-link .list-item-link-cta {
    opacity: 0;
    transform: translateX(-25px);
    transition: all .2s ease-in-out;
}
.list-item-link:hover .list-item-link-cta {
    opacity: 1;
    transform: translateX(0);
}

/*React Blog App */
#app .colContent {
    padding: 30px;
    font-family: 'Nunito Sans', sans-serif !important;
}

#app .colContent a {
    color: #191a1f;
    font-size: 22px;
}


.page-header {
    height: 300px;
    overflow: hidden;
}

.page-header .page-bg-img {
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center;
    padding: 1rem 1.8rem;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.page-header .page-bg-img:before {
    content:'';
    position: absolute;
    z-index: 1;
    top:0;
    bottom: 0;
    left:0;
    right: 0;
    background: linear-gradient(217.98deg, rgba(0, 0, 0, 0) 61.86%, rgba(0, 0, 0, 0.27) 98.25%);
}

.page-header .page-bg-img .container {
    display: flex;
    z-index: 5;
 }

.page-header .page-bg-img h1 {
    color: #fff;
    text-shadow: 0px 1px 20px #0000009e;
}
/*
html {
    --scrollbarBG: #CFD8DC;
    --thumbBG: #2d0abe52;
}

body::-webkit-scrollbar {
    width: 11px;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
     background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
     background-color: var(--thumbBG);
     border-radius: 6px;
     border: 3px solid var(--scrollbarBG);
}*/

.card.card-overlay-bottom.card-bg-scale .card-body {
    padding:0;
}

.fb-form .form-group .fb-control {
    box-shadow: none;
}

.object-fit-fill {
    object-fit: fill;
}

.object-fit-contain {
    object-fit: contain;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-none {
    object-fit: none;
}

.dropdown-checkbox .dropdown-item {
    padding-left: 20px;
}

.contentCardContainer.sideLayout .advantagePictureImage {
    border-radius: 10px 0px 0px 10px;
    height: 100%;
    display: flex;
    object-fit: cover;
}

@media (max-width: 767px) {

    .contentCardContainer.sideLayout .advantagePictureImage {
        border-radius: 10px 10px 0px 0px;
    }

    .contentCardContainer.sideLayout .card-description-container {
        margin-top: 0 !important
    }
    .festivals-events .cardImage {
        display: flex;
        justify-content: center;
        padding-bottom: 58px;
        padding-top: 29px;
    }

}

@media (max-width: 575px) {
    .services-container .contentCardContainer.sideLayout .advantagePictureImage {
        width: 100%;
    }
}

@media (min-width: 768px)  {
    .festivals-events .cardImage {
        transform: translate(200px,32px);
        display: block;
    }
}

@media (min-width: 1076px) {
    .festivals-events picture {
        transform: translate(330px,32px) !important;
        display: block;
    }
}
.searchFooter {
    text-align: center;
}

.searchFooter .pagination-adv li {
    list-style-type: none;
    display: inline-block;

}

.searchFooter .pagination-adv .search span, .searchFooter .pagination-adv .search a {
    color: black;
    font-size: 17px;
    padding: 7px;
}

.searchFooter .pagination-adv .search span {
    font-weight:bold;
}

.searchFooter .pagination-adv .hide a {
    color: black;
    font-size: 17px;
    padding: 12px;
}

.search .search-box input {
    vertical-align: middle;
    border: 1px solid #999999;
    border-radius: 3px;
    box-shadow: inset 0 0 5px #DDDDDD;
    color: #444444;
    line-height: 40px;
    padding: 0 6px;
    margin-top: 7px;
}

.searchResults:last-of-type .search-result-divider {
    color: red;
    font-size: 400px
}

.search-tabs li a {
    color: black;
}

.search-tabs li  {
    list-style-type: none;
}


.filterTitle {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    /*line-height: 0.1em;*/
    margin: 0 0 20px;
}

.filterTitle span {
    padding: 0 10px;
}

.aspNetDisabled *, input:disabled {
    opacity: 0.7;
    pointer-events: none;
}