/* Our Project Start */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================
   PTP PROJECTS SECTION
   UNIQUE NAMESPACE
=================================== */

.ptp-projects-section{
    background:white;
    padding:100px 0;
    overflow:hidden;
    font-family:'Inter',sans-serif;
}

.ptp-container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

.ptp-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:60px;
}

.ptp-header-left{
    flex:1;
}

.ptp-subtitle{
    color:#55ABE1;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    position:relative;
    padding-left:50px;
    display:inline-block;
}

.ptp-subtitle::before{
    content:"";
    width:35px;
    height:2px;
    background:#55ABE1;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.ptp-heading{
    font-size:70px;
    line-height:1.1;
    color:black;
    margin-top:20px;
    margin-bottom:20px;
    font-weight:800;
}

.ptp-heading span{
    display:block;
    color:black;
    font-weight:300;
}

.ptp-description{
    max-width:520px;
    color:black;
    line-height:1.9;
    font-size:18px;
}

.ptp-slider-buttons{
    display:flex;
    gap:15px;
    margin-top:40px;
}

.ptp-nav-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    background:transparent;
    color:black;
    cursor:pointer;
    transition:all .35s ease;
    font-size:16px;
}

.ptp-nav-btn:hover{
    background:#55ABE1;
    border-color:#55ABE1;
    color: white;
}

/* ===================================
   SLIDER
=================================== */

.ptp-slider-wrapper{
    overflow:hidden;
    width:100%;
}

.ptp-grid{
    display:flex;
    gap:24px;
    transition:transform .7s ease;
    will-change:transform;
}

.ptp-card{
    flex:0 0 calc(25% - 18px);
    min-width:calc(25% - 18px);
}

.ptp-card:hover{
    transform:translateY(-10px);
}

.ptp-card-inner{
    height:100%;
}

/* ===================================
   IMAGE
=================================== */

.ptp-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.ptp-image img{
    width:100%;
    height:270px;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
}

.ptp-card:hover .ptp-image img{
    transform:scale(1.08);
}

.ptp-number{
    position:absolute;
    top:15px;
    left:15px;

    width:50px;
    height:50px;

    border-radius:50%;
    background:black;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    color:white;
    z-index:2;
}

/* ===================================
   CONTENT
=================================== */

.ptp-content{
    padding-top:22px;
}

.ptp-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.ptp-category{
    color:#55ABE1;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.ptp-duration{
    background:black;
    color:white;
    font-size:12px;
    padding:6px 12px;
    border-radius:30px;
    display:flex;
    align-items:center;
    gap:6px;
}

.ptp-duration i{
    color:#55ABE1;
}

.ptp-title{
    cursor:pointer;
    color:black;
    font-size:26px;
    line-height:1.3;
    margin-bottom:18px;
    font-weight:600;
}

.ptp-location{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:18px;
    color:black;
    font-size:15px;
}

.ptp-location i{
    color:#55ABE1;
    margin-right:8px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:1200px){

    .ptp-heading{
        font-size:56px;
    }

    .ptp-card{
        flex:0 0 calc(50% - 12px);
        min-width:calc(50% - 12px);
    }
}

@media (max-width:991px){

    .ptp-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .ptp-slider-buttons{
        margin-top:0;
    }
}

@media (max-width:767px){

    .ptp-projects-section{
        padding:70px 0;
    }

    .ptp-heading{
        font-size:42px;
    }

    .ptp-description{
        font-size:15px;
    }

    .ptp-card{
        flex:0 0 100%;
        min-width:100%;
    }

    .ptp-image img{
        height:240px;
    }

    .ptp-title{
        font-size:22px;
    }
}

/* Our Project End */