/*======================================
	*      General Start   *
======================================*/
html {
	scroll-behavior: smooth;
}

.justify {
	text-align: justify;
}

.text-white {
	color: #fff !important;
}

h2.title-head span {
	font-weight: 600;
	color: var(--primary);
}

.heading-bx h1, .heading-bx h2, .heading-bx h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 35px;
    line-height: 45px;
}

.heading-bx h1.title-ext, .heading-bx h2.title-ext, .heading-bx h3.title-ext {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
}

.heading-bx i {
    font-size: 70px;
    color: var(--primary);
}

.section-sp2 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.section-sp5 {
	padding-top: 20px;
	padding-bottom: 50px;
}

.logoHighlight {
	/*color: var(--primary);*/
	font-weight: 700;
	/*white-space: nowrap;*/
	color: var(--themeColor) !important;
}

.truncate {
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.truncateLines {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.truncate2Lines {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.btn-gradient {
	background: linear-gradient(-45deg, var(--buttonHover) 0%, var(--button) 100%);
}

#contact_form_3 #success, #success, #contact_form_3 #error, #error, .LoaderImage, #LoaderImage {
	display: none;
}

.RMM-Btn-14 {
    background: var(--button);
    color: #fff;
    padding: 10px 32px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 0.5s;
    font-size: 16px;
    z-index: 4;
    transition: all 0.5s;
    box-shadow: 0 0 15px rgba(69, 39, 164, 0.5);
    border: none;
}

.RMM-Btn-14 i {
    padding-left: 5px;
}

.RMM-Btn-14:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: var(--button);
    transform-origin: 0 bottom;
    transform: translateX(-100%) rotate(-30deg);
    z-index: -2;
    transition: all 0.5s;
}

.RMM-Btn-14:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 150%;
    background: var(--buttonHover);
    z-index: -1;
    transform-origin: right bottom;
    transform: translateX(100%) rotate(30deg);
    transition: all 0.5s;
}

.RMM-Btn-14:hover {
    color: #fff;
    background-color: transparent;
    box-shadow: 0 5px 17px rgba(69, 39, 164, 0.5);
}

.RMM-Btn-14:hover:before {
    left: 0;
    transform: rotate(0deg);
    transition: all 0.5s;
}

.RMM-Btn-14:hover:after {
    right: 0;
    transform: rotate(0deg);
    transition: all 0.5s;
}

/* Animations */
.move-x {
    animation-name: move-x;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: move-x;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: move-x;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: move-x;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: move-x;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes move-x {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

.move-y {
    animation-name: move-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: move-y;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: move-y;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: move-y;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: move-y;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes move-y {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.zoom-fade {
    -webkit-animation: zoom-fade 3s infinite linear;
    animation: zoom-fade 3s infinite linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.rotate {
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes b-shadow {
    0% {
        box-shadow: 0px 0px 0px 20px var(--waveColor), 0px 0px 0px 40px var(--waveColor), 0px 0px 0px 60px var(--waveColor), 0px 0px 0px 80px var(--waveColor), 0px 0px 0px 100px var(--waveColor);
    }

    50% {
        box-shadow: 0px 0px 0px 50px var(--waveColor), 0px 0px 0px 75px var(--waveColor), 0px 0px 0px 100px var(--waveColor), 0px 0px 0px 125px var(--waveColor), 0px 0px 0px 150px var(--waveColor);
    }

    100% {
        box-shadow: 0px 0px 0px 20px var(--waveColor), 0px 0px 0px 40px var(--waveColor), 0px 0px 0px 60px var(--waveColor), 0px 0px 0px 80px var(--waveColor), 0px 0px 0px 100px var(--waveColor);
    }
}

@media (max-width: 576px) {
    .d-flex {
		display: block !important;
		text-align: center;
	}

    .heading-bx h1, .heading-bx h2, .heading-bx h3 {
        margin-top: 0;
        margin-bottom: 0;
        font-weight: 500;
        font-size: 25px;
        line-height: 35px;
    }
}

@media only screen and (max-width:991px) {
    .order_1 {
        order: 2;
    }

    @keyframes b-shadow {
        0% {
            box-shadow: 0px 0px 0px 10px rgba(224, 0, 108, 0.1), 0px 0px 0px 20px rgba(224, 0, 108, 0.1), 0px 0px 0px 30px rgba(224, 0, 108, 0.1), 0px 0px 0px 40px rgba(224, 0, 108, 0.1), 0px 0px 0px 50px rgba(224, 0, 108, 0.1);
        }

        50% {
            box-shadow: 0px 0px 0px 25px rgba(224, 0, 108, 0.1), 0px 0px 0px 42px rgba(224, 0, 108, 0.1), 0px 0px 0px 50px rgba(224, 0, 108, 0.1), 0px 0px 0px 62px rgba(224, 0, 108, 0.1), 0px 0px 0px 75px rgba(224, 0, 108, 0.1);
        }

        100% {
            box-shadow: 0px 0px 0px 10px rgba(224, 0, 108, 0.1), 0px 0px 0px 20px rgba(224, 0, 108, 0.1), 0px 0px 0px 30px rgba(224, 0, 108, 0.1), 0px 0px 0px 40px rgba(224, 0, 108, 0.1), 0px 0px 0px 50px rgba(224, 0, 108, 0.1);
        }
    }
}
/*======================================
	*      General End   *
======================================*/




/*======================================
	*      Enquiry Popup Start   *
======================================*/
.enquiry {
    transform: rotate(-90deg) translate(-20%,0%);
    transform-origin: right;
    z-index: 999999;
    position: fixed;
    top: 180px;
    right: 35px;
    font-size: 12px;
}

.enquiry .apoint-btn-box {
    transform: none !important;
    padding: 10px;
    cursor: pointer;
    background: var(--sc-primary) !important;
    display: block;
    visibility: visible !important;
    color: #fff;
    font-size: 15px;
}

.enquiry .apoint-btn-box:before,
.enquiry .apoint-btn-box:after {
    content: "";
    background: var(--sc-primary);
    position: absolute;
    height: 100%;
    width: 40%;
    transform: skewX(40deg);
    -moz-transform: skewX(40deg);
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    -o-transform: skewX(40deg);
    top: 0;
    right: -30px;
    z-index: -1;
}

.enquiry .apoint-btn-box:before {
    right: auto;
    left: -30px;
    transform: skewX(-40deg);
    -moz-transform: skewX(-40deg);
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    -o-transform: skewX(-40deg);
}

.enquiry .apoint-btn-box.onFooter {
    background: #fff !important;
    color: #000 !important;
    font-weight: 800;
    border-top: solid 3px #000;
}

.enquiry .apoint-btn-box.onFooter:before,
.enquiry .apoint-btn-box.onFooter:after {
    background: #fff !important;
    top: -3px;
    border: solid 3px #000;
}

#rotate {
    vertical-align: top;
    margin-top: 23px;
    width: 80px;
    height: 30px;
}

.enquiry a {
    cursor: pointer;
    min-height: 30px;
    position: relative;
    border: 1px solid #cb4154;
    border-radius: 8px;
    padding: 4px 8px;
    margin-left: 20px;
    font-variant: small-caps;
    color: #fff !important;
    text-shadow: 0 0 0;
    outline: 0;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px #111;
    box-shadow: 0 1px 4px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 1px rgba(255,255,255,.1);
    background: #021f36;
}

.enquiry a:hover {
    box-shadow: 0px 0px 4px #fff;
    color: #fff !important;
}


.ShowcaseModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    height: 100%;
    overflow: auto;
    display: none;
}

.ShowcaseModal .logo {
    text-align: center;
}

.EnquiryBtn {
    background: #ffa800;
    color: #021f36;
    padding: 5px 10px 5px 10px;
    border: solid 1px #fff;
    font-weight: 700;
}

#EnquiryForm input[type="text"], #EnquiryForm input[type="email"], #EnquiryForm input[type="tel"], #EnquiryForm select, #EnquiryForm textarea {
    background-color: #fff;
    border: 1px solid #333;
    width: 100%;
    border-radius: 5px;
    display: block !important;
    padding: 5px;
}

#EnquiryForm .bootstrap-select {
    display: none;
}

#EnquiryForm #LoaderImage {
    float: right;
    padding-left: 10px;
    padding-top: 0 !important;
}

#EnquiryForm h2 {
    font-size: 35px;
}

