:root {
    --primary-color: #F9592A;
    --secondary-color: #EF8911;
    --background-color: #FFFFFF;
    --text-color: #000000;
    --font-family: "Lato", sans-serif;
    --font-style: normal;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    --dark-background-color: #1B1B1D;
    --dark-text-color: #FFFFFF;

    --gray-shade10: #C6C8CF;
    --gray-shade50: #868686;

    --desktop-padding: 76px;
    --tablet-padding: 32px;
    --mobile-padding: 16px;
}


/* ABOUT HERO */
section.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-size: 32px;
    color: #FFF;
    background-size: cover;
    background-repeat: no-repeat;
}

section.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-inline: 16px;
    padding-block: 32px;
}

section.about-header h1 {
    font-size: 32px;
    text-align: center;
    margin: 0;
}

section.about-header .image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
}

section.journey {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-inline: 16px;
    padding-block: 32px;
}

section.journey .header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

section.journey .header .title {
    font-size: 28px;
    margin: 0;
}

section.journey .header .caption {
    color: #6C6B6B;
}

section.journey .body {
    width: 100%;
}

section.journey .body .story-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: -14px;
    height: 100%;
}

section.journey .body .story-item:last-child .si-liner {
    display: none;
}

section.journey .body .story-item:last-child .image-container .si-liner {
    display: block;
}

section.journey .body .story-item:last-child .si-liner {
    position: absolute;
    bottom: -14px;
    right: 0;
    height: 14px;
    background: var(--primary-color);
    width: 53%;
}

section.journey .body .story-item:nth-child(2n):last-child .si-liner {
    right: unset;
    left: 0;
}

section.journey .body .story-item:nth-child(2n) .image-container {
    border-left: 0;
    border-right: 14px solid transparent;
    padding: 14px 14px 14px 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 450px;
    border-bottom-right-radius: 450px;
    /* margin-top: -14px; */
}

section.journey .body .story-item:nth-child(2n) .image-container .image {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 450px;
}

section.journey .body .story-item:nth-child(2n) .image-container .si-overlay {
    border-top: 14px solid var(--primary-color);
    border-bottom: 14px solid var(--primary-color);
    border-right: 14px solid var(--primary-color);
    border-left: none;
    border-top-right-radius: 450px;
    border-bottom-right-radius: 450px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    /* border-left: none; */
    /* width: 60%;
    position: absolute; */
    left: unset;
    right: -14px;
}

section.journey .body .story-item:nth-child(2n) .image-container .story-item-details h3 {
    text-align: left;
}

section.journey .body .story-item:nth-child(2n) .image-container .story-item-details .caption {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}






section.journey .body .story-item .image-container {
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid transparent;
    padding: 14px 0 14px 14px;
    border-top-left-radius: 450px;
    border-bottom-left-radius: 450px;
    /* border-top-right-radius: 20px; */
    /* border-bottom-right-radius: 20px; */
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 400px;
    gap: 16px;
    position: relative;
}

section.journey .body .story-item .image-container .si-overlay {
    width: 53%;
    position: absolute;
    top: -14px;
    bottom: -14px;
    left: -14px;
    border-top: 14px solid var(--primary-color);
    border-bottom: 14px solid var(--primary-color);
    border-left: 14px solid var(--primary-color);
    border-right: 1px solid transparent;
    border-top-left-radius: 450px;
    border-bottom-left-radius: 450px;
}

section.journey .body .story-item .image-container .image {
    width: 100%;
    height: 55%;
    margin-left: auto;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 500px;
    /* border-bottom-left-radius: 20px; */
    /* border-top-right-radius: 20px; */
    /* border-bottom-right-radius: 20px; */
    /* flex: 1; */
}

section.journey .body .story-item .image-container .story-item-details {
    /* flex: 1; */
    height: 55%;
    display: flex;
    gap: 16px;
}

section.journey .body .story-item .story-item-details i {
    font-size: 30px;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    width: 50px;
    height: 50px;
    background: rgba(239, 137, 17, 0.2);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.journey .body .story-item .image-container .story-item-details i {
    font-size: 16px;
    min-width: 40px;
    border-radius: 8px;
    height: fit-content;
}

section.journey .body .story-item .image-container .story-item-details h3 {
    text-align: right;
}

section.journey .body .story-item .image-container .story-item-details .caption {
    line-height: 110%;
    font-size: 14px;
    text-align: right;
    /* text-align: justify; */
    width: 90%;
    margin-left: auto;
}

section.journey .body .story-item .story-item-details h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

section.journey .body .story-item .story-item-details {
    display: none;
}

/* Responsive Media Queries */
@media (min-width: 768px) {

    /* Styles for screens greater than 768px */
    section.about-hero {
        height: 300px;
    }

    section.about-header {
        padding-inline: var(--tablet-padding);
    }

    section.about-header h1{
        width: 70%;
    }

    section.about-header .image {
        height: 400px;
    }

    section.journey {
        padding-inline: var(--tablet-padding);
    }

    section.journey .header .caption{
        width: 70%;
        margin-inline: auto;
    }

    section.journey .body .story-item {
        gap: 0;
        position: relative;
    }

    section.journey .body .story-item:last-child .image-container .si-liner {
        display: none;
    }

    section.journey .body .story-item:last-child .si-liner {
        display: block;
        bottom: 0;
    }

    section.journey .body .story-item .image-container .story-item-details {
        display: none;
    }

    section.journey .body .story-item .image-container .si-overlay {
        display: none;
    }

    section.journey .body .story-item .story-item-details {
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1;
        padding-left: 22px;
    }

    section.journey .body .story-item .image-container {
        border-top: 14px solid var(--primary-color);
        border-bottom: 14px solid var(--primary-color);
        border-left: 14px solid var(--primary-color);
        padding: 14px 0 14px 14px;
        border-top-left-radius: 450px;
        border-bottom-left-radius: 450px;
        border-top-right-radius: 20px;
        /* border-bottom-right-radius: 20px; */
        flex: 1;
        height: 400px;
    }

    section.journey .body .story-item .image-container .image {
        width: 90%;
        min-height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        border-top-left-radius: 450px;
        border-bottom-left-radius: 450px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        margin-left: 0;
    }

    section.journey .body .story-item:nth-child(2n) {
        flex-direction: row-reverse;
    }

    section.journey .body .story-item:nth-child(2n) .image-container {
        border-left: 0;
        border-right: 14px solid var(--primary-color);
        padding: 14px 14px 14px 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 450px;
        border-bottom-right-radius: 450px;
    }

    section.journey .body .story-item:nth-child(2n) .image-container .image {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 450px;
        border-bottom-right-radius: 450px;
        margin-right: 0;
        margin-left: auto;
    }

    section.journey .body .story-item:nth-child(2n) .story-item-details {
        padding-left: 0;
        padding-right: 25px;
    }
}

@media (min-width: 992px) {

    /* Styles for screens greater than 992px */
    section.about-header {
        padding-inline: var(--desktop-padding);
    }

    section.journey {
        padding-inline: var(--desktop-padding);
    }
}

@media (min-width: 1200px) {
    /* Styles for screens greater than 1200px */

}