.process_container {
    padding-top: 6em;
    margin-bottom: 3em;
}
.process_container h2 {
    text-align: center;
    color: #2A303F;
}
.processes {
    position: relative;
}
.step_titles {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
h4.process_sub_title {
    text-align: center;
    padding-bottom: 1.5em;
    color: #2a303f;
    font-size: 20px;
    margin: 1em;
    font-weight: 500;
}
.step {
    z-index: 2;
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
.step_opacity .process_graph::before{
    background: #EBE9E3;
}
.step_number {
    color: #A5B1B0;
    font-size: 24px;
    font-weight: 325;
    z-index: 2;
    position: relative;
    background: #fff;
    width: fit-content;
    margin-left: auto;
    padding-left: 5px;
    padding-right: 5px;
}
.process_icon {
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.process_graph:hover:before {
    background: #EBE9E3;
}
.process_icon img {
    width: 40px;
    height: auto;
}
.process_graph {
    width: fit-content;
    text-align: right;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    position: relative;
    cursor: pointer;
}
.process_graph:before {
    content: " ";
    width: 100%;
    height: calc(100% - 26px);
    border: solid 2px #EBE9E3;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
}
.step h4 {
    color: #55646C;
    font-size: 24px;
    font-weight: 300;
    margin-top: 10px;
}
.line {
    height: 1px;
    width: calc(100% - 100px);
    background: #EBE9E3;
    position: absolute;
    left: 50px;
    top: 60px;
}
.process {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
    height: 0;
}
.process.activated {
    display: grid;
    visibility: visible;
    opacity: 1;
    visibility: visible;
    grid-template-columns: 1fr 1fr;
    gap: 6em;
    position: relative;
    padding: 3em;
    height: auto;
}
.process:before {
    content: " ";
    width: 100%;
    height: calc(100% - 4.5em);
    position: absolute;
    border: solid 2px #EBE9E3;
    left: 0;
    bottom: 0;
}
.process_feature {
    z-index: 2;
    text-align: center;
    background: #fff;
}
.process_feature img {
    width: 90%;
}
.process_data h3 {
    color: #2A303F;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 1em;
    background: white;
    padding: 0 10px;
    margin-left: -10px;
    width: fit-content;
}

.process_data {
    z-index: 2;
}