.Formoutliner {
    background: #fff;
    /*border: solid 5px #fff;*/
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    border-radius: 5px;
    /*border: 4px solid var(--primary);*/
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg stroke='%23CCC' stroke-width='0' %3E%3Crect fill='%23F5F5F5' x='-60' y='-60' width='110' height='240'/%3E%3C/g%3E%3C/svg%3E");
}

.Formoutliner::before {
    position: absolute;
    content: "";
    opacity: 0.9;
    /*background-color: #ffffff;*/
    background-repeat: repeat-x;
    height: 100%;
    width: 100%;
}

.contact-form #success {
    margin-top: 23%;
}

@media only screen and (max-width: 1200px) {
    .menu-logo h2 {
        font-size: 15px !important;
    }
}

@media only screen and (max-width: 992px) {
    #EnquiryContactSection {
        display: none;
    }

    .menu-logo h2 {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 500px) {
    .menu-logo h2 {
        font-size: 13px !important;
    }

    .menu-logo .tagLine {
        font-size: 13px;
        top: 0;
    }
}

@media only screen and (max-width: 420px) {
    .menu-logo h2 {
        font-size: 12px !important;
    }

    .menu-logo .tagLine {
        font-size: 13px;
        top: 0;
    }
}

@media only screen and (max-width: 400px) {
    .menu-logo h2 {
        font-size: 10px !important;
    }

    .menu-logo .tagLine {
        font-size: 10px;
        top: 0;
    }
}

@media only screen and (max-width: 350px) {
    .menu-logo h2 {
        font-size: 8px !important;
    }

    .menu-logo .tagLine {
        font-size: 9px;
        top: 0;
    }
}

#EnquiryForm {
    padding: 14px 20px;
}

.Formoutliner .main-heading {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin: 0 0 0px;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
    color: #fff !important;
}

.Formoutliner .main-heading::before {
    position: absolute;
    content: "";
    z-index: 0;
    bottom: 25px;
    right: auto;
    left: 4px;
    transform: none;
    width: 70px;
    height: 4px;
    background: #1bbde8 !important;
}

.Formoutliner input {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
}

.Formoutliner textarea {
    margin-bottom: 15px;
    min-height: 80px;
    font-size: 14px;
    padding: 5px 15px;
}

.Formoutliner select {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
    text-align: left;
    width: 100%;
    background: transparent;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
}

