/*=============== HERO AUTHOR ===============*/
.hero__author {
    position: relative;
    padding-block: 175px 150px;
    background-color: var(--turquoise-light);

    .hero__author__container {

        .hero__author__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 5;
            position: relative;

            .author__about {
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                gap: 30px;
                max-width: 575px;
                width: 100%;

                h1 {
                    font-size: 32px;
                    font-weight: var(--font-bold);
                    color: white;
                    text-shadow: 3px 2px 0px #00000063;

                    span {
                        color: #FAEF1F;
                    }
                }

                p {
                    font-size: 18px;
                    font-weight: var(--font-regular);
                    color: white;
                }

                a {
                    font-size: 16px;
                    font-weight: var(--font-medium);
                    color: var(--hydrocarbon-light);
                    background-color: white;
                    padding: 15px 32px;
                    gap: 12px;
                    border-radius: 4px;
                    transition: all 0.3s ease-in-out;

                    i {
                        color: var(--hydrocarbon-dark);
                        font-size: 16px;
                        transition: all 0.3s ease-in-out;
                    }

                    &:hover {
                        background-color: var(--hydrocarbon-dark);
                        color: white;

                        i {
                            color: white;
                            transform: translateY(4px);
                        }
                    }
                }
            }

            .author__img {
                width: 522px;
                height: 431px;
                border-radius: 12px;
                background-color: #77E6E678;
                border: 1px solid #FFFFFF;
                padding: 16px;

                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 12px;
                    object-fit: cover;
                    box-shadow: 0px 25px 50px -12px #00000040;
                }
            }
        }
    }

    &::before {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 188px;
        background-image: url("../image/bg-author.svg");
        background-size: cover;
        background-position: center;
    }
}

/*=============== THE ODYSSEY ===============*/
.the__odyssey {
    background-color: var(--black-dark);
    padding-block: 147px 164px;
    height: auto !important;
    min-height: auto !important;
    overflow: hidden;

    .the__odyssey__content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 64px;

        .header__odyssey {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            text-transform: uppercase;

            span {
                color: var(--barberry-dark);
                font-size: 18px;
                font-weight: var(--font-regular);
                font-family: var(--paragraph-font);
            }

            h2 {
                color: white;
                font-size: 42px;
                font-weight: var(--font-bold);
                margin: 0;
            }
        }
    }

    .odyssey__timeline {
        position: relative;
        max-width: 1100px;
        width: 100%;

        &::before {
            content: "";
            position: absolute;
            top: 160px;
            bottom: 132px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            background: linear-gradient(180deg,
                    rgba(129, 117, 112, 0) 0%,
                    #817570 10%,
                    #817570 90%,
                    rgba(129, 117, 112, 0) 100%);
        }
    }

    .odyssey__item {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 80px 1fr;
        align-items: center;
        min-height: 145px;
        z-index: 2;

        &:not(:last-child) {
            margin-bottom: 127px;
        }
    }

    .odyssey__point {
        grid-column: 2 / 3;
        justify-self: center;
        align-self: center;
        width: 48px;
        height: 48px;
        border: 4px solid #FCF9F4;
        background-color: var(--turquoise-light);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 35px;
        font-weight: var(--font-bold);
        line-height: 1;
        box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    }

    .odyssey__text {
        max-width: 430px;
        align-self: center;
        display: flex;
        justify-content: center;
        flex-direction: column;

        h3 {
            color: var(--turquoise-light);
            font-size: 24px;
            font-weight: var(--font-bold);
            text-transform: uppercase;
            line-height: 1.2;
            margin: 0 0 6px;
        }

        span {
            display: block;
            color: #ECD8C4;
            font-size: 14px;
            font-weight: var(--font-regular);
            margin: 0 0 4px;
            font-family: var(--paragraph-font);
        }

        p {
            color: white;
            font-size: 16px;
            font-weight: var(--font-regular);
            line-height: 1.45;
            font-family: var(--paragraph-font);
            margin: 0;
        }
    }

    .is-left {
        .odyssey__text {
            grid-column: 1 / 2;
            justify-self: end;
            text-align: right;
            width: min(100%, 430px);
            padding-right: 24px;
            margin-top: -25%;
        }
    }

    .is-right {
        .odyssey__text {
            grid-column: 3 / 4;
            justify-self: start;
            text-align: left;
            width: min(100%, 430px);
            padding-left: 24px;
        }
    }

    .is-center {
        grid-template-rows: auto auto;
        min-height: 150px;

        .odyssey__point {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
        }

        .odyssey__text {
            grid-column: 1 / -1;
            grid-row: 2 / 3;
            justify-self: center;
            text-align: center;
            margin-top: 14px;
            padding: 0;
        }
    }

    .is-today {
        margin-top: 34px;

        .odyssey__point {
            background-color: var(--barberry-dark);
            font-size: 20px;

            i {
                color: white;
                font-size: 18px;
            }
        }

        .odyssey__text {
            h3 {
                color: var(--barberry-dark);
            }

            p {
                max-width: 520px;
            }
        }
    }
}

