/*======================================
    PROJECTS
======================================*/

.projects{

    background: var(--white);

}

.projects .section-header{

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 40px;

}

.btn-outline-dark{

    display: inline-flex;

    align-items: center;

    gap: 12px;

    height: 52px;

    padding: 0 28px;

    border: 2px solid #D9D9D9;

    border-radius: 4px;

    color: var(--secondary);

    background: var(--white);

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);

}

.btn-outline-dark:hover{

    background: var(--secondary);

    border-color: var(--secondary);

    color: var(--white);

}

.projects .swiper{

    overflow: hidden;

}

.project-card{

    position: relative;

    overflow: hidden;

    border-radius: 8px;

}

.project-card a{

    display: block;

    text-decoration: none;

    color: inherit;

}

.project-image{

    height: 420px;

    overflow: hidden;

}

.project-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.project-card:hover .project-image img{

    transform: scale(1.08);

}

.project-overlay{

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 28px;

    background: linear-gradient(

        180deg,

        rgba(0,0,0,0) 15%,

        rgba(3,17,35,.90) 100%

    );

}

.project-location{

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

}

.project-location i{

    font-size: 12px;

}

.project-overlay h3{
    margin-bottom: 18px;
    color: var(--white);
    font-size: 25px;
    line-height: 1.3;

}

.project-line{

    width: 70px;

    height: 4px;

    margin-bottom: 20px;

    background: var(--primary);

    border-radius: 30px;

}

.project-meta{

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 10px;

}

.project-meta span{

    color: rgba(255,255,255,.9);

    font-size: 13px;

}

.project-meta strong{

    color: var(--primary);

    font-weight: 600;

}

/*======================================
    SWIPER
======================================*/

.projects .swiper-button-prev,
.projects .swiper-button-next{

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--white);

    color: var(--secondary);

    box-shadow: 0 10px 25px rgba(0,0,0,.15);

}

.projects .swiper-button-prev::after,
.projects .swiper-button-next::after{

    font-size: 16px;

    font-weight: 700;

}

.projects .swiper-button-prev:hover,
.projects .swiper-button-next:hover{

    background: var(--primary);

    color: var(--secondary);

}