@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 900;
    src: url('fonts/Montserrat-Black.ttf');
	font-display: swap;
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Montserrat-Bold.ttf');
	font-display: swap;
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Montserrat-SemiBold.ttf');
	font-display: swap;
}

@font-face {
    font-family: Yellowtail;
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Yellowtail-Regular.ttf');
	font-display: swap;
}


body {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: normal;
    margin: 0;
    color: #0A0A0A;
}


/*  Reusable  */

h1 {
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 60px;
    position: relative;
    width: 100%;
    text-transform: uppercase;
}

h1:after {
  content: "";
  background: #31859C;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 200px;
}

h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
}

h3 {
    font-size: 1.375rem;
    line-height: 2rem;
    font-weight: normal;
    margin: 0;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: normal;
    margin: 0;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: normal;
    margin: 0;
}

h5 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: normal;
    margin: 0;
}

h6 {
    font-size: 0.75rem;
    line-height: 3rem;
    font-weight: normal;
    margin: 0;
}

a {
    text-decoration: none;
}

.button-fill {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: bold;
    width: 200px;
    cursor: pointer;
    transition: 0.25s;
}

.button-white {
    color: #0A0A0A;
    background-color: white;
}

.button-blue {
    color: white;
    background-color: #31859C;
}

.cover {
    padding-top: 84px;
}

.intro {
    text-align: center;
    margin: 150px auto;
    padding: 0 36px;
    width: calc(100% - 72px);
}

.container-fixed {
    display: flex;
    justify-content: center;
}

.container-fixed-inner {
    margin: 0 36px;
    width: calc(100% - 72px);
    max-width: 1050px;
}

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

.card {
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.card-image {
    max-width: 100%;
    flex-shrink: 0;
	object-fit: cover;
}

.card-title {
    margin-top: 30px;
    font-weight: bold;
}

.card-body {
    margin-top: 15px;
}

.card.blank {
    visibility: hidden;
}

.standard-cover-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.standard-cover-heading {
    color: white;
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
    text-align: center;
    margin: 0 36px;
    width: calc(100% - 72px);
}

.standard-cover-subheading {
    color: white;
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
    margin-top: 8px;
    text-align: center;
    margin: 0 36px;
    width: calc(100% - 72px);
}

.flex-row {
    display: flex;
}

.container-connect {
    margin: 150px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect-title {
    text-align: center;
}

.connect-body {
    margin-top: 30px;
    text-align: center;
    max-width: 480px;
}

.connect-body.note {
    color: #E4002C;
    text-transform: uppercase;
}

.connect-button {
    margin: 30px auto 0;
}

.staff {
    display: flex;
    margin: 60px auto 0;
    cursor: pointer;
    color: #0A0A0A;
    transition: 0.25s;
}

.staff:first-of-type {
    margin-top: 120px;
}

.staff-image {
    width: 125px;
    height: 125px;
}

.staff-text {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staff-title {
    font-weight: bold;
}

.animate-appear {
    transform: translate(0);
    opacity: 1;
    transition: 0.5s;
}

.animate-appear.animate-ready {
    transform: translateY(100px);
    opacity: 0
}


/*  Specific  */

#nav {
    background-color: white;
    border-bottom: 2px solid #F0F0F0;
    position: fixed;
    width: 100%;
    top: 0;
    height: 84px;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-drawer-top {
    display: none;
}

.nav-logo {
    width: 300px;
    margin-left: 45px;
    cursor: pointer;
}

.nav-link-container {
    display: flex;
    list-style: none;
    margin: 0 22px 0 auto;
    padding: 0;
}

.nav-link a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0A0A0A;
    transition: 0.25s;
    padding: 22px;
    cursor: pointer;
}

.nav-menu {
    display: none;
    opacity: 0;
    background-color: white;
    position: absolute;
    list-style: none;
    width: 200px;
    margin: 20px 0 0 -45px;
    padding: 10px 0;
    border-radius: 4px;
    border: 2px solid #F0F0F0;
    transition: 0.15s;
}

.nav-menu a {
    display: block;
    padding: 10px 30px;
    width: calc(100% - 60px);
    font-weight: normal;
    color: #0A0A0A !important;
}

.nav-button {
    cursor: pointer;
    width: 22px;
    height: 16px;
    padding: 8px;
}

.transparent-view {
    display: none;
}

.home .cover-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-right: 125px;
}

.home .cover-heading {
    color: white;
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    max-width: 500px;
    line-height: 5rem;
    text-align: right;
}

.home .cover-subheading {
    color: white;
    font-size: 2rem;
    max-width: 500px;
    line-height: 2.5rem;
    margin-top: 30px;
    text-align: right;
}

.home .cover-button {
    margin-top: 90px;
}

.home .intro {
    max-width: 755px;
}

.photo-link-container {
    width: 100%;
    display: flex;
    height: 90vh;
}

.photo-link-container-inner {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.photo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    background-color: black;
}

.photo-link-photo {
    width: 100%;
    height: 100%;
    background-position: center;
    opacity: 0.75;
    transition: 0.5s;
}

.photo-link-photo.first {
    background-image: url(assets/photo-link-kids.jpg);
    background-size: cover;
}

.photo-link-photo.second {
    background-image: url(assets/photo-link-new.jpg);
    background-size: cover;
}

.photo-link-photo.third {
    background-image: url(assets/photo-link-serve.jpg);
    background-size: cover;
}

.photo-link-text {
    color: white;
    text-transform: uppercase;
    font-size: 1.625rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.75);
}

