/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 17px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

ul {
    padding: 0;
    margin: 0;
}

a,
button,
button:hover,
li,
li:hover,
a:hover,
.btn,
.btn:hover {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

.dflex {
    display: flex;
}

.align-center {
    align-items: center;
}

.jcenter {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
Preloader CSS
============================================================*/
/*.overflow {
    overflow: hidden;
}

body[data-gr-c-s-loaded='true'] {
    overflow: inherit;
}
*/
.spinner-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: #fff;
    overflow: hidden;
}

.spinner {
    background-color: #065e52;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 9999999;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0.0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

/*===========================================================
 Typed
 ==============/*

.typed_wrap {
    display: block;
    border: 4px solid #ecf0f1;
    width: 290px;
    height: auto;
    padding: 30px;

    /*centers it in the .banner*/
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

.typed_wrap h1 {
    display: inline;
}

/*Add custom cursor so it auto inherits font styles*/
.slide__text::after {
    content: '|';
    display: inline;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

/*Removes cursor that comes with typed.js*/
.typed-cursor {
    opacity: 0;
    display: none;
}

/*Custom cursor animation*/
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btns {
    display: block;
    width: 400px;
    margin: 0;
    padding: 30px 0 0 30px;
}

.btns a {
    display: inline-block;
    margin-left: 5px;
}

.btns a:first-child {
    margin-left: 0
}

.btn {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ecf0f1;
    text-decoration: none;
}

a .btn {
    cursor: pointer;
    border: 1.5px solid #ecf0f1;
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
    list-style-type: none;
    transition: all .3s;
}

.btn:hover {
    background: #ecf0f1;
    color: #34495e;
}

.slide__text {
  -webkit-transition: 2s ease-out;
  -o-transition: 2s ease-out;
  transition: 2s ease-out;
  position: relative;

  background: linear-gradient(to left, transparent 50%, #ffd000 50%) right;
  background-size: 300%;
}

.alreadytyped.slide__text {
    color: #fff;
    background-position: left;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 0;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Top Bar
===========================================================*/
.top-bar-area {
    background-color: #225f7d;
    padding: 7px 0;
}

.top-bar div.dflex {
    margin-right: -5px;
    justify-content: flex-end;
}

.top-bar li {
    list-style: none;
    float: left;
}

.top-bar a {
    padding: 0 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.search_form input::placeholder {
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
}

.maincontent .search_form input::placeholder {
    color: #5a6e80;
    font-weight: 700;
}

.search_form input {
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    line-height: 25px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #90afbe;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/

.header-area,
.panel-header {
    margin: 8px 0;
}

.header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*.menu ul:first-child {
    margin-right: -10px;
}*/

.menu ul li {
    list-style: none;
    display: inline-block;
    position: relative;
}

.menu ul li a {
    color: #225f7d;
    font-size: 16px;
    font-weight: 700;
    padding: 0 10px 5px;
}

.menu ul li:hover > a,
.menu ul li.current-menu-item > a,
.menu ul li.current-page-ancestor > a,
.menu ul li.current-menu-ancestor > a {
    color: #d25419;
}

.top-bar ul li:hover > a,
.top-bar ul li.current-menu-item > a,
.top-bar ul li.current-page-ancestor > a,
.top-bar ul li.current-menu-ancestor > a {
    text-decoration: underline !important;
}

.logo img {
    width: 200px;
}

/*===========================================================
 quality-development-area
============================================================*/
.quality-development-area {
    padding: 115px 0;
}

.title,
.maincontent h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    position: relative;
}

.border-style {
    position: absolute;
    top: 35px;
    left: -2px;
    z-index: -1;
}


.quality-development-area .border-style {
    /*width: 0 !important;*/
    left: -500%;
    -webkit-transition: 3s;
    -o-transition: 3s;
    transition: 3s;
}

.quality-development-area .border-style.triggeredAnimate {
    left: -2px;
}

.triggeredAnimate {
    /*animation-name: leftright;*/
    /*animation-duration: 4s;*/
}

.quality-development-area .border-style.animated {}

@keyframes leftright {
    from {
        width: 0 !important;
    }

    to {
        width: auto !important;
    }
}

.style {
    margin-top: 20px;
    margin-bottom: 30px;
}

a.btn,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern {
    position: relative;
    z-index: 10;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    padding: 0;
    min-width: 50px;
    padding: 10px 40px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    background-color: #ffd000;
    border: 0 !important;
    background-image: none !important;
	  text-align: center;
}

a.btn,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern.vc_btn3-icon-right,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern.vc_btn3-icon-right {
  padding-right: 60px;
}

a.btn,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern.vc_btn3-icon-left,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern.vc_btn3-icon-left {
  padding-left: 60px;
}

.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
  right: 35px;
}

.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
  left: 35px;
}

.quality-development-text p,
.maincontent p,
.maincontent ul,
.maincontent ol {
    margin-bottom: 30px;
    color: #5a6e80;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.quality-development-text h2 span,
.maincontent h2 strong {
    position: relative;
    -webkit-transition: 5s;
    -o-transition: 5s;
    transition: 5s;
    z-index: 2;
}


.quality-development-text h2 span:before,
.maincontent h2 strong:before {
    position: absolute;
    top: 35px;
    height: 10px;
    width: 0;
    content: "";
    z-index: -1;
    background: #ffd000;
    border-radius: 5px;
    -webkit-transition: 5s;
    -o-transition: 5s;
    transition: 5s;
}

.quality-development-text h2.triggeredAnimate span:before,
.maincontent .triggeredAnimate h2 strong::before,
.maincontent h2.triggeredAnimate strong::before {
    width: 100%;
}

/*===========================================================
aktuelles
============================================================*/

.common-title {
    text-align: center;
}

.aktuelles-area {
    padding-top: 62px;
    padding-bottom: 380px;
    background-color: rgba(255, 208, 0, 0.1);
    position: relative;
}

.left-bg-shape {
    position: absolute;
    top: -170px;
    left: -80px;

    margin-left: -25%;
    margin-right: -100%;
    z-index: -1;
}

.shape-right {
    position: absolute;
    right: -80px;
    top: 40px;

    margin-left: -100%;
    margin-right: -25%;
    z-index: -1;
}

.article-img .category-holder,
.aktuelles-thumb .category-holder {
  position: absolute;
  top: 15px;
  left: 15px;
}

.aktuelles-content > .category-holder {
  margin-top: 15px;
}

.tag, .tag:hover {
    display: inline-block;
    padding: 0 17px;
    line-height: 28px !important;
    border-radius: 25px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.dark-blue {
    background-color: #225f7d;

}

.lite-blue {
    background-color: #0097b6;
}

.aktuelles-thumb {
    position: relative;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 185px;
    background-position: center center;
    background-size: cover;
}

.date span,
.category-holder-mini a {
    color: #5a6e80;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    display: block;
    padding-bottom: 10px;
    margin: 0;
    display: block;
}

.category-holder-mini {
  margin-bottom: 10px;
}

.category-holder-mini a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: underline;
  font-size: 13px;
}

.content p,
.article-text p {
    margin-top: 12px;
    color: #5a6e80;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0 !important;
}

.content a,
.article-text h2 {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
}

.aktuelles-content {
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 10px 10px;
    background: #ffffff;
    padding: 20px 15px 30px 15px;
}

.aktuelles-slider {
    margin-top: 15px;
    margin-bottom: 30px;
}

.aktuelles-single {
    padding: 15px;
}

.aktuelles-area .btn {
    margin-top: 40px;
}

.aktuelles-slider .slick-arrow,
.veranstaltungskalender-slider .slick-arrow {
    position: absolute;
    top: -75px;
    z-index: 10;
    cursor: pointer;
}

.aktuelles-slider .slick-left,
.veranstaltungskalender-slider .slick-left {
    right: 72px;
}

.aktuelles-slider .slick-right,
.veranstaltungskalender-slider .slick-right {
    right: 0;
}

/* progress bar */
.slider-progress {
    width: 100%;
    height: 3px;
    background: #eee;
}

.slider-progress .progress {
    width: 0%;
    height: 5px;
    background: #ffd000;
}

/*===========================================================
 team-area
============================================================*/
.team-area {
    margin-top: -260px;
    margin-bottom: 130px;
}

.single-team {
    width: 100%;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
    background: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
}

.tem-top::before,
.single-team.single-card .tem-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 15px;
    content: "";
    background-color: #0097b6;
    z-index: 0;
    border-radius: 20px 20px 0 0;
}

.tem-top {
    position: relative;
    padding: 13px 20px 0 20px;
    border-radius: 20px 20px 0 0;

    gap: 30px;
    align-items: center;
}

.tem-top span {
    margin-top: 7px;
}

.tem-top span,
.tem-top img,
.tem-top .team-image {
    position: relative;
    z-index: 1;
}

.tem-top span a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin: 10px;
    white-space: nowrap;
}

.tem-top span a img {
    margin-right: 10px;
}

.tem-top span a+a {
    font-size: 12px;
}

.tem-top span a:hover {
  color: #fff;
}

.tem-bottom h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
}

.tem-bottom p {
    margin-top: 13px;
    margin-bottom: 0;
    color: #5a6e80;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.tem-bottom {
    padding: 13px 20px 35px 20px;
}

.team-area a.btn,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern {
    background-color: #0097b6;
}

/*===========================================================
 veranstaltungskalender-slider
============================================================*/
.veranstaltungskalender-area a.btn {
    margin-top: 30px;
}

.shape-right-area {
    overflow: hidden;
    position: relative;
}

.veranstaltungskalender-slider {
    margin-top: 20px;
    margin-bottom: 5px;
}

.top-left-date {
    text-align: center;
    background-color: #0097b6;
}

.top-left {
    position: relative;
}

.top-left-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 83px;
    height: 85px;
    border-radius: 20px 0 0 20px;
    z-index: 10;
}

.top-left-img {
    position: absolute;
    left: 40px;
    left: 83px;
    height: 100%;
    width: 166px;
    width: 95px;
    z-index: 1;
    border-radius: 20px;
    border-radius: 0 20px 20px 0;
    background-position: center center;
    background-size: cover;
    border: 1px solid #0097b6;
}

.single-veranstaltungskalender {
    /* max-width: 365px; */
    padding: 0 18px;
}

.top-left-date span {
    display: block;
}

.top-left-date {
    padding: 13px 5px;
}

.top-left-date span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

.top-left-date h3 {
    padding-bottom: 7px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 17px;
    padding-top: 7px;
}

.top-right span {
    color: #5a6e80;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 7px 0;
}

.top-right span img {
    margin-right: 8px;
}

.top-right span {
    display: flex;
}

.veranstaltungskalender-top {
    height: 85px;
}

.veranstaltungskalender-bottom p {
    margin-top: 5px;
    color: #5a6e80;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.veranstaltungskalender-bottom a {
    display: block;
    padding-top: 20px;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.top-left-date {
    position: relative;
}

.top-left {
    padding-top: 9px;
}

.top-left-date::before,
.top-left-date::after {
    position: absolute;
    content: "";
    top: -9px;
    width: 13px;
    height: 18px;
    background-image: url("../img/date-bar.svg");
}

.top-left-date::before {
    left: 17px;
}

.top-left-date::after {
    right: 17px;
}

/*===========================================================
 newsletter-area
============================================================*/
.newsletter p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

.newsletter h2 {
    text-align: left;
    color: #ffffff;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 35px;
}

.newsletter-title>div {
    text-align: center;
}

.newsletter {
    padding: 50px 50px 20px 50px;
    max-width: 960px;
    border-radius: 10px;
    border: 1px solid #707070;
    background-color: #225f7d;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-area {
    margin-top: 110px;
}

.newsletter-form {
    text-align: left;
}

.newsletter-form div {
    margin-bottom: 10px;
}

.newsletter-form div input {
    padding: 0 15px;
    width: 396px;
    line-height: 54px;
    border-radius: 10px;
    border: 1px solid #225f7d;
    background-color: #ffffff;
}

.newsletter-form div label {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    display: block;
    text-align: left;
}

.newsletter-form [type="radio"]:checked,
.newsletter-form [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.newsletter-form [type="radio"]:checked+label,
.newsletter-form [type="radio"]:not(:checked)+label,
.newsletter-form [type="radio"]:checked+span,
.newsletter-form [type="radio"]:not(:checked)+span {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.newsletter-form [type="radio"]:checked+label:before,
.newsletter-form [type="radio"]:not(:checked)+label:before,
.newsletter-form [type="radio"]:checked+span:before,
.newsletter-form [type="radio"]:not(:checked)+span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 100%;
    background: #fff;
}

.newsletter-form [type="radio"]:checked+label:after,
.newsletter-form [type="radio"]:not(:checked)+label:after,
.newsletter-form [type="radio"]:checked+span:after,
.newsletter-form [type="radio"]:not(:checked)+span:after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #225f7d;
    position: absolute;
    top: 8px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.newsletter-form [type="radio"]:not(:checked)+label:after,
.newsletter-form [type="radio"]:not(:checked)+span:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.newsletter-form [type="radio"]:checked+label:after,
.newsletter-form [type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.newsletter .style {
    margin-bottom: 15px;
}

a.btn:hover,
.newsletter button:hover,
.newsletter .wpcf7-submit:hover,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover,
.learn-more a:hover {
    color: #fff;
    background: #0097b6;
}

.team-area a.btn:hover,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:hover {
    background: #ffd000;
    color: #fff;
}

.newsletter .wpcf7-submit,
.newsletter button {
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    width: 168px;
    line-height: 54px;
    padding: 0;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    background-color: #ffd000;
}

.newsletter {
    position: relative;
}

.newsletter:before {
    -content: "Newsletter";
    opacity: 0.1;
    color: #ffffff;
    font-size: 161px;
    font-weight: 700;
    bottom: -80px;
    position: absolute;
    z-index: 0;
}

/*===========================================================
 Client
============================================================*/
.clients-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.clients-area {
    margin-top: 150px;
    padding-bottom: 50px;
}

.clients-slider .slick-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.clients-slider {
    position: relative;
}

.clients-slider .slick-right {
    right: 0;
}

.clients-slider .slick-left {
    left: 0;
}

.clients-slider img {
  max-height: 120px;
  margin: 0 auto;
}

.single-client.slick-slide img {
    margin: 0 auto;
    max-height: 115px;
}

.single-client {
    width: 33.33%;
    text-align: center;
}

.clients-slider {
    padding: 0 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/*===========================================================
 Footer
============================================================*/
.footer-area {
    background-color: #0097b6;
    padding-top: 100px;
    padding-bottom: 125px;
}

.single-footer {
    position: relative;
}

.single-footer .widgettitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    padding-left: 13px;
}

.single-footer a:hover {
    color: #ffd000;
}

.single-footer ul {
    margin-top: 28px;
    padding-left: 9px;
}

.single-footer ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

.single-footer ul li a span {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding-left: 20px;
}

.single-footer ul li {
    list-style: none;
}

.single-footer::before {
    position: absolute;
    width: 4px;
    height: 17px;
    border-radius: 25px;
    background-color: #ffd000;
    content: "";
    top: 5px;
    left: 0;
}

.single-footer:first-child::before {
    background-color: transparent;
}

.footer-right a,
.footer-left p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}

.footer-right li {
    margin-left: 20px;
    list-style: none;
}

.footer-bottom-area {
    padding: 24px 0;
    background-color: #225f7d;
}

.footer-right a:hover {
    color: #ffd000;
}

/*===========================================================
 Carousel
============================================================*/
.banner-area {
    position: relative;
}

.slider-nav .slick-slide,
.tp-tab {
    float: none;
}

.slider-nav-area,
.nav-dir-horizontal {
    position: absolute !important;
    bottom: 0 !important;
    width: 100%;
    left: 0 !important;
    max-width: 100% !important;
}

.slider-nav .slick-slide,
.tp-tab {
    /* background-color: rgba(255, 255, 255, .6); */
    padding: 12px 0;
    height: 68px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.slider-nav-area,
.nav-dir-horizontal,
.slider-nav .slick-slide.slick-current.slick-active,
.tp-tab.selected {
    background-color: rgba(255, 255, 255, .3) !important;
}

.slider-nav .slick-slide.slick-current.slick-active,
.tp-tab.selected {
    position: relative;
}

.slider-nav .slick-slide.slick-current:before,
.tp-tab.selected:before {
    position: absolute;
    content: "";
    z-index: 10;
    width: 100%;
    height: 5px;
    background-color: #0097b6;
    top: 0;
    left: 0;

}

.slider-nav .slick-slide h3,
.tp-tab-content .tp-tab-date {
    max-width: 230px;
    color: #225f7d;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    margin-left: auto;
    margin-right: auto;
}

.slider-nav .slick-track {
    display: flex;
}

.slider-nav .slick-slide {
    text-align: center;
}

.hero-single::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background-color: rgb(34, 95, 125, .49);
}

.hero-single {
    position: relative;
    height: 560px;
    background-size: cover;
}

.cd-headline.type i {
    font-style: initial;
}

.cd-headline {
    width: 700px;
    padding: 40px;
    display: inline-block;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .9);
    color: #225f7d;
    font-size: 40px;
    font-weight: 700;
}

.cd-headline .cd-words-wrapper {
    /* color: #fff; */
}

.cd-headline .cd-words-wrapper.selected {
    color: #fff;
}

.slider-text {
    position: relative;
    z-index: 10;
}

.slider-text a {}

.learn-more a {
    display: inline-block;
    margin-top: 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding: 15px 40px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    background-color: #ffd000;
}

.hero-single {
    padding-top: 150px;
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
    padding-top: 140px;
    padding-bottom: 100px;
}

.slideout-menu > .menu-section {
    height: 100%;
    overflow: auto;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-menu ul {
  padding: 0 20px;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    min-height: 100vh;

}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: #34495e;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: #fff;
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: .8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.menu ul li .sub-menu li {
    display: block;
}

.menu ul li .sub-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
}

.menu-item-has-children a {
    position: relative;
}

.menu-item-has-children>a:hover::after {
    color: #d25419;
}

.menu-item-has-children > a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}


/*Responsive Menu*/
@media (min-width: 992px) {

    .menu-item-has-children:hover .sub-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 100px;
    }

    .sub-menu {
        padding-top: 0;
        display: block;
    }

    .menu ul li .sub-menu li a {
        padding: 10px 0;
        white-space: normal;
    }

    .sub-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;

    }

    .menu ul li a {
        color: #fff;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .menu ul li {
      width: 100%;
      float: left;
    }

    /*Menu Activation*/
    .panel-header {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        -webkit-box-shadow: 0 0 0 #ddd;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
        z-index: 100000;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1199px) {}

