/*==============================================
    Video One
===============================================*/
.video-one {
    position: relative;
    display: block;
    z-index: 2;
}

.video-one .shape1 {
    position: absolute;
    top: 100px;
    left: 0;
    opacity: 0.4;
    z-index: -1;
}

.video-one .shape2 {
    position: absolute;
    bottom: -309px;
    right: -30px;
    opacity: 0.4;
    z-index: -1;
}

.video-one::before {
    position: absolute;
    top: 120px;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--lawstart-black);
    content: "";
    z-index: -1;
}

.video-one__inner {
    position: relative;
    display: block;
    padding: 200px 0px 200px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    z-index: 1;
}

.video-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--lawstart-black-rgb), 0.4);
    content: "";
    z-index: -1;
}

.video-one__inner-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__box {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.video-one__box a {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.video-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    color: var(--lawstart-base);
    background-color: var(--lawstart-white);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-one__icon:hover {
    color: var(--lawstart-white);
    background-color: var(--lawstart-base);
}

.video-one__icon::before {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--lawstart-white);
    border-radius: 50%;
    content: "";
}

.video-one__box .border-animation {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid var(--lawstart-white);
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.video-one__box .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.video-one__box .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}