.series-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-right: 90px;
}

.series-image {
    width: 100%;
}

.series-play {
    position: absolute;
    opacity: 0.75;
    transition: 0.25s;
}

.series-text {
    width: 100%;
    max-width: 480px;
}

.series-button {
    margin-top: 60px;
}

.container-series.christmas {
	background-color: #112C3B;
    padding: 150px 0;
	margin-bottom: 0;
	color: white;
}

.container-series.christmas .series-image {
	box-shadow: 0 0 12px 12px rgba(0, 0, 0, 0.12);
	border-radius: 6px;
	overflow: hidden;
}

.container-series.christmas .event-button:first-of-type {
	margin-top: 30px;
}

.container-series, .container-events, .container-team {
    margin: 150px 0;
}

.events .container-events {
    margin: 150px 0 120px 0;
}

.container-footer {
    background-color: black;
    color: white;
}

.container-inner-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 120px 0 20px;
}

.footer-column-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
    width: 100%;
}

.footer-column {
    max-width: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: calc(100% - 12px);
    margin-bottom: 45px;
}

.footer-social {
    display: flex;
}

.footer-social-button {
    width: 32px;
    margin-right: 30px;
    cursor: pointer;
    transition: 0.25s;
}

.footer-social-button:last-of-type {
    margin: 0;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-link {
    color: #AFADAD;
    margin: 5px 0;
    font-size: 1rem;
}

.footer-copyright-container {
    display: flex;
}

.footer-copyright {
    color: #AFADAD;
    padding-right: 15px;
    border-right: 2px solid white;
}

.footer-privacy {
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.25s
}

.event-button {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.event-button-link {
    color: #31859C !important;
    font-weight: bold;
}

.event-button-link-white {
    color: white !important;
    font-weight: bold;
}

.event-button-arrow {
    margin-left: 8px;
}

.events-button {
    margin: 0 auto;
}

.container-welcome {
    margin: 150px 0;
}

.welcome {
    display: flex;
}

.welcome:last-of-type {
    margin-top: 120px;
}

.welcome-image-container {
    width: 100%;
    max-width: 480px;
}

.welcome-image {
    width: 100%;
}

.welcome-text {
    width: 100%;
    max-width: 480px;
}

.welcome-text.first {
    margin-left: 90px;
}

.welcome-text.second{
    margin-right: 90px;
}

.welcome p {
    margin-top: 30px;
}

.welcome p:first-child {
    margin: 0;
}

.welcome-signature {
    margin-top: 30px;
    font-size: 3rem;
    font-family: Yellowtail;
    color: #31859C;
}

.container-gatherings {
    background-color: #F0F0F0;
    padding: 150px 0;
}

.gatherings {
    display: flex;
}

.gathering {
    width: 100%;
}

.gathering.second {
    margin: 0 60px;
}

.gathering-subtitle {
    margin: 15px 0;
    font-weight: 600;
}

.gathering-link {
	font-weight: bold;
	color: #31859C;
	margin-top: 15px;
	display: block;
	transition: opacity 0.25s;
}

.container-expectations {
    margin: 150px 0;
}

.expectations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.expectation {
    width: 45%;
    margin-bottom: 60px;
}

.expectation-title {
    font-weight: bold;
}

.expectation-body {
    margin-top: 10px;
}

.container-beliefs {
    margin-bottom: 150px;
}

.belief {
    border: 2px solid #F0F0F0;
    transition: 0.25s;
    cursor: pointer;
}

.belief:last-of-type {
    margin-top: 30px;
}

.belief-heading {
    display: flex;
    justify-content: space-between;
    background-color: #F0F0F0;
    align-items: center;
    transition: 0.25s;
}

.belief-title {
    font-weight: bold;
    margin: 30px;
}

.belief-image {
    margin-right: 30px;
}

.belief-body-wrapper {
    max-height: 0;
    transition: 0.5s;
    overflow: hidden;
}

.belief-body {
    margin: 0 30px;
    transition: 0.5s;
}

.belief-open .belief-body {
    margin: 30px;
}

.team-member {
    border: 1px solid #F0F0F0;
    box-sizing: border-box;
    padding-bottom: 18px;
}

.team-member-title {
    margin: 18px 18px 0 18px;
}

.team-member-body {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin: 10px 18px 0;
    line-height: 1.25rem;
}

.team-member-contact {
    display: flex;
    align-items: center;
    margin: 10px 18px 0;
}

.team-member-contact-link {
    color: #31859C;
    margin-left: 10px;
}

.story-intro {
    margin: calc(150px + 84px) 0 150px 0;
    font-family: Montserrat;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
}

.story-heading {
    margin-bottom: 12px;
}

.story-heading.second {
    margin-top: 60px;
}

.story-together {
    font-family: Montserrat;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 60px 0 150px;
    text-align: center;
    line-height: 2rem;
}

.story.card {
    border: 1px solid #F0F0F0;
    box-sizing: border-box;
    width: 100%;
}

.story.card:last-of-type {
    margin-bottom: 0;
}

.story-title {
    margin: 60px 60px 0 60px;
}

.story-body {
    margin: 15px 60px 60px;
}

.groups .logo, .revive .logo, .kids .logo, .rightnow .logo {
    width: calc(100% - 72px);
    max-width: 700px;
}

.serve .logo {
    width: calc(100% - 72px);
    max-width: 550px;
}

.groups .intro {
    max-width: 764px;
}

.group-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 90px 0;
}

.group {
    width: 45%;
    margin-bottom: 60px;
}

.group-subtitle, .ministry-subtitle {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.group-description, .group-time, .ministry-description, .ministry-time {
    font-weight: 600;
}

.group-body {
    margin-top: 15px;
}

.group .event-button-link {
    margin-top: 15px;
    display: block;
    transition: 0.25s;
}

.kids .intro {
    max-width: 720px;
}

.kids .connect-button {
    width: 100%;
    max-width: 400px;
}

.ministry {
    display: flex;
    margin-top: 120px;
}

.ministry-image-wrapper {
    width: 100%;
    max-width: 480px;
}

.ministry-image {
    width: 100%;
}

.ministry-text {
    margin: 0 0 0 90px;
    width: calc(100% - 90px);
    max-width: 480px;
}

.ministry.reverse .ministry-text {
    margin: 0 90px 0 0;
}

.ministry:first-of-type {
    margin-top: 0;
}

.ministry-body {
    margin-top: 15px;
}

.ministry-extra {
    margin-top: 15px;
    font-weight: 600;
}

.ministry-note {
    margin-top: 15px;
    color: #E4002C;
}

.ministry-link {
    font-weight: bold;
    color: #31859C;
    cursor: pointer;
    transition: 0.25s;
}

.revive .intro {
    max-width: 720px;
}

.container-inner-photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.revive-photo {
    background-color: #F0F0F0;
    height: 275px;
    background-size: cover;
    background-position: center;
}

#photo1 {
    width: calc(((100% - 60px)/1.5) + 30px);
    background-image: url(assets/revive1.jpg);
}

#photo2 {
    width: calc((100% - 60px)/3);
    background-image: url(assets/revive2.jpg);
}

