@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;
}

/* ------------------------------------------------------- */

/* section */
.container .sec1,
.container .sec2 {
    width: 100%;
    padding: 0px 20%;
}

/* section 1 picture slide */

.sec1 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 50px;

    position: relative;
}

.sec1 .swiper {
    width: 80%;
    height: fit-content;
}

.sec1 .swiper .swiper-wrapper img {
    width: 100%;
}

.sec1 .swiper .swiper-button-prev,
.sec1 .swiper .swiper-button-next {
    color: #0C4723;
}

.sec1 .swiper .swiper-pagination-bullet-active {
    background: #0C4723;
}

/* --------------------------------------------------------------------------------- */

.sec2 {
    width: 100%;
    padding: 0 20%;
}

.sec2 .year {
    width: 100%;
}

.sec2 .year h3 {
    font-size: 25px;
}

.sec2 .accordion {
    padding: 18px;
    width: 100%;
    font-family: inherit;
    background-color: #ffffff;
    border: 1px solid #BF0201;
    color: #000000;
    cursor: pointer;
    border-radius: 20px;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    margin: 5px 0;
    line-height: 30px;
}

.sec2 .active,
.accordion:hover {
    background-color: #BF0201;
    color: white;
}

.sec2 .panel {
    padding: 20px;
    display: none;
    background-color: white;
    overflow: hidden;
    border: 2px solid #BF0201;
    border-radius: 20px;
}

.sec2 .panel .info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec2 .panel .info p {
    padding: 0 50px;
    text-align: justify;
    line-break: strict;
    line-height: 25px;
    text-indent: 30px;
}

.sec2 .panel .info img {
    padding: 0px 50px;
    width: 100%;
}

/* ---------------------------------------------------------------------------------- */

/* 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 .sec2 {
        padding: 0 15%;
    }
}

/* 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 .sec2 {
        padding: 0 10%;
    }

    .container .sec2 .panel {
        padding: 10px;

    }

    .container .sec2 .panel .info p {
        padding: 0 20px;
        text-align: justify;
        line-break: strict;
        line-height: 25px;
        text-indent: 20px;
        font-size: 14px;
    }

    .container .sec2 .panel .info img {
        padding: 0px 20px;
        width: 100%;
    }
}