/*=============== BANNAR ===============*/
.bannar__author {
    position: relative;
    padding-block: 230px 227px;

    .bannar__author__container {
        display: flex;
        justify-content: center;
        align-items: center;

        .bannar__author__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            padding: 66px 35px;
            box-shadow: 0px 0px 5px 0px #4A4A4A1F;
            gap: 38px;
            background: linear-gradient(167.45deg, #17C7C6 58.62%, rgba(6, 137, 137, 0.9) 95.96%);
            max-width: 1014px;
            width: 100%;

            .text__bannar {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 6px;
                flex-direction: column;
                max-width: 440px;
                width: 100%;
                z-index: 5;

                h2 {
                    color: white;
                    font-size: 32px;
                    font-weight: var(--font-bold);
                    text-shadow: 0px 6px 40px #9E80648F;
                }

                p {
                    color: white;
                    font-size: 16px;
                    font-weight: var(--font-medium);
                    word-spacing: 2px;
                }
            }

            a {
                background-color: white;
                color: #21B6B6;
                border-radius: 4px;
                padding: 11.5px 40px;
                font-size: 18px;
                font-weight: var(--font-bold);
                box-shadow: 5px 7px 0px 0px #25999980;
                transition: all 0.3s ease-in-out;
                font-family: var(--paragraph-font);
                z-index: 5;

                &:hover {
                    transform: translateY(-4px);
                }
            }

            &::after {
                content: "";
                position: absolute;
                top: -34%;
                left: -21%;
                width: 495px;
                height: 473px;
                background-image: url("../image/maroof.svg");
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
                z-index: 0;
            }
        }
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../image/hero-home.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: -1;
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #D9D9D9;
        z-index: -1;
    }
}


/*=============== RESPONSIVE ===============*/

@media (max-width: 1200px) {

    /*===============HERO AUTHOR===============*/
    .hero__author {
        padding-block: 140px 120px;

        .hero__author__container {

            .hero__author__content {

                .author__about {
                    max-width: 500px;

                    h1 {
                        font-size: 30px;
                    }

                    p {
                        font-size: 17px;
                    }
                }

                .author__img {
                    width: 450px;
                    height: 370px;
                }
            }
        }
    }

    /*===============THE ODYSSEY===============*/
    .the__odyssey {

        padding-block: 120px 130px;


        .the__odyssey__content {

            gap: 55px;


            .header__odyssey {

                h2 {
                    font-size: 38px;
                }
            }
        }


        .odyssey__timeline {

            max-width: 950px;


            &::before {

                top: 150px;
                bottom: 120px;

            }
        }


        .odyssey__item {

            &:not(:last-child) {
                margin-bottom: 100px;
            }
        }


        .odyssey__text {

            max-width: 380px;


            h3 {
                font-size: 22px;
            }


            p {
                font-size: 15px;
            }
        }


        .is-left {

            .odyssey__text {

                width: min(100%, 380px);

            }
        }


        .is-right {

            .odyssey__text {

                width: min(100%, 380px);

            }
        }
    }

    /*===============BANNAR===============*/
    .bannar__author {

        padding-block: 180px 180px;


        .bannar__author__container {


            .bannar__author__content {

                max-width: 900px;
                padding: 55px 30px;
                gap: 35px;


                .text__bannar {


                    h2 {

                        font-size: 30px;

                    }


                    p {

                        font-size: 15px;

                    }
                }


                &::after {

                    width: 420px;
                    height: 400px;
                    top: -30%;
                    left: -18%;

                }
            }
        }
    }
}


@media (max-width: 991px) {

    /*=============== HERO AUTHOR ===============*/
    .hero__author {
        padding-block: 135px 55px;

        .hero__author__container {

            .hero__author__content {
                flex-direction: column-reverse;
                gap: 48px;

                .author__about {
                    align-items: center;
                    text-align: center;
                    max-width: 703px;

                    h1 {
                        font-size: 32px;
                    }

                    p {
                        font-size: 18px;
                    }

                    a {
                        padding: 15px 32px;
                    }
                }


                .author__img {
                    max-width: 640px;
                    width: 100%;
                    height: 337px;
                }
            }
        }


        &::before {
            height: 150px;
        }
    }

    /*===============THE ODYSSEY===============*/
    .the__odyssey {

        padding-block: 195px 208px;


        .the__odyssey__content {


            .header__odyssey {


                span {
                    font-size: 16px;
                }


                h2 {
                    font-size: 32px;
                }
            }
        }


        .odyssey__timeline {


            &::before {
                top: 140px;
                bottom: 200px;
            }
        }

        .is-right {
            .odyssey__text {
                padding-left: 0;
            }
        }

        .is-left {
            .odyssey__text {
                padding-right: 0;
                margin-top: -47%;
            }
        }


        .odyssey__item {
            gap: 16px;


            &:not(:last-child) {

                margin-bottom: 120px;

            }
        }




        .odyssey__text {



            h3 {

                font-size: 18px;

            }


            p {

                font-size: 14px;

            }
        }



        .is-today {



            .odyssey__point {

                font-size: 18px;

            }
        }
    }

    /*===============BANNAR===============*/
    .bannar__author {

        padding-block: 150px 150px;


        .bannar__author__container {


            .bannar__author__content {

                max-width: 750px;
                padding: 50px 25px;
                gap: 30px;


                .text__bannar {
                    z-index: 5;

                    max-width: 400px;


                    h2 {

                        font-size: 24px;

                    }


                    p {

                        font-size: 14px;

                    }
                }


                a {

                    font-size: 18px;
                    padding: 10px 30px;

                }


                &::after {

                    width: 382px;
                    height: 365px;
                    top: -30%;
                    left: -20%;
                }
            }
        }
    }
}


