body::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.552), rgba(255, 255, 255, 0.848)),
        url("../images/DroneOverview.jpg") center/cover no-repeat;
}


/* Hero */
.projects-hero {
    padding: 100px 8% 60px;
    background:
        linear-gradient(rgba(53, 48, 47, 0.563), rgba(41, 37, 36, 0.75)),
        url("../images/projects-hero.jpg") center/cover no-repeat;
    color: #ffffff;
}

.projects-hero-content {
    max-width: 760px;
}

.projects-hero h1 {
    margin-bottom: 18px;
    line-height: 1.2;
}

.projects-hero .section-label {
    color: #7dd3fc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hero-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

/* Main section */
.projects-section {
    background: none;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

/* Project card */
.project-card {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.project-text {
    margin-bottom: 25px;
}

.project-details p {
    margin: 10px 0;
}

.project-details strong {
    min-width: 170px;
}

/* Gallery */

.project-gallery img {
    height: 260px;
}

.project-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 0 #374151;
}

/* Tablet */
@media (max-width: 900px) {
    .projects-hero {
        padding: 85px 8% 50px;
    }

    .projects-hero h1 {
        font-size: 2.4rem;
    }

}

/* Mobile */
@media (max-width: 600px) {
    .projects-hero {
        padding: 75px 5% 45px;
    }

    .projects-hero h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 0.98rem;
    }

}