.Formoutliner .text-center {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cont-info {
    padding: 10px 30px 1px;
    background: var(--button);
    border-radius: 50px 0 0 0;
    min-height: auto;
}

.cont-info h4 {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #fff;
}

.enquiry-info li a:hover, .enquiry-info li a, .enquiry-info li i {
    color: #f5f5f5;
    font-size: 17px;
}

.enquiry-info li {
    margin-bottom: 10px;
}

.color-1 {
    color: var(--primary);
    font-weight: 600 !important;
}

.color-2 {
    color: var(--button);
    font-weight: 600 !important;
}

@media only screen and (max-width:500px) {
    .enquiry {
        transform: rotate(-90deg) translate(-20%,0%);
        transform-origin: right;
        z-index: 999999;
        position: fixed;
        top: 120px !important;
        right: 35px;
        font-size: 12px;
    }
}
/*======================================
	*      Enquiry Popup End   *
======================================*/



/*======================================
	*      Whatsapp Start   *
======================================*/
.WPButton {
    position: fixed;
    right: 0;
    top: 450px;
    background: #17980E;
    color: #fff;
    font-size: 30px;
    border-radius: 5px 0 0 5px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: block;
    margin-top: 2px;
    line-height: 50px;
    z-index: 9;
}

    .WPButton i {
        top: -3px;
        position: relative;
        color: #fff;
    }

@media only screen and (max-width:500px) {
    .WPButton {
        position: fixed;
        right: 0;
        top: 350px !important;
        background: #17980E;
        color: #fff;
        font-size: 30px;
        border-radius: 5px 0 0 5px;
        width: 40px;
        height: 40px;
        text-align: center;
        display: block;
        margin-top: 2px;
        line-height: 50px;
        z-index: 9;
    }
}
/*======================================
	*      Whatsapp End   *
======================================*/



/*======================================
	*      Enroll Start   *
======================================*/
.icon-bar {
    position: fixed;
    top: 530px;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #eee;
    border-right-color: rgb(238, 238, 238);
    border-right-style: solid;
    border-right-width: 1px;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    -webkit-box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.icon-bar a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 50px;
    color: #222;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
}

.icon-bar a i {
    font-size: 25px;
    color: #000;
}

.icon-bar a:hover i {
    color: #ff7000;
}

.enroll i {
    color: #fff !important;
}

.enroll img {
    width: 27px;
    margin-top: 6px;
    float: left;
    margin-left: 10px;
}

.enroll #enroll {
    /*display: none;*/
    font-weight: 700;
    color: #fff;
    position: relative;
    top: -5px;
    position: absolute;
    width: 210px;
    font-size: 0;
}

.enroll, .enroll a {
    text-decoration: none !important;
    font-size: 13px !important;
    background: var(--sc-primary) !important;
    border-radius: 5px 0 0 5px;
}

.enroll:hover {
    width: 180px !important;
    font-size: 15px !important;
    color: #fff;
}

.enroll:hover #enroll {
    display: block;
    font-size: 16px !important;
}

@media only screen and (max-width:500px) {
    .icon-bar {
        position: fixed;
        top: 430px !important;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border: 1px solid #eee;
        border-right-color: rgb(238, 238, 238);
        border-right-style: solid;
        border-right-width: 1px;
        border-right: 0;
        border-radius: 5px 0 0 5px;
        -webkit-box-shadow: -3px 0 10px -2px rgb(0 0 0 / 10%);
        box-shadow: -3px 0 10px -2px rgb(0 0 0 / 10%);
        z-index: 99;
    }
}
/*======================================
	*      Enroll End   *
======================================*/



/*======================================
	*      Back stop Top Start   *
======================================*/
.progress-wrap {
    position: fixed;
    right: -100px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #fff3f2;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #fff;
}

.progress-wrap i {
    position: fixed;
    right: -100px;
    bottom: 50px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    font-size: 15px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.progress-wrap.active-progress {
    opacity: 1;
    right: 5px;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 767.99px) {
    .progress-wrap.active-progress {
        right: 5px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767.99px) {
    .progress-wrap.active-progress {
        right: 5px;
    }
}
/*======================================
	*      Back stop Top Start   *
======================================*/



/*======================================
	*      Header Start   *
======================================*/
.header {
	top: 0;
}

.menu-bar {
	background: transparent !important;
}

.header .is-fixed .menu-bar {
    background: var(--primary) !important;
}

header {
	min-height: 65px;
}

header .menu-logo span.logo-text {
    font-size: 30px;
    color: #333;
    letter-spacing: normal;
    text-transform: uppercase;
    position: relative;
    vertical-align: middle;
    font-weight: 600;
}

header .is-fixed .menu-logo span.logo-text {
    color: #fff;
}

body .header.position {
	position: relative;
}

.menu-links .nav > li.active > a:before {
	content: '';
	position: absolute;
	left: 35%;
	height: 2px;
	top: 55px;
	width: 25%;
	background: #fff;
	z-index: -1;
	opacity: 0.8;
}

.menu-links .nav > li.active > a, .menu-links .nav > li ul li.active a {
    color: #fff !important;
    font-weight: 600;
}

#header {
    background: transparent;
}

#header .top-bar {
	background: var(--primary);
	color: #fff;
	margin: 0 100px;
	padding: 0 20px;
	position: relative;
	height: 49px;
}

#header .top-bar ul li a {
	color: white;
}

#header .top-bar ul li a:hover {
	color: white;
	font-weight: 600;
}

#header .top-bar:before {
	position: absolute;
	left: -30px;
	top: -33px;
	width: 35px;
	height: 79px;
	content: "";
	background: var(--buttonLight);
	-ms-transform: rotate(-40deg);
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
}

#header .top-bar:after {
	position: absolute;
	right: -30px;
	top: -33px;
	width: 35px;
	height: 79px;
	content: "";
	background: var(--primary);
	-ms-transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
}

#header .top-bar p:after {
	position: absolute;
	right: -30px;
	top: -33px;
	width: 35px;
	height: 79px;
	content: "";
	background: var(--buttonLight);
	-ms-transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
}

#header .top-bar p {
	float: left;
	background: var(--buttonLight);
	font-size: 16px;
	padding: 9px 25px;
	margin: 0 0 0 -20px;
	font-weight: 300;
	position: relative;
	color: white !important;
}

#header .top-bar ul {
	float: right;
}

#header .top-bar ul li {
	float: left;
	list-style: none;
	font-size: 14px;
	margin: 15px 34px 14px;
	position: relative;
}

#header .top-bar ul li i {
	font-size: 20px;
	position: absolute;
	left: -34px;
	top: -3px;
}

#header .top-bar ul li i.icon-icons74 {
	font-size: 27px;
	top: -5px;
}

#header .top-bar ul li i.icon-icons20 {
	font-size: 27px;
	top: -5px;
}

#header .top-bar-simple {
	background: #f2f2f2;
	padding: 0 20px;
	position: relative;
}

#header .top-bar-simple p {
	float: left;
	font-size: 16px;
	padding: 9px 20px;
	margin: 0 0 0 -20px;
	font-weight: 400;
	position: relative;
}

