/******************************************************************

     ██████╗ ███████╗███╗   ██╗███████╗██████╗  █████╗ ██╗
    ██╔════╝ ██╔════╝████╗  ██║██╔════╝██╔══██╗██╔══██╗██║
    ██║  ███╗█████╗  ██╔██╗ ██║█████╗  ██████╔╝███████║██║
    ██║   ██║██╔══╝  ██║╚██╗██║██╔══╝  ██╔══██╗██╔══██║██║
    ╚██████╔╝███████╗██║ ╚████║███████╗██║  ██║██║  ██║███████╗
     ╚═════╝ ╚══════╝╚═╝  ╚═══╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝

 ******************************************************************/



    /* Layout sections. */
    
    .vanilla-layout {
        clear: left;
        float: none;
    }

    .small .vanilla-layout {
        padding: calc(0.8*var(--vertical-rhythm));
    }

    .tablet .vanilla-layout {
        padding: calc(0.95*var(--vertical-rhythm));
    }

    .laptop .vanilla-layout {
        padding: calc(1.1*var(--vertical-rhythm)) 0;
    }

    .vanilla-layout + .vanilla-layout {
        border-top: none;
    }

    .laptop .vanilla-layout.vanilla-layout-header {
        margin-top: 0 !important;
    }

    .vanilla-layout-archive,
    .vanilla-layout-archive .panel {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }



    /* First and last layout. */

    .vanilla-layout-compact-first {
    }

    .vanilla-layout-compact-last {
    }



    /* Layouts combined with their next ones. */

            .vanilla-layout-combine-with-next,
    .small  .vanilla-layout-combine-with-next,
    .tablet .vanilla-layout-combine-with-next,
    .laptop .vanilla-layout-combine-with-next {
        padding-bottom: 0;
        border-bottom: none;
    }

    .vanilla-layout-combine-with-next + .vanilla-layout {
        padding-top: 0;
        margin-top: var(--text-rhythm);
    }



    /* Compact layouts. */

            .vanilla-layout-compact,
    .small  .vanilla-layout-compact,
    .tablet .vanilla-layout-compact,
    .laptop .vanilla-layout-compact {
        padding-top: 0;
        padding-bottom: 0;
    }

        .vanilla-layout-compact .panel > [class*="column"] {
            padding-left: 0;
            padding-right: 0;
        }

    .vanilla-layout-compact-follows {
    }



    /* Layout panels */

    .vanilla-layout-narrow .panel {
        max-width: 768px;
    }

    .vanilla-layout-normal .panel,
    .vanilla-layout-normal .panel {
        max-width: 1024px;
    }

    .vanilla-layout-wide .panel {
        max-width: 1280px;
    }

    .vanilla-layout-full .panel {
        max-width: none;
    }



    /* Header layout */

    .vanilla-layout.vanilla-layout-header {
        background: var(--color-yellow);
    }

    .single .vanilla-layout-header {
        background: rgba(255, 193, 7, 0.9);
    }

        .vanilla-layout-header h1 {
            color: var(--color-black);
        }

        .single .vanilla-layout-header h1 {
            color: var(--color-black);
        }



    /* Layout components */

    .vanilla-layout-title {
        max-width: 768px;
        margin: auto;
        margin-bottom: 0;
        text-align: center;
    }

        .vanilla-layout-title-title {
            margin-bottom: calc(0.333*var(--text-rhythm));
        }

        .vanilla-layout-title-subtitle {
            margin-bottom: var(--text-rhythm);
        }



/***************************************
 
 POSTS GRID

 ***************************************/

.big-grid-item  {
    overflow: hidden;
}

    .big-grid-item .grid-item-text {
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 90%;
        padding: 2rem;
    }

    .tablet .big-grid-item .grid-item-text {
        width: 70%;
        padding: 2.5rem;
    }

    .desktop .big-grid-item .grid-item-text {
        width: 40%;
        padding: 3rem;
    }

        .big-grid-item .grid-item-text h2 {
            color: var(--color-white);
            font-size: 4rem;
            position: relative;
            z-index: 1;
        }

        .big-grid-item .grid-item-text h2::after {
            content: '';
            position: absolute;
            bottom: 0.1rem;
            left: 0;
            height: 0.8rem;
            width: 80%;
            background: var(--color-yellow);
            z-index: -1;
        }

        .big-grid-item .grid-item-date {
            padding-top: 0.5rem;
            color: var(--color-gray-light);
        }

        .big-grid-item p {
            padding: 0.3rem 0;
            color: var(--color-white);
            font-size: 1.6rem;
        }

        .big-grid-item .grid-item-category {
            position: absolute;
            bottom: 0rem;
            right: -3rem;
            background: var(--color-black);
            padding: 0.1rem;
            width: 3rem;
            height: 10rem;
            text-align: center;
        }

           .big-grid-item .grid-item-category span {
                position: absolute;
                bottom: 25%;
                left: 25%;
                transform: translate(-50%, -50%);
                display: block;
            }

           .big-grid-item .grid-item-category p {
                font-size: 1.3rem;
                color: var(--color-yellow);
                white-space: nowrap;
                text-transform: uppercase;
                transform: rotate(90deg);
                font-weight: bold;
            }


