section {
    display: flex;
    flex-direction : column;
    align-items: center;
    gap : 1em;
    /* margin : 2em; */
    margin-bottom : 2em;
    padding : 2em; 
}


/* ============================================================================================ */
/* SECTION -> ABOUT */
/* ============================================================================================ */
.section--about p{
    width : 50%;
    min-width : 300px;
    text-align: center;
    font-size: 1.2em;
}

/* ============================================================================================ */
/* SECTION -> SERVICES */
/* ============================================================================================ */
section:nth-of-type(odd){
    background-color: var(--color-700);
}
.section--services .services{
    /* width : 500px; */
    display : flex;
    gap: 1em;
}

.section--services .services li{
    width : 50%;
    text-align: center;
    list-style: none;
    padding : 1em;
    /* background-color: var(--color-500); */
    color : var(--color-100);
    font-size: 1.2em;

    display : flex;
    flex-direction : column;
    gap : 0.4em;
}

.section--services .services li .fa-solid{
    font-size : 5em;
    color: var(--color-100);
}


/* ============================================================================================ */
/* SECTION -> LOCATION */
/* ============================================================================================ */
.section--location .location-container {
    display : flex;
    gap : 2em;
}
.section--location .fa-solid{
    font-size : 5em;
}

