/*!
Theme Name: bcallschwil
Theme URI: http://underscores.me/
Author: Ognjen Kuvač
Author URI: http://o.kuvac@gmail.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bcallschwil
*/
@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@300;400;500;700;900&display=swap');

body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;

    /*font-family: 'Goldman', cursive;*/
    /*font-family: 'Roboto Condensed', sans-serif;*/
}

.container {
    max-width: 1140px;
    background: #fff;
}


.video-container
{
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-container iframe
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.icon-link
{
    position: relative;
    padding-left: 30px;
}

.icon-link img
{
    position: absolute;
    left: 0;
    width: 25px !important;
    height: auto;
}


.ms-posts
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.ms-post
{
    position: relative;
    display: flex;
    flex-direction: column;
    border: 5px solid #162D50;
    transition: 0.3s;
}

.ms-post:hover
{
    border-color: #ff7e29;
}

.ms-post-img
{
    aspect-ratio: 16 / 9;
    background-color: #EEEEEE;
}

.ms-post-img.thumbnail
{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ms-post-img.logo
{
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.ms-post-inner
{
    flex-grow: 1;
    padding: 20px;
}

.ms-post-title
{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

.ms-post-date
{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #162D50;
    color: white;
    padding: 2px 15px 2px 15px;
    transition: 0.3s;
}

.ms-post:hover .ms-post-date
{
    background-color: #ff7e29;
}

.ms-post-readmore
{
    background-color: #162D50;
    color: white;
    padding: 10px 20px 10px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s;
}

.ms-post:hover .ms-post-readmore
{
    background-color: #ff7e29;
}



/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #ff7d29;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    outline: none;
    box-shadow: none;
    border: 0;
    transition: all .3s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #162D50;
    transition: all .3s;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #162D50;
    border: 0;
    border-bottom: 1px solid #162D50;
    border-radius: 0;
    padding: 0 0 3px 0;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border-bottom: 1px solid #ff7d29;
}

select {
    color: #162D50;
    border: 0;
    border-bottom: 1px solid #162D50;
    border-radius: 0;
    padding: 0 0 3px 0;
    font-size: 16px;
}

select option {
    color: #162D50;
    padding: 0 0 3px 0;
    font-size: 16px;
}

textarea {
    width: 100%;
}

a {
    text-decoration: none;
    color: #162D50;
}

img {
    max-width: 100%;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
}

/* Navigation
--------------------------------------------- */
.menu-link-wrap {
    display: none;
}

.site-languages {
    position: absolute;
    right: 15px;
    top: 15px;
}

.site-second-logo {
    position: absolute;
    right: 35px;
    top: 58px;
}

.site-second-logo img {
    width: 75px;
    height: auto;
}

.site-languages a {
    margin-right: 10px;
}

.site-languages a:last-of-type {
    margin-right: 0;
}

.site-languages a img {
    width: 30px;
    height: auto;
    transform: scale(1);
    transition: all .2s;
}

.site-languages a:hover img {
    transform: scale(1.3);
    transition: all .2s;
}

.site-branding {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 135px;
    z-index: 999;
}
.sponsoren-text-wrap {
	margin-bottom:20px;
}
.sponsoren-text-wrap>p:nth-of-type(1){
	margin-top:0 !important;
}

.site-header {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    z-index: 22;
}

.front-page-wrap img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.front-page-wrap .slider-top-text {
    position: absolute;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-20%);
}

.front-page-wrap .slider-top-text h1 {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 100px;
    color: #FF7F2A;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
    margin-bottom: 100px;
}

.front-page-wrap .slider-top-text h1:before {
    width: 60%;
    height: 7px;
    left: 50%;
    top: 0;
    position: absolute;
    background-color: #FF7F2A;
    content: "";
    transform: translateX(-50%);
}

.front-page-wrap .slider-top-text h1:after {
    width: 60%;
    height: 7px;
    left: 50%;
    bottom: 0;
    position: absolute;
    background-color: #FF7F2A;
    content: "";
    transform: translateX(-50%);
}

.front-page-wrap .slider-top-text p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 35px;
    color: #FFF;
    text-transform: uppercase;
    margin: 10px 0;
}

.front-page-wrap .slider-top-text p:last-of-type {
    font-weight: 500;
    letter-spacing: 5px;
}

.main-navigation {
    max-width: 850px;
    text-align: center;
}

.main-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-navigation ul li {
    display: inline-block;
    padding: 4px 15px;
    font-size: 18px;
}

.main-navigation ul li a {
    color: #fff;
    text-transform: uppercase;
}

.main-navigation ul li a .first {
    font-family: 'Goldman', cursive;
    font-size: 21px;
    font-weight: 700;
    color: #ff7e29;
    /*
    text-shadow: 0 0 2px #fff;
    -moz-text-shadow: 0 0 2px #fff;
    -webkit-text-shadow: 0 0 2px #fff;
     */
    display: inline-block;
    padding-right: 3px;
    transform: scale(1);
    transition: all .2s;
}

.main-navigation ul li a:hover .first {
    transition: all .2s;
    color: #162D50;
}

.site-header .loader {
    position: fixed;
    z-index: 990;
    background: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.site-header .loader.active {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.site-branding.site-branding-loader {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 800px;
    z-index: 999;
    margin: 0 auto;
    transition: all 2s;
}

.site-branding.site-branding-loader img {
    transform: scale(0);
    transition: all 0.5s;
}

.site-branding.site-branding-loader img.active {
    transform: scale(1);
    transition: all 0.5s;
}

.site-branding.site-branding-loader.active {
    transform: translateY(0);
    top: -102px;
    left: -100px;
    right: 100%;
    width: 343px;
    z-index: 999;
    transition: all 2s;
}

.site-branding.site-branding-loader img {
    width: 100%;
}

.middle-page-wrap {
    padding: 30px 45px;
    background: url("images/website-background-compressor.jpg");
    background-position: center center;
    border: 30px solid #fff;
}
.section-title-shop {
	font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.section-title {
    font-size: 60px;
    margin: 0;
    font-weight: 700;
    color: #162D50;
    text-align: center;
    padding: 60px 0;
    text-transform: uppercase;
}

.section-title span {
    font-size: 76px;
    font-family: 'Goldman', cursive;
    color: #ff7e29;
    /*
    text-shadow: 0 0 2px #162D50;
    -moz-text-shadow: 0 0 2px #162D50;
    -webkit-text-shadow: 0 0 2px #162D50;
     */
    text-shadow: 3px 3px #162D50;
    margin-right: 30px;
}

.section-inner {
    padding: 0 60px 60px 60px;
}
h3.frm_pos_top.frm_section_spacing {
	 font-size: 15px !important;
	font-weight:400 !important;
    margin-bottom: 5px !important;
	margin-top:0 !important;
	padding-top:0 !important;
	border:0 !important;
}
.frm_form_field.frm_section_heading.form-field {
    border: 1px solid #bfc3c8;
    padding: 18px 10px 0 10px;
    border-radius: 4px;
	margin-bottom: 24px !important;
}
a.e2pdf-download.e2pdf-inline.e2pdf-format-pdf {
	    background: #ff7d29;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    transition: all .3s;
    text-transform: uppercase;
    margin-top: 7px;
    display: inline-block;
}

.news-list-single {
    margin-bottom: 40px !important;
}

.news-list-single img {
    width: 100%;
}

.news-list-single-title {
    font-size: 20px;
    font-weight: 700;
}

.news-list-single-title h3 {
    margin: 0 0 5px 0;
    font-weight: 600;
}

.news-list-single-date {
    font-size: 14px;
    color: #ff7d29;
}

.news-list-single-date p {
    margin: 7px 0 10px 0;
}

.btn-wrap a {
    display: inline-block;
    color: #ff7d29;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 13px;
}

.btn-wrap.big {
    text-align: center;
}

.btn-wrap.big a {
    background: #ff7d29;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    transition: all .3s;
}

.btn-wrap.big a:hover {
    background: #162D50;
    transition: all .3s;
}

.number-section {
    margin-bottom: 45px;
}

/*
.split-text * {
    text-align: justify;
}
*/

.three-icons {
    text-align: center;
}

.three-icons * {
    text-align: center;
}

.three-icons img {
    margin: 0 auto;
}

.three-icons h4 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.three-icons p {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

#three .video_container {
    margin-top: 45px;
}

.team-wrap
{
    border: 5px solid #162D50;
    border-radius: 10px;
    margin-bottom: 50px;
    overflow: hidden;
}

.team-intro-container
{
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;
}

.team-intro-logo
{
    width: 150px;
}

.team-intro-text
{

}

.team-wrap .team-group-description
{
    background-color: #ff7c2a;
    text-align: center;
    color: #162D50;
    padding: 5px 15px;
    font-weight: bold;
}

.team-wrap .team-group-name {
    background-color: #162D50;
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 10px;
    margin: 0;
}

.team-wrap > .team-wrap-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
}

.team-wrap > .team-wrap-inner .team-box
{
    width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    background-color: #EEEEEE;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.team-wrap .team-box:hover
{
    background-color: #E1E1E1;
}

.map-wrap {
    display: block !important;
}

.map-wrap iframe {
    width: 100%;
    margin-top: 40px;
}

.map-top {
    display: flex;
    gap: 20px;
}

.map-top a {
    display: inline-block;
}

.map-top > div {
    width: 25%;
}

.map-top h4 {
    font-size: 22px;
    color: #162D50;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.map-top h4 i {
    color: #162D50;
}

.map-top h4 img {
    width: 30px;
}

.map-top p {
    margin: 2px 0;
}

.map-top a {
    margin: 2px 0;
    color: #162D50;
    transition: all .3s;
}

.map-top a:hover {
    color: #ff7d29;
    transition: all .3s;
}

.contact-form > div {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-form > div .wpcf7-form-control-wrap {
    width: calc(50% - 15px);
}

.contact-form > div .wpcf7-form-control-wrap input,
.contact-form > div .wpcf7-form-control-wrap select {
    width: 100%;
	    padding: 12.3px 0;
}

.contact-form br {
    display: none;
}

.contact-form .acceptance-wrap {
    display: block;
    margin-bottom: 0;
}

.contact-form .acceptance-wrap .wpcf7-submit {
    display: block;
}

.contact-form .acceptance-wrap .wpcf7-acceptance {
    display: block;
    margin-bottom: 20px;
}

.contact-form .acceptance-wrap .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-form .acceptance-wrap .wpcf7-acceptance label input {
    width: auto;
}

.contact-form .acceptance-wrap .wpcf7-acceptance label .wpcf7-list-item-label {
    font-size: 13px;
    color: #162D50;
}

.contact-form .wpcf7-list-item {
    margin-left: 0;
}

.contact-form h3 {
    font-size: 32px;
    margin: 0 0 30px 0;
    color: #162D50;
}

.table-images {
    margin: 0 -12px;
}

.table-images * {
    border: 0;
}

.table-images table {
    width: 100%;
}

.table-images tr td:nth-of-type(1) {
    width: 320px;
    text-align: center;
    background: #000;
}

.table-images tr td:nth-of-type(2) {
    background: #162D50;
}

.table-images-img {
    padding: 30px 30px 0 30px;
    background: #000;
}

.table-images-text {
    text-align: center;
}

.table-images-text h2 {
    font-size: 70px;
    color: #ff7d29;
    font-weight: 700;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form  > div {
    display: block;
}

.contact-form-second {
    display: flex;
    gap: 30px;
}

.contact-form-second > div {
    width: calc(50% - 15px);
}

.contact-form-second > div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-second > div .wpcf7-form-control-wrap {
    width: 100%;
}

.contact-form-second textarea {
    height: 186px;
}

.footer-top a {
    margin: 10px 0;
    display: block;
    color: #fff;
    transition: all .3s;
}

.footer-top a:hover {
    color: #ff7c2a;
    transition: all .3s;
}

.footer-top p {
    margin: 10px 0;
    color: #fff;
}

.footer-top ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-top ul li {
    padding: 0;
    margin: 0;
}

.site-footer {
    background: #162D50;
    color: #fff;
    padding: 30px 0;
}

.site-footer .container {
    background: #162D50;
}

.menu-footer-menu-container a {
    text-transform: capitalize;
    font-size: 14px;
}

.footer-top .col-xs-12 {
    text-align: center;
}

.site-footer h3 {
    font-size: 22px;
    color: #ff7c2a;
}

.footer-bottom h3 {
    text-align: center;
    text-transform: uppercase;
    border-top: 2px solid #ff7c2a;
    border-bottom: 2px solid #ff7c2a;
    padding: 10px 0;
    color: #fff;
}

.footer-bottom .mitglied {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer-bottom .mitglied img {
    height: 70px;
    width: auto;
}

.fancybox-content
{
    min-width: 50%;
    max-width: 1000px;
    padding: 30px;
}

.fancybox-caption__body {
    font-size: 25px;
}

.news-page .container {
    background: transparent;
}

.news-page .news-list-single {
    background: #fff;
    padding: 20px;
}

.news-page .news-section {
    padding-top: 45px;
}

.news-single-page .slider-top-text {
    top: 100%;
    transform: translateY(-127%);
    display: block;
    max-width: 854px;
}

.news-single-page .slider-top-text h1 {
    font-size: 32px;
    margin-bottom: 0;
}

.news-single-page .front-page-wrap img {
    width: auto;
    height: 221px;
    object-fit: unset;
    position: absolute;
    right: 0;
    bottom: 0;
}

.news-single-page .front-page-wrap {
    background: #000;
    height: 327px;
    position: relative;
}

.news-single-page .mouse-wrap {
    display: none;
}

.news-single-wrap {
    padding-top: 45px;
}

.people-single h3 {
    text-align: left;
    ext-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    color: #202020;
    position: relative;
    margin-top: 12px;
}

.people-single h4 {
    text-align: left;
    letter-spacing: 1.2px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    color: #ff7c2a;
    position: relative;
    margin-bottom: 24px;
}

.people-single .img-wrap {
    position: relative;
    overflow: hidden;
}

.people-single .img-wrap .people-single-angle {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 30px solid #ff7c2a;
    border-left: 30px solid transparent;
    transition: all .4s;
}

.people-single .img-wrap:hover .people-single-angle {
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 800px solid #ff7c2a;
    border-left: 800px solid transparent;
    transition: all .4s;
}

.people-single .img-wrap .people-single-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    color: #fff;
    visibility: hidden;
    overflow: auto;
    transition: all .4s;
}

.people-single .img-wrap:hover .people-single-desc {
    opacity: 1;
    visibility: visible;
    transition: all .4s;
    transition-delay: 0.2s;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}

.people-single .img-wrap .people-single-desc div {
    overflow: auto;
    padding: 24px;
}

.people-single .img-wrap .people-single-desc p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 12px 0;
}

#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a {
    background: #ff7d29;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    outline: none;
    box-shadow: none;
    border: 0;
    transition: all .3s;
}

#sb_instagram #sbi_load .sbi_load_btn:hover {
    box-shadow: none;
    background: #162D50;
    transition: all .3s;
}

.fancybox-custom-box h3 {
    background: #162D50;
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 10px;
    margin: 30px 0 0 0;
}

.fancybox-custom-box img {
    max-width: 700px;
    width: 100%;
}

.main-navigation.scroll-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: #ffffff;
    padding: 7px 0;
    box-shadow: 0 0 4px #152d4f;
    transform: translateY(-120%);
    transition: all .3s;
}

.main-navigation.scroll-navigation.active {
    transform: translateY(0);
    transition: all .3s;
}

.main-navigation.scroll-navigation .menu-main-menu-container,
.main-navigation.scroll-navigation .menu-main-menu-scroll-container{
    max-width: 850px;
    margin: 0 auto;
}

.main-navigation.scroll-navigation ul li a {
    color: #162D50;
}

.main-navigation.scroll-navigation ul li a .first {
    /*
    text-shadow: 0 0 1px #162D50;
    -moz-text-shadow: 0 0 1px #162D50;
    -webkit-text-shadow: 0 0 1px #162D50;
     */
}

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

    .news-single-page .slider-top-text {
        top: calc(100% - 70px);
        transform: translateY(-127%) !important;
        display: block;
        max-width: 854px;
    }

    .front-page-wrap .slider-top-text {
        transform: translateY(-50%);
    }

    .middle-page-wrap {
        border-top: 0;
    }

    .menu-link-wrap-wrap {
        position: relative;
    }

    #scroll-navigation {
        display: none !important;
    }

    .mouse-wrap {
        display: none;
    }

    #primary-menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        top: 0;
        left: 0;
        display: flex;
        gap: 5px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #000;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }

    #primary-menu.active {
        opacity: 1;
        visibility: visible;
        transition: all .3s;
    }

    .menu-link-wrap {
        display: block !important;
        position: absolute;
        z-index: 20;
        right: 0;
        top: 0;
        transform: translateY(-100%);
        width: 100%;
        text-align: center;
        background: #fff;
        padding: 37px 0 8px 0;
    }

    .menu-link-wrap.active {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
        transform: translateY(0);
        box-shadow: 0 0 3px #162D50;
        transition: all .3s;
    }

    .menu-link {
        color: #162D50;
        display: inline-block !important;
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        left: 0;
        margin: 0;
        z-index: 999999;
    }

    .menu-link.close {
        z-index: 9999;
    }

    .menu-link:before {
        content: "";
        background: #162D50;
        height: 4px;
        width: 40px;
        position: absolute;
        top: -10px;
        left: 50%;
        margin: 0 0 0 -20px;
        display: block;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .menu-link:after {
        content: "";
        background: #162D50;
        height: 4px;
        width: 40px;
        position: absolute;
        top: -20px;
        left: 50%;
        margin: 0 0 0 -20px;
        display: block;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    .site-branding {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 135px;
        z-index: 99;
    }

    .site-languages {
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 99;
    }

    #site-navigation .menu-link-wrap {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        transform: translate(0);
        transition: all .3s;
    }
    #site-navigation .menu-link-wrap.active {
        opacity: 1;
        visibility: visible;
        transition: all .3s;
    }

    #site-navigation .menu-link:before {
        transform: rotate(45deg);
        top: -15px;
        width: 25px;
        z-index: 9999;
        margin: 0 0 0 -13px;
    }

    #site-navigation .menu-link:after {
        transform: rotate(-45deg);
        top: -15px;
        width: 25px;
        z-index: 9999;
        margin: 0 0 0 -13px;
    }
}

