* {
    box-sizing: border-box;
}

body {

    font-family: 'Roboto', sans-serif;
}

.body_div {
    margin-top: 100px;
}

.active {
    background-color: rgba(31,66,195,0.3);
}

.title_text {
    font-size: 3rem;
    color: #ffffff;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}

.title_sub_text {
    font-size: 1.25rem;

    color: #ffffff;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}

.section_title {
    font-size: 1.337rem;
    color: #f53978;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}


.section_text {
    font-size: 1rem;
    color: black;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}

.feature_box {
    margin-top: 10%;
    clear: both;
    align-items: center;
    display: flex;
    justify-content: center;
}

.card {
    background-color: white;
    width: 320px;
    height: 200px;
    float: left;
    padding: 10px;
    margin: -80px 40px 40px;
}

.card:hover {
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.4);
}

.strategies {
    padding-top: 4rem;
    width: 75%;
    margin: auto;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary {
    width: 100%;
    padding: 0.5rem 0;
    border-top: 2px solid #f53978;
    position: relative;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 300;
    list-style: none;
}

details summary:after {
    content: "+";
    color: #f53978;
    position: absolute;
    font-size: 2.25rem;
    line-height: 0;
    margin-top: 0.75rem;
    right: 0;
    font-weight: 200;
    transform-origin: center;
    transition: 200ms linear;
}

details[open] summary:after {
    transform: rotate(45deg);
    font-size: 2.75rem;
}

details summary {
    outline: 0;
    color: white;
    font-size: 1.5rem;
}


