/* hero */
.hero__container {
    width: 100%;
    padding: 15px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hero {
    width: 100%;
    height: 50vh;
    position: relative;
}

.hero img {
    width: 33%;
}

.hero__content {
    background-color: var(--main-color);
    width: 40%;
    position: absolute;
    padding: 10px;
    left: 29%;
    top: 70%;
}

.hero__content h2 {
    color: white;
    text-align: center;
}

.hero__content p {
    color: white;
    text-align: justify;
    line-height: 22px;
}

/* section */
.section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* justify-content: center; */
    padding: 8% 5% 3% 5%;
    gap: 40px;
}

.section__card {
    /* width: 33%; */
    height: 100%;
    text-decoration: none;
}

.section__card img {
    width: 100%;
}

.section__card p {
    font-style: italic;
    /* font-weight: bold; */
    color: var(--main-color);
    padding: 20px 0;
    font-size: 1.3rem;
}

/* section1 */
.section1__title {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1__btn {
    padding: 10px 30px;
    font-size: 1.5rem;
    color: white;
    background-color: var(--main-color);
}

.section1__icons {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 30px;
    padding: 3% 0;
}

.section1__card {
    width: 10%;
}

.section1__icons img {
    width: 100%;
}

.section1__card h3 {
    color: var(--main-color);
    text-align: center;
}

.section1__card p {
    color: var(--main-color);
    text-align: center;
}

/* map */
.map {
    margin: 0 5% 5% 5%;
    border: 10px solid var(--main-color);
}

#carouselExampleIndicators {
    display: none;       
}

@media only screen and (max-width:600px){

    .hero__container {
        display: none;
    }

    #carouselExampleIndicators {
        display: block;
        margin: 0 5%;       
    }

    .hero {
        height: 80vh;
    }

    .hero__content {
        position: static;
        width: 100%;

    }

    .section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section1__card {
        width: 25%;
    }

    .section1__icons img {
        width: 100%;
    }

}