*, *::before, *::after {
    box-sizing: border-box;
}
body {
    background-color: #ecedf2;
	margin: 0;
	padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}
img {
    max-width: 100%;
}
.img_center {
	display: block;
	margin: 0 auto 8px;
}
.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    /* added for nav-toggle positioning */
    position: relative;
}
header {
    background: #396a92;
    padding: .5em 0;
    text-align: center;
	border-bottom: solid 2px #ecbe13;
}
.logo_txt {
	font-family: 'Times New Roman', Times, serif;
	font-size: 2.5rem;
	text-transform: uppercase;
	min-width: 420px;
	text-align: left;
	margin: 0 0 0 1.5em;
	text-shadow: #091d42 2px 2px;
}
.logo_txt a {
	text-decoration: none;
	color: #ecbe13;
}
footer {
    background-color: #396a92;
    margin: 0;
    text-align: center;
    line-height: 3rem;
    font-size: 1rem;
    height: 50px;
}
footer p {
    color: #091d42;
	font-weight: 700;
	border-top: solid 2px #ecbe13;
}
/* ------------------nav styles----------------------- */
.nav {
    width: 100%;
}
.nav-toggle {
    cursor: pointer;
    border: 0;
    width: 3em;
    height: 3em;
    padding: 0em;
    border-radius: 50%;
    background: #072A2D;
    color: white;
    transition: opacity 250ms ease;
    
    position: absolute;
    left: 0;
}
.nav-toggle:focus,
.nav-toggle:hover {
    opacity: .75;
}
.hamburger {
    width: 50%;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    margin: 0 auto;
    height: 3px;
    background: white;
}
.hamburger::before,
.hamburger::after {
    content: '';
    width: 100%;
}
.hamburger::before {
    transform: translateY(-6px);
}
.hamburger::after {
    transform: translateY(3px);
}
/* made changes here from video
   to make it more accessible.
   
   Works the same :) */
.nav {
    visibility: hidden;
    height: 0;
    position: absolute;
    font-size: 1rem;
}

.nav--visible {
    visibility: visible;
    height: auto;
    position: relative;
} 

.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list--primary {
    margin-bottom: 2em;
}

.nav__item {
    margin-top: .75em;
}

.nav__link {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
}

.nav__link--button {
    padding: .25em .75em;
    background-color: #fff;
    color:#136c72;
    border-radius: 100px;
}

.nav__link:hover,
.nav__link:focus {
    opacity: .65;
}

.main {
	border-bottom: solid 2px #ecbe13;
}
.sidebar {
	text-align: center;
	padding: 1em;
	background: #9ab4cb;
	margin: 0;
}
.sidebar h3 {
	font-size: 1.1rem;
	margin: 0;
	color: #091d42;
}
.sidebar p {
	font-size: 1rem;
}
.pres_message {
	font-size: 1.8rem;
	font-weight: 900;
	margin: 0;
	color: #091d42;
}
.bob_img {
	border: solid 2px #000;
	margin: 8px auto;
	max-height: 200px;
}
.primary-content {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
}
.primary-content h1 {
	text-align: center;
	font-size: 2.4rem;
	color: #091d42;
	padding-bottom: .5em;
	border-bottom: solid 2px #396a92;
}
.location_col {
	text-align: center;
	width: 100%;
}
.location_col h3 {
	background: #091d42;
	color: #9ab4cb;
	text-transform: uppercase;
	font-size: 1.5rem;
	margin-bottom: 8px;
}
.location_logo {
	/* max-width: 170px; */
	max-height: 120px;
	margin: 0px 20px;
}
.divider_line {
	border-bottom: solid 2px #ecedf2;
	padding-bottom: 1em;
	margin: 0;
}
.option_col {
	background: #fff;
	padding-bottom: .5em;
}
.option_col h3 {
	font-size: 1.4rem;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5rem;
	margin-bottom: 20px;
	background: #9ab4cb;
	color: #091d42;
}
.option_col p {
	margin: 0 8px;
}
.secondary_col {
	max-width: 90%;
	margin: 0 auto;
	background: #9ab4cb;
	padding-bottom: .2em;
	margin-bottom: .4em;
}
.secondary_col h4 {
	text-align: center;
	color: #091d42;
	padding-top: .5em;
}
.funeral_opt {
	max-width: 90%;
	margin: 0 auto;
	background: #9ab4cb;
	padding: .4em 0 .2em;
	margin-bottom: .4em;
}
.guarantee {
	background: #091d42;
	color: #9ab4cb;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	padding: .5em .3em;
}
.career_col {
	padding: 0 1em;
	margin-bottom: 2em;
}
.career_img {
	width: 90%;
}
.career_divider {
	border-bottom: solid 2px #9ab4cb;
}
.job_contact {
	text-align: center;
	padding: 0 1em;
}
.email_btn {
	margin: 0 auto;
	background: #9ab4cb;
	font-size: 1rem;
	font-weight: 900;
	border-radius: .2em;
	cursor: pointer;
	padding: 5px;
}
.email_btn a {
	text-decoration: none;
	color: #091d42;
}
.email_btn:hover {
	opacity: .7;
}
.center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.gold_txt {
	color: #ecbe13;
}
/* -----------MEDIA QUERIES------------------ */

@media (min-width: 800px) {

	.main {
		/* border: solid 1px blue; */
		margin-top: 1em;
	}
	.location_col h3 {
		background: #091d42;
		color: #9ab4cb;
		text-transform: uppercase;
		font-size: 1.5rem;
		margin-top: 0;
		margin-bottom: 8px;
	}
	.option_col {
		background: #fff;
		padding: .5em 0;
		max-width: 50%;
	}
	.right_border {
		border-right: solid 2px #091d42;
		position: absolute;
	}
	.option_col h3 {
		font-size: 1.4rem;
		text-align: center;
		text-transform: uppercase;
		font-size: 1.5rem;
		margin-bottom: 20px;
		background: #9ab4cb;
		color: #091d42;
	}
	.option_col p {
		margin: 0 10px;
		padding: 0 25px;
	}
	.secondary_col {
		max-width: 46%;
		padding: 0 .3em .2em .3em;
		margin-top: 1em;
		margin-bottom: .4em;
	}
	.secondary_col h4 {
		padding-top: .1em;
	}
	.secondary_col ul li {
		line-height: 2rem;
	}
	.funeral_opt ul li {
		line-height: 2rem;
	}
    .logo_txt {
		font-family: 'Times New Roman', Times, serif;
		font-size: 2.5rem;
		text-transform: uppercase;
		min-width: 420px;
		text-align: left;
	}
	.logo_txt a {
		text-decoration: none;
	}

    .nav-toggle {
        display: none;
    }

    .nav {
        visibility: visible;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: auto;
        position: relative;
    }

    .nav__list {
        display: flex;
        margin: 0;
    }

    .nav__item {
        margin: 0 0 0 1.5em;
    }

    .row {
        display: flex;
        /* justify-content: space-between; */
    }

    .sidebar {
        width: 32%;
    }
    .bob_img {
		border: solid 2px #000;
		margin: 8px auto;
		max-height: 100px;
	}
	.career_col {
		width: 50%;
		padding-left: 5em;
	}
    .career_img {
		width: 60%;
		margin: 2em 0 0 3em;
	}
	.job_contact {
		width: 60%;
		margin: 0 auto;
	}
}