/* STYLESHEET */

/* FONTS ADDENDUM */

 @import url('https://fonts.googleapis.com/css?family=Nunito:400,500,600,700');

/* <style> ================================================================================================================== */
/* ================================================================================================================== */
/* INLINE VARS */ 
/* ================================================================================================================== */

:root {

    --clr-primary:          #98130c;
    --clr-primary-darker:   #580000;
    --clr-secondary:        #ee7203;
    --clr-secondary-darker: #ae3200;
    --clr-tertiary:         #bed000;
    --clr-tertiary-darker:  #7e9000;

    --clr-light-grey:       #efefef;
    --clr-dark-grey:        #dce2e7;
    --clr-background:       #041e1b;

    --font-color:           #666666;
    --font-primary:         'Nunito','Open Sans', Arial, sans-serif; 
    --font-secondary:       'Nunito','Open Sans', Arial, sans-serif; 
    
    --box-shadow-off: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    --box-shadow-on: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; 
}

.bg-primary     { background-color: var(--clr-primary) !important; }
.bg-secondary   { background-color: var(--clr-secondary) !important; }
.bg-tertiary    { background-color: var(--clr-tertiary) !important; }


/* ================================================================================================================== */
/* BASIC SETTINGS */
/* ================================================================================================================== */


html, body { 
    min-height:100%;
    max-width:100%;
    height:100%;
    font-family: 'Nunito','Open Sans', Arial, sans-serif; 
    font-size: 15px;
    line-height: 1.4em; 
    font-weight: 300;
    color: var(--font-color);
    background-color: var(--clr-primary);
}

@media only screen and (min-width : 768px)
{
    html, body { font-size: 17px; line-height: 1.6em; } 
}

h1 { font-size: 1.8em; margin-top: 0; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.4em; }
p { margin-bottom: 1.3em; }
.lead { font-size: 1.2em; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1em;
}

/* ================================================================================================================== */
/* BOOTSTRAP OVERWRITES */
/* ================================================================================================================== */

a { color: var(--clr-primary); }
a:hover, a:focus { color: var(--clr-primary-darker); }