#photo3 {
    width: calc((100% - 60px)/3);
    margin-top: 30px;
    background-image: url(assets/revive3.jpg);
}

#photo4 {
    width: calc((100% - 60px)/3);
    margin-top: 30px;
    background-image: url(assets/revive4.jpg);
}

#photo5 {
    width: calc((100% - 60px)/3);
    margin-top: 30px;
    background-image: url(assets/revive5.jpg);
}

#photo6 {
    width: calc((100% - 60px)/3);
    height: calc(275px + 275px + 30px);
    margin-top: 30px;
    background-image: url(assets/revive6.jpg);
}

.revive-photo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(((100% - 60px)/1.5) + 30px);
    margin-left: auto;
}

#photo7 {
    width: 100%;
    margin-top: 30px;
    background-image: url(assets/revive7.jpg);
}

#photo8 {
    width: calc((100% - 30px)/2);
    margin-top: 30px;
    background-image: url(assets/revive8.jpg);
}

#photo9 {
    width: calc((100% - 30px)/2);
    margin-top: 30px;
    background-image: url(assets/revive9.jpg);
}

#photo10 {
    width: calc(((100% - 60px)/1.5) + 30px);
    margin-top: 30px;
    background-image: url(assets/revive10.jpg);
}

#photo11 {
    width: calc((100% - 60px)/3);
    margin-top: 30px;
    background-image: url(assets/revive11.jpg);
}

