﻿

.welcome_screen_image {
    width: 100%;
    /*background-image: url(../Images/welcome_image_verifone.png);
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    height: 70vh;
    position: relative;
}

.silder_wrapper {
    width: 100%;
    height: 100%;
}

.slider_item {
    
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.slick-track, .slick-list {
    height: 100%;
}

.welcome_screen_image_wrapper {
    background-color: rgba(87, 145, 191, .5); 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
}

h1 {
    color: white;
    position: absolute;
    left: 43%;
    top: 18vh;
}


.welcome_screen_image_wrapper p {
    position: absolute;
    left: 48%;
    top: 28vh;
    width: 50%;
    font-weight: 600;
}

.partners {
    position: relative;
    width: 100%;
    height: 60px;
    display:block;
    overflow:hidden;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

    .partners i {
        position: absolute;
        font-size: 3.5em;
    }
    .partners i:first-child {
        top: -12px;
        left: 7px;
    }
    .partners i:last-child {
        top: -12px;
        right: 7px;
    }



.partner_wrapper{
    left: 0px;
    position: relative;
    /*width: 0px  wird berechnet werden 9 * Breite der logo_wrapper */
}

.partners .logo_wrapper {
    /*width: auto;
    height: auto;*/
    text-align: center;
    
    margin-left: 40px;
    margin-right: 40px;
    display: inline-block;
    float: left;
}

.partners .logo_wrapper img {
    height: 40px;
    width: auto;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: .5;
}

.partners .logo_wrapper img:hover {
    -webkit-filter: inherit;
    filter: inherit;
    opacity: 1;
    cursor:pointer;
}

.teaser_wrapper {
    display: flex;
    justify-content: space-around;
    
}

.teaser_wrapper .teaser {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: rgba(87, 145, 191, 1);
    display: inline-block;
    margin: 10px;
    padding: 10px;
    overflow:hidden;
}

.teaser_wrapper .teaser:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 1px 15px 5px rgba(0,0,0,0.45); 
    box-shadow: 0px 1px 15px 5px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s ease-in-out;
}

.teaser_wrapper .teaser h2 {
    font-size: 1.5rem;
    letter-spacing: .1em;
    font-weight: 600;
    color: white;
}

.teaser_wrapper .teaser p {
    font-size: .9em;
    font-weight: 300;
    position: relative;
    color: black;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
    color:white;
}

.teaser_wrapper .teaser i {
    font-size: 15rem;
    color: darkblue;
    opacity: .1;
    position: absolute;
    top: -35px;
    left: -23px;
}

.teaser_wrapper .teaser a
{   
    color: white;
    text-decoration: none;
    position: absolute;
    bottom: 15px;
    right: 25px;
    font-style: italic;
    font-size: .8rem;
}

.verband {
    margin-bottom: 5rem;
    /*background-color: rgba(87, 145, 191, 1);*/
}

.main_wrapper {
    column-count: 2;
}


.verband h2 {
    color: black;
}

.verband h3 {
    color: black;
    margin-top: 0px;

}

.verband p {
    color: black;
    margin-bottom: 15px;
}


.notFound_wrapper {
    position: absolute;
    background-color: aliceblue;
    padding: 10px;
    border: solid 1px black;
    border-radius: 10px;
    top: 20%;
    left: 35%;
    width: 30%;

    -webkit-box-shadow: 5px 5px 10px 5px rgba(0,0,0,0.76); 
    box-shadow: 5px 5px 10px 5px rgba(0,0,0,0.76);
}
.notFound_wrapper h2 , .notFound_wrapper p {
    color: #5691BF;
}

.notFound_wrapper .close_btn {
    position: absolute;
    right: -13px;
    font-weight: 600;
    color: #5691BF;
    padding: 5px;
    /* opacity: .5; */
    border: solid 1px black;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    height: 20px;
    line-height: 22px;
    top: -14px;
    background-color: aliceblue;
    color: gray;
}

.notFound_wrapper .close_btn:hover {
    color: black;
    cursor:pointer;
}

/* Smartphones (portrait and landscape) ----------- */
@media screen and (min-width: 360px) and (max-width: 800px) {


    .welcome_screen_image {
        background-position-x: 0px;
    }

    .welcome_screen_image_wrapper {
        background-color: rgba(87, 145, 191, 0.5);
    }

    h1 {
        left: 0px;
        position:relative;
        top: 10vh;
    }

    .welcome_screen_image_wrapper p {
    position: relative;
    left: 5%;
    top: 100px;
    width: 90%;
    text-align: center;
    display: block;
    }

    .teaser_wrapper {
    display: block;
    justify-content: inherit;
    
    }

    .teaser_wrapper .teaser {
        width: 90%;
        height: auto;
    }

    .verband_wrapper {
        column-count: auto;
    }

    .main_wrapper {
        column-count:inherit;
    }
}