/*===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A
/*  PADDING & MARGIN HELPERS
/*===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A===A*/
.p-0 { padding: 0em !important; }
.p-1 { padding: 0.25em !important; }
.p-2 { padding: 0.5em !important; }
.p-3 { padding: 1em !important; }
.p-4 { padding: 1.5em !important; }
.p-5 { padding: 3em !important; }
.m-0 { margin: 0em !important; }
.m-1 { margin: 0.25em !important; }
.m-2 { margin: 0.5em !important; }
.m-3 { margin: 1em !important; }
.m-4 { margin: 1.5em !important; }
.m-5 { margin: 3em !important; }
.py-0 { padding-top: 0em !important; padding-bottom: 0em !important; }
.px-0 { padding-left: 0em !important; padding-right: 0em !important; }
.py-1 { padding-top: 0.25em !important; padding-bottom: 0.25em !important; }
.px-1 { padding-left: 0.25em !important; padding-right: 0.25em !important; }
.py-2 { padding-top: 0.5em !important; padding-bottom: 0.5em !important; }
.px-2 { padding-left: 0.5em !important; padding-right: 0.5em !important; }
.py-3 { padding-top: 1em !important; padding-bottom: 1em !important; }
.px-3 { padding-left: 1em !important; padding-right: 1em !important; }
.py-4 { padding-top: 1.5em !important; padding-bottom: 1.5em !important; }
.px-4 { padding-left: 1.5em !important; padding-right: 1.5em !important; }
.py-5 { padding-top: 3em !important; padding-bottom: 3em !important; }
.px-5 { padding-left: 3em !important; padding-right: 3em !important; }
.my-0 { margin-top: 0em !important; margin-bottom: 0em !important; }
.mx-0 { margin-left: 0em !important; margin-right: 0em !important; }
.my-1 { margin-top: 0.25em !important; margin-bottom: 0.25em !important; }
.mx-1 { margin-left: 0.25em !important; margin-right: 0.25em !important; }
.my-2 { margin-top: 0.5em !important; margin-bottom: 0.5em !important; }
.mx-2 { margin-left: 0.5em !important; margin-right: 0.5em !important; }
.my-3 { margin-top: 1em !important; margin-bottom: 1em !important; }
.mx-3 { margin-left: 1em !important; margin-right: 1em !important; }
.my-4 { margin-top: 1.5em !important; margin-bottom: 1.5em !important; }
.mx-4 { margin-left: 1.5em !important; margin-right: 1.5em !important; }
.my-5 { margin-top: 3em !important; margin-bottom: 3em !important; }
.mx-5 { margin-left: 3em !important; margin-right: 3em !important; }
.pt-0 { padding-top: 0em !important; }
.pb-0 { padding-bottom: 0em !important; }
.pl-0 { padding-left: 0em !important; }
.pr-0 { padding-right: 0em !important; }
.pt-1 { padding-top: 0.25em !important; }
.pb-1 { padding-bottom: 0.25em !important; }
.pl-1 { padding-left: 0.25em !important; }
.pr-1 { padding-right: 0.25em !important; }
.pt-2 { padding-top: 0.5em !important; }
.pb-2 { padding-bottom: 0.5em !important; }
.pl-2 { padding-left: 0.5em !important; }
.pr-2 { padding-right: 0.5em !important; }
.pt-3 { padding-top: 1em !important; }
.pb-3 { padding-bottom: 1em !important; }
.pl-3 { padding-left: 1em !important; }
.pr-3 { padding-right: 1em !important; }
.pt-4 { padding-top: 1.5em !important; }
.pb-4 { padding-bottom: 1.5em !important; }
.pl-4 { padding-left: 1.5em !important; }
.pr-4 { padding-right: 1.5em !important; }
.pt-5 { padding-top: 3em !important; }
.pb-5 { padding-bottom: 3em !important; }
.pl-5 { padding-left: 3em !important; }
.pr-5 { padding-right: 3em !important; }
.mt-0 { margin-top: 0em !important; }
.mb-0 { margin-bottom: 0em !important; }
.ml-0 { margin-left: 0em !important; }
.mr-0 { margin-right: 0em !important; }
.mt-1 { margin-top: 0.25em !important; }
.mb-1 { margin-bottom: 0.25em !important; }
.ml-1 { margin-left: 0.25em !important; }
.mr-1 { margin-right: 0.25em !important; }
.mt-2 { margin-top: 0.5em !important; }
.mb-2 { margin-bottom: 0.5em !important; }
.ml-2 { margin-left: 0.5em !important; }
.mr-2 { margin-right: 0.5em !important; }
.mt-3 { margin-top: 1em !important; }
.mb-3 { margin-bottom: 1em !important; }
.ml-3 { margin-left: 1em !important; }
.mr-3 { margin-right: 1em !important; }
.mt-4 { margin-top: 1.5em !important; }
.mb-4 { margin-bottom: 1.5em !important; }
.ml-4 { margin-left: 1.5em !important; }
.mr-4 { margin-right: 1.5em !important; }
.mt-5 { margin-top: 3em !important; }
.mb-5 { margin-bottom: 3em !important; }
.ml-5 { margin-left: 3em !important; }
.mr-5 { margin-right: 3em !important; }

.jumbotron { background-color: #ccc; }

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--clr-primary);
    --bs-btn-border-color: var(--clr-primary-darker);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--clr-primary-darker);
    --bs-btn-hover-border-color: var(--clr-primary-darker);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--clr-primary-darker);
    --bs-btn-active-border-color: var(--clr-primary-darker);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--clr-primary);
    --bs-btn-disabled-border-color: var(--clr-primary);
    --bs-btn-border-radius: 0;
    --bs-btn-padding-x: 1rem;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--clr-secondary);
    --bs-btn-border-color: var(--clr-secondary-darker);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--clr-secondary-darker);
    --bs-btn-hover-border-color: var(--clr-secondary-darker);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--clr-secondary-darker);
    --bs-btn-active-border-color:var(--clr-secondary-darker);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--clr-secondary);
    --bs-btn-disabled-border-color: var(--clr-secondary);
    --bs-btn-border-radius: 0;
    --bs-btn-padding-x: 1rem;
}