.serve .intro {
    max-width: 660px;
    margin-bottom: 0;
}

.container-inner-serve {
    padding-bottom: 120px;
}

.opportunity-contact {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.opportunity-email {
    display: flex;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}

.opportunity-contact-text {
    margin-left: 10px;
    color: #31859C
}

.preschool .intro {
    max-width: 800px;
}

.container-philosophy {
    background-color: #F0F0F0;
}

.container-inner-philosophy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 150px 0;
}

.philosophy-paragraph {
    margin-top: 30px;
    width: 100%;
}

.philosophy-license {
    text-align: center;
    color: #646464;
    font-weight: 500;
    max-width: 500px;
    margin-top: 90px;
}

.container-classes {

}

.container-inner-classes {
    display: flex;
    justify-content: center;
}

.class {
    margin: 60px 30px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.class:first-of-type {
    margin-left: 0;
}

.class:last-of-type {
    margin-right: 0;
}

.class-image {
    width: 100%;
    max-width: 320px;
}

.class-title {
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
}

.class-age {
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

.class-time {
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
}

.class-cost {
    margin-top: 30px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

.class-brown .class-cost {
    background-color: rgba(234, 214, 58, 0.2);
}

.class-panda .class-cost {
    background-color: rgba(47, 196, 91, 0.1);
}

.class-polar .class-cost {
    background-color: rgba(4, 157, 255, 0.1);
}

.class-description {
    margin-top: 30px;
}

.class .button-fill {
    margin-top: 30px;
    width: 100%;
    color: white;
    transition: 0.25s;
}

.class-brown .button-fill {
    background-color: #EAD63A;
}

.class-panda .button-fill {
    background-color: #2FC45B;
}

.class-polar .button-fill {
    background-color: #049DFF;
}

.button-calendar {
    width: calc(100% - 108px);
    max-width: 500px;
    margin: 0 auto 150px auto;
    padding: 0 18px;
}

.button-calendar-image {
    margin-right: 15px;
}

.container-announcement {
    padding: 60px 0;
    background-color: rgba(49, 133, 156, 0.05);
}

.announcement-heading{
    font-weight: bold;
    margin-bottom: 15px;
}

.announcement-body {
    margin-top: 15px;
}

.container-safety {
    background-color: #F0F0F0;
    padding: 60px 0;
}

.preschool-safety {
    text-align: center;
    color: #646464;
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
}

.container-privacy {
    margin: 200px 0 150px;
}

.privacy-paragraph {
    margin-top: 15px;
}

.privacy-subheading {
    font-weight: bold;
    margin-top: 60px;
}

.privacy-list {
    padding: 0;
    margin: 0 auto 0 auto;
}

.privacy-list-item {
    margin: 30px 0 0 60px;
    font-weight: bold;
}

.privacy-list-item .privacy-subheading {
    margin-top: 30px;
}

.privacy-list-item .privacy-paragraph {
    margin-top: 15px;
}

.privacy-link {
    color: #31859C;
    font-weight: bold;
    transition: 0.2s;
    text-decoration: none;
}

.container-weddings, .container-baptism, .container-give, .container-rightnow {
    margin: 150px 0;
}

.wedding-heading, .baptism-heading, .give-heading, .rightnow-heading {
    font-weight: bold;
}

.wedding-paragraph, .baptism-paragraph, .give-paragraph, .rightnow-paragraph {
    margin-top: 30px;
}

.wedding-link, .baptism-link, .preschool-registration-link, .give-link, .rightnow-link {
    color: #31859C;
    font-weight: bold;
}

.container-preschool-register {
    margin: 180px 0;
}

.preschool-register-info {
    display: flex;
}

.preschool-register-column {
    width: 100%;
}

.preschool-register-column.column2 {
    background-color: #F0F0F0;
    border-left: 3px solid #AFADAD;
    margin-left: 90px;
}

.preschool-register-title {
    font-weight: bold;
    margin: 30px 30px 0 30px;
}

.preschool-register-subtitle {
    margin: 0 30px 0 30px;
}

.preschool-register-subtitle:last-of-type {
    margin-bottom: 30px;
}

.preschool-register-prompt {
    text-align: center;
    margin: 90px auto 0 auto;
    max-width: 920px;
}

.preschool-register-button {
    margin: 60px auto 0 auto;
    width: calc(100% - 108px);
    max-width: 500px;
    padding: 0 18px;
}

.preschool-register-button:last-child {
    margin: 30px auto 0 auto;

}

.preschool-gallery {

}

.preschool-photo {
    height: 275px;
    background-size: cover;
    background-position: center;
}

#preschool-photo1 {
    width: calc(((100% - 60px)/1.5) + 30px);
    background-image: url(assets/kklc1.jpg);
}

#preschool-photo2 {
    width: calc((100% - 60px)/3);
    background-image: url(assets/kklc2.jpg);
}

#preschool-photo3 {
    margin-top: 30px;
    width: calc((100% - 60px)/3);
    background-image: url(assets/kklc3.jpg);
}