.small-grid-item {
    overflow: hidden;
}

    .small-grid-item .grid-item-text {
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 90%;
        padding: 2rem;
    }

    .tablet .small-grid-item .grid-item-text {
        width: 70%;
        padding: 2.5rem;
    }

    .desktop .small-grid-item .grid-item-text {
        width: 50%;
        padding: 3rem;
    }

        .small-grid-item .grid-item-text h2 {
            color: var(--color-white);
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .small-grid-item .grid-item-text h2::after {
            content: '';
            position: absolute;
            bottom: 0.1rem;
            left: 0;
            height: 0.5rem;
            width: 80%;
            background: var(--color-yellow);
            z-index: -1;
        }

        .small-grid-item .grid-item-date {
            padding-top: 0.5rem;
            color: var(--color-gray-light);
        }

        .small-grid-item p {
            padding: 0.3rem 0;
            color: var(--color-white);
            font-size: 1.5rem;
        }


        .small-grid-item .grid-item-category {
            position: absolute;
            bottom: 0rem;
            right: -3rem;
            background: var(--color-black);
            padding: 0.1rem;
            width: 3rem;
            height: 10rem;
            text-align: center;
        }

           .small-grid-item .grid-item-category span {
                position: absolute;
                bottom: 25%;
                left: 25%;
                transform: translate(-50%, -50%);
                display: block;
            }

           .small-grid-item .grid-item-category p {
                font-size: 1.3rem;
                color: var(--color-yellow);
                white-space: nowrap;
                text-transform: uppercase;
                transform: rotate(90deg);
                font-weight: bold;
            }

        .grid-item.small-grid-item {
            height: 28rem;
            min-height: 28vh;
            background-size: cover !important;
            background-position: 50% 50% !important;
            position: relative;
            opacity: 1;
            margin-top: var(--grid-gutter);
        }

        .tablet .grid-item.small-grid-item {
            margin-top: 0;
        }

        .laptop .grid-item.small-grid-item {
            height: 45rem;
        }

        .grid-item.big-grid-item {
            height: 56rem;
            min-height: 56vh;
            background-size: cover !important;
            background-position: 50% 50% !important;
            position: relative;
            opacity: 1;
        }

        .laptop .grid-item.big-grid-item {
            height: 90rem;
        }

    /* Hover effects */

    /* Style the image */
    .small-grid-item img,
    .big-grid-item img {
        transition: transform 0.3s ease;
    }

    /* Overlay styles */
    .small-grid-item .overlay,
    .big-grid-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .small-grid-item:hover .overlay,
    .big-grid-item:hover .overlay {
        opacity: 0; /* Fade in overlay */
    }


/***************************************

    ███╗   ███╗ █████╗ ██╗███╗   ██╗
    ████╗ ████║██╔══██╗██║████╗  ██║
    ██╔████╔██║███████║██║██╔██╗ ██║
    ██║╚██╔╝██║██╔══██║██║██║╚██╗██║
    ██║ ╚═╝ ██║██║  ██║██║██║ ╚████║
    ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝╚═╝  ╚═══╝

 ***************************************/

.login-form {
    text-align: center;
    padding: 6rem 0;
}

.login-form input{
    margin: 1rem 0;
}


/***************************************************

     ██████╗ ██╗   ██╗ ██████╗ ████████╗███████╗
    ██╔═══██╗██║   ██║██╔═══██╗╚══██╔══╝██╔════╝
    ██║   ██║██║   ██║██║   ██║   ██║   █████╗
    ██║▄▄ ██║██║   ██║██║   ██║   ██║   ██╔══╝
    ╚██████╔╝╚██████╔╝╚██████╔╝   ██║   ███████╗
     ╚══▀▀═╝  ╚═════╝  ╚═════╝    ╚═╝   ╚══════╝

 ***************************************************/



    .vanilla-layout-quote blockquote {
        text-align: center;
        margin: 0;
    }

        .vanilla-layout-quote blockquote::before {
            display: block;
            position: relative;
            transform: none;
            top: 0.15em !important;
            font-size: 5em !important;
            line-height: 0.5;
            text-align: center;
            width: 100%;
        }



/**********************************************************************************************

     ██████╗ ██╗   ██╗ ██████╗ ████████╗███████╗    ██╗███╗   ███╗ █████╗  ██████╗ ███████╗
    ██╔═══██╗██║   ██║██╔═══██╗╚══██╔══╝██╔════╝    ██║████╗ ████║██╔══██╗██╔════╝ ██╔════╝
    ██║   ██║██║   ██║██║   ██║   ██║   █████╗      ██║██╔████╔██║███████║██║  ███╗█████╗
    ██║▄▄ ██║██║   ██║██║   ██║   ██║   ██╔══╝      ██║██║╚██╔╝██║██╔══██║██║   ██║██╔══╝
    ╚██████╔╝╚██████╔╝╚██████╔╝   ██║   ███████╗    ██║██║ ╚═╝ ██║██║  ██║╚██████╔╝███████╗
     ╚══▀▀═╝  ╚═════╝  ╚═════╝    ╚═╝   ╚══════╝    ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝

 **********************************************************************************************/



    .small .vanilla-layout-quote-with-image .panel {
        position: relative;
        z-index: 1;
    }

    .vanilla-layout-quote-with-image-inner {
        padding: calc(4*var(--vertical-rhythm)) 0;
    }

        .vanilla-layout-quote-with-image-text {
            position: relative;
            margin: auto;
            background: rgba(var(--white), 0.8);
            padding: calc(2*var(--text-rhythm));
        }
        
        .small .vanilla-layout-quote-with-image-text {
            max-width: 80%;
        }

        .laptop .vanilla-layout-quote-with-image-text {
            max-width: 768px;
        }



/**********************************************

    ██╗███╗   ███╗ █████╗  ██████╗ ███████╗
    ██║████╗ ████║██╔══██╗██╔════╝ ██╔════╝
    ██║██╔████╔██║███████║██║  ███╗█████╗
    ██║██║╚██╔╝██║██╔══██║██║   ██║██╔══╝
    ██║██║ ╚═╝ ██║██║  ██║╚██████╔╝███████╗
    ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝

 **********************************************/

.vanilla-layout-image .small-column-100 img {
    width: 100%;
}

/****************************************************************************************************************

    ███████╗██╗███╗   ██╗ ██████╗ ██╗     ███████╗     ██████╗ ██████╗ ██╗     ██╗   ██╗███╗   ███╗███╗   ██╗
    ██╔════╝██║████╗  ██║██╔════╝ ██║     ██╔════╝    ██╔════╝██╔═══██╗██║     ██║   ██║████╗ ████║████╗  ██║
    ███████╗██║██╔██╗ ██║██║  ███╗██║     █████╗      ██║     ██║   ██║██║     ██║   ██║██╔████╔██║██╔██╗ ██║
    ╚════██║██║██║╚██╗██║██║   ██║██║     ██╔══╝      ██║     ██║   ██║██║     ██║   ██║██║╚██╔╝██║██║╚██╗██║
    ███████║██║██║ ╚████║╚██████╔╝███████╗███████╗    ╚██████╗╚██████╔╝███████╗╚██████╔╝██║ ╚═╝ ██║██║ ╚████║
    ╚══════╝╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚══════╝╚══════╝     ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝     ╚═╝╚═╝  ╚═══╝

 ****************************************************************************************************************/



/******************************************************************************************************

    ████████╗██╗    ██╗ ██████╗      ██████╗ ██████╗ ██╗     ██╗   ██╗███╗   ███╗███╗   ██╗███████╗
    ╚══██╔══╝██║    ██║██╔═══██╗    ██╔════╝██╔═══██╗██║     ██║   ██║████╗ ████║████╗  ██║██╔════╝
       ██║   ██║ █╗ ██║██║   ██║    ██║     ██║   ██║██║     ██║   ██║██╔████╔██║██╔██╗ ██║███████╗
       ██║   ██║███╗██║██║   ██║    ██║     ██║   ██║██║     ██║   ██║██║╚██╔╝██║██║╚██╗██║╚════██║
       ██║   ╚███╔███╔╝╚██████╔╝    ╚██████╗╚██████╔╝███████╗╚██████╔╝██║ ╚═╝ ██║██║ ╚████║███████║
       ╚═╝    ╚══╝╚══╝  ╚═════╝      ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝     ╚═╝╚═╝  ╚═══╝╚══════╝

 ******************************************************************************************************/



/*******************************************************************************************************************

    ████████╗██╗  ██╗██████╗ ███████╗███████╗     ██████╗ ██████╗ ██╗     ██╗   ██╗███╗   ███╗███╗   ██╗███████╗
    ╚══██╔══╝██║  ██║██╔══██╗██╔════╝██╔════╝    ██╔════╝██╔═══██╗██║     ██║   ██║████╗ ████║████╗  ██║██╔════╝
       ██║   ███████║██████╔╝█████╗  █████╗      ██║     ██║   ██║██║     ██║   ██║██╔████╔██║██╔██╗ ██║███████╗
       ██║   ██╔══██║██╔══██╗██╔══╝  ██╔══╝      ██║     ██║   ██║██║     ██║   ██║██║╚██╔╝██║██║╚██╗██║╚════██║
       ██║   ██║  ██║██║  ██║███████╗███████╗    ╚██████╗╚██████╔╝███████╗╚██████╔╝██║ ╚═╝ ██║██║ ╚████║███████║
       ╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚══════╝     ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝     ╚═╝╚═╝  ╚═══╝╚══════╝

 ********************************************************************************************************************/



/************************************************************************************************************

    ███████╗ ██████╗ ██╗   ██╗██████╗      ██████╗ ██████╗ ██╗     ██╗   ██╗███╗   ███╗███╗   ██╗███████╗
    ██╔════╝██╔═══██╗██║   ██║██╔══██╗    ██╔════╝██╔═══██╗██║     ██║   ██║████╗ ████║████╗  ██║██╔════╝
    █████╗  ██║   ██║██║   ██║██████╔╝    ██║     ██║   ██║██║     ██║   ██║██╔████╔██║██╔██╗ ██║███████╗
    ██╔══╝  ██║   ██║██║   ██║██╔══██╗    ██║     ██║   ██║██║     ██║   ██║██║╚██╔╝██║██║╚██╗██║╚════██║
    ██║     ╚██████╔╝╚██████╔╝██║  ██║    ╚██████╗╚██████╔╝███████╗╚██████╔╝██║ ╚═╝ ██║██║ ╚████║███████║
    ╚═╝      ╚═════╝  ╚═════╝ ╚═╝  ╚═╝     ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝     ╚═╝╚═╝  ╚═══╝╚══════╝

 ************************************************************************************************************/



/*************************************************
 
     ████████╗ █████╗ ██████╗ ██╗     ███████╗
     ╚══██╔══╝██╔══██╗██╔══██╗██║     ██╔════╝
        ██║   ███████║██████╔╝██║     █████╗
        ██║   ██╔══██║██╔══██╗██║     ██╔══╝
        ██║   ██║  ██║██████╔╝███████╗███████╗
        ╚═╝   ╚═╝  ╚═╝╚═════╝ ╚══════╝╚══════╝

 *************************************************/



/*************************************************************************************************************************

    ████████╗███████╗██╗  ██╗████████╗    ██╗███╗   ███╗ █████╗  ██████╗ ███████╗    ██╗     ███████╗███████╗████████╗
    ╚══██╔══╝██╔════╝╚██╗██╔╝╚══██╔══╝    ██║████╗ ████║██╔══██╗██╔════╝ ██╔════╝    ██║     ██╔════╝██╔════╝╚══██╔══╝
       ██║   █████╗   ╚███╔╝    ██║       ██║██╔████╔██║███████║██║  ███╗█████╗      ██║     █████╗  █████╗     ██║
       ██║   ██╔══╝   ██╔██╗    ██║       ██║██║╚██╔╝██║██╔══██║██║   ██║██╔══╝      ██║     ██╔══╝  ██╔══╝     ██║
       ██║   ███████╗██╔╝ ██╗   ██║       ██║██║ ╚═╝ ██║██║  ██║╚██████╔╝███████╗    ███████╗███████╗██║        ██║
       ╚═╝   ╚══════╝╚═╝  ╚═╝   ╚═╝       ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝    ╚══════╝╚══════╝╚═╝        ╚═╝

 *************************************************************************************************************************/

.hidden-image .vanilla-layout-text-image-right-image {
	display: none;
}

.tablet .hidden-image .vanilla-layout-text-image-right-image {
	display: inline-block;
}

.vanilla-layout-text-image-right img {
    margin-top: 2rem;
}

.laptop .vanilla-layout-text-image-right img {
    margin-top: 0;
}

/*****************************************************************************************************************************

    ████████╗███████╗██╗  ██╗████████╗    ██╗███╗   ███╗ █████╗  ██████╗ ███████╗    ██████╗ ██╗ ██████╗ ██╗  ██╗████████╗
    ╚══██╔══╝██╔════╝╚██╗██╔╝╚══██╔══╝    ██║████╗ ████║██╔══██╗██╔════╝ ██╔════╝    ██╔══██╗██║██╔════╝ ██║  ██║╚══██╔══╝
       ██║   █████╗   ╚███╔╝    ██║       ██║██╔████╔██║███████║██║  ███╗█████╗      ██████╔╝██║██║  ███╗███████║   ██║
       ██║   ██╔══╝   ██╔██╗    ██║       ██║██║╚██╔╝██║██╔══██║██║   ██║██╔══╝      ██╔══██╗██║██║   ██║██╔══██║   ██║
       ██║   ███████╗██╔╝ ██╗   ██║       ██║██║ ╚═╝ ██║██║  ██║╚██████╔╝███████╗    ██║  ██║██║╚██████╔╝██║  ██║   ██║
       ╚═╝   ╚══════╝╚═╝  ╚═╝   ╚═╝       ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝    ╚═╝  ╚═╝╚═╝ ╚═════╝ ╚═╝  ╚═╝   ╚═╝

 *****************************************************************************************************************************/

.hidden-image .vanilla-layout-text-image-left-image {
	display: none;
}

.tablet .hidden-image .vanilla-layout-text-image-left-image {
	display: inline-block;
}

.vanilla-layout-text-image-left img {
    margin-top: 2rem;
}

.laptop .vanilla-layout-text-image-left img {
    margin-top: 0;
}

/*****************************************************************

     ██████╗  █████╗ ██╗     ██╗     ███████╗██████╗ ██╗   ██╗
    ██╔════╝ ██╔══██╗██║     ██║     ██╔════╝██╔══██╗╚██╗ ██╔╝
    ██║  ███╗███████║██║     ██║     █████╗  ██████╔╝ ╚████╔╝
    ██║   ██║██╔══██║██║     ██║     ██╔══╝  ██╔══██╗  ╚██╔╝
    ╚██████╔╝██║  ██║███████╗███████╗███████╗██║  ██║   ██║
     ╚═════╝ ╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝╚═╝  ╚═╝   ╚═╝

 *****************************************************************/

	 .vanilla-layout-gallery .panel {
	 	padding: 0 !important;
	 }

	    .vanilla-layout-gallery a {
	        display: block;
	    }

	    .vanilla-layout-gallery img {
	        width: 100%;
	    }

        .single-stories .vanilla-layout-gallery {
            padding: 5rem 0 !important;
            position: relative;
        }

        .single-stories .vanilla-layout-gallery:after {
            background: -webkit-linear-gradient(-45deg, transparent, transparent 49%, var(--color-orange) 49%, transparent 51%);
            background: -o-linear-gradient(-45deg, transparent, transparent 49%, var(--color-orange) 49%, transparent 51%);
            background: linear-gradient(-45deg, transparent, transparent 49%, var(--color-orange) 49%, transparent 51%);
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: -0.5rem;
            width: 100%;
            height: 1rem;
            background-size: 3rem 1rem !important;
        }

     .single-stories .vanilla-layout-gallery:last-child:after {
            display: none;
        }

        .single-stories .vanilla-layout-gallery:before {
            content: "";
            background: linear-gradient(0deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 20rem);
            width: 100%;
            height: 20rem;
            position: absolute;
            top: 5rem;
            left: 0;
            z-index: 1;
        }

       .single-stories .vanilla-layout-title-title h2 {
            font-size: 2.3rem;
            z-index: 2;
            position: relative;
            margin-bottom: 3rem;
        }



/*******************************************************************************************************************

    ████████╗███████╗██╗  ██╗████████╗    ███████╗██╗     ██╗██████╗ ███████╗███████╗██╗  ██╗ ██████╗ ██╗    ██╗
    ╚══██╔══╝██╔════╝╚██╗██╔╝╚══██╔══╝    ██╔════╝██║     ██║██╔══██╗██╔════╝██╔════╝██║  ██║██╔═══██╗██║    ██║
       ██║   █████╗   ╚███╔╝    ██║       ███████╗██║     ██║██║  ██║█████╗  ███████╗███████║██║   ██║██║ █╗ ██║
       ██║   ██╔══╝   ██╔██╗    ██║       ╚════██║██║     ██║██║  ██║██╔══╝  ╚════██║██╔══██║██║   ██║██║███╗██║
       ██║   ███████╗██╔╝ ██╗   ██║       ███████║███████╗██║██████╔╝███████╗███████║██║  ██║╚██████╔╝╚███╔███╔╝
       ╚═╝   ╚══════╝╚═╝  ╚═╝   ╚═╝       ╚══════╝╚══════╝╚═╝╚═════╝ ╚══════╝╚══════╝╚═╝  ╚═╝ ╚═════╝  ╚══╝╚══╝

 *******************************************************************************************************************/



    .small .vanilla-layout-text-slideshow {
        padding-bottom: calc(2*var(--vertical-rhythm));
    }

    .responsiville-slideshow-enabled .responsiville-slideshow-slides-container:after {
        content: "";
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 35%);        
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

        .small .vanilla-layout-text-slideshow .responsiville-slideshow  {
            margin-bottom: 2em;
        }

        .small .vanilla-layout-text-slideshow .responsiville-slideshow-slide {
            padding: 0 3em;
        }

        .tablet .vanilla-layout-text-slideshow .responsiville-slideshow-slide {
            padding: 0 5em;
        }

        .laptop .vanilla-layout-text-slideshow .responsiville-slideshow-slide {
            padding: 0 8em;
            --text-rhythm: 1em;
        }

            .small .vanilla-layout-text-slideshow .responsiville-slideshow-next {
                right: calc(0.5*var(--grid-gutter));
            }

            .laptop .vanilla-layout-text-slideshow .responsiville-slideshow-next {
                right: calc(2*var(--grid-gutter));
            }

            .small .vanilla-layout-text-slideshow .responsiville-slideshow-previous {
                left: calc(0.5*var(--grid-gutter));
            }

            .laptop .vanilla-layout-text-slideshow .responsiville-slideshow-previous {
                left: calc(2*var(--grid-gutter));
            }

        .vanilla-layout-text-slideshow .responsiville-slideshow-bullets.bc {
            top: calc(100% + 1em);
        }



/************************************************************************************************************************

    ██╗███╗   ███╗ █████╗  ██████╗ ███████╗    ███████╗██╗     ██╗██████╗ ███████╗███████╗██╗  ██╗ ██████╗ ██╗    ██╗
    ██║████╗ ████║██╔══██╗██╔════╝ ██╔════╝    ██╔════╝██║     ██║██╔══██╗██╔════╝██╔════╝██║  ██║██╔═══██╗██║    ██║
    ██║██╔████╔██║███████║██║  ███╗█████╗      ███████╗██║     ██║██║  ██║█████╗  ███████╗███████║██║   ██║██║ █╗ ██║
    ██║██║╚██╔╝██║██╔══██║██║   ██║██╔══╝      ╚════██║██║     ██║██║  ██║██╔══╝  ╚════██║██╔══██║██║   ██║██║███╗██║
    ██║██║ ╚═╝ ██║██║  ██║╚██████╔╝███████╗    ███████║███████╗██║██████╔╝███████╗███████║██║  ██║╚██████╔╝╚███╔███╔╝
    ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝    ╚══════╝╚══════╝╚═╝╚═════╝ ╚══════╝╚══════╝╚═╝  ╚═╝ ╚═════╝  ╚══╝╚══╝

 ************************************************************************************************************************/



/*****************************************************************************

    ███████╗██╗     ██╗██████╗ ███████╗███████╗██╗  ██╗ ██████╗ ██╗    ██╗
    ██╔════╝██║     ██║██╔══██╗██╔════╝██╔════╝██║  ██║██╔═══██╗██║    ██║
    ███████╗██║     ██║██║  ██║█████╗  ███████╗███████║██║   ██║██║ █╗ ██║
    ╚════██║██║     ██║██║  ██║██╔══╝  ╚════██║██╔══██║██║   ██║██║███╗██║
    ███████║███████╗██║██████╔╝███████╗███████║██║  ██║╚██████╔╝╚███╔███╔╝
    ╚══════╝╚══════╝╚═╝╚═════╝ ╚══════╝╚══════╝╚═╝  ╚═╝ ╚═════╝  ╚══╝╚══╝

 *****************************************************************************/

    .vanilla-layout-slideshow .panel {
        padding: 2rem 0 !important;
    }

    .large .vanilla-layout-slideshow .panel {
        padding: 0 !important;
    }

    .responsiville-slideshow {
        overflow: hidden;
        margin-bottom: 3rem;
        height: 60vh;
    }

    .large .responsiville-slideshow {
        height: 100vh !important;
    }

    .responsiville-slideshow .responsiville-slideshow-slide {
        width: 100% !important;
        height: 60vh !important;
    }

    .large .responsiville-slideshow .responsiville-slideshow-slide {
        height: 100vh !important;
    }

    .small .vanilla-layout-slideshow .responsiville-slideshow-slide-text {
        padding: 1.2rem;
        text-align: center;
        font-family: var(--font-sans-serif);
        z-index: 2;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        background: rgba(255, 255, 255, 0.5);
    }

	    .small a.button.inline {
	        line-height: 125%;
	        padding: 0.5rem;
	    }

	    .tablet a.button.inline {
	        padding: 1.5rem;
	    }

    .desktop .vanilla-layout-slideshow .responsiville-slideshow-slide-text {
        padding: 0.2rem;
        width: auto;
        background: none;
    }

    .large .vanilla-layout-slideshow .responsiville-slideshow-slide-text {
        padding: 1.5rem;
        top: auto;
        bottom: 0;
        left: 2%;
        text-align: left;
        transform: none;
    }

    .large .responsiville-slideshow-slide-text .button {
        white-space: nowrap;
    }

    .large .responsiville-slideshow-slide-text .button {
        float: left;
    }

    .tablet .vanilla-layout-slideshow .responsiville-slideshow-slide-text {
        padding: 5em 3em;
    }

    .laptop .vanilla-layout-slideshow .responsiville-slideshow-slide-text {
        max-width: 50%;
    }

        .small .vanilla-layout-slideshow .responsiville-slideshow-slide-text h2,
        .small .vanilla-layout-slideshow .responsiville-slideshow-slide-text h3 {
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: calc(0.333*var(--text-rhythm));
        }

        .small .vanilla-layout-slideshow .responsiville-slideshow-slide-text p {
            font-size: calc(0.8*var(--base-font-size));
            margin-bottom: 2rem;
        }

        .tablet .vanilla-layout-slideshow .responsiville-slideshow-slide-text h2,
        .tablet .vanilla-layout-slideshow .responsiville-slideshow-slide-text h3 {
            font-size: 3rem;
        }

        .tablet .vanilla-layout-slideshow .responsiville-slideshow-slide-text p {
            font-size: calc(0.9*var(--base-font-size));
        }

        .laptop .vanilla-layout-slideshow .responsiville-slideshow-slide-text h2,
        .laptop .vanilla-layout-slideshow .responsiville-slideshow-slide-text h3 {
            font-size: 4rem;
            font-weight: 100;
            margin-bottom: 3rem;
        }

        .laptop .vanilla-layout-slideshow .responsiville-slideshow-slide-text p {
            font-size: calc(1*var(--base-font-size));
        }

        .responsiville-slideshow-enabled .responsiville-slideshow-slide img {
            width: 100%;
        }

        .responsiville-slideshow-bullets {
            display: none !important;
        }

        .vanilla-layout-slideshow .responsiville-slideshow-navigation button {
            background: none !important;
        }

        .laptop .responsiville-slideshow-next, .laptop .responsiville-slideshow-previous {
            font-size: 7rem !important;
            color: var(--color-cream) !important;
        }

        .responsiville-slideshow-previous-icon:before {
            background-image: url('../img/previous.png');
        }

        .responsiville-slideshow-next-icon:before {
            background-image: url('../img/next.png');
        }

        .responsiville-slideshow-previous-icon:before,
        .responsiville-slideshow-next-icon:before {
            display: none;
        }

        .tablet .responsiville-slideshow-previous-icon:before,
        .tablet .responsiville-slideshow-next-icon:before {
            content: "" !important;
            width: 3.4rem !important;
            height: 6rem !important;
            opacity: 0.3 !important;
            filter: invert(100) !important;
            display: block;
        }

        .responsiville-slideshow-previous-icon:hover:before,
        .responsiville-slideshow-next-icon:hover:before {
            opacity: 0.6 !important;
        }

    /* Animations */

    .vanilla-layout-slideshow .responsiville-slideshow-slide-text {
        opacity: 0;
        transition: opacity 0.3s ease-in-out 0.2s;

    }
    
    .vanilla-layout-slideshow .responsiville-slideshow-slide-selected .responsiville-slideshow-slide-text {
        opacity: 1;
    }


/******************************************************************************

     █████╗  ██████╗ ██████╗ ██████╗ ██████╗ ██████╗ ██╗ ██████╗ ███╗   ██╗
    ██╔══██╗██╔════╝██╔════╝██╔═══██╗██╔══██╗██╔══██╗██║██╔═══██╗████╗  ██║
    ███████║██║     ██║     ██║   ██║██████╔╝██║  ██║██║██║   ██║██╔██╗ ██║
    ██╔══██║██║     ██║     ██║   ██║██╔══██╗██║  ██║██║██║   ██║██║╚██╗██║
    ██║  ██║╚██████╗╚██████╗╚██████╔╝██║  ██║██████╔╝██║╚██████╔╝██║ ╚████║
    ╚═╝  ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝  ╚═╝╚═════╝ ╚═╝ ╚═════╝ ╚═╝  ╚═══╝

 ******************************************************************************/

        .vanilla-layout-accordion {
            padding-top: 0 !important;
        }
    
        .vanilla-layout-accordion .responsiville-accordion {
            padding: 0;
        }

            .vanilla-layout-accordion .responsiville-accordion-panel {
                padding: 0;
                --text-rhythm: 1em;
            }

            .vanilla-layout-accordion .responsiville-accordion-panel + .responsiville-accordion-panel {
                margin-top: 1em;
            }

                .vanilla-layout-accordion .responsiville-accordion-header {
                    width: 100%;
                    display: inline-block;
                    padding-right: 3rem;
                    text-align: center; 
                }

                .responsiville-accordion-header::after {
                    display: none;
                }

                    .vanilla-layout-accordion .responsiville-accordion-header h3 {
                        color: var(--color-orange);
                        font-size: 2rem;
                        display: inline-block;
                        padding: 1.5rem;
                        text-align: center; 
                        background: var(--color-black);
                        transition: 0.7s;
                    }

                    .vanilla-layout-accordion .responsiville-accordion-header h3:after {
                        content: "";
                        width: 0; 
                        height: 0; 
                        border-left: 1rem solid transparent;
                        border-right: 1rem solid transparent;
                        border-top: 0.8rem solid var(--color-black);
                        position: absolute;
                        left: 50%;
                        bottom: -0.8rem;
                        transform: translateX(-50%);
                        transition: 0.7s;
                    }

                    .vanilla-layout-accordion .responsiville-accordion-header h3:hover {
                        background: var(--color-orange);
                        color: var(--color-black); 
                        transition: 0.2s;
                        padding: 2rem;
                    }

                    .vanilla-layout-accordion .responsiville-accordion-header h3:hover:after {
                        border-top: 0.8rem solid var(--color-orange);
                        transition: 0.2s;
                    }


                .vanilla-layout-accordion .responsiville-accordion-content {
                    margin-top: var(--text-rhythm);
                }



/******************************************************

    ██████╗  ██████╗ ██╗███╗   ██╗████████╗███████╗
    ██╔══██╗██╔═══██╗██║████╗  ██║╚══██╔══╝██╔════╝
    ██████╔╝██║   ██║██║██╔██╗ ██║   ██║   ███████╗
    ██╔═══╝ ██║   ██║██║██║╚██╗██║   ██║   ╚════██║
    ██║     ╚██████╔╝██║██║ ╚████║   ██║   ███████║
    ╚═╝      ╚═════╝ ╚═╝╚═╝  ╚═══╝   ╚═╝   ╚══════╝

 ******************************************************/



    .vanilla-layout-points.vanilla-layout-combine-with-next + .vanilla-layout {
        margin-top: 0;
    }

    .small .vanilla-layout-points:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(1.5*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

    .tablet .vanilla-layout-points:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(1.75*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

    .laptop .vanilla-layout-points:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(2*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

        .vanilla-layout-points-item {
            margin-bottom: var(--text-rhythm);
        }

            .small .vanilla-layout-points-image {
                padding: 0 5em !important;
            }

            .tablet .vanilla-layout-points-1 .vanilla-layout-points-image {
                padding: 0 0.5em !important;
            }

            .tablet .vanilla-layout-points-2 .vanilla-layout-points-image {
                padding: 0 0.5em !important;
            }

            .tablet .vanilla-layout-points-3 .vanilla-layout-points-image {
                padding: 0 2.5em !important;
            }

            .laptop .vanilla-layout-points-3 .vanilla-layout-points-image {
                padding: 0 0.5em !important;
            }

            .tablet .vanilla-layout-points-4 .vanilla-layout-points-image {
                padding: 0 0.5em !important;
            }

            .laptop .vanilla-layout-points-4 .vanilla-layout-points-image {
                padding: 0 3em !important;
            }

                .vanilla-layout-points-image-wrapper {
                    width: 100%;
                    height: 0;
                    padding-top: 100%;
                    display: block;
                    margin: auto;
                    margin-bottom: calc(0.333*var(--text-rhythm));
                    position: relative;
                    overflow: hidden;
                }
                
                    .vanilla-layout-points-image-wrapper img {
                        height: 100% !important;
                        width: auto;
                        max-width: none;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translateX(-50%) translateY(-50%);
                    }

                .tablet .vanilla-layout-points-text-wrapper {
                    padding: 0 1em;
                }



/****************************************

    ████████╗ █████╗ ██████╗ ███████╗
    ╚══██╔══╝██╔══██╗██╔══██╗██╔════╝
       ██║   ███████║██████╔╝███████╗
       ██║   ██╔══██║██╔══██╗╚════██║
       ██║   ██║  ██║██████╔╝███████║
       ╚═╝   ╚═╝  ╚═╝╚═════╝ ╚══════╝

 ****************************************/



    .vanilla-layout-tabs .responsiville-slideshow {
        height: auto;
    }

    .vanilla-layout-tabs .responsiville-slideshow-navigation,
    .vanilla-layout-tabs .responsiville-slideshow-bullets {
        display: none;
    }

    .vanilla-layout-tabs-navigation {
        display: block !important;
        position: static !important;
        text-align: left;
        padding-left: 1em !important;
    }

        .vanilla-layout-tabs-navigation button,
        .vanilla-layout-tabs-navigation button:hover {
            width: auto !important;
            height: auto !important;
            border: none !important;
            background: none !important;
            box-shadow: none !important;
            color: unset !important;
            line-height: unset !important;
            padding: 0.75em  1em !important;
            margin: 0 !important;
            margin-right: 0.5em !important;
            transform: none !important;
        }

        .vanilla-layout-tabs-navigation button:hover,
        .vanilla-layout-tabs-navigation button.responsiville-slideshow-bullet-selected {
            background: var(--color-gray-light) !important;
        }

        .vanilla-layout-tabs .responsiville-slideshow-slides-container {
            position: static !important;
            padding: 2em;
            --text-rhythm: 1em;
        }

            .vanilla-layout-tabs .responsiville-slideshow-slide {
                position: static !important;
            }



/**********************************************************************************

     ██████╗  ██████╗ ███████╗████████╗███████╗    ██╗     ██╗███████╗████████╗
     ██╔══██╗██╔═══██╗██╔════╝╚══██╔══╝██╔════╝    ██║     ██║██╔════╝╚══██╔══╝
     ██████╔╝██║   ██║███████╗   ██║   ███████╗    ██║     ██║███████╗   ██║
     ██╔═══╝ ██║   ██║╚════██║   ██║   ╚════██║    ██║     ██║╚════██║   ██║
     ██║     ╚██████╔╝███████║   ██║   ███████║    ███████╗██║███████║   ██║
     ╚═╝      ╚═════╝ ╚══════╝   ╚═╝   ╚══════╝    ╚══════╝╚═╝╚══════╝   ╚═╝

 **********************************************************************************/



    .vanilla-layout-posts-list.vanilla-layout-combine-with-next + .vanilla-layout {
        margin-top: 0;
    }

    .small .vanilla-layout-posts-list:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(1.5*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

    .tablet .vanilla-layout-posts-list:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(1.75*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

    .laptop .vanilla-layout-posts-list:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(2*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

        .vanilla-layout-posts-list-item {
            margin-bottom: var(--text-rhythm);
        }

            .vanilla-layout-posts-list .post-box-title {
                font-size: 2em;
            }

            .vanilla-layout-posts-list .tablet-group-2 .post-box-title {
                font-size: 1.8em;
            }

            .vanilla-layout-posts-list .tablet-group-3 .post-box-title {
                font-size: 1.6em;
            }

            .vanilla-layout-posts-list .laptop-group-4 .post-box-title {
                font-size: 1.4em;
            }



/***********************************************

     ██████╗ █████╗ ██████╗ ██████╗ ███████╗
    ██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔════╝
    ██║     ███████║██████╔╝██║  ██║███████╗
    ██║     ██╔══██║██╔══██╗██║  ██║╚════██║
    ╚██████╗██║  ██║██║  ██║██████╔╝███████║
     ╚═════╝╚═╝  ╚═╝╚═╝  ╚═╝╚═════╝ ╚══════╝

 ***********************************************/



    .vanilla-layout-cards.vanilla-layout-combine-with-next + .vanilla-layout {
        margin-top: 0;
    }

    .small .vanilla-layout-cards:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(1.5*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

    .tablet .vanilla-layout-cards:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(1.75*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

    .laptop .vanilla-layout-cards:not(.vanilla-layout-combine-with-next) {
        padding-bottom: calc(2*var(--vertical-rhythm) - 1*var(--text-rhythm));
    }

        .vanilla-layout-card-item {
            border: 1px solid var(--color-gray-light);
            margin-bottom: calc(1*var(--text-rhythm));
        }

            .vanilla-layout-card-item a {
                border-bottom: none !important;
            }

                .vanilla-layout-card-image {
                }

                    .vanilla-layout-card-image img {
                        width: 100%;
                    }

                .vanilla-layout-card-text {
                    --text-rhythm: 1.5em;
                    line-height: 1.5;
                    font-size: 0.9em;
                    padding: 1em 1.25em;
                }

                    .vanilla-layout-card-text h2 {
                        font-size: 1.4em;
                    }

                    .vanilla-layout-card-text h3 {
                        font-size: 1.3em;
                    }

                    .vanilla-layout-card-text p:last-of-type {
                        margin-bottom: 0;
                    }



/**************************************************

    ███████╗███╗   ███╗██████╗ ███████╗██████╗
    ██╔════╝████╗ ████║██╔══██╗██╔════╝██╔══██╗
    █████╗  ██╔████╔██║██████╔╝█████╗  ██║  ██║
    ██╔══╝  ██║╚██╔╝██║██╔══██╗██╔══╝  ██║  ██║
    ███████╗██║ ╚═╝ ██║██████╔╝███████╗██████╔╝
    ╚══════╝╚═╝     ╚═╝╚═════╝ ╚══════╝╚═════╝

 **************************************************/



/******************************************************

    ██████╗ ██╗██╗   ██╗██╗██████╗ ███████╗██████╗
    ██╔══██╗██║██║   ██║██║██╔══██╗██╔════╝██╔══██╗
    ██║  ██║██║██║   ██║██║██║  ██║█████╗  ██████╔╝
    ██║  ██║██║╚██╗ ██╔╝██║██║  ██║██╔══╝  ██╔══██╗
    ██████╔╝██║ ╚████╔╝ ██║██████╔╝███████╗██║  ██║
    ╚═════╝ ╚═╝  ╚═══╝  ╚═╝╚═════╝ ╚══════╝╚═╝  ╚═╝

 ******************************************************/



    .vanilla-layout-divider {
        border-bottom: none;
        padding: 0;
    }

    .laptop .vanilla-layout-divider {
        padding: calc(1*var(--vertical-rhythm)) 0;
    }

    .tablet .vanilla-layout-divider {
        padding: calc(0.75*var(--vertical-rhythm)) 0;
    }

    .small .vanilla-layout-divider {
        padding: calc(0.5*var(--vertical-rhythm)) 0;
    }

    .vanilla-layout.vanilla-layout-divider-follows {
        border-bottom: none;
    }

        .vanilla-layout-divider-inner {
            position: relative;
        }
        
            .vanilla-layout-divider-inner::before {
                background: -webkit-linear-gradient(-45deg, transparent, transparent 49%, var(--color-orange) 49%, transparent 51%);
                background: -o-linear-gradient(-45deg, transparent, transparent 49%, var(--color-orange) 49%, transparent 51%);
                background: linear-gradient(-45deg, transparent, transparent 49%, var(--color-orange) 49%, transparent 51%);
                content: "";
                display: block;
                position: absolute;
                left: 0;
                bottom: -0.5rem;
                width: 100%;
                height: 1rem;
                background-size: 3rem 1rem !important;
            }



/**********************************

    ███╗   ███╗ █████╗ ██████╗
    ████╗ ████║██╔══██╗██╔══██╗
    ██╔████╔██║███████║██████╔╝
    ██║╚██╔╝██║██╔══██║██╔═══╝
    ██║ ╚═╝ ██║██║  ██║██║
    ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝

 **********************************/


    
    .vanilla-layout-map-element,
    .vanilla-layout-map-element * {
        border-width: unset;
        border-color: unset;
        border-style: unset;
    }

    .vanilla-layout-map-element {
        height: 60vh;
    }

    .portrait .vanilla-layout-map-element {
        height: 75vh;
    }

        .gm-style-iw {
            padding: 1em 0.5em;
        }

            .gm-style-iw .gm-style-iw-title {
                font-size: 1.25em;
            }

            .gm-style-iw p,
            .gm-style-iw .gm-style-iw-title {
                margin-bottom: 0.75em;
            }

            .gm-style-iw p:last-child {
                margin-bottom: 0;
            }

            .gm-style-iw p img {
                max-width: 100%;
            }

            .gm-style-iw p a {
                display: inline;
                text-decoration: underline;
            }



/********************************************************************************************************

    ███████╗██████╗ ██████╗  ██████╗ ██████╗     ██╗      █████╗ ██╗   ██╗ ██████╗ ██╗   ██╗████████╗
    ██╔════╝██╔══██╗██╔══██╗██╔═══██╗██╔══██╗    ██║     ██╔══██╗╚██╗ ██╔╝██╔═══██╗██║   ██║╚══██╔══╝
    █████╗  ██████╔╝██████╔╝██║   ██║██████╔╝    ██║     ███████║ ╚████╔╝ ██║   ██║██║   ██║   ██║
    ██╔══╝  ██╔══██╗██╔══██╗██║   ██║██╔══██╗    ██║     ██╔══██║  ╚██╔╝  ██║   ██║██║   ██║   ██║
    ███████╗██║  ██║██║  ██║╚██████╔╝██║  ██║    ███████╗██║  ██║   ██║   ╚██████╔╝╚██████╔╝   ██║
    ╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚═╝  ╚═╝    ╚══════╝╚═╝  ╚═╝   ╚═╝    ╚═════╝  ╚═════╝    ╚═╝

 ********************************************************************************************************/



    .vanilla-layout-error {
        padding: 3em;
        text-align: center;
        color: var(--color-responsiville-red);
    }