.header-ms {
    padding-top: 200px;
}

.header-ms .caption h1 {
    font-size: 120px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}

.header-ms .caption h1 .arrow {
    width: 70px;
    height: 70px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
}

.header-ms .caption h1 .arrow svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header-ms .caption h1 .underline {
    position: relative;
    border-bottom: 2px solid #fff;
}

.header-ms .caption p {
    font-size: 20px;
    color: #BDBDBD;
}

.header-ms .award-box {
    padding: 70px 40px 40px;
    border-radius: 30px;
    background: var(--main-color) !important;
    color: #2A2D2F;
    position: relative;
}

.award-box::before {
    position: absolute;
    inset: 0;
    background: #74cf39;
    filter: blur(10px);
    z-index: 0;
}

.header-ms .award-box .arrow {
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #2A2D2F;
    position: absolute;
    top: 15px;
    right: 15px;
}

.header-ms .award-box .arrow svg {
    width: 15px;
}

.header-ms .award-box .img {
    text-align: center;
    margin-bottom: 15px;
    -webkit-animation: rotatecircle 20s infinite linear;
    animation: rotatecircle 20s infinite linear;
}

.header-ms .award-box h6 {
    color: #2A2D2F;
}

.header-ms .vid-box {
    border-radius: 10px;
    overflow: hidden !important;
}

.header-ms .vid-box video {
    width: 100%;
}

.header-ms .vid-box video::-webkit-media-controls {
    display: none;
}

.header-ms .feat {
    position: relative;
}

.header-ms .feat:after {
    content: "";
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 50%;
    top: -50px;
    bottom: -70px;
}

@-webkit-keyframes rotatecircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotatecircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

