header {
/*     background: #25445b url("images/gd3t5Dtbwkw2.webp") no-repeat center; */
	background: #25445b url("images/NorthernLightsCross-Wide.webp") no-repeat center;
    background-size: cover;
    height: 100vh;
}

.landing-nav {
	z-index: 999;
	position: absolute;
	width: 100%;
	padding: 20px 18px;
	display: none;
}

.landing-nav img {
	max-width: 180px;
}

.header-overlay {
/*     background: url("images/gd3t5Dtbwkw2-overlay.png") no-repeat center; */
    background-size: cover;
    background-blend-mode: soft-light;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-overlay>.container {
    z-index: 10;
}

header .hero-image {
	max-width: 540px;
	width: 100%;
	height: auto;
	object-fit: contain;
	opacity: 0px;
	animation: heroImage 0.8s ease-out forwards;
}

@keyframes heroImage{
    0% {
	    transform:translateX(70px);
	    opacity: 0;
	}
    100% {
	    transform:translateX(0px);
	    opacity: 1;
	}
}

header .hero-text {
    padding: 0px 18px;
}

header .hero-text img {
	max-width: 255px;
	margin-bottom: 25px;
	opacity: 0;
    animation: heroText 0.8s ease-out 0.1s forwards;
}

header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0;
    animation: heroText 0.8s ease-out 0.2s forwards;
}

header p {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroText 0.8s ease-out 0.3s forwards;
}

@keyframes heroText{
    0% {
	    transform:translateX(-70px);
	    opacity: 0;
	}
    100% {
	    transform:translateX(0px);
	    opacity: 1;
	}
}

header .cta {
    background-color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    color: var(--gnBlue);
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.5s;
    opacity: 0;
    animation: herocta 0.6s ease-out 1s forwards;
}

header .cta:hover {
	background-color: #EBF8F8;
}

@keyframes herocta{
    0% {
	    transform:translateY(15px);
	    opacity: 0;
	}
    100% {
	    transform:translateY(0px);
	    opacity: 1;
	}
}

.aurora {
    margin: -65px auto 0;
    position: absolute;
    top: 0px;
    left: 0px;
}

.aur {
    transform:skew(-0.06turn, 18deg);
    display:block;
    width:0;
    /* min-height:200px; */
    float:left;
    margin-left:40px;
    border-radius:5% 52% 30px 20px;
    opacity:0.6;
}

@keyframes topup{
    0%, 100% {transform:translatey(10px);}
    50% {transform:translatey(150px)}
}

.key-blurbs {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: max-content;
	margin: auto;
}

.key-blurbs .key-blurb {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
}

.key-blurbs .key-blurb p {
	margin-bottom: 0px;
	margin-left: 25px;
}

.intro {
    text-align: center;
    max-width: 760px;
    margin: auto;
    padding: 0px 30px;
}

.intro h2{
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gnBlue);
    margin-bottom: 1rem;
}

article section {
    padding: 35px 0px;
}

article section:first-of-type {
    padding-top: 70px;
    padding-bottom: 15px;
}

.blurb {
    padding-bottom: 70px;
}

.info-cards {
    background: linear-gradient(90deg, rgba(245,251,251,1) 50%, rgba(241,243,249,1) 50%);
    padding: 0px;
}

.cards-shadow, .info-card {
    background-image: linear-gradient(180deg, #5190AD18 0%, #FFFFFF00 27%, #FFFFFF00 89%, #5190AD18 100%);
}

.info-card {
    padding: 70px 30px 80px;
}

.info-card.one {
    background-color: #EBF8F8;
}

.info-card.two {
    background-color: #E9F0F3;
}

.info-card.three {
    background-color: #E3E7F4;
}

.info-card h3 {
    color: var(--gnBlue);
    font-size: 34px;
    font-weight: 700;
    line-height: 41px;
    margin-bottom: 16px;
}

.info-card .card-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 28px;
    padding-right: 40%;
    margin-bottom: 14px;
}

#contact {
    background: #25445b url("images/gd3t5Dtbwkw2.webp") no-repeat center;
    background-size: cover;
    padding: 50px 0px;
}

/*
#contact>.container {
    max-width: 920px;
}
*/

.contact-form {
    background-color: #fff;
    padding: 35px 20px;
    border-radius: 5px;
    max-width: 600px;
    width: 100%;
    margin-bottom: 50px;
}

.gn-form-field {
    margin-bottom: 25px;
}

.gn-form-field input, .gn-form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--gnBlue);
}

.gn-form-field textarea {
    min-height: 120px;
}

.gn-form-field input[type="submit"] {
    background-color: var(--gnBlue);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    width: auto;
    border-bottom: none;
    transition: background-color 0.5s;
}

.gn-form-field input[type="submit"]:hover {
	background-color: #6394ac;
}

.contact-text {
    max-width: 382px;
}

.contact-text h2 {
    font-family: 'Work Sans','Helvetica Neue',Arial,Helvetica,sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-text p {
    color: #fff;
}

.contact-details a {
    text-decoration: none;
}

#contactForm {
	height: auto;
	opacity: 1;
	transition: all 500ms linear;
}

#sent-icon {
	display: none;
	opacity: 0;
	width: 100%;
	transition: all 500ms linear;
	align-items: center;
	justify-content: center;
}

#sentAnimation {
	max-width: 150px;
}

.close-form {
	opacity: 0 !important;
}

.show-sent {
	display: flex !important;
	opacity: 1 !important;
}

.grecaptcha-badge {
	display: none;
}

@media (min-width: 768px) {
	.landing-nav img {
		max-width: 290px;
	}

    header {
        height: 66vh;
    }

    header .hero-text {
        padding: 45px 0px;
    }

    header h1 {
        font-size: 64px;
    }
    
    .key-blurbs {
	    flex-direction: row;
	    width: 100%;
	    max-width: 1020px;
    }

    .intro {
        padding: 0px;
    }

    .contact-form {
        margin-bottom: 0px;
    }
    
}