﻿@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.spinner {
    -webkit-animation: load8 1s infinite linear;
    animation: load8 1s infinite linear
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.spinner {
    -webkit-animation: load8 1s infinite linear;
    animation: load8 1s infinite linear
}

.loader {
    border: 25px solid #f3f3f3;
    border-radius: 50%;
    border-bottom: 25px solid #ec1b8e;
    width: 200px;
    height: 200px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

.loadermedium {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-bottom: 12px solid #ec1b8e;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}


.loadersmall {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-bottom: 2px solid #ec1b8e;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;

}

.iframe-container iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

.hero-image {
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff
}

.hero-text button {
	border: 1px solid #000;
	outline: 0;
	display: inline-block;
	padding: 10px 25px;
	color: #000;
	background-color: #fff;
	text-align: center;
	cursor: pointer
}

.hero-text button:hover {
	background-color: #555;
	color: #fff
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.iframe-container {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		height: 0;
		overflow: hidden;
		padding-bottom: 20vh;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 768px) {
	.iframe-container {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		height: 0;
		overflow: hidden;
		padding-bottom: 25vh;
	}}

	
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.iframe-container {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		height: 0;
		overflow: hidden;
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...} {
  .iframe-container {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		height: 0;
		overflow: hidden;
		padding-bottom: 20vh;
	}
}
