:root {
    /* Colors */
    --blue : #0C9FD6;
    --white : #FEFEFE;
    --black : #191919;

}

.aboutPageWrapper .aboutBannerImg {
    max-width: 546px; 
    margin-bottom: -110px;
    width: 100%;
}

.aboutPageWrapper .bannerContent {
    align-items: flex-end;
    flex-direction: row;
    gap : 60px;
    margin-bottom: 0;
}

.aboutPageWrapper .bannerContent h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 48px;
    text-transform: uppercase;
    margin-block : 0 20px;
}

.aboutPageWrapper .bannerHeader {
    overflow: initial;
}

.aboutPageWrapper .bannerBtns {
    margin-bottom : 90px;
}

.aboutPageWrapper .aboutTimeLine {
    padding-top : 110px;
    position : relative;
}

.aboutPageWrapper .aboutTimeLine:after {
    content: "";
    display: block;
    width: 4px;
    height: calc(100% - 200px);
    position : absolute;
    background-color: var(--white);
    z-index: 2;
    bottom : -100px;
    left: 50%;
    transform: translateX(-50%);
}

.aboutPageWrapper .aboutTimeLine .historyRightImg,
.aboutPageWrapper .aboutTimeLine .historyLeftImg {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.aboutPageWrapper .aboutTimeLine  div {
    width: 100%;
}


.aboutPageWrapper .aboutTimeLine img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 516px;
    max-height: 516px;
    margin-block : 60px 90px;
}

.aboutPageWrapper .aboutTimeLine .historyInfo {
    display: flex;
    flex-direction:column ;
    position: relative;
    padding-top : 25%;
}


.aboutPageWrapper .aboutTimeLine .historyLeftImg .historyInfo {
    margin-left : 90px;
} 

.aboutPageWrapper .aboutTimeLine .historyInfo:after {
    content : '';
    width : 60px;
    height : 80px;
    padding-block : 8px;
    background-image: url(../png/target.png);
    background-color: var(--black);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 3;
    top : 27%;
}

.aboutPageWrapper .aboutTimeLine .historyRightImg .historyInfo:after { 
    right: -30px;
}

.aboutPageWrapper .aboutTimeLine .historyLeftImg .historyInfo:after { 
    left:  -120px;
}

.aboutPageWrapper .aboutTimeLine .historyRightImg img {
    box-shadow : 25px 25px var(--blue);
    margin-left : 90px;
} 

.aboutPageWrapper .aboutTimeLine .historyLeftImg img {
    box-shadow : -25px 25px var(--blue);
    margin-right : 90px;
} 


.aboutPageWrapper .aboutTimeLine  h1, .aboutPageWrapper .aboutTimeLine  h2
{
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    margin-block : 0;

}

.aboutPageWrapper .aboutTimeLine  h1  {
    font-size : 85px;
    color : var(--blue);
    text-transform : none;
}

.aboutPageWrapper .aboutTimeLine  h2  {
    font-size : 48px;
    color : var(--white);
    text-transform: uppercase;
    line-height: 1;
}

.aboutPageWrapper .aboutTimeLine  p {
    font-size : 16px;
    color: var(--white);
    padding-right: 57px;
    text-align: justify;
    margin-top : 16px;
}

.aboutPageWrapper .aboutNow {
    min-height: 510px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top : 100px;
}

.aboutPageWrapper .aboutNow h1 {
    font-size : 84px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    color : var(--blue);
    text-transform: uppercase;
    margin-block : 0;
}

.aboutPageWrapper .aboutNow h2 {
    font-size : 48px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    color : var(--white);
    text-transform: uppercase;
    margin-block : 0;
}

.aboutPageWrapper .aboutNow p {
    color : var(--white);
    font-size : 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
    margin-top : 16px;
}

.aboutPageWrapper+.galleryWrapper {
    background-color: transparent;
}

.aboutPageWrapper+.galleryWrapper::before {
    display: none;
}

@media (max-width: 991px) {
    .aboutPageWrapper .bannerContent {
        flex-direction: column;
        align-items: center;
        gap : 0;
    }

    .aboutPageWrapper .bannerBtns {
        margin-bottom : 15px;
    }

    .aboutPageWrapper .bannerContent .order-1 {
        order: 2;
    }
    .aboutPageWrapper .bannerContent .order-2 {
        order: 1;
        margin-right: auto;
        margin-left: 0;
    }

    .aboutPageWrapper .bannerHeader {
        height: auto;
    }

    .aboutPageWrapper .aboutTimeLine .historyRightImg, .aboutPageWrapper .aboutTimeLine .historyLeftImg {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        padding-block : 60px;
    }

    .aboutPageWrapper .aboutTimeLine:after {
        display: none;
    }

    .aboutPageWrapper .aboutTimeLine p {
        padding-right: 0;
        text-align: left;
    }

    .aboutPageWrapper .aboutTimeLine .historyRightImg .historyInfo{
        padding-left: 60px;
    }

    .aboutPageWrapper .aboutTimeLine .historyInfo {
        padding-top : 0;
    }
    
    .aboutPageWrapper .aboutTimeLine .historyInfo:after {
        width: 30px;
        height : 30px;
        background-size: contain;
        padding-block: 2px;
        top : 55px;
    }

    .aboutPageWrapper .aboutTimeLine .historyRightImg::before {
        content: '';
        display: block;
        width: 2px;
        height: 100%;
        background-color: var(--white);
        position: absolute;
        left: 15px;
        top : -60px;
    }
    
    .aboutPageWrapper .aboutTimeLine .container > .historyRightImg:nth-child(1):before {
        top: 120px;
        height: 40%;
    }

    .aboutPageWrapper .aboutTimeLine .historyRightImg .historyInfo:after {
        left: 0;
    }

    .aboutPageWrapper .aboutTimeLine img {
        max-width: calc(100% - 50px);
        max-height: 100%;
        margin : 0;
    }

    .aboutPageWrapper .aboutTimeLine .historyLeftImg img {
        margin-right: 0;
        margin-left: 30px;
    }

    .aboutPageWrapper .aboutTimeLine .historyImg {
        position: relative;
        z-index: 20;
        margin-top : 30px;
    }

    .aboutPageWrapper .aboutTimeLine .historyRightImg img {
        margin-left: 0;
        margin-top : 15px;
    }

     .aboutPageWrapper .aboutTimeLine .historyLeftImg .historyInfo { 
        order : 1;
        margin-left: 0;
        padding-right : 90px;
     }
     .aboutPageWrapper .aboutTimeLine .historyLeftImg .historyImg {
        order: 2;  
     }

     .aboutPageWrapper .aboutTimeLine .historyLeftImg .historyInfo:after {
        right: 47px;
        left: auto;
     }

    .aboutPageWrapper .aboutTimeLine .historyLeftImg::before {
        content: '';
        display: block;
        width: 2px;
        height: 100%;
        background-color: var(--white);
        position: absolute;
        right: 60px;
        top: -60px;
    }

    .aboutPageWrapper .aboutNow {
        position: relative;
        padding-top : 30px;
    }
    
    .aboutPageWrapper .aboutNow::after {
        content: '';
        display: block;
        width: 2px;
        height: 100px;
        background-color: var(--white);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -60px;
        z-index: 3;
    }

}

@media (max-width: 767px) {
   .aboutPageWrapper .aboutTimeLine h1, .aboutPageWrapper .aboutNow h1 {
        font-size : 45px;
    }
    
    .aboutPageWrapper .aboutTimeLine h2,   .aboutPageWrapper .aboutNow h2{
        font-size : 24px;
        line-height: 1.2;
    }

}