@media (max-width: 991px) {
    .slider-nav .slick-slide h3,
    .tp-tab-content .tp-tab-date {
        font-size: 15px;
    }

    .cd-headline {
        width: 630px;
        padding: 24px;
        font-size: 34px;
    }

    .title,
    .maincontent h2 {
        font-size: 33px;

    }

    .teams {
        flex-wrap: wrap;
    }

    .single-team {
        width: 100% !important;
        margin-bottom: 35px;
    }

    .footer-area {
        padding: 100px 0;
    }

    .single-veranstaltungskalender {
        padding: 0 10px;
    }

    .footer,
    .newsletter {
        flex-wrap: wrap;
    }

    .single-footer ul {
        padding-left: 0;
    }

    .newsletter-title,
    .newsletter-form {
        width: 100%;
    }

    .single-footer {
        width: 50%;
        margin-bottom: 25px;
    }

    .newsletter-form {
        margin-top: 20px;
    }

    .newsletter:before {
        font-size: 111px;
        bottom: -40px;
    }

    .newsletter-title p,
    .newsletter h2 {
        text-align: center;
    }
}


@media (max-width: 767px) {
    .quality-development-img {
        margin-bottom: 25px;
    }

    .flex-row-reverse {
        flex-direction: column-reverse;
    }

    .aktuelles-slider .slick-arrow,
    .veranstaltungskalender-slider .slick-arrow {
        top: -60px;
    }

    .newsletter:before {
        font-size: 81px;
        bottom: -30px;
    }

    .cd-headline {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-bottom {
        flex-wrap: wrap;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .single-footer {
        width: 100%;
    }

    .footer-right li {
        margin-left: 0;
        margin-right: 15px;
    }

    .newsletter-form div input {
        width: 100%;
    }

    .newsletter:before {
        font-size: 61px;
        bottom: -18px;
    }

    .slider-nav .slick-track,
    .slider-nav .slick-slide,
    .tp-tab {
        height: auto;
        display: block;
    }

    .slider-nav .slick-slide,
    .tp-tab {
        width: 100% !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, .6);
    }

    .hero-single {
        padding-top: 80px;
    }

    .cd-headline {
        font-size: 22px;
    }

    .title,
    .maincontent h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .maincontent h2 br {
      display: none;
    }

    .newsletter h2 {
        font-size: 48px;
    }

    .top-bar a {
        padding: 0 10px;
        font-size: 11px;
        font-weight: 700;
    }

    .top-bar .search_form input {
      width: 85px;
    }

    .top-bar .search_form button img {
      width: 15px;
    }

    body {
        overflow-x: hidden;
    }

    .newsletter p {
        font-size: 16px;
    }

    .newsletter {
        padding: 10px 10px 20px 10px;
    }

}

@media (max-width: 399px) {
    .veranstaltungskalender-top.dflex {
        display: block;
    }

    .veranstaltungskalender-bottom {
        margin-top: 70px !important;
    }

    .veranstaltungskalender-bottom.extraInfoPoint {
        margin-top: 120px !important;
    }

    .newsletter:before {
        font-size: 50px;
    }

    .tem-top.dflex {
        display: block;
    }

    .tem-top::before,
    .single-team.single-card .tem-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        bottom: -15px;
        content: "";
        background-color: #0097b6;
        z-index: 0;
    }


}
