/* -- General -- */

.header_wrapper,
.mobile_menu_wrapper,
.footer_wrapper {
    display: none;
}
.maincontent_wrapper {
    padding-top: 0 !important;
}
.text-bold {
    font-weight: 800;
}
.text-bold-md {
    font-weight: 600;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-green {
    color: var(--green);
}
.text-blue {
    color: var(--accent-color);
}

.g_img-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
}
.g_img-top-left {
    position: relative;
    grid-row: 1 / 5;
    grid-column: 1 / 5;
    margin: 0 -20px -20px 0;
}
.g_img-bottom-right {
    position: relative;
    grid-row: 3 / 6;
    grid-column: 3 / 6;
    margin: 15px 0 0 -40px;
}
.g_img-grid figcaption {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(5, 5, 5, .6);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2px 15px;
    border-radius: 10px;
}



/* -- Hero -- */

#hero_section {
    padding-block: 80px;
    background: none;
    background-color: #fff;
}
#hero_section::before { /* Background */
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/imageserver/UserMedia/eclipse/start_today_bg.webp);
    background-size: cover;
    background-position: center;
    background-color: #202020;
    z-index: -2;
}
#hero_section::after { /* Overlay */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 5, 10, .8) 40%, rgba(0, 5, 10, .25) 100%);
    z-index: -1;
}
.h1-block {
    display: block;
    font-size: .85em;
    font-weight: 300;
    line-height: 1.05em;
    margin-bottom: 8px;
    color: #f0f8fd;
}
.h1-heading {
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 0 8px 16px rgba(0, 0, 0, .45);
    text-shadow: none;
}
.hero-wrapper .underline {
    height: 6px;
    margin-block: 20px;
}
.hero-content p {
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 8px 16px rgba(0, 0, 0, .45);
    text-shadow: none;
}
.hero-logo-wrapper {
    display: flex;
    align-items: center;
    margin: 35px 0 20px;
    gap: 25px;
    -webkit-animation: heroFadeIn 1s ease-in-out .6s backwards;
    animation: heroFadeIn 1s ease-in-out .6s backwards;
}
.hero-logo {
    display: block;
    max-width: 160px;
    width: 100%;
    height: auto;
}
.hero-logo-gaf {
    max-width: 130px;
}
.contact-info-show-on-mobile {
    display: none;
}



/* -- Intro -- */

.intro-callout {
    margin-block: 35px 25px;
    background-color: rgba(179, 42, 70, .1);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.intro-callout-icon {
    width: 45px;
    height: auto;
    margin-top: 2px;
    fill: #B32A21;
}
.intro-callout p {
    width: 100%;
    margin: 0;
    font-size: .925rem;
}



/* -- Danger Signs -- */

#danger_section {
    overflow: hidden;
    background-color: var(--dark-blue);
}
#danger_section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1080px;
    background-image: linear-gradient(180deg, rgba(5, 5, 5, .65) 20%, var(--dark-blue) 100%), url(/imageserver/UserMedia/eclipse/blue_abstract_bg.webp);
    background-size: cover;
    background-position: bottom right;
    z-index: -1;
}
.danger-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 45px auto 20px;
    padding: 0;
    text-align: center;
    gap: 3%;
}
.danger-item {
    position: relative;
    width: calc(25% - (9% / 4));
    margin-block: 10px;
    padding: 35px 20px;
    background-color: rgba(16, 75, 146, .25);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}
.danger-icon {
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(179, 42, 70, .7);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.danger-item p {
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.25em;
}



/* -- Why Us -- */

#why_section {
    overflow: hidden;
    background: linear-gradient(135deg, transparent 95%, var(--accent-color) 95%, var(--accent-color) calc(95% + 20px), transparent calc(95% + 20px), transparent calc(95% + 40px), var(--green) calc(95% + 40px));
}
.why-wrapper {
    position: relative;
}
.why-wrapper::before,
.why-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    transform: translate(-50%, -50%) rotate(45deg);
}
.why-wrapper::before {
    width: 400px;
    height: 400px;
    border: 10px solid var(--green);
}
.why-wrapper::after {
    width: 200px;
    height: 200px;
    border: 15px solid var(--accent-color);
    z-index: -1;
}
.why-list {
    list-style: none;
    margin: 35px 0 20px;
    padding: 0;
}
.why-item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: left;
    gap: 20px;
}
.why-icon {
    width: 50px;
    height: auto;
    margin: 0;
    padding: 10px;
    background-color: rgba(16, 75, 146, .1);
    fill: var(--dark-blue);
    border-radius: 10px;
}
.why-item p {
    position: relative;
    font-size: .95rem;
    font-weight: 500;
    margin: 0;
    width: 100%;
}



/* -- Footer -- */

#footer_section {
    background-color: #101010;
    text-align: center;
}
.footer-service-row {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    gap: 30px;
}
.footer-service-word {
    position: relative;
    font-weight: 300;
    font-size: .9rem;
    text-transform: uppercase;
    color: #fff;
}
.footer-service-word::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: var(--green);
    border-radius: 50%;
}
.footer-service-word:first-child::before {
    display: none;
}
.footer-contact {
    justify-content: center;
}
.footer-contact a {
    color: #fff;
    font-size: .9rem;
}



/* -- Responsiveness -- */

@media (max-width: 1024px) {
    #hero_section {
        min-height: auto;
    }
    #hero_section::before,
    #hero_section::after {
        height: 800px;
    }
    #hero_section::before { /* Background */
        background-image: url(/imageserver/UserMedia/eclipse/start_today_bg-sm.webp);
        background-position: 40% center;
    }
    #hero_section::after { /* Overlay */
        background: linear-gradient(0deg, rgba(0, 5, 10, .9) 40%, rgba(0, 5, 10, .45) 100%);
    }
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    .h1-heading {
        order: 2;
    }
    .hero-content .underline,
    .hero-content p {
        display: none;
    }
    .hero-logo-wrapper {
        margin-block: 0 10px;
        order: 1;
    }
    .hero-logo {
        max-width: 120px;
    }
    .hero-logo-gaf {
        max-width: 100px;
    }
    .contact-info-show-on-mobile {
        display: block;
        font-size: .9rem;
        text-align: center;
        max-width: 450px;
        margin-bottom: 30px;
        width: 100%;
        margin-inline: auto;
    }
    .contact-form h2 + p {
        display: none;
    }

    #intro_section {
        margin: 0;
        padding-top: 0;
    }
    #intro_section::before {
        display: none;
    }

    .danger-item {
        width: calc(50% - (3% / 2));
    }
}

@media (max-width: 750px) {
    .h1-heading {
        font-size: 2.7rem;
    }

    .footer-service-row {
        gap: 20px;
    }
    .footer-service-word::before {
        left: -10px;
    }
}

@media (max-width: 480px) {
    #hero_section {
        padding-top: 40px;
    }
    .h1-heading {
        font-size: 2.2rem;
    }
    .contact-form {
        margin-block: 30px 20px;
    }

    .intro-callout {
        flex-direction: column;
    }
    .intro-callout-icon {
        margin-inline: auto;
    }
    .intro-callout p {
        text-align: center;
    }

    .danger-item {
        width: 100%;
    }

    .footer-service-row {
        gap: 10px;
        flex-wrap: wrap;
    }
    .footer-service-word {
        width: calc(33.3333333333% - (20% / 3));
    }
    .footer-service-word::before {
        display: none;
    }
}