.main_section {
    flex-direction: column;
}

h5 {
    color: var(--main-yellow);
    font-size: 10pt;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.cta_list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.cta_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow:
        0px 0px 7px 2px #d6d6d6 
    ;
    margin-bottom: 20px;
    font-family: Lato-Light;
    font-size: 10pt;
    position: relative;
    height: 10vh;
}
.cta_list li div{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.list_bullet {
    font-size: 6pt;
    margin: 0 10px;
    transform: rotate(45deg);
    color: var(--main-purple);
}

.cta_msg {
    background-color: var(--main-yellow);
    color: #fff;
    justify-self: end;
    height: 10vh;
    width: 20%;
    display: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20pt;
    animation: slide-left .5s;
}


.cta_list li:hover div {
    width: 80%;
}
.cta_list li:hover a {
    display: flex;
}

/* SECTION 'OUTILS' */

.tools_section {
    background-color: var(--main-purple);
    width: 100%;
    margin-top: 4vh;
  }
  
  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: auto;
  }
  
  .cta_contact {
    background-color: #fff;
    color: var(--main-yellow);
    font-family: Lato-Light;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 12px;
    margin: auto;
    box-shadow: 0 0px 5.2px rgb(0 0 0 / 6%), 0 0px 13px rgb(0 0 0 / 9%), 0 0px 26.6px rgb(0 0 0 / 11%), 0 0px 54.8px rgb(0 0 0 / 14%), 0 0px 150px rgb(0 0 0 / 20%);
    transform: translateY(-50%);
    text-align: center;
  }
  
  .card {
    background-color: #fff;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
  }
  
  .card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1em;
    color: var(--main-purple);
  }
  
  .card i {
    font-size: 2em;
    color: var(--main-purple);
    margin-bottom: 10px;
  }
  
  .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    font-family: Lato-Light;
    width: 100%;
  }
  
  .card ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 5%;
  }
  
  .card ul li i {
    font-size: 0.7em;
    color: var(--main-purple);
    margin-right: 20px;
    transform: translateY(50%);
  }
  
  .card ul li i::before {
    transform: rotate(45deg);
    display: block;
  }
  
  .card p {
    font-size: 10pt;
  }

@media only screen and (min-width: 1024px) {
    .top_section img {
        top: -5%;
    }
    p {
        font-size: 1.2vw;
    }

    h5 {
        font-size: 1.5vw;
    }

    .cta_list {
        width: 60%;
        margin: 10vh auto;
    }

    .cta_list li div{
        margin-left: 20px;
    }

    .content-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .tools_section {
        position: relative;
        height: 70vh;
    }

    .cta_contact {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%) translateY(-50%);
        padding: 2vw 4vw;
        font-size: 2vw;
        transition: .25s;
    }
  
    .cta_contact:hover {
        color: #fff;
        background-color: var(--main-yellow);
    }
  
    .card h4 {
        font-size: 1.5vw;
    }
  
    .card {
        transition: .25s;
        width: 32%;
    }
    .card p {
      font-size: 1.2vw;
    }
  
    .card:hover {
        transform: scale(1.05);
    }
  

}


  