#preschool-photo4 {
    margin-top: 30px;
    width: calc((100% - 60px)/3);
    background-image: url(assets/kklc4.jpg);
}

#preschool-photo5 {
    margin-top: 30px;
    width: calc((100% - 60px)/3);
    background-image: url(assets/kklc5.jpg);
}

.give-button, .pledge-button {
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.container-badges {
    display: flex;
    margin: 45px 0;
    width: 100%;
    justify-content: center;
}

.rightnow-badge {
    margin: 15px;
    width: 100%;
    max-width: 215px;
}

.rightnow-badge img {
    width: 100%;
}

.home .banner ~ .cover {
	padding-top: 0 !important;
}

.banner {
	margin-top: 84px;
	background-color: #254061;
	color: white;
	padding: 30px 36px;
	width: calc(100% - 72px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.banner-text {
	width: 100%;
	max-width: 1200px;
}

.banner-link {
	display: flex;
	align-items: center;
	margin-top: 15px;
	color: white;
	width: 100%;
	max-width: 1200px;
}

.banner-link p {
	font-weight: bold;
}

.banner-link img {
	margin-left: 8px;
}

.worship-online .container-gatherings {
	background-color: white !important;
	padding-bottom: 120px;
}

.worship-online .baptism-heading {
	font-weight: 900;
}

.worship-online .container-baptism {
	margin-top: 0;
}


/* Desktop */
@media (min-width: 992px){


    /*  Reusable  */

    .button-white:hover {
        background-color: #31859C;
        color: white;
        transition: 0.25s;
    }

    .button-blue:hover {
        background-color: #31859C;
        opacity: 0.5;
        transition: 0.25s;
    }

    .mobile-only {
        display: none;
    }

    .staff:hover {
        transform: scale(1.05);
        transition: 0.25s;
    }


    /*  Specific  */

    .nav-link-container:hover .nav-link a{
        color: #646464;
    }

    .nav-link:hover > a {
        color: #0A0A0A !important;
        transition: 0.25s;
    }

    .nav-link:hover > .nav-menu {
        display: block;
        opacity: 1;
    }

    .nav-link:last-of-type .nav-menu {
        width: 230px;
        margin-left: -120px;
    }

    /* Hackish: prevents user from click-closing menu background on desktop layout */
    .nav-menu {
        max-height: none !important;
    }

    .nav-menu a:hover {
        background-color: #F0F0F0;
    }

    .nav-button {
        display: none;
    }

    .nav-menu:before {
        position: absolute;
        left: calc(50% - 12px);
        top: -12px;
        width: 0;
        height: 0;
        color: blue;
        content: "";
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #F0F0F0;
    }

    .nav-menu:after {
        position: absolute;
        left: calc(50% - 10px);
        top: -10px;
        width: 0;
        height: 0;
        color: blue;
        content: "";
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid white;
    }

    .nav-link:last-of-type .nav-menu:before {
        left: calc(63% + 14px);
    }

    .nav-link:last-of-type .nav-menu:after {
        left: calc(63% + 16px);
    }

    .photo-link:hover > .photo-link-photo {
        transform: scale(1.05);
        opacity: 1;
        transition: 0.5s;
    }

    .photo-link:hover > .photo-link-text {
        transform: translateY(-50%) scale(1.2);
        transition: 0.5s;
    }

    .series-image-container:hover .series-play {
        opacity: 1;
    }

    .footer-link:hover {
        color: white;
    }

    .footer-privacy:hover {
        color: #31859C;
    }

    .footer-social-button:hover {
        opacity: 0.5;
    }

    .event-button:hover, .group .event-button-link:hover {
        opacity: 0.5;
    }

    .belief:hover .belief-heading {
        background-color: #E0E0E0;
    }

    .belief:hover {
        border: 2px solid #E0E0E0;
    }

    .story-together {
        position: relative;
    }

    .story-together:after {
        content: "";
        background: #31859C;
        position: absolute;
        bottom: -10px;
        left: calc(50% - 175px);
        height: 3px;
        width: 350px;
    }

    .ministry-link:hover, .gathering-link:hover {
        opacity: 0.5;
    }

    .class .button-fill:hover {
        opacity: 0.5;
    }

    .privacy-link:hover, .wedding-link:hover, .baptism-link:hover, .rightnow-link:hover, .preschool-registration-link:hover, .give-link:hover {
        opacity: 0.5;
    }
}

/* Tablet & Phone */
@media (max-width: 991px){

    /*  Reusable  */

    .card {
        width: 47%;
    }

    .standard-cover-heading {
        font-size: 3rem;
        line-height: 4rem;
    }

    .desktop-only {
        display: none;
    }


    /*  Specific  */

    #nav {
        height: 64px;
    }

    .nav-logo {
        width: 225px;
        margin-left: 36px;
    }

    .nav-link-container {
        position: fixed;
        width: 250px;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        right: -250px;
        bottom: 0;
        background-color: white;
        margin: 0;
        transition: right 0.35s ease;
        overflow: scroll;
    }

    .nav-link a {
        display: block;
        color: #31859C;
        font-size: 1.125rem;
        font-weight: 900;
        padding: 18px 36px;
        width: calc(100% - 72px);
    }

    .nav-drawer-top {
        display: flex;
        margin: 36px 36px 54px;
        width: calc(100% - 72px);
        align-items: center;
    }

    .nav-drawer-logo {
        width: 26px;
        height: 26px;
    }

    .nav-drawer-title {
        font-size: 1.375rem;
        font-weight: 900;
        margin-left: 12px;
    }

    #nav.open .nav-link-container {
        right: 0;
    }

    .nav-link-container .nav-link, .nav-menu-container .nav-link {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link-container .nav-link:last-child, .nav-menu-container .nav-link:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        display: block;
        position: static;
        padding: 0;
        margin: 0;
        opacity: 1;
        max-height: 0;
        background-color: white;
        border: none;
        width: 100%;
        overflow: hidden;
        transition: 0.25s;
    }

    .nav-menu.nav-menu-open {
        margin: 0 0 18px;
    }

    .nav-menu a {
        padding: 9px 36px;
        width: calc(100% - 72px);
        color: #0A0A0A !important;
        font-weight: normal;
        font-size: 1rem;
    }

    .nav-menu-link:last-child a {
        padding-bottom: 18px;
    }

    .nav-button {
        margin: 0 28px 0 auto;
    }

    .nav-close {
        display: inherit;
        width: 22px;
        height: 22px;
        padding: 18px;
        margin-left: auto;
    }

    .transparent-view {
        display: block;
        opacity: 0;
        background-color: black;
        z-index: 1000;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: 0.35s;
        pointer-events: none;
    }

    #nav.open ~ .transparent-view {
        right: 250px;
        opacity: 0.75;
        pointer-events: auto;
    }

    .home .cover-container {
        margin: 0 36px;
        align-items: center;
    }

    .home .cover-heading {
        font-size: 3rem;
        line-height: 4rem;
        text-align: center;
    }

    .home .cover-subheading {
        font-size: 2rem;
        line-height: 2.5rem;
        text-align: center;
    }

    .home .cover-button {
        margin-top: 60px;
    }


    .photo-link-container {
        height: 500px;
    }

    .photo-link-text {
        font-size: 1.125rem;
    }

    .container-inner-series {
        flex-direction: column;
    }

    .series-text {
        margin-top: 60px;
        max-width: none;
    }

    .series-button {
        margin-left: auto;
        margin-right: auto;
    }

    .container-inner-footer {
        display: flex;
        justify-content: center;
    }

    .footer-column-container {
        justify-content: center;
    }

    .footer-column {
        display: none;
    }

    .footer-column:first-child {
        display: flex;
        align-items: center;
    }

    .welcome {
        flex-direction: column;
        align-items: center;
    }

    .welcome:last-of-type {
        flex-direction: column-reverse;
    }

    .welcome-text {
        margin: 60px 0 0 !important;
    }

    .container-gatherings {
        padding: 90px 0;
    }

    .gatherings {
        flex-direction: column;
    }

    .gathering.second {
        margin: 60px 0;
    }

    .container-expectations {
        margin: 90px 0;
    }

    .expectation {
        width: 100%;
    }

    .container-beliefs {
        margin-bottom: 90px;
    }

    .group-container {
        flex-direction: column;
    }

    .group {
        width: 100%;
    }

    .group-description, .group-time, .ministry-description, .ministry-time {
        font-size: 1rem;
    }

    .ministry {
        flex-direction: column;
    }

    .ministry {
        margin-top: 90px;
    }

    .ministry.reverse {
        flex-direction: column-reverse;
    }

    .ministry-image-wrapper {
        max-width: none;
    }

    .ministry-text, .ministry.reverse .ministry-text {
        margin: 30px 0 0;
        width: 100%;
        max-width: none;
    }

    .revive-photo {
        height: 275px;
    }

    #photo1 {
        width: 100%;
    }

    #photo2 {
        width: calc((100% - 30px)/2);
        margin-top: 30px;
    }

    #photo3 {
        width: calc((100% - 30px)/2);
    }

    #photo4 {
        width: calc((100% - 30px)/2);
    }

    #photo5 {
        width: calc((100% - 30px)/2);
    }

    #photo6 {
        width: calc((100% - 30px)/2);
        height: calc(275px + 275px + 30px);
    }

    .revive-photo-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: calc((100% - 30px)/2);
        margin-left: auto;
    }

    #photo7 {
        width: 100%;
        margin-top: 30px;
        background-image: url(assets/revive7.jpg);
        display: none;
    }

    #photo8 {
        width: 100%;
    }

    #photo9 {
        width: 100%;
    }

    #photo10 {
        width: 100%;
    }

    #photo11 {
        width: 100%;
    }

    .class {
        margin: 30px 15px;
    }

    .container-privacy {
        margin: 120px 0 60px;
    }

    .container-preschool-register {
        margin: 150px 0 90px;
    }

    .preschool-register-info {
        flex-direction: column;
    }

    .preschool-register-column.column2 {
        margin: 60px 0 0 0;
    }

    .preschool-register-prompt {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-top: 60px;
    }

    #preschool-photo1 {
        width: 100%;
    }

    #preschool-photo2 {
        margin-top: 30px;
        width: calc((100% - 30px)/2);
    }

    #preschool-photo3 {
        width: calc((100% - 30px)/2);
    }

    #preschool-photo4 {
        width: calc((100% - 30px)/2);
    }

    #preschool-photo5 {
        width: calc((100% - 30px)/2);
    }

	.banner {
		margin-top: 66px;
	}

	.worship-online .container-gatherings {
		padding-bottom: 60px;
	}

	.worship-online .container-baptism {
		margin-bottom: 120px;
	}

	.container-series.christmas {
	    padding: 90px 0;
	}
}

