:root {
  /* Archify brand colors */
  --blue-archi-lighter: #80DEFE;      
  --blue-archi-light: #006EE5;      
  --blue-archi-dark: #0122ad;      
  --background-blue-light: #F6FAFF; 
  --text-blue-dark: #212e41;     
  --background-white: #ffffff;
  --background-anim: #DBE3F0;    
    

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  /* Typography */
  --font-family: 'Times New Roman', Times, serif;
}



#atouts {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 7rem 1rem 7rem 1rem;
    min-height: 100vh;
    background-color: #f4f8ff;
    /* max-height: 100vh; */
}

#atouts #TITLE {

    padding: 0rem 0rem 2rem 3rem;
    color: var(--blue-archi-dark);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 100;

}


#atouts #SUB-TITLE {

    padding: 0rem 0rem 1.5rem 3rem;
    color: var(--blue-archi-light);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 100;
}

#atouts hr {
    margin-left: 3rem;
    margin-bottom: 4rem;
    margin-right: 80%;
    border: 2px solid var(--blue-archi-dark);
    border-radius: 5px;
}



#atouts-cols {
    display: grid;
    padding: 0rem 10rem;
    gap: 2rem;
    column-gap: 5rem;
    row-gap: 2rem;
    grid-template-columns: repeat(3, 2fr);
    grid-template-rows: auto auto auto auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}


#atouts .columns {
    border-radius: 50px;
    box-shadow: 0 -0px 10px rgba(33,46,65,.18);
    display: grid;
    background-color: #f4f8ff;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 2rem 3rem;
    margin: 0rem auto 0rem auto;
    justify-items: center;
    text-align: center;
    width: 100%;
}



#atouts .card-list {
    width: 100%;
    text-align: center;
    list-style-type: none;
    /* padding-left: 1rem; */
    /* font-weight:bold; */
    color: var(--blue-archi-light);
}



#atouts .card-list li {
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.95rem, 1vw, 1.3rem);
    padding-bottom: 0.4rem;
}



#atouts .archi-img-wrap {
    height: 7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0rem 0;
}

#atouts .archi-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




#atouts .title-card {
    display: flex;
    flex-direction: row;
    vertical-align: center;
    text-align: center;
    justify-content: center;
}

#atouts h3{
    display: flex;
    flex-direction: row;
    vertical-align: center;
    margin: auto;
    padding-left: 0rem;
    /* padding-top: 1rem; */
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    text-align: center;
    color: var(--blue-archi-dark);
}


@media (max-width: 1400px) {

    #atouts-cols {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(3, 2fr);
        width: 90%;
    }

    
    #atouts {
        padding: 3rem 1rem 3rem 1rem;
    }

}

@media (max-width: 768px) {
    #atouts-cols {
        grid-template-columns: repeat(1, 6fr);
        padding: 0rem 4rem;
        margin: 0rem auto;
    }
    #atouts #TITLE {
        text-align: center;
        padding-left: 0rem;
    }

    #atouts #SUB-TITLE {
        text-align: center;
        padding-left: 0rem;
        padding-bottom: 1rem;
    }

    #atouts hr {
        margin-left: 1.5rem;
        margin-bottom: 1.5rem;
        margin-right: 20%;
        margin-left: 20%;
        border: 1px solid var(--blue-archi-dark);
        border-radius: 5px;
    }
    
}


@media (max-width: 480px) {


    #atouts #TITLE {
        padding-left: 1rem;
        padding-bottom: 0.8rem;
    }

    

    #atouts #SUB-TITLE {
        padding-left: 1rem;
        padding-bottom: 0.8rem;
    }

    #atouts h3 {
    }
    
    #atouts .columns {
        width: 100%;
    }

    #atouts .archi-img-wrap {
        height: 100px;
    }

    #atouts .card-list {
        padding-left: 0px;
    }

    #atouts #col3 .title-card {
        flex-direction: column;
        gap: 0.8rem;
    }

    #atouts #col3 .title-card h3{
        padding: 0rem;
    }

    
}
