.kenesis-body .rv-image.image1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.kenesis-body div.rv-content {
    background-color: transparent !important;
}

.kenesis-body .rv-image.image1 > .inner-ctn {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

.kenesis-body .gradient-ctn {
    position: relative;
    height: 500px;
}

.kenesis-body .gradient-wrapper {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
    width: 100%;
    text-align: center;
}

.kenesis-body .gradient-ctn:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 400% !important;
    opacity: 0.5;
    animation: gradiet-fade 25s ease infinite;
}

.kenesis-body .backdrop-ctn .rv-image.image3 > .inner-ctn {
    background-attachment: fixed;
}

.kenesis-body .head,
.kenesis-body .shead {
    background-color: transparent !important;
}

.kenesis-body div.rv-head.head > div,
.kenesis-body div.rv-shead.shead > div {
    padding: 0 !important;
}

.kenesis-body .rv-head.head1 h1 {
    font-size: 75px !important;
    margin-bottom: 10px;
}

.kenesis-body .rv-shead.shead1 h2 {
    font-size: 30px !important; 
}

html .kenesis-body .rv-module {
    position: relative;
    z-index: 5;
    padding: 100px !important;
}

.kenesis-body .bot-ctn {
    width: 100%;
    position: relative;
    height: 260px;
    background-color: #293035;
    z-index: 9;
}

.kenesis-body .go-to-top-btn {
    width: 140px;
    height: 140px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
    border-radius: 50%;
    box-shadow: 0 0 5px 2px #191d20;
    background-color: #fd8203;
    cursor: pointer;
    text-align: center;
    color: white;
}

.kenesis-body .go-to-top-btn i {
    position: absolute;
    top: calc(50% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 50px;
    font-size: 100px;
    transition: 0.5s ease;
}

.kenesis-body .go-to-top-btn:hover i {
    top: calc(50% - 20px);
}

.kenesis-body .bot-logo {
    position: absolute;
    top: 80px;
    height: 180px;
    left: 50%;
    transform: translateX(-50%);
}

.kenesis-body .bot-logo img {
    height: 150px;
}

.kenesis-body .mid-ctn > .inner-ctn {
    max-width: 1200px;
    margin: 100px auto 0 auto;
    text-align: center;
}

@keyframes gradiet-fade {
    
    0%,
    100% {
        background-position: 0 50%
    }
    
    50% {
        background-position: 100% 50%
    }

}