footer {
    margin-top: 8em;
}

#advantage_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-top: 2em;
}

.advantage {
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 0 1 20em;
    justify-content: flex-start;
    align-items: center;
    margin: 0 10px 3em 10px;
    padding: 2em;
    border-radius: 40px;
    background-color: white;
    border: 2px solid rgba(128, 168, 201);
}

#customized {
    border: 2px solid rgb(253, 188, 67);
    color: #363636;
}

#customized:hover {
    cursor: pointer;
    box-shadow: 0.1em 0.1em 0.8em 0.3em rgb(255, 226, 148);
}

#customized:active {
    box-shadow: inset 0px 0px 1em 0.3em rgb(211, 190, 138);
}

.advantage_title {
    position: relative;
    text-align: start;
    padding: 2px;
    margin: 1em 0 1.5em;
    background-color: white;
    font-size: 1.8em;
}

.advantage_title::before {
    z-index: -1;
    content: '';
    width: 1em;
    height: 1.1em;
    margin: -0.3em 0 0 -0.4em;
    position: absolute;
    border-radius: 999rem;
    border: 2px solid orange;
    color: orange;
}

.advantage_title i {
    display: inline-block;
    margin-bottom: 2px;
    font-style: normal;
    font-size: 1.3em;
    transform: scale(0.75);
}

.advantage_content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.advantage_content {
    width: fit-content;
    margin-top: 1em;
    font-size: 1em;
}

.content_left {
    margin-right: 4em;
}

.content_right {
    margin-left: 4em;
    margin-bottom: 1em;
}