html {
    min-height: 100%;
}

body {
    height: 100%;
    overflow: hidden;
}

.Endis {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.Container {
    width: 700px;
    height: 500px;
    position: absolute;
    box-shadow: 0 0 5vmin rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
}

.Container img {
    width: 150px;
    height: 150px;
}

.LogoContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 380px;
}

.LogoContainer span {
    font-family: 'Source Sans Pro', sans-serif;
    margin-top: 10px;
    font-size: 33px;
    font-weight: 600;
    margin-right: 7px;
    color: gray;
}
.LogoContainer p{
    font-family: 'Quicksand', sans-serif;
    font-size: 21px;
    
}

.ContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
 
    background-color: #006699;
}

.ContentContainer a {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: white;
}

.ContentContainer span {
    font-family: 'Quicksand', sans-serif;
    font-size: 25px;
    color: #1E1E1E;
}
.TelContainer a
{
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: black;
    text-decoration: none;
 
}

.slideshow {
    list-style: none;
    z-index: 1;
}

.slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: imageAnimation 24s linear infinite 0s;
    -moz-animation: imageAnimation 24s linear infinite 0s;
    animation: imageAnimation 24s linear infinite 0s;
}

.slideshow li h3 {
    position: absolute;
    text-align: center;
    z-index: 2;
    bottom: 150px;
    left: 0;
    right: 0;
    opacity: 0;
    font-size: 4.0625em;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    color: #fff;
    -webkit-animation: titleAnimation 24s linear 1 0s;
    -moz-animation: titleAnimation 24s linear 1 0s;
    animation: titleAnimation 24s linear 1 0s;
}

@media only screen and (min-width: 768px) {
    .slideshow li h3 {
        bottom: 30px;
        font-size: 8.125em;
    }
}

@media only screen and (min-width: 1024px) {
    .slideshow li h3 {
        font-size: 10.9375em;
    }
}

.slideshow li:nth-child(1) span {
    background-image: url(1.jpg);
}

.slideshow li:nth-child(2) span {
    background-image: url(2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    animation-delay: 6s;
}

.slideshow li:nth-child(3) span {
    background-image: url(3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    animation-delay: 12s;
}

.slideshow li:nth-child(4) span {
    background-image: url(4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    animation-delay: 18s;
}

@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
    }
    12.5% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes imageAnimation {
    0% {
        opacity: 0;
        -moz-animation-timing-function: ease-in;
    }
    12.5% {
        opacity: 1;
        -moz-animation-timing-function: ease-out;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        -moz-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    12.5% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        -moz-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes titleAnimation {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes titleAnimation {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes titleAnimation {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.no-cssanimations .slideshow li span {
    opacity: 1;
}

@media only screen and (max-width: 960px) {
    .Container {
        width: 300px;
        height: 95%;
        position: absolute;
        box-shadow: 0 0 5vmin rgba(0, 0, 0, 0.25);
        background-color: rgba(255, 255, 255, 0.65);
        border-radius: 10px;
    }
    .ContentContainer {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    
    }
    .ContentContainer p {
        font-family: 'Quicksand', sans-serif;
        font-size: 16px;
        text-decoration: none;
        color: #1E1E1E;
        padding-left: 15px;
    }
    .ContentContainer span {
        font-family: 'Quicksand', sans-serif;
        font-size: 22px;
        color: #1E1E1E;
    }
    body {
        background-image: radial-gradient(#ffffff, #006699);
    }
    .slideshow
    {
        display: none;
    }
    .LogoContainer span {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 28px;
        color: gray;
    }
    .LogoContainer p {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 17px;
        color: black;
    }
    .LogoContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 300px;
    }
    .TelContainer
    {
        margin-top: 20px;
    }
    .TelContainer a
    {
      
        font-size: 20px;

     
    }

    
}