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

body {
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    overflow-x: hidden !important;
}

ul {
    padding: 0;
    margin: 0;
}

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

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

*:active,
*:focus {
    outline: none;
    border: 0;
}

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;
}

/*===========================================================
 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
============================================================*/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 99999999;
}

#preloader-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading-msg {
    width: 100%;
    font-size: 0.75em;
    color: #555;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #2489CE;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: spin 1s infinite ease;
    animation: spin 1s infinite ease;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

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

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    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;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 20px 0;
}

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

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

.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: #000;
}

.logo img {
    width: 150px;
}

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

.panel-header {
    display: none;
}

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

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

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

.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;
    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) {
    transform: translateY(13px) rotate(45deg);
}

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

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

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

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

.menu-item-has-children:hover > a::after,
.menu-item-has-children.current-menu-item > a::after,
.menu-item-has-children.current-page-ancestor > a::after,
.menu-item-has-children.current-menu-ancestor > a::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;
}

/*===========================================================
 Header
===========================================================*/
.logo {
    max-width: 125px;
}

.menu-right a img {
    margin-right: 4px;
}

.menu-right a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #fcd201;
}

.menu-right a:hover {
    opacity: 0.8;
}

/*===========================================================
 Hero
===========================================================*/
.hero-area {
    background-size: cover;
    background-position: center center;
}

.hero-area .swiper-slide>div {
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
	z-index: 1;
}

.hero-area .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-area .swiper-wrapper {
    height: 505px;

}

.slider-text-hero h2 {
    text-shadow: 0 4px 4px rgba(255, 255, 255, 0.15);
    font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.2px;
    color: #fff;
    margin-bottom: 30px;
}

.slider-text-hero h3 {
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.52;
    letter-spacing: 0.5px;
    color: #fff;
}

.slider-text-hero h2 + h3:not(:last-child) {
    margin-bottom: 50px;
}

.slider-text-hero h2 + .justify-content-evenly-wb {
    margin-bottom: 50px;
}

.aktuell-btn a,
.slider-text-hero a,
a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-grey{
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #fcd201;
    text-transform: uppercase;
    transition: .3s;
}

.slider-text-hero strong {
    font-weight: 600;
    color: #fff;
    font-size: 35px;
}

.slider-text-hero a:hover {
    color: #fcd201;
    background: #000;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #fcd201;
}

/* .myHeroSwiper .swiper-slide img{
    width: 100%;
} */
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.slider-nav-area {
    position: absolute;
    width: 100%;
    top: 50%;
}

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
}

