.safety-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 10.625rem;
    /* margin-bottom: 5rem; */
}
.safety-container .side {
    width: 50%;
    animation: opacityAnim linear forwards;
    animation-timeline: view();
    animation-range-start: 200px;
    animation-range-end: 400px;
    opacity: 0;
}
.safety-container.bigText .side:nth-child(2) {
    width: 60%;
}
.safety-container p {
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 1.2rem;
}
.safety-container a {
    font-size: 18px;
    width: 100%;
}
.safety-img {
    width: 100%;
    height: 100%;
    padding-bottom: 6rem;
    user-select: none;
    pointer-events: none;
}
.safety-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    animation: fadein linear forwards;
    animation-timeline: view();
    animation-range-start: 100px;
    animation-range-end: 800px;
    scale: .8;
    opacity: 0;
    border-radius: 20px;
}
.safety-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    opacity: 0;
}
.safety-img-container article {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 20px;
    background-color: black;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px black;
}