.btn-default {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #ccc;
    --bs-btn-hover-color: #333;
    --bs-btn-hover-bg: #e6e6e6;
    --bs-btn-hover-border-color: #adadad;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--clr-primary-darker);
    --bs-btn-active-border-color: var(--clr-primary-darker);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--clr-primary);
    --bs-btn-disabled-border-color: var(--clr-primary);
    --bs-btn-border-radius: 0;
    --bs-btn-padding-x: 1rem;
}

.btn {
    border: 0;
    border-bottom: 3px solid var(--bs-btn-border-color);
    border-radius: 0;
}

.btn-lg {
    border: 0;
    border-bottom: 5px solid var(--bs-btn-border-color);
}

blockquote { border-color: var(--clr-secondary); }
hr { color: #dadada; border-color: #dadada; }

.img-responsive { max-width: 100%; height: auto; }

.jumbotron { background-color: var(--clr-dark-grey); padding: 35px 35px 25px 35px; border-radius: var(--border-radius-outspoken); }
.jumbotron h1 { margin: 0 0 10px 0; }
.jumbotron p { margin: 0 0 10px 0; }

.well {
    background-color: white;
    padding: 20px 20px;
    margin: 0 0 20px 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group .help-block { 
    color: #999;
    font-size: 0.85em;
    line-height: 1.3em;
}

.form-control { border-radius: var(--border-radius);  }
.formtitle { font-size: 1.2em; color: var(--clr-primary); padding-bottom: 10px; border-bottom: 1px solid var(--clr-primary); }
.formwrapper small, .legalblob small { display: inline-block; line-height: 1.4em; }
.has-error.checkbox { color: #dc3545; }
.meta-pagination { color: #999; }

.text-right { text-align: right; }
.text-left { text-align: left; }
.float-right { float: right; }

a { color: var(--clr-primary); }
a:hover, a:focus { color: var(--clr-primary-darker) }

.container {
    max-width: 1500px;
}

.alert p { margin: 0; }
img.img-radius { border-radius: var(--border-radius); }

.sharerwrapper { border-top: 1px solid white; padding-top: 15px; }
.sharer { margin: 0; padding: 0; display: flex; list-style-type: none; }
.sharer li { margin: 0; padding: 0; list-style-type: none; }
.sharer li + li { margin-left: 15px; }

/* ================================================================================================================== */
/* BASIC BUILDING BLOX */
/* ================================================================================================================== */

#header {
    border-top: 8px solid var(--clr-secondary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

#header .wrapper {
    background-color: white;
}

#homeblok {
    position: relative;
    z-index: 500;
    background-color: #F1F0F0;
}

.homeboxgrid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px)
{
    .homeboxgrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .homebox {
        margin-top: -150px;
    }
}

.homebox {
    background-color: #fff;
    box-shadow: 2px 0 2px rgba(150,150,150,0.4);
    padding: 20px;
    position: relative;
}

.homebox p.text-right { margin: 0; }

.homebox a.bloklink {
    display: block;
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%
    height: 100%;
}

.bg-add-1 { background-color: var(--clr-primary); color: white; }
.bg-add-2 { background-color: var(--clr-secondary); color: white; }
.bg-add-3 { background-color: var(--clr-tertiary); color: white; }

.homefounder { background-color: var(--clr-primary); color: white; padding: 5em 0; }


/* =================================================================================== */
/* == HOME > TELLERs */

#tellers { background-color: #494b4e; color: white; padding: 2em 0; }
#tellers p { padding: 0; margin: 0; color: white; text-align: center; }
#tellers .frame { border: 1px dashed white; margin: 0 20px 20px; padding: 20px; }
#tellers p.number { font-size: 3em; font-weight: bold; margin: 15px 0 10px; }


/* =================================================================================== */
/* == MENU/NAVBAR */

#reclameblok {
    background-color: #F1F0F0;
    padding-top: 5em;
}

#reclameblok .outer {
    background: url('../img/ekofungi-background.jpg') no-repeat center center;
    color: white;
}

