/*--------------------------General-------------------------*/
#content{
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.general_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.title_item{
    border-bottom: #3688a8 solid 1px;
    margin-bottom: 1rem;
    display: flex;
    width: 100%;
}
.title_itemIcon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.item_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 97%;
    margin-bottom: 2em;
}
.item_item{
    width: 100%;
    height: 47%;
    margin:2% 0% 2% 0%;
}

/*--------------For contact map--------------*/
.map{
    width: 100%;
    height: 20rem;
}


/*--------------------------Media queris----------------------------*/
/*Medium screens (tablets larger than 768px)*/
@media screen and (min-width:768px) {
    #content{
        margin-top: 3.5em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .title_item{
        margin-bottom: 2rem;
    }
    .item_content{
        flex-direction: row;
        justify-content: space-around;
    }
    .item_content.reversed{
        flex-direction: row-reverse;
    }
    .item_item{
        width: 47%;
        height: 100%;
    }
}