#header .top-bar-simple ul {
	float: right;
}

#header .top-bar-simple ul li {
	float: left;
	list-style: none;
	font-size: 14px;
}

#header .top-bar-simple ul li i {
	font-size: 20px;
}

#header .top-bar-simple ul.social li a i {
	background: none;
	border: 0;
	line-height: 50px;
	height: 49px;
	border-radius: 0;
}
.menuHide {
	visibility: hidden;
	opacity: 0;
	transition: visibility 1s, opacity 0.5s linear;
}

.menuShow {
	visibility: visible;
	opacity: 1;
	transition: visibility 1s, opacity 0.5s linear;
}

.menu-links .nav > li, .menu-links .nav > li ul li span {
	font-family: system-ui;
	text-transform: uppercase;
}

.menuicon span:nth-child(1) {
	top: 2px !important;
}

.menuicon span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.menuicon span:nth-child(3) {
	bottom: 2px !important;
}

.menuicon.open span:nth-child(3) {
	top: 2px !important;
}

.menu-links .nav > li .sub-menu li.active a {
	color: var(--primary) !important;
}

.menu-links.navbar-collapse {
	min-height: 85px;
}

.navbar-toggler span {
	background: #fff !important;
}

.rs-nav .navbar-toggler.open span {
	background: #fff !important;
}

.is-fixed .navbar-toggler span {
	/*background: #fff;*/
}

.mega-menu ul li {
	text-align: left;
}

.mega-menu ul li:hover > a {
	background: var(--primary);
	color: #fff !important;
}

.menu-links .nav > li .mega-menu li a span:after {
	background: unset !important;
}

.menu-logo h2 {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	top: 10px;
	position: relative;
	line-height: initial;
	/*font-family: 'Ethnocentric';*/
}

.menu-logo h2 span {
	color: var(--primary);
	letter-spacing: 0;
	font-size: inherit !important;
}

.menu-logo .tagLine {
	/*font-family: 'Tabitha';*/
	color: var(--sc-primary);
	float: right;
	display: block;
	width: 100%;
	font-size: 18px;
	text-align: right;
	font-weight: 100;
	position: relative;
	top: -5px;
	right: 50px;
}

.menu-bar:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	/*background: url(../images/pattern.png);*/
	opacity: 1;
	background-size: cover;
	background-repeat: round;
	top: 0;
}

.nav > li .sub-menu {
	opacity: 1 !important;
}

.nav > li .sub-menu li a span:after {
	background: unset !important;
}

.menu-links .nav .add-menu-left ul li a {
	font-weight: 700;
}

.menu-links .nav .add-menu-left ul li:hover a {
	color: var(--primary) !important;
}

.sub-menu {
	display: block !important;
}

.menuicon {
	height: 16px;
}