#reclameblok .inner {
    background: rgba(162,108,27,0.8);
    padding: 8em 0;
}

#reclameblok p { 
    margin: 0;
}

#reclameblok  p.recl-tit {
    font-size: 2.8em;
    line-height: 1em;
    margin-bottom: 20px;
}

#reclameblok p.recl-base {
    font-size: 1.4em;
    line-height: 1.3em;
}

/* =================================================================================== */
/* == HEROIMAGE */

#heroimage {
    height: 150px;
    background-color: #F1F0F0;
    background-size: cover;
    background-position: center center;
}

#heroimage.home {
    height: 100%;
}

.carousel {
    background-color: white;
}

.carousel, .carousel-inner {
    height: 100%;
    width: 100%;
} 

#heroimage .item {
    height: 100%;
    width: 100%;
    
    background-size: cover;
    background-position: center center;
}

.carousel .inner-inner-cell {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.carousel .inner-cell {
    display: table;
    height: 100%;
    width: 100%;
    background-color: rgba(61,61,61,0.35);
}

.cropbox {
    padding: 1em 1em;
    text-align: center;
}

.herotitle {
    font-size: 1.5em;
    line-height: 1.3em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5em 0;
    font-weight: 900; 
}

.herotext {
    font-size: 1.1em;
    color: white;
    margin: 0 0 0.8em 0;
}

@media only screen and (min-width : 768px) 
{
    .cropbox {
        padding: 1em 10em;
    }
    
    .herotitle {
        font-size: 2.5em;
    }

    .herotext {
        font-size: 2em;
        line-height: 1.1em;
    }
}

/* =================================================================================== */
/* == MENU/NAVBAR */

.headerlogo { float: left; }
.headerlogo img { width: 120px; }

.navbar-nav {
    margin-top: 0;
    padding-top: 0;
}

.navbar-styles {
    background-color: #fff;
    margin-bottom: 0;
    border: 0;
    padding: 0;
    justify-content: flex-end;
}

.navbar-styles .nav > li > a 
{
    border-bottom: 5px solid #efefef; 
    color: var(--clr-secondary);
    background-color: transparent;
    text-decoration: none;
    display: block;
    padding: 15px 15px;
}

.navbar-styles .nav > li.active > a 
{
    border-bottom: 5px solid var(--clr-primary); 
    color: var(--clr-primary);
    background-color: transparent;
}

.navbar-styles .nav > li > a:hover,
.navbar-styles .nav > li > a:focus, 
.navbar-styles .nav > li.active > a:hover,
.navbar-styles .nav > li.active > a:focus 
{
    border-bottom: 5px solid var(--clr-primary-darker); 
    color: var(--clr-primary-darker);
    background-color: transparent;
    text-decoration: none;
}

.menu-toggle {
    display: none;
}

@media only screen and (max-width : 768px) 
{
    .menu-toggle {
        display: inline-block;
    }
}


/* ================================================================================================================== */
/* == SIDEBAR (with css animations to make an 'aside' type of menu) */
/* ================================================================================================================== */

.sidebar-toggle, .navbar-brand-side  {
    display: none;
}

.header .sidebar-toggle:focus,
.header .sidebar-toggle:active {
    background: transparent;
}


.sidebar {
    z-index: 999;
}

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

    .sidebar .navbar-brand-side  {
        position: absolute;
        bottom: 30px;
        display: block;
        width: 40%;
    }
    
    .sidebar {
        padding: 15px;
        padding-top: 50px;
        overflow: hidden;
        background-color: #98130c;;
        position: fixed;
        top: 0;
        left: -325px;
        color: white;
        min-height: 100%;
        width: 325px;
        border-right: 1px solid #282b2f; 
        z-index: 150;
        /* TRANSITION EFFECT */
        -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
        -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
        -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, left 0.3s ease-in-out;
    }
    
    .sidebar-toggle {
        display: block;
        float: right;
    }

    .sidebar.show {
        left: 0;
    }
    
    .navbar-styles {
        padding: 10px 0;
    }
    
    .navbar-styles .nav > li > a
    {
        border-bottom: 1px solid #FFF; 
        color: white;
        font-size: 1.3em;
    }
    
    .navbar-styles .nav > li.active > a,
    .navbar-styles .nav > li > a:hover,
    .navbar-styles .nav > li > a:focus, 
    .navbar-styles .nav > li.active > a:hover,
    .navbar-styles .nav > li.active > a:focus 
    {
        border-bottom: 1px solid #FFF; 
        color: var(--clr-tertiary-darker);
    }

    .sidebar .nav {
        margin: auto; 
    }
    
}