@media screen and (max-width: 1024px)
{
    .ms-posts
    {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .site-branding {
        width: 100px;
    }

    .site-second-logo img {
        width: 56px;
        height: auto;
    }

    .site-languages a img {
        width: 23px;
        height: auto;
        transform: scale(1);
        transition: all .2s;
    }

    .site-second-logo {
        position: absolute;
        right: 35px;
        top: 51px;
    }

    .front-page-wrap .slider-top-text h1 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .front-page-wrap .slider-top-text h1:before,
    .front-page-wrap .slider-top-text h1:after {
        height: 4px;
    }

    .front-page-wrap .slider-top-text p {
        font-size: 20px;
    }

    .table-images {
        display: none;
    }


    .section-title {
        font-size: 30px;
        padding: 25px 0;
    }

    .section-title span {
        font-size: 35px;
        text-shadow: 0 0 1px #162d50;
        -moz-text-shadow: 0 0 1px #162D50;
        -webkit-text-shadow: 0 0 1px #162D50;
    }

    .product-list-wrap ul>li {
        width: calc(50% - 12px) !important;
    }

    .product-list-wrap ul {
        gap: 12px;
        justify-content: center;
    }

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin: 0;
    }
    .woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
        display: none;
    }
    .news-single-page .slider-top-text {
        top: calc(100% - 70px);
    }

    .news-single-page .slider-top-text h1{
        font-size: 25px;
    }

    .news-single-page .slider-top-text {
        transform: translateY(-100%) !important;
    }
}

