body {
    background-color: #D8E8DF;
}

.landing-page {
    position: relative;
}

.option-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.option-box video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.option-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000044;
    content: '';
    z-index: 1;
}

/* .option-box img {
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
} */


.option-box .pbmit-service-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    z-index: 2;
}

.option-box .thm-btn {
    font-size: 30px;
    padding: 25px 30px;
    background-color: #215732;
    border: 2px solid #b3a369;
}

.thm-btn:before {
    background-color: #b3a369;
}

.option-box:hover img {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}

.landing-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: .1;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
    .landing-logo {
        width: 250px;
    }

    .landing-bg {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width:575px) {
    .option-box .thm-btn {
        font-size: 20px;
        padding: 15px 20px;
    }
}