/* ================================================================================================================== */
/* CONTENT */
/* ================================================================================================================== */

#content {
    padding: 5em 0 4em;
    background-color: #F1F0F0;
}

#altcontent {
    padding: 0 0 4em;
    background-color: #F1F0F0;
}

/* ================================================================================================================== */
/* SUBMENU */
/* ================================================================================================================== */

.nav.nav-pills {
    margin-bottom: 20px;
}

.nav-pills .nav-item {
    margin: 0;
    padding: 0;
}

.nav-pills .nav-link {
    color: #acacac;
    background-color: transparent;
    border-radius: 0;
    padding: 0.6em 5px;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #dadada;
    line-height: 1.2em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.nav-pills .nav-link.active {
    color: #98130c;
    font-weight: 500;
    background-color: transparent;
}

.nav-pills .nav-link:focus, 
.nav-pills .nav-link:hover {
    color: #000;
    background-color: transparent;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

.nav-tabs>li {
    margin-bottom: -1px;
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    position: relative;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
}

.nav-tabs>li.active>a, 
.nav-tabs>li.active>a:focus, 
.nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: #eee;
}

/* ================================================================================================================== */
/* NEWS ITEMS */
/* ================================================================================================================== */

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--clr-primary);
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: var(--clr-primary-darker);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--clr-primary-darker);
    --bs-pagination-focus-bg: #e9ecef;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--clr-primary);
    --bs-pagination-active-border-color: var(--clr-primary);
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: #fff;
    --bs-pagination-disabled-border-color: #dee2e6;
    display: inline-flex;
    padding-left: 0;
    list-style: none;
}
.page-item:first-child .page-link, .page-item:last-child .page-link { border-radius: 0; }



.newsbar { overflow: hidden; margin-bottom: 20px; }

.news a { text-decoration: none; }

.news.item {
    background-color: #fff;
    overflow: hidden;
    border-top: 6px solid var(--clr-secondary);    
    height: 100%;
    box-shadow: 0 0 3px rgba(150,150,150,0.5);
    margin-bottom: 30px;
    position: relative;
}

.news.item .imglabel { 
    background-color: var(--clr-secondary);  
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px 12px 8px;
    font-size: 0.8em;
    line-height: 1em;
}

.newscat-13 .news.item {
    border-top: 6px solid var(--clr-primary);    
}

.newscat-13 .news.item .imglabel { 
    background-color: var(--clr-primary);    
}

.news.item p { 
    margin: 15px 10px; 
    line-height: 1.2em;
}
  
.news.item .title {
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1px;
}

@media only screen and (max-width : 991px)
{  
    .news.item {
        margin-bottom: 20px;
    }
}

.partner.item { margin-bottom: 20px; }

/* ================================================================================================================== */
/* SERVICES ITEMS */
/* ================================================================================================================== */

.services.item {
    background-color: #fff;
    overflow: hidden;
    border-top: 6px solid var(--clr-secondary);    
    height: 100%;
    box-shadow: 0 0 3px rgba(150,150,150,0.5);
    margin-bottom: 30px;
}