@media screen and (max-width: 768px)
{
    .ms-posts
    {
        grid-template-columns: 1fr;
    }

    .team-intro-container
    {
        flex-direction: column;
    }
}

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

    .map-top {
        flex-wrap: wrap;
    }
    .map-top > div {
        width: 100%;
        text-align: center;
    }

    .map-top h4 {
        justify-content: center;
    }

    .fancybox-content {
        padding: 20px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .team-wrap > div {
        flex-wrap: wrap;
    }

    .team-wrap > div >a ,
    .team-wrap > div > div{
        width: calc(50% - 30px);
        text-align: center;
    }

    .team-wrap h3 {
        font-size: 20px;
    }

    .fancybox-custom-box h3 {
        font-size: 20px;
    }
    .three-icons p {
        font-size: 28px;
        margin-bottom: 0;
    }

    .three-icons h4 {
        font-size: 20px;
    }

    .footer-bottom .mitglied {
        flex-direction: column;
    }

    .product-list-wrap ul>li {
        width: 100% !important;
    }

    .middle-page-wrap {
        border-left: 0;
        border-right: 0;
        padding: 30px 13px;
    }

    .section-inner {
        padding: 0 15px 20px 15px;
    }

    .contact-form-second {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .contact-form-second > div {
        width: 100%;
    }

    .contact-form form > div {
        flex-direction: column;
    }

    .contact-form form > div .wpcf7-form-control-wrap {
        width: 100%;
    }

    .news-single-page .front-page-wrap {
        height: 50vh;
    }

    .woocommerce div.product form.cart .button {
        margin-top: 30px;
    }
    .woocommerce-error, .woocommerce-info, .woocommerce-message {
        display: flex;
        flex-direction: column-reverse;
        /* gap: 14px; */
    }

    .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
        margin-top: 20px;
    }

    #add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
        float: none;
        display: block;
        width: 100%;
        margin-bottom: 9px !important;
    }
}


