.safety * {
    color: var(--dark);
}
.safety-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* min-height: 10.625rem; */
    /* margin-bottom: 5rem; */
    gap: 20px;
}
.safety-container .side {
    width: 50%;
    animation: opacityAnim linear forwards;
    animation-timeline: view();
    animation-range-start: 200px;
    animation-range-end: 400px;
    opacity: 0;
}
.safety-container .subTitle {
    margin-bottom: 1.5rem;
}
.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;
}
.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,
.safety-img-container video {
    width: 100%;
    height: 100%;
    max-height: 950px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.safety-img-container video {
    position: absolute;
    top: 0;
    left: 0;
}
.safety-img-container::after {
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: 100%;
    bottom: 2px;
    left: -2px;
    background: linear-gradient(170deg, #966b2a, #dfb86b, #966b2a);
    border-radius: 20px;
    z-index: -1;
}
.safety-img-container::before {
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: 100%;
    bottom: 2px;
    left: -2px;
    background: linear-gradient(170deg, #966b2a, #dfb86b, #966b2a);
    border-radius: 20px;
    z-index: -2;
    filter: blur(15px);
    scale: 1.01;
}
.safety-img-container article {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    color: var(--dark);
    font-size: 20px;
    background-color: white;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px white;
}
.safety-img-container .main-btn {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    font-size: 1.5rem;
}
.safety-img-container .main-btn:active {
    scale: 1;
    transform: translate(-50%,-50%) scale(0.9);
}