.container {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400 !important;
}

.logo-text {
    font-size: 18pt;
}

.headline {
	font-size: 35pt;
    color: #f64c8e;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #013c3c;
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #013c3c;
}

.sub-headline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700 !important;
	color: #013c3c;
	font-size: 20pt;
    line-height: 1.2;
}

.big-img {
	width: 100%;
}

a {
    color: #016767 !important;
}

a:hover {
    color: #009f9e !important;
}

a.btn-primary {
    color: white !important;
}

a.btn-outline-primary:hover {
    color: white !important;
}

.btn-primary:hover {
    border: 2px solid #009f9e !important;
    background-color: #009f9e !important;
    color: white !important;
}

.btn-primary {
    border: 2px solid #016767 !important;
    background-color: #016767 !important;
}

.btn-outline-primary {
    color: #013c3c !important;
    border: 2px solid #016767 !important;
}

.btn-outline-primary:hover {
    border-color: #009f9e !important;
    background-color: #009f9e !important;
}

input {
	height: 58px;
	background-color: #F9F9F9 !important;
}

textarea {
	background-color: #F9F9F9 !important;
}

.form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(0%, 40%, 40%,.25) !important;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 2rem 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex; /* Helps maintain proper scaling */
    justify-content: center;
}

.responsive-video {
    width: 100%;
    height: auto; /* Keeps original aspect ratio */
    display: block;
    border: none;
    border-radius: 8px;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}