body{
    font-family: poppins;
}

/* --------Hero Section------- */

.hero-section {
    height: 600px;
    background-image: url(images/hero-2.jpg);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}

.hero-section h1 {
    color: var(--background);
    position: absolute;
    bottom: 3%;
    left: 10%;
}


/* --------Reports------- */

.contain-reports {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 4rem 0;
}

.report-box {
    max-width: 420px;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-box img {
    width: 100%;
    max-width: 350px;
    max-height: 250px;
}

.report-box a{
    margin: 1rem;
    font-size: 0.9rem;
}

.report-box h2 {
    margin: 1rem;
    text-align: center;
}

.report-box p {
    margin: 1rem 0 0.5rem;
    font-family: poppins;
    text-align: justify;
}


/* --------Contact------- */

.contain-contact {
    display: flex;
    align-items: center;
}

.contain-contact img {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.contain-contact .text-contain {
    margin: 2rem;
    max-width: 300px;
}

.contain-contact .box-text {
    display: flex;
    justify-content: center;
}

.box-text,
.box-image {
    width: 50%;
}

/* ----------Responsiveness------- */

@media only screen and (max-width: 800px) {
    .contain-reports {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 500px) {
    .contain-contact {
        flex-wrap: wrap;
    }

    .box-text,
    .box-image {
        width: 100%;
    }

    .box-text {
        padding: 2rem 2rem 1rem;
    }
}