/*==============================
ABOUT PAGE
==============================*/

.page-banner{

    position:relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;

    display: flex;
    align-items: center;
justify-content:center;
    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)),
        url("../../images/about.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.65) 40%,
            rgba(0,0,0,.25) 70%,
            rgba(0,0,0,.05) 100%
        );

    z-index:1;

    pointer-events:none;

}

.page-banner .hero-content{

     position: relative;
    z-index: 2;
    max-width:750px;

    text-align:center;
justify-content: center;
    margin:auto;

}

.page-banner h3{

    color:#C9A14A;
    letter-spacing:3px;
    margin-bottom:15px;

}

.page-banner h1{

    color: #fff;
    font-size: 72px;
    line-height: 1.1;
    margin: 25px 0 35px;

}

.page-banner p{

    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8;
    max-width:650px;
    margin:auto;

}

/*==============================
ABOUT STORY
==============================*/

.about-story{

    padding:120px 0;
    background:#fff;
    align-items:center;

}

.about-story-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-left img{

    width:100%;
     height:650px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

    transition:.6s ease;

}

.about-left:hover img{

    transform:scale(1.03);

}

.about-right span{

    display:inline-block;
    color:#C9A14A;
    letter-spacing:3px;
    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.about-right h2{

    font-size:46px;
     line-height:1.1;
    margin-bottom:30px;
    color:#111;

}

.about-right p{

    color:#666;
    line-height:1.9;
    max-width:560px;
    margin-bottom:20px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;

}

.about-features div{

    padding:18px 9px;

    background:#F8F7F4;

    border:1px solid #ECECEC;

    border-radius:14px;

    transition:.35s;

}

.about-features div:hover{

    transform:translateY(-4px);

    background:#111;

    color:#fff;

    border-color:#C29035;

}

/*==============================
OUR JOURNEY
==============================*/

.journey{

    background:#111;

    padding:120px 0;

    text-align:center;

    overflow:hidden;

}

.journey h4{

    color:#C48F2E;

    font-size:14px;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.journey h2{

    color:#fff;

    font-size:46px;

    margin-bottom:80px;

}

.journey-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

}

.journey-container::before{

    content:"";

    position:absolute;

    top:62px;

    left:8%;

    width:84%;

    height:2px;

    background:rgba(196,143,46,.25);

    z-index:0;

}

.journey-box{

    position:relative;

    background:#1A1A1A;

    border:1px solid rgba(196,143,46,.12);

    border-radius:22px;

    padding:40px 30px;

    transition:.4s;

    z-index:2;

}

.journey-box::before{

    content:"";

    position:absolute;

    top:-12px;

    left:50%;

    transform:translateX(-50%);

    width:22px;

    height:22px;

    border-radius:50%;

    background:#C48F2E;

    border:5px solid #111;

}

.journey-box:hover{

    transform:translateY(-12px);

    border-color:#C48F2E;

    box-shadow:0 25px 60px rgba(196,143,46,.15);

}

.journey-box h3{

    color:#C48F2E;

    font-size:44px;

    margin-bottom:20px;

}

.journey-box p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    font-size:16px;

}

.journey-box:hover h3{

    color:#EFDA6C;

}

.journey-box:hover p{

    color:#fff;

}

/*==============================
MISSION
==============================*/

.mission{

    padding:120px 0;
    background:#F8F7F4;

}

.mission-wrapper{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.mission-card{

     position:relative;
    background:#fff;
    padding:60px 45px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(196,143,46,.12);
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    transition:.4s;

}

.mission-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:#C48F2E;

    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(196,143,46,.15);

}

.mission-card:hover::before{

    width:10px;

}

.mission-card span{

    display:inline-block;

    color:#C48F2E;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.mission-card h2{

    font-size:46px;
    line-height:1.1;
    margin-bottom:28px;
    color:#111;

}

.mission-card p{

    color:#666;
    line-height:1.9;
    font-size:17px;

}

/*==============================
WHY CHOOSE
==============================*/

.why-us-about{

    padding:100px 0;
    text-align:center;
    background:#fafafa;

}

.why-us-about h5{

    color:#C9A14A;
    letter-spacing:3px;

}

.why-us-about h2{

    font-size:44px;
    margin:20px 0 60px;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.why-box{

    background:#fff;
    padding:35px;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.why-box:hover{

    transform:translateY(-10px);

}

.why-box h3{

    margin-bottom:20px;
    color:#111;

}

.why-box p{

    color:#666;
    line-height:1.8;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.about-story,
.mission{

    grid-template-columns:1fr;

}

.about-features{

    grid-template-columns:1fr;

}

.journey-container{

    grid-template-columns:repeat(2,1fr);

}

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.page-banner h1{

    font-size:40px;

}

.about-right h2{

    font-size:34px;

}

.journey h2,
.why-us-about h2{

    font-size:34px;

}

.journey-container,
.why-grid{

    grid-template-columns:1fr;

}

}