.menu a {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.menu .active a {
    color: #000;
}

/*===========================================================
Nachrichten
===========================================================*/
.nachrichten-area {
    padding: 40px 0 100px 0;
    background-color: #000;
}

.slider-text-nachrichten img {
    width: 100%;
}

.nachrichtenSlider {
    max-width: 1270px;
}

.slider-text-nachrichten {
    padding-left: 10px;
    padding-right: 10px;
}

.slider-text-nachrichten a {
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: solid 1px #fff;
}

.slider-text-nachrichten a:hover {
    color: #000;
    background: #fcd201;
    border-color: #fcd201;
}

.slider-text-nachrichten img {
    border-radius: 10px;
    z-index: 1;
    position: relative;
}

.slider-text-nachrichten span {
    position: relative;
    padding: 15px 20px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-top-left-radius: 20px;
    display: inline-block;
    border-bottom-right-radius: 20px;
    margin-left: -10px;
    margin-bottom: -20px;
    z-index: 10;
}

.nachrichten-title h3 {
    text-align: center;
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    margin-bottom: 65px;
}

.wpb_text_column h1,
.wpb_text_column h2 {
    padding-left: 15px;
}

.wpb_text_column h1::before,
.wpb_text_column h2::before {
    position: relative;
    display: inline-block;
    left: -15px;
    width: 38px;
    height: 12px;
    background-color: #fcd201;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.wpb_text_column h1:not(:last-child),
.wpb_text_column h2:not(:last-child),
.wpb_text_column h3:not(:last-child),
.wpb_text_column h4:not(:last-child),
.wpb_text_column h5:not(:last-child),
.wpb_text_column h6:not(:last-child),
.wpb_text_column p:not(:last-child) {
    margin-bottom: 10px;
}

.wpb_text_column h1,
.wpb_text_column h2 {
    position: relative;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.wpb_text_column h1 {
    font-size: 35px;
    font-weight: 600;
}

.wpb_text_column h2 {
    font-size: 30px;
    font-weight: 600;
}

.wpb_text_column h3 {
    font-size: 25px;
    font-weight: 600;
}

/*===========================================================
aktuell-area
===========================================================*/
.aktuell-area {
    padding: 80px 0;
    background-image: url(../img/bg-2.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.aktuell-content {
    padding-left: 40px;
}

.aktuell-content-inner {
    padding: 20px;
    top: -70px;
    position: relative;
    z-index: 10;
    border-radius: 7px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    background-color: #fbfbfb;
    min-height: 200px;
}

.single-aktuell>img {
    width: 100%;
}

.aktuell-content-inner h3 {
    font-size: 25px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 15px;
}

.aktuell-content-inner ul {
    padding-left: 20px;
}

.aktuell-content-inner li {
/*     color: #fcd201; */
	color: #585858;
    margin-bottom: 10px;
	font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
}

.aktuell-content-inner li span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #585858;
}

.aktuell-content-inner li strong {
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #000;
}

.aktuell-content-inner li:last-child {
    margin-bottom: 0;
}

/*===========================================================
machen
===========================================================*/
.machen-area {
    /*padding-bottom: 160px;*/
}

.machen {
    background-image: url('../img/bg.png');
    background-size: cover;
    border-radius: 10px;

}

.machen-text h3 {
    font-size: 50px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    color: #fff;
}

.machen-text p {
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}

.machen-text {
    max-width: 620px;
    padding: 80px 40px;
}

.machen-text a {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    background-color: #000;
    line-height: 54px;
    padding: 0 20px;
    text-decoration: none;
}

.machen-img {
    bottom: -70px;
    right: 30px;
}

.machen-img img {
    z-index: 10;
    position: relative;
}

.square {
    position: absolute;

    width: 80px;
    height: 80px;
    border-radius: 7px;
    background-color: #fcd201;
    z-index: 1;
}


.machen-img .square {
    bottom: 0px;
    right: 0;
}

/*===========================================================
Uber Uns
===========================================================*/
.uber-uns-area {
    background-color: #f6f4ed;
    padding-top: 210px;
    padding-bottom: 100px;
}

.uber-uns {
    max-width: 520px;
}

.uber-uns-img {
    padding: 40px;
    z-index: 2;
}

.square-smal {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 7px;
    background-color: #fcd201;
    z-index: -1;
}

.uber-uns-img .square {
    top: 0;
    right: 0;
}

.uber-uns-img .square-smal {
    bottom: 10px;
    left: 10px;
}

.uber-uns h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.uber-uns p {
    font-size: 16px;
    line-height: 1.56;
    color: #000;
}

/*===========================================================
 Footer
===========================================================*/
.footer-area {
    background: #000;
    padding-top: 115px;
    padding-bottom: 30px;
}

.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
  width: 250px;
}

.footer-left p {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    margin-top: 20px;
}

.footer-mdl {
    text-align: center;
    width: calc(100% - 500px);
}

.footer-mdl p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
}

.footer-left address {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.footer-right {
  width: 250px;
}

.footer-right h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

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

.footer-right ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 4px 0;
    display: inline-block;
}

.footer-right ul li a:hover {
    color: #fcd201;
}

.footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
}

.footer-btm p {
    color: #fff;
    font-size: 14px;
    line-height: 1.43;
}

.footer-btm ul li {
	display: inline-block;
}

.footer-btm a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 1.43;
    display: inline-block;
    margin-left: 7px;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .menu-item-has-children:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .hero-area .swiper-slide>div {
        max-width: 100%;
    }

    .header-area {
        display: none;
    }

    .mobile-logo {
        text-align: right;
		width: 75px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    li .dropdown-menu {
        width: 100%;
        background-color: transparent !important;
        background-clip: padding-box;
        border: none !important;
        position: unset;
        top: unset !important;
        box-shadow: none !important;
        min-width: 0 !important;
        padding-right: 0 !important;
        padding-left: 10px !important;
    }

    .menu-item-has-children:hover > a::after, .menu-item-has-children.current-menu-item > a::after, .menu-item-has-children.current-page-ancestor > a::after, .menu-item-has-children.current-menu-ancestor > a::after {
        color: #000;
    }

    .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 {
      background: #fff !important;
      color: #000 !important;
    }

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

    .menu ul li {
        display: block;

    }

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

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .menu-item-has-children>a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

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

        position: fixed;
        width: 100%;
        z-index: 20;
    }

    .maincontent {
        padding-top: 63px;
    }
}

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

