
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.2em;

}
.index-main, .about-us{
    display: flex;
    flex-direction: initial;
    align-items: center;
    justify-content: space-around;
}

.info-section {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    background-color: whitesmoke;
    opacity: 0.8 ;
    padding: 2em 1em;
    margin: 1em 0.5em;

    border: solid #DB7822 ;;
    border-radius: 5px;
    outline: solid 5px white;

}
.info-section p {
    padding-bottom: 0.1em;
}
.line-index{
    height: 10vh;
    width: 100%;
    display: flex;
    padding: 2em 0.5em;
    align-items: baseline;
    justify-content: center;
    margin: 1em;

}
.line-index h3 {
    width: auto;
    display: inherit;
    position: relative;


}
.line-index h3::before, .line-index h3::after {
    content: '';
    border-bottom: solid  #DB7822;
    width: 20em;
    margin: 1em 1em;
    height: 2px;

}