.industries{

    width: 100%;

    padding: 8% 5%;
}

/* TITLE */
.industries-title{

    text-align: center;

    margin-bottom: 80px;
}

.industries-title h1{

    font-size: 55px;

    font-family: "Gratelos", sans-serif;

    color: #fc6a9a;

    letter-spacing: 3px;
}

.industries-title p{

    color: #777;

    font-family: "Roboto", sans-serif;

    margin-top: -10px;
}

.industries-title p::after{

    content: "";

    display: block;

    width: 100px;

    height: 4px;

    background: #fc6a9a;

    margin: 25px auto 0;

    border-radius: 10px;
}

/* CONTAINER */
.industries-container{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* CARD */
.industry-card{

    background: white;

    border-radius: 30px;

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow: 0 5px 13px rgba(255, 77, 136, 0.12);
}

.industry-card:hover{

    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(255, 77, 136, 0.25);
}

/* IMAGE */
.industry-img{

    width: 100%;

    height: 250px;

    overflow: hidden;
}

.industry-img img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.industry-card:hover img{

    transform: scale(1.08);
}

/* CONTENT */
.industry-content{

    padding: 30px;
}

.industry-content h2{

    font-size: 28px;

    color: #fc6a9a;

    font-family: "Oswald", sans-serif;

    margin-bottom: 15px;
}

.industry-content p{

    color: #777;

    line-height: 1.7;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    
    
}

/* ================= TABLET ================= */
@media (max-width: 1024px){

    .industries-container{

        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px){

    .industries-container{

        grid-template-columns: repeat(1, 1fr);
    }

    .industries-title h1{

        font-size: 40px;
    }

    .industry-img{

        height: 220px;
    }

    .industry-content{

        padding: 20px;
    }

}