/*
Theme Name: bsa (Baia Sant'Anna)
Author: Gerald Fuchs
Author URI: 
Theme URI: 
Tags: full-site-editing, editor-style, block-styles, block-patterns
Text Domain: fuchsclan
Requires at least: 5.9
Requires PHP: 7.4
Tested up to: 5.9
Version: 1.0.0

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/



.wp-block-post-content{
	padding-bottom:30px !important;
}
/* Styles intended only for the front.*/

.sticky-footer {
    /*position: fixed !important;*/
    bottom: 0;
    right: 0;
    left: 0;
	
}

.wp-block-columns .fc-spalten-adjust {
    margin-bottom: 10em;
}

.fc-header .wp-block-image {
    margin-bottom: 0em;
}

.fc-header {
    padding: 0em 4em 0em 4em;
}

.active-nav-item {
    text-decoration-line: underline;
    text-underline-offset: 0.3em;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0087ca;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -0.2em;
    left: 0;
    background-color: #0087ca;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.fadeIn {
    animation-name: FadeIn;
    animation-duration: 5s;
    transition-timing-function: linear;
}

@keyframes FadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}