@media (max-width: 1399px) {
    .machen-text {
        max-width: 537px;
        padding: 80px 40px;
    }

    .machen-text p {
        font-size: 20px;
    }

    .aktuell-content-inner {
        min-height: 225px;
    }
}

@media (max-width: 1199px) {
    .slider-text-hero h3 {
        padding: 0 10px;
    }

    .machen-img {
        bottom: -70px;
        right: 30px;
        max-width: 50%;
    }

    .machen-text h3 {
        font-size: 45px;
    }

    .machen-text p {
        font-size: 18px;
    }

    .machen-text {
        max-width: 477px;
        padding: 80px 40px;
    }
}

@media (max-width: 991px) {
    .uber-uns {
        max-width: 100%;
        margin-top: 30px;
    }

    .machen-text {
        max-width: 100%;
        padding: 50px 40px;
        padding-bottom: 100px;
    }

    .machen-img {
        bottom: -113px;
        right: 30px;
        max-width: 50%;
    }

    .slider-text-hero h3 {
        padding: 0 50px;
    }
}

@media (max-width: 767px) {
    .machen-img {
        bottom: -130px;
        right: 0;
        max-width: 100%;
    }

    .machen-text {
        padding-bottom: 300px;
    }

    .slider-text-hero h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .slider-text-hero h3 {
        font-size: 23px;
        line-height: 1.52;
        letter-spacing: 0.5px;
        color: #fff;
        margin-bottom: 40px;
        padding: 0 70px;
    }

    .aktuell-content-inner h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .aktuell-content {
        padding-left: 15px;
    }

    .footer-btm {
        padding-top: 65px;
    }

    .footer-area {
        padding-top: 85px;
    }

    .uber-uns-area {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .machen-text h3 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-area {
        padding-top: 60px;
    }

    .footer-btm {
        padding-top: 50px;
    }

    .footer-mdl {
        margin-bottom: 30px;
    }

    .slider-text-hero h2 {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .slider-text-hero h2 {
        font-size: 33px;
        margin-bottom: 5px;
    }
	
	.slider-text-hero .d-flex {
		display: block !important;
		margin-top: 50px;
	}
	
	.justify-content-evenly-wb > *:not(:last-child):after {
		content: none !important;
	}
	
	.slider-text-hero strong {
		display: block;
		margin-bottom: 10px;
	}

    .slider-text-hero h3 {
        font-size: 20px;
        padding: 0;
    }

    .nachrichten-title h3 {
        margin-bottom: 45px;
    }

    .nachrichten-area {
        padding: 50px 0 60px 0;
    }

    .aktuell-content-inner {
        min-height: auto;
    }

    .footer-mdl p {
        margin-bottom: 20px;
    }

    .uber-uns-area {
        padding-top: 180px;
        padding-bottom: 60px;
    }

    .square {
        width: 60px;
        height: 60px;
    }

    .uber-uns-img {
        padding: 20px;
        z-index: 2;
    }

    .uber-uns-img .square-smal {
        bottom: 0px;
        left: 0px;
    }

    .square-smal {
        width: 50px;
        height: 50px;
    }

    .machen-text h3 {
        font-size: 35px;
    }

    .machen-img {
        bottom: -100px;
        position: relative !important;
    }

    .machen-text {
        max-width: 100%;
        padding: 40px 25px;
        margin-bottom: -100px;
    }

    .machen-text a {
        font-size: 14px;
    }

    .footer-btm {
        flex-direction: column-reverse;
    }

    .hero-area .swiper-button-prev,
    .hero-area .swiper-rtl .swiper-button-next,
    .hero-area .swiper-button-next,
    .hero-area .swiper-button-prev{
    display: none;
    }
    .slider-text-hero h3{
        font-size: 16px;
    }
    .slider-text-hero strong{
        font-size: 20px;
    }

}