@media (max-width: 768px) {

    /*=============== HERO AUTHOR ===============*/
    .hero__author {

        .hero__author__container {

            .hero__author__content {

                gap: 48px;

                .author__about {

                    gap: 25px;

                    h1 {
                        font-size: 28px;
                    }

                    p {
                        font-size: 16px;
                    }

                    a {
                        padding: 14px 75px;
                    }
                }


                .author__img {
                    width: 100%;
                    max-width: 607px;
                    height: 337px;
                }
            }
        }


        &::before {
            height: 120px;
            bottom: -20px;
        }
    }

    /*===============THE ODYSSEY===============*/
    .the__odyssey {

        padding-block: 122px 86px;


        .the__odyssey__content {

            gap: 64px;


            .header__odyssey {


                span {

                    font-size: 14px;

                }


                h2 {

                    font-size: 28px;

                }
            }
        }

        .odyssey__item {
            grid-template-columns: 1fr 50px 1fr;
        }




        .odyssey__point {

            width: 40px;
            height: 40px;
            font-size: 28px;
            border-width: 3px;
        }


        .odyssey__text {


            h3 {

                font-size: 18px;

            }


            span {

                font-size: 14px;

            }


            p {

                font-size: 14px;

            }
        }
    }

    /*===============BANNAR===============*/
    .bannar__author {

        padding-block: 110px 120px;


        .bannar__author__container {


            .bannar__author__content {

                max-width: 540px;
                padding: 45px 20px;
                gap: 16px;


                .text__bannar {


                    h2 {

                        font-size: 18px;

                    }


                    p {

                        font-size: 12px;

                    }
                }


                a {

                    font-size: 14px;
                    padding: 7.5px 24px;

                }


                &::after {

                    width: 295px;
                    height: 282px;
                    top: -39.5%;
                    left: -23%;
                }
            }
        }
    }
}


@media (max-width: 576px) {

    /*=============== HERO AUTHOR ===============*/
    .hero__author {

        padding-block: 86px 148px;

        .hero__author__container {

            .hero__author__content {

                gap: 26px;


                .author__about {

                    gap: 26px;


                    h1 {
                        font-size: 24px;
                    }


                    p {
                        font-size: 14px;
                    }


                    a {
                        font-size: 14px;
                        padding: 11px 53.5px;
                    }
                }


                .author__img {

                    width: 100%;
                    height: 238px;
                }
            }
        }


        &::before {

            height: 90px;
            bottom: -15px;

        }
    }

    /*===============THE ODYSSEY===============*/
    .the__odyssey {

        padding-block: 60px;


        .the__odyssey__content {


            gap: 64px;


            .header__odyssey {


                span {

                    font-size: 12px;

                }


                h2 {

                    font-size: 18px;

                }
            }
        }


        .odyssey__timeline {
            &::before {
                background: linear-gradient(180deg, rgba(129, 117, 112, 0) 4.7%, #817570 14.23%, #443F3D 51.31%, #817570 90.47%, rgba(129, 117, 112, 0) 100%);
                top: 80px;
                bottom: 150px;
            }
        }


        .odyssey__item {

            gap: 12px;


            &:not(:last-child) {

                margin-bottom: 73px;

            }
        }


        .odyssey__point {

            width: 38px;
            height: 38px;
            font-size: 28px;
        }


        .odyssey__text {


            h3 {

                font-size: 16px;

            }


            span {

                font-size: 12px;

            }


            p {

                font-size: 12px;
                line-height: 1.4;

            }
        }

        .is-left,
        .is-right {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;

            .odyssey__text {
                width: 100%;
                padding: 0;
                margin-top: 0;
                text-align: center;
            }
        }

        .is-today {


            .odyssey__point {


                i {

                    font-size: 18px;

                }
            }
        }
    }

    /*===============BANNAR===============*/
    .bannar__author {

        padding-block: 103px 74px;


        .bannar__author__container {


            .bannar__author__content {

                padding: 60px 13px 97px 13px;
                gap: 39px;


                .text__bannar {


                    h2 {

                        font-size: 22px;

                    }


                    p {

                        font-size: 14px;
                        word-spacing: 1px;

                    }
                }


                a {

                    font-size: 14px;
                    padding: 11px 56px;

                }


                &::after {

                    width: 295px;
                    height: 282px;
                    top: 21%;
                    left: 15%;
                    opacity: 0.15;
                }
            }
        }
    }

    .section {
        padding-inline: 1rem;
    }
}