.header.container {
	background: #fff !important;
	min-height: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.header-contant-info img {
	height: 70px
}

.header-contant-info ul li:first-child {
	border-right: unset;
}

.menu-links .nav > li > a {
	/*padding-top: 20px;
	padding-bottom: 20px;*/
	font-weight: 500;
	color: #fff !important;
}

.menu-logo img {
	width: 14%;
}

@media screen and (max-width:768px) {
    header .menu-logo span.logo-text {
        color: #fff;
    }
}

@media only screen and (max-width:360px) {
	header .menu-logo span.logo-text {
		font-size: 15px;
		top: 0;
	}

	.rs-nav .menu-links.show {
		width: 60%;
	}
}

@media only screen and (min-width:360px) and (max-width:624px) {
	header .menu-logo span.logo-text {
		font-size: 16px;
	}

	.menu-logo img {
		width: 20%;
	}

	.rs-nav .menu-links.show {
		width: 60%;
	}
}

@media screen and (max-width: 576px) {
    .header .navbar-toggler, .header .is-fixed .navbar-toggler {
        margin: 25px 25px 14px 15px !important;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .header .navbar-toggler, .header .is-fixed .navbar-toggler {
        margin: 25px 0 14px 15px !important;
    }
}

@media only screen and (min-width:625px) and (max-width: 991px) {
	.rs-nav .menu-links.show {
		width: 80%;
	}

	.menu-links .nav {
		text-align: start;
		margin-left: auto;
	}

	.menu-links .nav > li > a {
		padding-left: 0;
	}

	.menu-links .nav {
		text-align: start;
		margin-left: auto;
	}

	button.back-to-top {
		right: 10px;
	}

	.sub-menu {
		display: block;
	}

	.is-fixed .menu-links .nav > li > a {
		color: #585e6d;
	}

	header .menu-logo span.logo-text {
		font-size: 30px;
		vertical-align: middle;
	}

	.menu-links .nav > li.active > a:before {
		content: '';
		position: absolute;
		left: 15px;
		height: 2px;
		top: 42px;
		width: 25px;
		background: #f6ce33;
	}

	.rs-nav .menu-links .menu-logo {
		display: block;
		float: none;
		height: auto;
		max-width: 100%;
		padding: 20px 15px;
		width: 100%;
		text-align: start !important;
		position: relative;
	}
}

@media only screen and (max-width:1250px) {
	.menu-links .nav > li > a {
		padding: 10px 0px !important;
		border-top: 1px dashed #E9E9E9;
		display: block;
	}

	.menu-links .nav > li > a {
		font-weight: 500;
		color: #333 !important;
	}

	.menu-links .nav > li.active > a:before {
		content: '';
		position: absolute;
		left: 0;
		height: 2px;
		top: 42px;
		width: 25px;
		background: #f6ce33;
	}

	.menu-links .nav > li.active > a, .menu-links .nav > li ul li.active a {
		color: #fff;
		font-weight: 600;
		background: var(--button);
		text-align: start;
		padding-left: 10px !important;
	}

    .menu-links .nav > li.active > a, .menu-links .nav > li ul li.active:hover a {
        color: var(--primary) !important;
        font-weight: 600;
        background: none;
        text-align: start;
        padding-left: 10px !important;
    }
}
/*======================================
	*      Header End   *
======================================*/



/*======================================
	*      Banner Start   *
======================================*/
.banner-section {
    position: relative;
    background: transparent;
    height: 840px;
    top: 1px;
}

.banner-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Banner/RMM-Ecommerce-Solution.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    animation-name: slideInRight;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    -webkit-animation-name: slideInRight;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: slideInRight;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
    -ms-animation-name: slideInRight;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
}

.banner-section:after {
    position: absolute;
    content: '';
    background: var(--primary);
    width: 260px;
    height: 260px;
    left: -160px;
    top: -135px;
    box-shadow: 0 0 0px 45px rgb(104 157 235 / 40%);
    border-radius: 50%;
}

.banner-section .side-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.banner-section .side-icon .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-section .side-icon .icon.icon-1 {
    background: #4527a4;
    width: 60px;
    height: 60px;
    left: 30px;
    bottom: 50%;
    border-radius: 50%;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

.banner-section .side-icon .icon.icon-2 {
    background: #95baf1;
    width: 32px;
    height: 32px;
    left: 60px;
    bottom: 30%;
    border-radius: 50%;
    -webkit-animation: zoom-fade 2s infinite linear;
    animation: zoom-fade 2s infinite linear;
}

.banner-section .side-icon .icon.icon-3 {
    background: #a293d1;
    width: 85px;
    height: 85px;
    left: -42px;
    bottom: 10%;
    border-radius: 50%;
    -webkit-animation: zoom-fade 3s infinite linear;
    animation: zoom-fade 3s infinite linear;
}

.banner-section .banner-left {
    position: absolute;
    left: 10%;
    top: 25%;
    padding: 10px 20px;
    width: 90%;
}

.banner-section h6 {
    color: var(--primary);
}

.banner-section h1 {
	color: #333;
	font-size: 50px;
	line-height: 60px;
}

.banner-section p {
    color: #333;
    font-size: 20px;
    font-style: italic;
}

.banner-section .banner-right {
    position: absolute;
    top: 15%;
    right: 0;
}

.banner-section .baner-img {
    position: relative;
    min-width: 690px;
    min-height: auto;
    margin-top: 0;
    margin-left: 0;
    /*background: url(../images/Banner/rmm-circle-shape.png);*/
}

.banner-section .baner-img .image {
    position: absolute;
}

.banner-section .baner-img .image.image1 {
    left: 50px;
    top: 0;
}

.banner-section .baner-img .image.image2 {
    left: 200px;
    top: 400px;
}

.banner-section .baner-img .image.image3 {
    width: 50%;
    right: 25px;
    top: 0px;
}

.banner-section .baner-img .image.image4 {
    right: 35px;
    top: 290px;
}

.banner-section .baner-img .image.image5 {
    right: 370px;
    top: 85px;
}

@media only screen and (max-width:450px) {
    .banner-section {
        height: 700px;
    }

    .banner-section .side-icon .icon.icon-1 {
        left: -20px;
        bottom: 81%;
    }

    .banner-section h1 {
        color: #333;
        font-size: 30px;
        line-height: 40px;
    }

    .banner-section .banner-left {
        top: 15%;
        left: 5%;
    }

    .banner-section .banner-right {
        position: absolute;
        top: 70%;
        right: 0;
    }

    .banner-section .baner-img {
        min-width: 250px;
    }

    .banner-section .baner-img .image.image1 {
        display: none;
    }

    .banner-section .baner-img .image.image2 {
        display: none;
    }

    .banner-section .baner-img .image.image3 {
        right: 100px;
        top: 75px;
        width: 30%;
    }

    .banner-section .baner-img .image.image4 {
        display: none;
    }

    .banner-section .baner-img .image.image5 {
        display: none;
    }

    .banner-section:before {
        display: none;
    }

    .banner-section:after {
        position: absolute;
        content: '';
        background: var(--primary);
        width: 100%;
        height: 200px;
        left: unset;
        right: 0;
        top: -135px;
        box-shadow: 0 0 0px 45px rgb(104 157 235 / 40%);
        border-radius: 50%;
    }
}

@media only screen and (min-width:450px) and (max-width:580px) {
    .banner-section {
        height: 800px;
    }

    .banner-section .side-icon .icon.icon-1 {
        left: -20px;
        bottom: 81%;
    }

    .banner-section h1 {
        color: #333;
        font-size: 40px;
        line-height: 50px;
    }

    .banner-section .banner-left {
        top: 15%;
        left: 5%;
    }

    .banner-section .banner-right {
        position: absolute;
        top: 70%;
        right: 0;
    }

    .banner-section .baner-img {
        min-width: 400px;
    }

    .banner-section .baner-img .image.image1 {
        left: 250px;
        top: -75px;
        width: 25%;
    }

    .banner-section .baner-img .image.image2 {
        left: 200px;
        top: 120px;
        width: 12%;
    }

    .banner-section .baner-img .image.image3 {
        right: 20px;
        top: -75px;
        width: 30%;
    }

    .banner-section .baner-img .image.image4 {
        right: 10px;
        top: 35px;
        width: 20%;
    }

    .banner-section .baner-img .image.image5 {
        display: none;
    }

    .banner-section:before {
        display: none;
    }

    .banner-section:after {
        position: absolute;
        content: '';
        background: var(--primary);
        width: 100%;
        height: 200px;
        left: unset;
        right: 0;
        top: -135px;
        box-shadow: 0 0 0px 45px rgb(104 157 235 / 40%);
        border-radius: 50%;
    }
}

@media only screen and (min-width:580px) and (max-width:768px) {
    .banner-section {
        height: 800px;
    }

    .banner-section .side-icon .icon.icon-1 {
        left: -20px;
        bottom: 81%;
    }

    .banner-section h1 {
        color: #333;
        font-size: 50px;
        line-height: 60px;
    }

    .banner-section .banner-left {
        top: 20%;
        left: 5%;
    }

    .banner-section .banner-right {
        position: absolute;
        top: 70%;
        right: 0;
    }

    .banner-section .baner-img {
        min-width: 400px;
    }

    .banner-section .baner-img .image.image1 {
        left: 210px;
        top: -75px;
        width: 25%;
    }

    .banner-section .baner-img .image.image2 {
        left: 200px;
        top: 210px;
        width: 12%;
    }

    .banner-section .baner-img .image.image3 {
        right: 120px;
        top: -75px;
        width: 30%;
    }

    .banner-section .baner-img .image.image4 {
        right: 115px;
        top: 92px;
        width: 20%;
    }

    .banner-section .baner-img .image.image5 {
        display: none;
    }

    .banner-section:before {
        display: none;
    }

    .banner-section:after {
        position: absolute;
        content: '';
        background: var(--primary);
        width: 100%;
        height: 200px;
        left: unset;
        right: 0;
        top: -135px;
        box-shadow: 0 0 0px 45px rgb(104 157 235 / 40%);
        border-radius: 50%;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .banner-section {
        height: 800px;
    }

    .banner-section .banner-left {
        top: 20%;
    }

    .banner-section .banner-right {
        position: absolute;
        top: 70%;
        right: 0;
    }

    .banner-section .baner-img {
        min-width: 400px;
    }

    .banner-section .baner-img .image.image1 {
        left: 100px;
        top: -75px;
        width: 25%;
    }

    .banner-section .baner-img .image.image2 {
        left: 200px;
        top: 210px;
        width: 12%;
    }

    .banner-section .baner-img .image.image3 {
        right: 203px;
        top: -75px;
        width: 30%;
    }

    .banner-section .baner-img .image.image4 {
        right: 200px;
        top: 92px;
        width: 20%;
    }

    .banner-section .baner-img .image.image5 {
        display: none;
    }
}

@media only screen and (min-width:991px) and (max-width:1200px) {
    .banner-section {
        height: 600px;
    }

    .banner-section .baner-img {
        min-width: 470px;
    }

    .banner-section .baner-img .image.image1 {
        left: 60px;
        top: 0;
        width: 40%;
    }

    .banner-section .baner-img .image.image2 {
        left: 200px;
        top: 330px;
        width: 17%;
    }

    .banner-section .baner-img .image.image3 {
        right: 80px;
        top: 0px;
        width: 40%;
    }

    .banner-section .baner-img .image.image4 {
        right: 75px;
        top: 190px;
        width: 25%;
    }

    .banner-section .baner-img .image.image5 {
        display: none;
    }
}

@media only screen and (min-width:1200px) and (max-width:1350px) {
    .banner-section .baner-img {
        min-width: 500px;
    }

    .banner-section .baner-img .image.image1 {
        left: 60px;
        top: 0;
        width: 40%;
    }

    .banner-section .baner-img .image.image2 {
        left: 200px;
        top: 400px;
        width: 17%;
    }

    .banner-section .baner-img .image.image3 {
        width: 50%;
        right: 80px;
        top: 0px;
        width: 40%;
    }

    .banner-section .baner-img .image.image4 {
        right: 75px;
        top: 190px;
        width: 25%;
    }

    .banner-section .baner-img .image.image5 {
        right: 290px;
        top: 85px;
        width: 10%;
    }
}
/*======================================
	*      Banner End   *
======================================*/



/*======================================
	*      About Start   *
======================================*/
.about-section {
    position: relative;
}

.about-section .about-left {
    position: relative;
}

.about-section .about-left .rotate-img {
    position: absolute;
    left: 0;
    top: -20%;
}

.about-section .about-left .static-img {
    position: absolute;
    top: 15%;
    left: 10%;
}

.about-section p {
	text-align: justify;
}

@media screen and (max-width:992px) {
    .about-section {
        margin-top: 15%;
    }

    .about-section .about-left .rotate-img {
       display: none;
    }

    .about-section .about-left .static-img {
        position: unset;
        text-align: center;
    }
}
/*======================================
	*      About End   *
======================================*/



/*======================================
	*      Capabilities Start   *
======================================*/
.capabilities-section {
    position: relative;
}

.capabilities-section .what-box {
    position: relative;
    background: var(--primary);
    padding: 15px 25px 0px 25px;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.capabilities-section .what-box:hover {
    background: var(--sc-primary);
}

.capabilities-section .bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: -90px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/Background/rmm-shape1.png);
}

.capabilities-section .what-box .icon {
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
    font-size: 60px;
}

.capabilities-section .what-box .icon img {
    width: 20%;
}

.capabilities-section .what-box .title {
    position: relative;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.capabilities-section .what-box .para {
    position: relative;
    color: #fff;
    text-align: justify;
}

@media screen and (max-width:767px) {
    .capabilities-section .what-box {
        height: auto;
    }

    .capabilities-section .bg-layer {
        bottom: 0;
    }
}

@media screen and (min-width:767px) and (max-width:1200px) {
    .capabilities-section .what-box {
        height: 340px;
    }

    .capabilities-section .bg-layer {
        bottom: -160px;
    }
}
/*======================================
	*      Capabilities End   *
======================================*/



/*======================================
	*      Features Start   *
======================================*/
.features-section {
    position: relative;
}

.features-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Features-Bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.features-section .features ul li.feature-box {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 20px 20px 30px;
    border-radius: 10px;
    -webkit-transition: all .7s ease 0s;
    transition: all .7s ease 0s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0px 30px 20px 0px rgb(0 37 93 / 15%);
}

.features-section .features ul li.feature-box:before {
    position: absolute;
    content: '';
    top: 30%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(10deg);
    transform: translateY(100%) rotate(10deg);
}

.features-section .features ul li.active.feature-box:before {
    position: absolute;
    content: '';
    top: 30%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translateY(0) rotate(10deg);
    transform: translateY(0) rotate(10deg);
}

.features-section .features ul li.feature-box:hover:before {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(10deg);
    transform: translateY(0) rotate(10deg);
}

.features-section .icon {
    width: 95px;
    height: 60px;
    line-height: 60px;
    margin-right: 10px;
    background: var(--sc-primary) none repeat scroll 0 0;
    border-radius: 10px;
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    position: relative;
    z-index: 1;
    text-align: center;
}

.features-section .icon:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(88%, 0%, 42%, 50%);
    border-radius: 5px;
    color: #fff;
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    left: 0;
    top: 0;
    z-index: -1;
}

.features-section .text {
    padding-left: 15px
}

.features-section .icon i {
    -webkit-transform: rotate(-42deg);
    transform: rotate(-42deg);
    position: absolute;
    width: 100%;
    left: 0;
    top: 20px;
}

.features-section .icon i:before {
    margin-left: 8px;
    font-size: 28px;
    color: #fff;
}

.features-section .text h3 {
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 7px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s
}

.features-section .features ul {
    padding: 0;
}

.features-section .features ul li.active.feature-box,
.features-section .features ul li.feature-box:hover {
    background: var(--primary) none repeat scroll 0 0;
    color: #fff;
}

.features-section .features ul li.active.feature-box .text h3,
.features-section .features ul li.feature-box:hover .text h3 {
    color: #fff
}

.features-section .features ul li.active.feature-box .text p,
.features-section .features ul li.feature-box:hover .text p {
    color: #fff
}

.features-section .features ul li.active.feature-box .icon i:before,
.features-section .features ul li.feature-box:hover .icon i:before {
    color: #4777f4
}

.features-section .features ul li.active.feature-box .icon,
.features-section .features ul li.feature-box:hover .icon {
    background: rgba(255, 255, 255, 0.75) none repeat scroll 0 0;
}

.features-section .features ul li.active.feature-box .icon:after,
.features-section .features ul li.feature-box:hover .icon:after {
    background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
}
/*======================================
	*      Features End   *
======================================*/



/*======================================
	*      Why Us Start   *
======================================*/
.why-us-section .img {
    text-align: center;
    position: relative;
}

.why-us-section .img img {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    width: 400px;
    height: 400px;
    animation: none;
    object-fit: cover;
    z-index: 5;
    border-radius: 50%;
}

.why-us-section .img::after {
    position: absolute;
    content: " ";
    width: 250px;
    height: 250px;
    background: #fff;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: b-shadow 2s linear infinite;
}

.shad-item:not(.light) .item {
    box-shadow: rgba(24, 32, 79, 0.25) 0px 40px 80px, rgba(255, 255, 255, 0.5) 0px 0px 0px 0.5px inset;
    border-radius: 0px 30px 40px 40px;
    padding: 20px 30px;
    background: #fff;
    transition: 0.5s;
    background: rgba(255,255,255,.95);
}

.shad-item .item {
    border-radius: 10px;
    padding: 30px 40px;
    transition: 0.5s;
    height: 300px;
}

.shad-item .item .icon {
    border-radius: 50%;
    color: #fff;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 25px;
    margin-bottom: 10px;
}

.shad-item .before-bg {
    width: 80%;
    height: 315px;
    border-radius: 0px 40px 40px;
    transform: skewY(8deg);
    transform-origin: left top 0px;
    top: 0px;
    position: absolute;
    z-index: -1;
    transition: 0.5s all;
}

.shad-item:not(.light) .item:hover {
    transform: translateY(-3px);
    box-shadow: rgba(24, 32, 79, 0.25) 0px 100px 100px, rgba(255, 255, 255, 0.5) 0px 0px 0px 0.5px inset;
}

.shad-item:not(.light) [class*='col-']:hover .before-bg {
    transform: skewY(15deg);
    width: 60%;
}

.why-us-section .box-1 {
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0px 30px 20px 0px rgb(0 37 93 / 15%);
    margin-bottom: 30px;
}

.why-us-section .box-1 h5 {
    text-align: center;
    margin-bottom: 25px;
}

.why-us-section .box-1 ul {
    list-style: none;
    padding-left: 0;
}

.why-us-section .box-1 ul li {
    position: relative;
    padding-bottom: 20px;
    font-size: 17px;
}

.why-us-section .box-1 ul li:before {
    content: "\e600";
    padding-right: 10px;
    font-family: 'themify';
    opacity: 1;
    color: #fff;
    background-image: -webkit-linear-gradient(135deg, #fed192 0, #9946b2 51%, #fed192 100%);
    background-image: linear-gradient(135deg, #fed192 0, #9946b2 51%, #fed192 100%);
    padding: 9px 11px;
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
}

@media screen and (max-width:991px) {
    .why-us-section .img img {
        width: 300px;
        height: 300px;
    }

    .why-us-section .img {
        margin-top: 50px;
    }

    .shad-item .item {
        margin-bottom: 120px;
        height: 300px;
    }

    .shad-item .before-bg {
        height: 315px;
    }
}

@media screen and (min-width:991px) and (max-width:1200px) {
    .shad-item .item {
        height: 360px;
    }

    .shad-item .before-bg {
        height: 375px;
    }
}
/*======================================
	*      Why Us End   *
======================================*/



/*======================================
	*      Variants Start   *
======================================*/
.variants-section .card {
    position: relative;
    max-width: 350px;
    height: 450px;
    background: linear-gradient(-45deg,#fe0847,#feae3f);
    border-radius: 15px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.1);
    box-shadow: 0 10px 15px rgba(0,0,0,.1);
    -webkit-transition: .5s;
    transition: .5s;
}

.variants-section .card:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.variants-section .card.color-1 {
    background: cornflowerblue;
}

.variants-section .card.color-2 {
    background: cornflowerblue;
}

.variants-section .card.color-3 {
    background: cornflowerblue;
}

.variants-section .card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 70%;
    height: 40%;
    background: rgba(255, 255, 255, .1);
    z-index: 1;
    -webkit-transform: skewY(-5deg) scale(1.5);
    transform: skewY(-5deg) scale(1.5);
}

.variants-section .title i {
    color: cornflowerblue;
    background: #fff;
    font-size: 50px;
    width: 100px;
    height: 100px;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.1);
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
}

.variants-section .title h2 {
    position: relative;
    margin: 20px 0 0;
    padding: 0;
    color: #fff;
    font-size: 30px;
    z-index: 2;
    padding-bottom: 15px;
}

.variants-section .price, .option {
    position: relative;
    z-index: 2;
}

.variants-section .price h4 {
    margin: 0;
    padding: 20px 0;
    color: #fff;
    font-size: 60px;
}

.variants-section .option ul {
    margin: 0;
    padding: 0;
}

.variants-section .option ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 16px;
}

.variants-section .card a {
    position: relative;
    z-index: 2;
    background: #fff;
    color: black;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    display: block;
    text-align: center;
    margin: 20px auto 0;
    font-size: 16px;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.variants-section .card a:hover {
    text-decoration: none;
}

@media screen and (max-width:576px) {
    .variants-section .card {
        height: 450px;
    }
}
/*======================================
	*      Variants End   *
======================================*/




/*======================================
	*      Demo Start   *
======================================*/
.demo-section {
    position: relative;
}

.demo-section:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Demo-Bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.5;
}

.demo-section ul {
	list-style: none;
	padding-left: 0;
}

.demo-section ul li {
	position: relative;
	padding-bottom: 20px;
	font-size: 20px;
}

.demo-section ul li:before {
	content: "\f101";
	padding-right: 10px;
	font-family: fontawesome;
	opacity: 1;
	color: #fff;
	background-color: var(--button);
	padding: 7px 11px;
	margin-right: 10px;
	border-radius: 50%;
	text-align: center;
}

.demo-form {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 30px 20px 0px rgb(0 37 93 / 15%);
}

.form-area-box .form-group.focused label {
	top: -30px;
	background: #fff;
	margin: 0;
	z-index: 2;
	padding: 5px;
	font-size: 12px;
	font-weight: 600;
	color: #000;
	left: 0;
}

@media only screen and (max-width:576px) {
	.demo-section ul li {
		position: relative;
		padding-bottom: 20px;
		font-size: 15px;
	}
}

@media only screen and (max-width:350px) {
	.demo-section ul li {
		display: flex;
		padding-bottom: 10px;
		font-size: 15px;
		align-items: center;
	}
}
/*======================================
	*      Demo End   *
======================================*/



/*======================================
	*      Hooks Start   *
======================================*/
.hooks-section {
    position: relative;
}

.hooks-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.hooks-section h3, .hooks-section p {
    color: #333;
    font-style: italic;
}

.hooks-section .hooks-right {
    position: relative;
}

.hooks-section .hooks-right img {
    position: absolute;
    top: -50px;
    left: 0;
    width: 60%;
}

@media only screen and (max-width:1200px) {
    .hooks-section .hooks-right img {
        top: 0;
    }
}

@media only screen and (max-width:768px) {
    .hooks-section .hooks-right img {
        display: none;
    }
}
/*======================================
	*      Hooks End   *
======================================*/




/*======================================
	*      Footer Start   *
======================================*/
.pg-footer {
    position: relative;
    background: url(../images/Background/Footer-Bg.svg);
    padding-top: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pg-footer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/Background/footer-shape.png);
    opacity: 0.05;
    background-position: center;
    background-repeat: no-repeat;
}

