/* ../fonts */
@font-face {
    font-family: 'Sansa Pro';
    src: url('../fonts/SansaPro-Light.woff2') format('woff2'),
        url('../fonts/SansaPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansa Prol';
    src: url('../fonts/SansaPro-Normal.woff2') format('woff2'),
        url('../fonts/SansaPro-Normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansa Pro';
    src: url('../fonts/SansaPro-Bold.woff2') format('woff2'),
        url('../fonts/SansaPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansa Pro';
    src: url('../fonts/SansaPro-SemiBold.woff2') format('woff2'),
        url('../fonts/SansaPro-SemiBold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansa Pro';
    src: url('../fonts/SansaPro-NormalItalic.woff2') format('woff2'),
        url('../fonts/SansaPro-NormalItalic.woff') format('woff');
    font-style: italic;
    font-display: swap;
}


/* Landingspage */
html,
body {
    height: 100%;
    font-family: 'Sansa Pro';
}

.header {
    padding: 60px;
    color: #005B93;
    font-size: 40px;
}
h1 {
    font-weight: 700;
}
.center {
    padding-left: 20vw;
    padding-right: 20vw;
}
.footer {
    padding: 25px;
}
.image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
}
.videolink {
    display: block;
    position: relative;
}
.imagetooltip {
    position: absolute;
    background-color: #005B93;
    padding: 15px 10px;
    color: #fff;
    max-width: 240px;
    margin-left: -120px;
    left: 50%;
    top: 8%;
    border-radius: 15px;
    font-size: 22px;
    line-height: 25px;
}
.imagetooltip::after {
    content: '';
    width: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -20px;
    margin-top: -2px;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 30px solid #005B93;
}
.play-btn {
    max-width: 22px;
    margin: 10px auto 0;
    display: block;
}


/* Video */


/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 7px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(255, 255, 255);
    /* Fallback color */
    background-color: rgba(255, 255, 255, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    border-radius: 0;
    padding: 0;
    width: 1600px;
    box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
video {
    max-width: 1600px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: #b40c0c;
    float: right;
    font-size: 60px;
    line-height: 50px;
    height: 42px;
}

.close:hover,
.close:focus {
    color: #005B93;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    height: 30px;
    background-color: white;
    color: white;
}

.modal-body {
    padding: 6px 6px 0;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #004F9E;
    color: white;
}


/* Animation */
.animate-float {
    transform: translatey(0px);
	animation: float 4s ease-in-out infinite;
    -webkit-animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
}
.animate-float2 {
    transform: translatey(0px);
	animation: float 4s ease-in-out infinite,
    bounce-4 1s normal forwards ease-in-out;
    /* -webkit-animation: float 4s ease-in-out infinite; */
    filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.3));
    animation-delay: 0.15s;
}
.bounce-in {
    animation: bounce-in 2s ease;
}

@keyframes float {
	0% {
        filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
		transform: translatey(0px);
	}
	50% {
        filter: drop-shadow(0 25px 15px rgba(0, 0, 0, 0.5));
		transform: translatey(-30px);
	}
	100% {
        filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
		transform: translatey(0px);
	}
}

@keyframes float2 {
	0% {
        filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.3));
		transform: translatey(0px);
	}
	50% {
        filter: drop-shadow(0 25px 10px rgba(0, 0, 0, 0.5));
		transform: translatey(-30px);
	}
	100% {
        filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.3));
		transform: translatey(0px);
	}
}



@keyframes bounce-in {
0% {
    opacity: 0;
    transform: scale(.3);
}
50% {
    opacity: 0;
    transform: scale(.3);
}
70% {
    opacity: 1;
    transform: scale(1.05);
}
80% { transform: scale(.9); }
100% { transform: scale(1); }
}