section {
    width: 100%;
    padding-top: 40rem;
}

/* ======================== */
/*      header section      */
/* ======================== */

.header {
    width: 100%;
    min-height: auto;
    padding: 0 var(--p-x);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50rem;
}

.header__title {
    display: flex;
    flex-direction: column;
    min-width: auto;
}

.header__title--main {
    font-size: 36rem;
    line-height: 40rem;
}

.header__title--sub {
    font-size: 16rem;
    line-height: 20rem;
    color: rgba(0, 0, 0, 0.5);
}

.header__sub {
    display: flex;
    justify-content: space-between;
    gap: 20rem;
}

.header__sub__blog {
    display: flex;
    flex-direction: column;
}

.header__sub__blog--head {
    font-size: 16rem;
    line-height: 20rem;
    color: rgba(0, 0, 0, 0.5);
}

.header__sub__blog--value {
    font-size: 16rem;
    line-height: 20rem;
}

.header__sub__project {
    max-width: auto;

    font-size: 16rem;
    line-height: 20rem;
}

/* =============== */
/*      Image      */
/* =============== */

.image_single, .image_double, .image_triple {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 40rem;

    padding: 0 var(--p-x);
}

.img_container {
    width: 100%;
    height: 240rem;

    overflow: hidden;
    border-radius: 5rem;
}

.img_container img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

/* ======================== */
/*      Text and Quote      */
/* ======================== */

.text, .quote {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 var(--p-x);
}

.text__container {
    max-width: 860rem;

    font-size: 16rem;
    line-height: 20rem;
}

.quote__container {
    max-width: 1310rem;
    text-align: center;

    font-size: 36rem;
    line-height: 40rem;
}

.quote__container.cyan {
    color: var(--theme-cyan);
}

.quote__container.orange {
    color: var(--theme-orange);
}

.grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 40rem;

    padding: 0 var(--p-x);
}

.grid .text__container {
    max-width: 675rem;
}

/* =============== */
/*      Video      */
/* =============== */

.video {
    width: 100%;
    padding: 0 var(--p-x);

    display: flex;
    align-items: center;
    justify-content: center;
}

.video__container {
    width: 100%;
    height: auto;
}

.video iframe {
    border-radius: 20rem;
}

/* ==================== */
/*      Responsive      */
/* ==================== */

@media screen and (min-width: 768px) {
    section {
        padding-top: 160rem;
    }

    /* ======================== */
    /*      header section      */
    /* ======================== */
    
    .header {
        width: 100%;
    
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .header__title {
        min-width: 860rem;
    }

    .header__title--main {
        font-size: 80rem;
        line-height: 80rem;
    }

    .header__title--sub {
        font-size: 36rem;
        line-height: 40rem;
    }

    .header__sub {
        flex-direction: row;
        gap: 0rem;
    }

    .header__sub__blog--head {
        font-size: 36rem;
        line-height: 40rem;
    }

    .header__sub__blog--value {
        font-size: 36rem;
        line-height: 40rem;
    }

    .header__sub__project {
        max-width: 635rem;
        font-size: 36rem;
        line-height: 40rem;
    }

    /* =============== */
    /*      Image      */
    /* =============== */

    .image_single, .image_double, .image_triple {
        flex-direction: row;
    }

    .image_single .img_container {
        max-width: 1390rem;
        height: 768rem;

        border-radius: 40rem;
    }

    .image_double .img_container {
        height: 470rem;
        border-radius: 20rem;
    }

    .image_triple .img_container {
        height: 560rem;
        border-radius: 20rem;
    }

    /* ============== */
    /*      Text      */
    /* ============== */

    .text__container {   
        font-size: 36rem;
        line-height: 40rem;
    }

    .quote__container {
        font-size: 80rem;
        line-height: 80rem;
    }

    .grid {
        flex-direction: row;
    }

    /* =============== */
    /*      Video      */
    /* =============== */

    .video__container {
        width: 1390rem;
        height: 768rem;
    }

    .video iframe {
        border-radius: 40rem;
    }
}