/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 40vh;
    background-image: url('images/safePic.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 50% 45%;
}

.banner-text {
    color: white;
    font-size: 2em;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Timeline Representation */
.step-container {
    padding: 10px 50px;
    position: relative;
    width: 100%;
}

.text-box {
    padding: 20px 30px;
    position: relative;
}

.process::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: white;
    top: 0px;
    margin-left: -7px;
    z-index: 1;
}

.process-header {
    font-size: 3rem;
}

.process-step-delineation {
    font-size: 1.25rem;
}

.process-header-text {
    font-size: 1rem;
}

.circle {
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: white;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    left: -20px;
    z-index: 10;
}

.purple-bg {
    background-color: #4c2672;
}