.section_hero {
    height: 80vh;
    background-image: url("../assets/hero_1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

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

    text-shadow: -1px 0px 20px rgba(0,0,0,1);
    position: relative;
}

.section_hero_h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.section_hero_hr {
    width: 20%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.section_hero_h1 {
    font-size: 4rem;
    font-family: "Gloock", serif;
}

.custom_divider_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom_divider_1 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.custom_divider_1 .shape-fill {
    fill: #101010;
}

@media (max-width: 768px) {
    .section_hero_hr {
        width: 60%;
    }

    .section_hero_h1 {
        font-size: 2rem;
    }

    .section_hero_h2 {
        font-size: 1rem;
    }
}

.section_works {
    padding: 5vh 10vw;
    margin-bottom: 5vh;
    background-color: #101010;
}

.section_works_header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vh;
}

.section_works_cards {
    display: flex;
    justify-content: space-between;
}

.section_works_card {
    width: 30%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #151515;
    border-radius: 15px;
    border: 1px dashed #303030;
    cursor: pointer;
    background-image: url("../assets/background.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 4%;
}

.section_works_p {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .section_works {
        padding: 5vh 5vw;
    }

    .section_works_cards {
        flex-direction: column;
        gap: 20px;
    }

    .section_works_card {
        width: 100%;
        height: 10vh;
    }
}

.custom_divider_2 {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom_divider_2 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.custom_divider_2 .shape-fill {
    fill: #151515;
}

.section_reflection {
    padding: 5vh 10vw;
    background-color: #151515;
    position: relative;
}

.section_reflection_header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vh;
}

.section_reflection_paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20vw;
    margin-bottom: 80px;
}

.section_reflection_p {
    text-align: justify;
    font-weight: 100;
}

@media (max-width: 1366px) {
    .section_reflection_paragraphs {
        padding: 5vh 10vw;
    }
}

@media (max-width: 768px) {
    .section_reflection {
        padding: 5vh 5vw;
    }

    .section_reflection_paragraphs {
        padding: 0 0;
    }
}

.custom_divider_3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom_divider_3 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom_divider_3 .shape-fill {
    fill: #101010;
}

.section_about {
    padding: 5vh 20vw;
    background-color: #101010;
}

.section_about_box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 40vh;
}

.section_about_boxes:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_about_h1 {
    margin-bottom: 50px;
}

.section_about_h2 {
    margin-bottom: 10px;
}

.section_about_p {
    margin-bottom: 50px;
}

.section_about_a {
    font-weight: 500;
    text-decoration: none;
    width: max-content;
    background-color: #202020;
    padding: 10px 30px;
    border-radius: 8px;
    border: 1px dashed #363636;
}

.section_about_boxes:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.section_about_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5%;
    border: 1px dashed #363636;
}

@media (max-width: 768px) {
    .section_about {
        padding: 5vh 5vw;
    }

    .section_about_box {
        flex-direction: column;
        height: 100%;
    }

    .section_about_boxes:nth-child(1) {
        margin-bottom: 5vh;
    }

    .section_about_h1 {
        margin-bottom: 15px;
    }
}