@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;
}

/* ------------------------------------------------------- */

.container .content {
    width: 100%;
    margin-top: 5%;
}

.container .content .subcontent {
    width: 100%;
    padding: 20px 20%;

    display: flex;
    align-items: flex-start;
}

.container .content .subcontent .icon {
    padding: 0;
    margin-right: 20px;
    color: #6C0000;
}

.container .content .subcontent p {
    padding: 0;
    margin: 0;
    line-height: 30px;
}

.container .map {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 100px;
    padding: 0 20%;
}

.container .map iframe {
    box-shadow: 1px 1px 10px hsla(0, 0%, 0%, 0.5);
}

/* -------------------------------------------------------------------------------- */

.btn-go-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.btn-go-map 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-go-map button a {
    text-decoration: none;
    color: white;
}

.btn-go-map button:hover {
    background-color: hsla(143, 71%, 16%, 0.3);
}

.btn-go-map button:hover a {
    color: #0C4723;
}

/* -------------------------------------------------------------- */

/* hr */
.container hr {
    width: 60%;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-radius: 100px;
    border-image-source: linear-gradient(to left, #D80000, #6C0000);
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ------------------------------------------------------------------------------------------- */

/* blank */
.container .blank {
    width: 100%;
    height: 500px;
}

/* ------------------------------------------------------------------------------------------------ */

/* responsive */
@media screen and (max-width: 1320px) {

    /* intro */
    .container .intro {
        padding: 100px 15%;
    }

    /* link back */
    .container .link-back {
        padding: 0 15%;
    }

    .container .content .subcontent {
        padding: 20px 15%;
    }

    .container .content .subcontent p {
        line-height: 25px;
    }

    .container .map {
        padding: 0 15%;
    }

    /* hr */
    .container hr {
        width: 70%;
    }
}

/* responsive phone */
@media screen and (max-width: 800px) {

    /* link back */
    .container .link-back {
        padding: 0 10%;
    }

    /* intro */
    .container .intro {
        padding: 30px 10%;
    }

    .container .intro h1 {
        font-size: 20px;
    }

    .container .content .subcontent {
        padding: 20px 10%;
    }

    .container .content .subcontent p {
        line-height: 25px;
        font-size: 14px;
    }

    .container .map {
        padding: 0 10%;
    }

    .btn-go-map button {
    font-size: 14px;
}

    /* hr */
    .container hr {
        width: 80%;
    }
}