/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: brandon-grotesque, sans-serif;
    background-color: var(--secondary-color)fff;
    color: var(--font-color);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: brandon-grotesque, sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1440px) {
    .image-section {
        width: 100%;
        padding: 100px 10%;
        display: grid;
        grid-gap: 50px;
    }
    .image-item {
        /* grid-area: -1 / 1; */
        height: 500px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.3);
        padding: 10px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .image-item h3 {
        transform: translateY(40px);
        margin: 10px auto;
        font-size: 35px;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item h4 {
        position: relative;
        z-index: -1;
        font-size: 25px;
        opacity: 0;
        transform: translateY(400px);
        margin: 10px auto;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item a {
        position: relative;
        z-index: -1;
        opacity: 0;
        transform: translateY(400px);
        border: 2px solid #fff;
        border-radius: 3px;
        color: #fff;
        padding: 10px 20px;
        margin: 10px auto;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }
    .image-item:hover {
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.6);
    }
    .image-item:hover h3 {
        transform: translateY(0);
    }
    .image-item:hover h4 {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item:hover a {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item a:hover {
        background: #fff;
        color: #002244;
    }
    .checklist-container {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .checklist-container h2 {
        font-size: 30px;
        font-weight: 500;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container h3 {
        font-size: 30px;
        font-weight: 400;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container p {
        font-size: 25px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
}

@media(max-width: 1440px) and (min-width: 1250px) {
    .image-section {
        width: 100%;
        padding: 100px 5%;
        display: grid;
        grid-gap: 50px;
    }
    .image-item {
        /* grid-area: -1 / 1; */
        height: 400px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.3);
        padding: 10px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .image-item h3 {
        transform: translateY(40px);
        margin: 10px auto;
        font-size: 30px;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item h4 {
        position: relative;
        z-index: -1;
        font-size: 25px;
        opacity: 0;
        transform: translateY(400px);
        margin: 10px auto;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item a {
        position: relative;
        z-index: -1;
        opacity: 0;
        transform: translateY(400px);
        border: 2px solid #fff;
        border-radius: 3px;
        color: #fff;
        padding: 10px 20px;
        margin: 10px auto;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }
    .image-item:hover {
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.6);
    }
    .image-item:hover h3 {
        transform: translateY(0);
    }
    .image-item:hover h4 {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item:hover a {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item a:hover {
        background: #fff;
        color: #002244;
    }
    .checklist-container {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .checklist-container h2 {
        font-size: 30px;
        font-weight: 500;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container h3 {
        font-size: 30px;
        font-weight: 400;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container p {
        font-size: 25px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
}

@media(max-width: 1250px) and (min-width: 769px) {
    .image-section {
        width: 100%;
        padding: 100px 5%;
        display: grid;
        grid-gap: 50px;
    }
    .image-item {
        /* grid-area: -1 / 1; */
        height: 400px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.3);
        padding: 10px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .image-item h3 {
        transform: translateY(40px);
        margin: 10px auto;
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item h4 {
        position: relative;
        z-index: -1;
        font-size: 25px;
        opacity: 0;
        transform: translateY(400px);
        margin: 10px auto;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item a {
        position: relative;
        z-index: -1;
        opacity: 0;
        transform: translateY(400px);
        border: 2px solid #fff;
        border-radius: 3px;
        color: #fff;
        padding: 10px 20px;
        margin: 10px auto;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }
    .image-item:hover {
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.6);
    }
    .image-item:hover h3 {
        transform: translateY(0);
    }
    .image-item:hover h4 {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item:hover a {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item a:hover {
        background: #fff;
        color: #002244;
    }
    .checklist-container {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .checklist-container h2 {
        font-size: 25px;
        font-weight: 500;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container h3 {
        font-size: 25px;
        font-weight: 400;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container p {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
}

@media(max-width: 769px) {
    .image-section {
        width: 100%;
        padding: 50px 5%;
        display: grid;
        grid-gap: 50px;
    }
    .image-item {
        grid-column: -1 / 1;
        height: 350px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.3);
        padding: 10px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .image-item h3 {
        transform: translateY(40px);
        margin: 10px auto;
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item h4 {
        position: relative;
        z-index: -1;
        font-size: 25px;
        opacity: 0;
        transform: translateY(400px);
        margin: 10px auto;
        font-weight: 500;
        color: #fff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
        transition: all 0.2s ease-in-out;
    }
    .image-item a {
        position: relative;
        z-index: -1;
        opacity: 0;
        transform: translateY(400px);
        border: 2px solid #fff;
        border-radius: 3px;
        color: #fff;
        padding: 10px 20px;
        margin: 10px auto;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }
    .image-item:hover {
        box-shadow: inset 0 0 40px 1000px rgba(0, 0, 0, 0.6);
    }
    .image-item:hover h3 {
        transform: translateY(0);
    }
    .image-item:hover h4 {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item:hover a {
        z-index: 0;
        opacity: 1;
        transform: translateY(0);
    }
    .image-item a:hover {
        background: #fff;
        color: #002244;
    }
    .checklist-container {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .checklist-container h2 {
        font-size: 25px;
        font-weight: 500;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container h3 {
        font-size: 25px;
        font-weight: 400;
        color: var(--primary-color);
        margin: 40px 0 10px 0;
    }
    .checklist-container p {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
}