// Our History page

// History Timeline Section 
.history-timeline-section {
    margin-top: 70px;
    background: #FFF9FC;
    padding: 108px 0px 45px 0px;
    position: relative;
    z-index: 0;

    .history-shape-02 {
        position: absolute;
        bottom: 36%;
        left: 12%;
    }

    .history-shape-03 {
        position: absolute;
        bottom: 12%;
        right: -3%;
    }

    .history-shape-04 {
        position: absolute;
        bottom: 24%;
        left: 14%;
    }

    .history-shape-05 {
        position: absolute;
        left: 42%;
        bottom: 65%;
    }
}


// Our journey section here
.our-journey-section {
    &.style-01 {
        background: #F9F9F9;
        margin-top: 42px;
        padding: 120px 0px 70px 0px;
    }

    .journey-bg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        min-height: 730px;
        border-radius: 10px;
        position: relative;
        z-index: -1;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.22);

        &::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(270deg, rgba(4, 7, 46, 0) 0%, rgba(4, 7, 46, 1) 100%);
            z-index: -1;
            border-radius: 10px;
        }

        .content {
            padding: 50px;

            &.style-01 {
                padding: 0;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
            }

            .title {
                font-size: 40px;
                line-height: 48px;
                font-family: var(--heading-font);
                font-weight: 700;
                color: #FFF9FC;

                span {
                    font-size: 32px;
                    line-height: 43px;
                    font-family: var(--body-font);
                    font-weight: 300;
                    color: #FFF9FC;
                }
            }

            p {
                font-size: 18px;
                line-height: 28px;
                font-family: var(--body-font);
                font-weight: 500;
                color: #FFF9FC;
                max-width: 520px;
            }
        }
    }

}

.history-slider {
    overflow: hidden;

    .history-shape {
        position: absolute;
        left: -45%;
        top: 20%;
    }

    .slick-slider-controls {
        .slick-prev {
            position: absolute;
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid #F9F9FF;
            color: #fff;
            border-radius: 6px;
            font-size: 28px;
            transition: .7s all ease;

            &:hover {
                background: #fff;
                color: var(--main-color-one);
            }
        }

        .slick-next {
            position: absolute;
            top: 50%;
            right: 50px;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid #F9F9FF;
            color: #fff;
            border-radius: 6px;
            font-size: 28px;
            transition: .7s all ease;

            &:hover {
                background: #fff;
                color: var(--main-color-one);
            }
        }
    }

    .history-number {
        position: relative;
        left: 20px;
        bottom: 50px;

        .history-year {
            position: relative;

            &::after {
                content: "";
                position: absolute;
                left: -14px;
                top: 10px;
                width: 100%;
                height: 40px;
                border-right: 3px solid rgba(255, 255, 255, 0.8);
            }

            h3 {
                color: #fff;
                font-size: 20px;
                line-height: 28px;
                font-family: var(--body-font);
                font-weight: 400;
                color: #FFF9FC;
                margin-left: 10px;
            }

            // .slick-slide {
            //     .slick-current
            // }
        }
    }
}

.history-year.slick-slide.slick-current.slick-active h3 {
    color: var(--main-color-one);
}