.services.item a {
    text-decoration: none;
}

.services.item p { 
    margin: 15px 10px; 
    line-height: 1.2em;
}
  
.services.item .name {
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1px;
}

@media only screen and (max-width : 991px)
{  
    .services.item {
        margin-bottom: 20px;
    }
}

/* ================================================================================================================== */
/* GUESTBOOK ITEMS */
/* ================================================================================================================== */

.guestbook.item {
    background-color: #fff;
    overflow: hidden;
    border-left: 6px solid var(--clr-secondary);    
    box-shadow: 0 0 3px rgba(150,150,150,0.5);
    margin-bottom: 30px;
}

.guestbook.item a { 
    text-decoration: none;
}


.guestbook.item p { 
    margin: 15px 10px; 
    line-height: 1.2em;
}

.guestbook.item .title {
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ================================================================================================================== */
/* GALLERY ITEMS */
/* ================================================================================================================== */

.gal.item {
    height: 100%;
    margin-bottom: 30px;
    transition: all 0.3s ease-in;
}

.gal.item a {
    text-decoration: none;
    display: block;    
    box-shadow: 0 0 3px rgba(150,150,150,0.5);
}

.gal.item .titel {
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: var(--clr-secondary);  
    color: white;
    text-align:center;
    margin: 0;
    padding: 10px;
    transition: all 0.3s ease-in;
}

.gal.item .titel a { color: white; }
.gal.item .titel a:hover { text-decoration: none; }

.gal.item a:hover {
    box-shadow: 2px 0 10px rgba(150,150,150,0.3); 
}

.gal.item a:hover .titel {
    background-color: var(--clr-primary);
    color: white;
}

/* ================================================================================================================== */
/* GALLERY ITEMS */
/* ================================================================================================================== */

.people.item a {
    text-decoration: none;
}

/* =================================================================================== */
/* == CTA */

#CTA {
    background-color: var(--clr-secondary); 
    color: white;
    padding: 1em 0;
}

#CTA p { margin: 0; padding: 0; }
#CTA p.tagline { padding-top: 13px; font-size: 24px; letter-spacing: 1px;  }


/* =================================================================================== */
/* == FOOTER */

#footer {
    padding: 0.8em 0 0;
    background-color: var(--clr-primary);
    color: white;
    overflow: hidden;
    font-size: 0.8em;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: var(--clr-primary-darker);
    text-decoration: none;
}



.blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(360px, calc(25% - 1rem)), auto));
    row-gap: 1rem;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.blocks article a {
    overflow: hidden;
}

.blocks article a {
    display: flex;
    flex-direction: column;
    justify-content: end; 
    align-items: end; 
    aspect-ratio: 1 / 1;
    text-decoration: none;
    position: relative;
}

.blocks article a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 125ms;
}


.blocks article a:hover img {
    transform: scale(1.2);
    transition: transform 250ms;
}

.blocks article a .inner-link {
    width: calc(100% - 4rem);
    aspect-ratio: 1 / 1;
    background-color: #ee7203B0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    opacity: 0;
    position: absolute;
    top: 2rem;
    left: 2rem;
    transition: opacity 125ms;
}

.blocks article a:hover .inner-link {
    opacity: 1;
    transition: opacity 250ms;
}

.langs a {
    border-bottom: 2px solid transparent;
    color: var(--clr-secondary);
    background-color: transparent;
    text-decoration: none;
    display: block;
    padding: 15px 15px;
    color: white;
}

@media only screen and (min-width : 992px) {        
    .langs a {
        border-bottom: 5px solid #efefef;
        color: var(--clr-primary);
    }
}
    
.langs a:hover,
.langs a.active {
    border-bottom: 2px solid var(--clr-tertiary);
}

@media only screen and (min-width : 992px) {
    .langs a:hover,
    .langs a.active {
        border-bottom: 5px solid var(--clr-primary);
    }
}