.mouse-wrap {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 30px;
    margin: 0 auto;
}

.mouse {
    margin: 0 auto;
    background: #FF7F2A linear-gradient(transparent 0%, transparent 50%, #FF7F2A 50%, #FF7F2A 100%);
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: 100% 200%;
    -webkit-animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
    animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}

.mouse:before, .mouse:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.mouse:before {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
}

.mouse:after {
    background-color: #FF7F2A;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation: trackBallSlide 5s linear infinite;
    animation: trackBallSlide 5s linear infinite;
}

@-webkit-keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }
    20% {
        background-position: 0% 0%;
    }
    21% {
        background-color: #4e5559;
    }
    29.99% {
        background-color: #FF7F2A;
        background-position: 0% 0%;
    }
    30% {
        background-color: #4e5559;
        background-position: 0% 100%;
    }
    50% {
        background-position: 0% 0%;
    }
    51% {
        background-color: #4e5559;
    }
    59% {
        background-color: #FF7F2A;
        background-position: 0% 0%;
    }
    60% {
        background-color: #4e5559;
        background-position: 0% 100%;
    }
    80% {
        background-position: 0% 0%;
    }
    81% {
        background-color: #4e5559;
    }
    90%, 100% {
        background-color: #FF7F2A;
    }
}

@keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }
    20% {
        background-position: 0% 0%;
    }
    21% {
        background-color: #4e5559;
    }
    29.99% {
        background-color: #FF7F2A;
        background-position: 0% 0%;
    }
    30% {
        background-color: #4e5559;
        background-position: 0% 100%;
    }
    50% {
        background-position: 0% 0%;
    }
    51% {
        background-color: #4e5559;
    }
    59% {
        background-color: #FF7F2A;
        background-position: 0% 0%;
    }
    60% {
        background-color: #4e5559;
        background-position: 0% 100%;
    }
    80% {
        background-position: 0% 0%;
    }
    81% {
        background-color: #4e5559;
    }
    90%, 100% {
        background-color: #FF7F2A;
    }
}

@-webkit-keyframes trackBallSlide {
    0% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    6% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }
    14% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    15%, 19% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }
    28%, 29.99% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    30% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    36% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }
    44% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    45%, 49% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }
    58%, 59.99% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    60% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    66% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }
    74% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    75%, 79% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }
    88%, 100% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
}

@keyframes trackBallSlide {
    0% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    6% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }
    14% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    15%, 19% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }
    28%, 29.99% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    30% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    36% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }
    44% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    45%, 49% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }
    58%, 59.99% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    60% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    66% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }
    74% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    75%, 79% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }
    88%, 100% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
}

