* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html {
    font-family: "Source Sans 3", sans-serif;
    font-size: 62.5%;
    color: var(--opaque-blue);
}
:root {
    --blue-king:  #2c4cca;
    --opaque-blue:  #1f3e72;
    --light-blue:  #f1f5ff;
    --yellow:  #ffd012;
    --off-blue:  #e2e9f9;
    --white:  #FFFFFF;
    --off-pink:  #ffe1ea;
}

/* Nav Section */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    min-width: 320px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    z-index: 3;
    padding: 0px 95px;
}
nav .nav-left {
    display: flex;
    align-items: center;
    width: 30%;
    height: 40px;
}
nav .nav-left p {
    height: 40px;
    color: var(--blue-king);
    font-size: 2.6rem;
}
nav .nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
    height: 100%;
    font-size: 1.4rem;
}
nav .nav-right .nav-list{
    display: flex;
    justify-content: space-around;
}
nav .nav-right li {
    list-style: none;
    margin: 0px 20px;
}
nav .nav-right .nav-button-container {
    height: 100%;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blue-button {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background-color: var(--blue-king);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
}

.title-section {
    width: 100%;
    height: 650px;
    display: flex;
}

.title-section .title-container {
    width: 50%;
    height: 580px;
    padding: 170px 100px 150px 90px;
}
.title-section .title-container h1 {
    font-size: 4.2rem;
}
.title-section .title-container p {
    width: 270px;
    font-size: 1.4rem;
    margin: 15px 0px;
}
.title-section .title-container .yellow-icon-container {
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.title-section .title-container .yellow-icon-container .small-icon {
    width: 12px;
    height: 12px;
    margin: 0px 10px;
    padding: 5px;
}
.title-section .title-container .yellow-icon-container .shield {
    background: url(assets/icons/shield-check-yellow1.svg) center center / contain no-repeat;
}
.title-section .title-container .yellow-icon-container .star {
    background: url(assets/icons/star-icon1.svg) center center / contain no-repeat;
}
.title-section .title-container .schedule-container {
    width: 300px;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-top: 50px;
}
.title-section .title-container .schedule-container span {
    width: 12px;
    height: 12px;
    margin: 0px 10px;
    padding: 5px;
    background: url(assets/icons/star-icon1.svg) center center / contain no-repeat;
}
.title-section .title-container .schedule-container p {
    font-size: 1.6rem;
    font-weight: 700;
}


.title-section .title-image {
        height: 650px;
        display: flex;
        justify-content: center;
}
.title-section .title-image img {
    width: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 90px;
    top: 530px;
    width: 65%;
    min-width: 660px;
    height: 100px;
    font-size: 1.6rem;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 10px 1px;
    padding: 15px 50px;
    border-radius: 5px;
}
.floating-card-left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.floating-card-icon {
    width: 12px;
    height: 12px;
    align-self: baseline;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 3px 4px;
    margin: 5px 10px 0px 20px;
    padding: 1px;
    background: center center / contain no-repeat;
}
.pin-icon {
    background-image: url(assets/icons/pin-blue.svg);
}
.calendar-icon {
    background-image: url(assets/icons/pin-blue.svg);
}
.floatin-card-right {
    justify-self: center;
    padding: 10px;
}


.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    padding: 30px 100px;
}
.logos .logo-opaque {
    display: inline-block;
    width: 200px;
    opacity: 0.5;
    margin: 0px 30px;
}


.reasons {
    width: 100%;
    padding: 40px 80px;
}
.reasons-text h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 10px 0px;
}
.reasons-text p {
    width: 380px;
    font-size: 1.6rem;
    margin: 15px 0px;
}

.reasons-card-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 30px 0px;
    padding: 0px 30px;
}
.reasons-card {
    width: 20%;
    height: 260px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 3px 5px;
    padding: 20px;
    margin: 0px 10px;
    border-radius: 5px;
}
.reasons-card-icon {
    width: 30px;
    height: 30px;
    padding: 20px;
    background: url(assets/icons/spread-icon1.svg) center center / contain no-repeat;
}
.reasons-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0px;
}
.reasons-card p {
    font-size: 1.2rem;
}


.prep {
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: space-between;
}

.prep-image {
    width: 47%;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}
.prep-image img {
    height: 100%;
    object-fit: cover;
}

.prep-container {
    width: 50%;
    height: 650px;
}
.prep-container h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 50px 0px 20px;
}
.prep-container p {
    font-size: 1.6rem;
}
.prep-list-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin: 30px;
    padding: 20px;
}
.list-item {
    display: flex;
    align-items: center;
    height: 4rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 5px;
}
.list-icon {
    width: 15px;
    height: 15px;
    margin: 0px 15px;
    background: url(assets/icons/spread-icon1.svg) center center / contain no-repeat;
}
.list-item p {
    width: 260px;
}
.drop-icon {
    width: 15px;
    height: 15px;
    justify-self: right;
    margin: 0px 15px;
    background: url(assets/icons/spread-icon1.svg) center center / contain no-repeat;
}

.contact {
    width: 100%;
    height: 750px;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}


.contact-container {
    width: 50%;
    height: 650px;
    padding-left: 90px;
}
.contact-container h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 50px 0px 20px;
}
.contact-container > p {
    font-size: 1.6rem;
    margin-bottom: 120px;
}

.contact-card-container {
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
}
.contact-card {
    width: 180px;
    height: 200px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 10px;
    margin: 10px;
    padding: 10px;
}
.contact-card-top {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.card-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-image: url(assets/icons/spread-icon2.svg);
}
.contact-card div + div {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.opaque-button {
    color: var(--blue-king);
    background-color: var(--off-blue);
}
.card-text-container p + p {
    font-size: 1rem;
}
    
.contact-image {
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}
.contact-image img {
    height: 90%;
    object-fit: cover;
}

footer {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 250px;
    padding: 40px 90px 10px;
    font-size: 1.3rem;
    background-color: var(--light-blue);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    height: 80%;
}
.goal-side {
    width: 150px;
}
.goal-side h3 {
    font-size: 2.4rem;
    color: var(--blue-king);
    margin-bottom: 15px;
}

.about-side {
    width: 650px;
    display: flex;
    justify-content: flex-end;
    font-size: 1.4rem;
}
.about-side ul {
    list-style: none;
    margin: 0 25px;
}
.about-side ul li {
    margin: 10px 0;
}

.about-side ul li a{
    text-decoration: none;
    color: #1f3e72;
}

.about-side ul li b {
    font-size: 1.6rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
}
.footer-bottom div p{
    display: inline;
    margin: 0 10px;
}

.footer-bottom div p a{
    text-decoration: none;
    color: #1f3e72;
}

.blue-button:hover{

    background: #2c4cca;
    color: white;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);

}

.list-item:hover{

    background-color: var(--off-blue)
}

.reasons-card:hover{
    background-color: var(--off-blue);
}

.nav-list li:hover{
    color: var(--opaque-blue);
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

.nav-list li:hover, a:focus{
    background-size: 100% 2px;
}