.footer {
    background-color: transparent;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #F4F4F4;
}

.footer-content-column {
    padding: 10px 15px;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-content {
    position: relative;
}

.footer p {
    line-height: 25px !important;
    word-spacing: -2px;
}

.footer-menu {
    margin-top: 30px;
}

footer .footer-menu .widget.list ul li {
    list-style-type: none;
}

footer .footer-menu .widget.list ul li i {
    padding-right: 10px;
}

footer .footer-menu .widget.list ul li span {
    font-size: 18px;
    color: #f6ce33
}

.footer-menu-name {
    color: #fffff2;
    font-size: 17px;
    line-height: 18px;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

.widget {
    margin-bottom: 0;
}

.widget ul {
    padding-left: 0;
}

.footer-menu-name:after {
    content: "";
    display: block;
    width: 10%;
    padding-top: 20px;
    border-bottom: 1px solid white;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    color: #fff;
    padding: 5px 30px;
    background: rgba(0,0,0,0.3);
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

footer .footer-copyright p {
    color: white !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.subscribe-form input {
    border-radius: 5px 0 0 5px !important;
}

.subscribe-form .btn {
    border-radius: 0 5px 5px 0 !important;
}

.input-group .input-group-append {
    margin-left: -10px;
}

.RMM-Social-Media-6 ul {
    padding: 0;
}

.RMM-Social-Media-6 ul li {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 30%;
    box-shadow: 0 5px 15px -5px #000070;
    color: #3498db;
    overflow: hidden;
    position: relative;
}

.RMM-Social-Media-6 ul li a i {
    line-height: 50px;
    font-size: 23px;
    transition: 0.2s linear;
    color: var(--primary);
    text-align: center;
    padding-left: 16px;
}

.RMM-Social-Media-6 ul li:before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--sc-primary);
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
}

.RMM-Social-Media-6 ul li:hover a i {
    transform: scale(1.3);
    color: #f1f1f1;
}

.RMM-Social-Media-6 ul li:hover:before {
    animation: aaa 0.7s 1;
    top: -10%;
    left: -10%;
}

@keyframes aaa {
    0% {
        left: -110%;
        top: 90%;
    }

    50% {
        left: 10%;
        top: -30%;
    }

    100% {
        top: -10%;
        left: -10%;
    }
}

.RMM-Link a {
    color: gold;
}

.RMM-Link a:hover {
    color: gold;
}
/*======================================
	*      Footer End   *
======================================*/