@-webkit-keyframes nudgeMouse {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(8px);
    }
    30% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(8px);
    }
    90% {
        transform: translateY(0);
    }
}

@keyframes nudgeMouse {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(8px);
    }
    30% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(8px);
    }
    90% {
        transform: translateY(0);
    }
}

@-webkit-keyframes nudgeText {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(2px);
    }
    30% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(2px);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(2px);
    }
    90% {
        transform: translateY(0);
    }
}

@keyframes nudgeText {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(2px);
    }
    30% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(2px);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(2px);
    }
    90% {
        transform: translateY(0);
    }
}

@-webkit-keyframes colorText {
    21% {
        color: #4e5559;
    }
    30% {
        color: #FF7F2A;
    }
    51% {
        color: #4e5559;
    }
    60% {
        color: #FF7F2A;
    }
    81% {
        color: #4e5559;
    }
    90% {
        color: #FF7F2A;
    }
}

@keyframes colorText {
    21% {
        color: #4e5559;
    }
    30% {
        color: #FF7F2A;
    }
    51% {
        color: #4e5559;
    }
    60% {
        color: #FF7F2A;
    }
    81% {
        color: #4e5559;
    }
    90% {
        color: #FF7F2A;
    }
}
.team-wrap:nth-of-type(2) > div {
	    flex-wrap: wrap;
}

#footer-navigation a {
    text-transform: uppercase;
}

@media(max-width: 991px) {
    .news-section .img-wrap {
        margin-bottom: 10px;
    }
}

.site-footer h3 {
    text-transform: uppercase;
}

.uppercase {
    text-transform: uppercase;
}
