/********** GLOBAL STYLES **********/
html {
	font-family: 'Poppins', sans-serif;
	font-size: 10px;
	scroll-behavior: smooth;
}

body {
	width: 100%;
	margin: 0;
}

h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 36px;
	color: #414141;
	font-style: normal;
	text-transform: uppercase;
	line-height: 36px;
}

h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 4vw;
	color: var(--white);
	font-style: normal;
	text-transform: uppercase;
	line-height: 4.2vw;
	text-shadow: 1px 1px 1px #000;
}

p {
	font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    line-height: 24px;
    font-style: normal;
	margin: 0;
}

.teal-text {
	color: var(--teal);
}

section {
	padding: 80px 0;
}

container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 40px;
}


/********** VARIABLES **********/
:root {
	--teal: #69c8c9;
	--black: #000000;
	--white: #FFFFFF;
}

/********** HEADER SECTION **********/
header {
	width: 100%;
	height: 60px;
	padding: 20px 0;
	border-top-width: 5px;
    border-top-style: solid;
    border-top-color: var(--teal);
	box-shadow: 0px 1px 5px #B0B0B0;
	position: relative;
}

.logo {
	height: 43px;
	margin-right: 20px;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 30px;
}

nav ul {
	display: flex;
	flex-grow: 1;
	justify-content: flex-end;
}

nav ul li {
	list-style: none;
	padding: 0 0px;
}

nav ul li a {
	font-size: 18px;
	text-decoration: none;
	color: #000000;
	padding: 43px 30px;
	transition: background 0.2s ease-in;
}

nav ul li a:hover {
	color: #FFFFFF;
	background-color: var(--teal);
}

/********** INTRO STYLES **********/
.hero {
    background-image: url(images/sf-cover.jpg);
	background-size: cover;
}

.hero-text {
	margin: auto;
	width: 60%;
}

/********** CONTAINER STYLES **********/

.section-white {
	background-color: var(--white);
	padding-bottom: 160px;
	overflow: hidden;
	padding: 0px 40px 0 40px;
}

.section-grey {
	background-color: #EFEFEF;
	padding-bottom: 160px;
	overflow: hidden;
	padding: 0px 40px 0 40px;
}

.section-container {
	display: flex;
	justify-content: space-between;
}

.section-container-one-img {
	display: flex;
	justify-content: center;
}

.brief {
	width: 45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hero-img {
	width: 45%;
	padding-right: 50px;
}

.callout {
	font-weight: 600;
	color: #69c8c9;
	padding-bottom: 10px;
	text-transform: uppercase
}

.hero-img img {
	width: 100%;
	height: auto;
	display: block;
}

.img2 {
	display: flex;
	flex-direction: column;
	flex-basis: 50%;
	flex: 1;
}

.img3 {
	display: flex;
	flex-direction: column;
	flex-basis: 50%;
	flex: 1;
}

.img4 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  	align-items: center;
  	justify-content: center;
}

.img2 img, .img3 img, .img4 img {
	width: 100%;
	height: auto;
}


.spacer {
	width: 100%;
	height: 60px;
}


/********** EBLAST SECTION **********/
.eblasts {
	width: 33%;
	display: flex;
	justify-content: center;
}

.eblasts img {
	align-self: center;
}

/********** FOOTER SECTION **********/
.footer h1 {
	font-size: 32px;
	margin: 0;
	color: var(--teal);
	padding-bottom: 16px;
}

.footer-section {
	background-image: url("images/foot-bg.png");
	background-repeat: repeat;
	padding: 60px 80px;
}

.footer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	column-gap: 60px;
}

.footer-form {

}

.myForm {
	display: flex;
}

.contact {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.footer p {
	color: var(--white);
}

.footer-logo img {
	padding-bottom: 20px;
}

.footer-social img{
	margin-right: 20px;
}

label {
	color: var(--white);
	font-size: 18px;
	font-weight: 300;
	display: block;
	padding-bottom: 1px;
}

input {
	margin-bottom: 16px;
	padding: 10px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	width: 70%;
	border-radius: 8px;
	border: transparent;
	outline: none;
}

textarea {
	margin-bottom: 16px;
	padding: 10px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	width: 90%;
	min-height: 100px;
	border-radius: 8px;
	border: transparent;
	outline: none;
	resize: vertical;
}

button {
	font-size: 16px;
	font-weight: 700;
	width: 30%;
	padding: 10px 0 10px 0;
	color: var(--white);
	background-color: var(--teal);
	border-radius: 3px;
	border: transparent;
	outline: none;
	cursor: pointer;
}

/********** MEDIA QUERIES **********/

/* TABLET DEVICES */
@media screen and (max-width: 985px) {
	.brief {
		width: 50%;
	}
	
	.section-container {
		flex-direction: column-reverse;
	}
	
	.hero-img {
		width: 100%;
	}
	
	.brief {
		display: block;
		width: 100%;
		text-align: center;
	}
	
	.eblasts-container {
		display: flex;
		justify-content: space-between;
		flex-direction: column;	
	}
	
	.eblasts {
		width: 100%;
	}
	
	.footer {
		display: grid;
		grid-template-columns: none;
		column-gap: 0px;
		row-gap: 50px;
	}
}

/* MOBILE DEVICES */
@media screen and (max-width: 600px) {
	
	header {
		height: 100px;
	}
	
	.logo {
		margin: 0;
	}
	
	nav {
		display: block;
		text-align: center;
	}
	
	nav ul {
		justify-content: center;
		margin: 0;
		padding: 20px 0 0 0;	
	}
	
	nav ul li {
		padding: 0 20px 0 20px;
	}
	
	nav ul li a {
		transition: none;
		padding: 0;
	}
	
	nav ul li a:hover {
		color: var(--teal);
		background-color: var(--white);
	}
	
	/* SECTIONS */
	
}
