.practice-sections {
    background-color: #F0F4FF;
    padding-top: 5%;
    padding-bottom: 5%;
    height: auto;
}

.practice-sections-inside {
    width: 60%!important;
}

.practice-sections-titles * {
    text-align: center;
}

.practice-sections-titles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #212E60;
}

.practice-sections-titles p {
    color: #7E7E7E;
}

.practice-sections-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 7.5%;
    row-gap: 20%;
    padding-top: 5%;
    padding-bottom: 10%;
}

.practice-sections-box {
    border: 2px solid #19234C;
    border-radius: 5px;
    padding: 2%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.practice-sections-box * {
    text-align: center;;
}

.practice-sections-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #19234C;
}

.practice-sections-box p {
    color: #7E7E7E;
}

.practice-sections-button {
    display: flex;
    justify-content: center;
}

.practice-sections-button button {
    background-color: #19234C;
    border: 2px solid #19234C;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 1%;
    border-radius: 5px;

    &:hover {
        background-color: #fff;
        color: #19234C;
    }
}