body {
    background-color: white;
    font-family: nb_international_pro, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 30px 0;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo img {
    height: 100px;
    margin-left: 10px;
}

nav {
    margin-top: 20px;
    text-align: right;
    margin-right: 300px;
}

nav a {
    display: inline-block;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    margin: 5px;
    background-color: transparent;
    transition: font-size 0.2s;
    font-weight: bold;
}

nav a:hover {
    font-size: 18px;
    transition: font-size 0.2s;
}

.contact-main {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(AdventHealth_PalmCoast_003_medium.jpg) no-repeat center center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-size: 48px;
    text-shadow: 2px 2px 0px #111111;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    background-color: #d22b2b;
}

.contact-form-class {
    flex: 1;
    max-width: 45%;
    padding: 20px;
    background-color: #d22b2b;
}

.contact-form {
    width: 100%;
    padding: 50px;
    border: 1px solid #111111;
    background-color: white;
    border-radius: 5px;
}

.contact-form h2 {
    text-align: center;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #111111;
    border-radius: 5px;
}

.map-main {
    flex: 1;
    max-width: 45%;
    padding: 20px;
}

.map-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	border: 1px solid #111111;
}


.map-container h1 {
    color: black;
    font-size: 50px;
}

iframe {
    width: 100%;
    height: 450px;
}

footer {
    background-color: white;
    padding: 30px;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.footer-logo img {
    height: 80px;
    margin-left: 10px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav a {
    display: inline-block;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    margin: 5px;
    background-color: transparent;
    border: transparent;
    transition: font-size 0.2s;
    font-weight: bold;
}

.footer-nav a:hover {
    font-size: 18px;
    transition: font-size 0.2s;
}

.info p {
    text-align: right;
    font-weight: bold;
}

footer p {
    text-align: center;
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        margin: 0 auto;
        height: 60px;
    }

    nav {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }
	
	.contact-container {
		flex-direction: column;
		padding: 20px;
	}
	
	.contact-form-class, .map-main {
		max-width: 100%;
		width: 100%;
		padding: 10px;
		margin-bottom: 20px;
		box-sizing: border-box;
	}
	
	.contact-form {
		width: 77%;
	}
	
	iframe {
		width: 100%;
		height: 300px;
	}
	
    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }
}