/* Phone */
@media (max-width: 575px){

    /*  Reusable  */

    h1 {
        font-size: 1.5rem;
        margin: 0 0 45px;
    }

    h2 {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .card {
        width: 100%;
        margin-bottom: 90px;
    }

    .standard-cover-heading {
        font-size: 2rem;
        line-height: 2.75rem;
    }

    .standard-cover-subheading {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .staff:first-of-type {
        margin-top: 90px;
    }

    .staff {
        margin-top: 30px;
    }

    .staff-image {
        width: 96px;
        height: 96px;
    }


    /*  Specific  */

    .nav-logo {
        margin-left: 18px;
    }

    .nav-button {
        margin: 0 10px 0 auto;
    }

    .home .cover-heading {
        font-size: 2rem;
        line-height: 2.75rem;
    }

    .home .cover-subheading {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-top: 18px;
        text-align: center;
    }

    .home .cover-button {
        margin-top: 30px;
    }

    .photo-link-container {
        width: 100%;
        flex-direction: column;
        height: 300vw;
    }

    .photo-link-container-inner {
        width: 100%;
    }

    .photo-link {
        width: 100%;
        height: 100vw;
    }

    .container-inner-footer {
        margin-top: 60px;
    }

    .footer-column-container {
        margin-bottom: 60px;
    }

    .footer-logo {
        margin-bottom: 30px
    }

    .belief {
        margin-left: -18px;
        margin-right: -18px;
    }

    .belief-title, .belief-image, .belief-body {
        margin: 15px !important;
    }

    .container-team {
        margin-bottom: 0px;
    }

	.team-member.card {
		margin-bottom: 30px;
	}

    .story-intro {
        font-size: 1.5rem;
        margin: calc(120px + 66px) 0 120px;
    }

    .story.card {
        border: none;
    }

    .story-title {
        margin: 30px 0 0;
    }

    .story-body {
        margin: 15px 0 0;
    }

	.ministry-subtitle {
		display: flex;
		flex-direction: column;
	}

    .revive-photo {
        height: 125px;
    }

    #photo1 {
        width: 100%;
    }

    #photo2 {
        width: calc((100% - 8px)/2);
        margin-top: 8px;
    }

    #photo3 {
        width: calc((100% - 8px)/2);
        margin-top: 8px;
    }

    #photo4 {
        width: calc((100% - 8px)/2);
        margin-top: 8px;
    }

    #photo5 {
        width: calc((100% - 8px)/2);
        margin-top: 8px;
    }

    #photo6 {
        width: calc((100% - 8px)/2);
        height: calc(125px + 125px + 8px);
        margin-top: 8px;
    }

    .revive-photo-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: calc((100% - 8px)/2);
        margin-left: auto;
    }

    #photo7 {
        width: 100%;
        margin-top: 8px;
        background-image: url(assets/revive7.jpg);
        display: none;
    }

    #photo8 {
        width: 100%;
        margin-top: 8px;
    }

    #photo9 {
        width: 100%;
        margin-top: 8px;
    }

    #photo10 {
        width: 100%;
        margin-top: 8px;
    }

    #photo11 {
        width: 100%;
        margin-top: 8px;
    }

    .container-inner-philosophy {
        margin: 90px 0;
    }

    .philosophy-license {
        margin-top: 60px;
    }

    .container-classes {
        margin: 30px 0;
    }

    .container-inner-classes {
        flex-direction: column;
    }

    .class {
        margin: 60px 0;
        max-width: none;
    }

    .class-image {
        display: block;
        max-width: 175px;
        margin: 0 auto;
    }

    .class-description {
        text-align: center;
    }

    .button-calendar {
        margin-bottom: 90px;
    }

    .card.blank {
        display: none;
    }

    .container-badges {
        flex-direction: column;
        align-items: center;
    }

    .events .container-events {
        margin: 120px 0 30px;
    }

    #preschool-photo1 {
        display: none;
    }

    #preschool-photo2 {
        display: none;
    }

    #preschool-photo3 {
        width: 100%;
    }

    #preschool-photo4 {
        width: 100%;
    }

    #preschool-photo5 {
        width: 100%;
    }
}

/* Short Desktop */
@media (min-width: 992px) and (max-height: 800px){

}

/* Wide Desktop */
@media (min-width: 1200px){
    .nav-link a {
        font-size: 1rem;
    }

    .home .cover-container {
        margin-right: 200px;
    }

    .home .cover-heading {
        font-size: 5rem;
        line-height: 6rem;
        max-width: 720px;
    }
}
