@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
    box-sizing: border-box;
}

/* Style the body */
body {
    background-color: rgb(255, 255, 255);
    max-width: 100vw;
    margin: auto;
    font-family: 'Google Sans';
}

.container {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* --------------------------------------------------------------------------------------- */

/* link back */
.container .link-back {
    width: 100%;
    margin-top: 5%;
    padding: 0 20%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.container .link-back a {
    font-size: 14px;
    text-decoration: none;
    color: #0C4723;
    text-wrap: wrap;
}

.container .link-back p {
    font-size: 14px;
    text-decoration: none;
    color: #0C4723;
    text-wrap: wrap;
}

.container .link-back a:hover {
    font-size: 14px;
    text-decoration: underline;
    color: #0C4723;
}

/* ---------------------------------------------------------------------------------- */

/* intro */
.container .intro {
    width: 100%;
    height: fit-content;
    padding: 5% 20%;
}

.container .intro h1 {
    font-size: 30px;
}

/* ---------------------------------------------------------------------------------- */

.prepare-list {
    width: 100%;
    padding: 0 20%;
}

.a-list {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
}

.a-list .image {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a-list .image img {
    height: 150px;
}

.a-list p {
    width: 100%;
    font-size: 20px;
    text-wrap: wrap;
}

.a-list p b {
    color: red;
}

/* ------------------------------------------------------------------------------------------ */

.container h2 {
    font-size: 30px;
    padding: 0 20%;
    margin-top: 10%;
    margin-bottom: 50px;
}

.brochure {
    width: 100%;
    padding: 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure img {
    width: 50%;
    margin: 0 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* -------------------------------------------------------------------------------------- */

.btn-load {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.btn-load button {
    font-size: 16px;
    font-family: inherit;
    padding: 10px 30px;
    background-color: #0C4723;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.5);
    transition: .3s;
    cursor: pointer;
}

.btn-load button a {
    text-decoration: none;
    color: white;
}

.btn-load button:hover {
    background-color: hsla(143, 71%, 16%, 0.3);
}

.btn-load button:hover a {
    color: #0C4723;
}

/* ------------------------------------------------------------------------------------------- */

/* blank */
.container .blank {
    width: 100%;
    height: 500px;
}

/* --------------------------------------------------------------------------------------------- */

/* responsive */
@media screen and (max-width: 1600px) {

    .a-list {
        flex-direction: column;
    }

    .a-list .image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .a-list .image img {
        height: 150px;
    }

    .a-list p {
        width: 100%;
        font-size: 20px;
        text-wrap: wrap;
    }

}

@media screen and (max-width: 1320px) {

    /* intro */
    .container .intro {
        padding: 100px 15%;
    }

    /* link back */
    .container .link-back {
        padding: 0 15%;
    }

    .prepare-list {
        padding: 0 15%;
    }

    .container h2 {
        padding: 0 15%;
    }

    .brochure {
        padding: 0 15%;
    }
}

/* responsive phone */
@media screen and (max-width: 800px) {

    /* link back */
    .container .link-back {
        padding: 0 10%;
    }

    .container .intro p {
        line-height: 25px;
    }

    /* intro */
    .container .intro {
        padding: 30px 10%;
    }

    .container .intro h1 {
        font-size: 20px;
    }

    .prepare-list {
        padding: 0 10%;
    }

    .a-list .image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .a-list .image img {
        height: 100px;
    }

    .a-list p {
        font-size: 14px;
    }

    .container h2 {
        padding: 0 10%;
        font-size: 20px;
    }

    .brochure {
        padding: 0 10%;
        flex-direction: column;
    }

    .brochure img {
        width: 100%;
        margin: 0 10px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    }

}