/*======================================
	*      General Start   *
======================================*/
html {
    scroll-behavior: smooth;
}

body #loading-icon-bx {
    width: 100%;
    height: 100%;
    background-color: #fcfcfc;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 999999999;
}

body #loading-icon-bx:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/loader.svg);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;
}

.justify {
    text-align: justify;
}

.text-white {
    color: #fff !important;
}

.logoHighlight {
    color: currentColor;
    font-weight: 700;
    /*white-space: nowrap;*/
}

.seciton-heading .section-title {
    border-radius: 7px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
    padding-left: 13px;
    position: relative;
    color: #fff;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(108.18deg,#ea4c89 -12.02%,#4d44c6 60%);
    -webkit-background-clip: text;
    font-size: 16px;
    text-transform: uppercase !important;
    line-height: 1;
}

.seciton-heading .section-title:before {
    background: linear-gradient(108.18deg,#ea4c89 -2.02%,#4d44c6);
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 5px;
}

.seciton-heading .section-subtitle {
    color: #fff;
    margin: 0;
    font-size: 36px;
}

.section-title {
    position: relative;
}

.section-title h2 {
    color: var(--generalTheme);
    font-size: 3.375rem;
    line-height: 1.3;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 18px;
    word-wrap: break-word;
    max-width: 100%;
    z-index: 1;
    position: relative;
}

.section-title .sub-title {
    display: inline-block;
    color: #05d58a;
}

.section-title .sub-title span {
    font-size: 18px;
    font-weight: 500;
    padding-left: 0;
    display: inline-block;
    color: var(--generalTheme);
}

.section-title-shadow {
    color: #24242429;
    font-size: 95px;
    font-weight: 900;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    right: 0;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#contact_form_3 #success, #success, #contact_form_3 #error, #error, .LoaderImage, #LoaderImage {
    display: none;
}

.RMM-Btn {
    color: var(--buttonText) !important;
    background: var(--buttonBg) !important;
    border-radius: 4px !important;
    position: relative;
    z-index: 0;
    display: inline-table;
    padding: 10px 30px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    transition: all 0.3s linear !important;
    border: unset !important;
    line-height: 2 !important;
}

.RMM-Btn:before {
    position: absolute;
    content: "";
    top: 0%;
    left: 0%;
    z-index: -1;
    /*transform: translate(-50%, -50%) scale(0);*/
    transition: all 0.3s linear;
    background: var(--buttonBg);
    width: 100%;
    height: 100%;
    border-radius: 3px;
    opacity: 0.5;
}

.RMM-Btn:hover, .RMM-Btn:active, .RMM-Btn:focus {
    color: var(--buttonTextHover);
    border: unset;
    filter: brightness(125%);
    background-color: var(--buttonBgHover);
}

.RMM-Btn:hover:before {
    transform: translate(-0%, -0%) scale(1);
}

.RMM-Btn-reverse {
    color: var(--buttonTextHover);
    background-color: var(--buttonBgHover);
    border-radius: 4px;
    position: relative;
    z-index: 0;
    display: inline-table;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s linear;
}

.RMM-Btn-reverse:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s linear;
    background-color: var(--buttonBg);
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.RMM-Btn-reverse:hover {
    color: var(--buttonText);
}

.RMM-Btn-reverse:hover:before {
    transform: translate(-50%, -50%) scale(1);
}

.RMM-Btn-1 {
    font-size: 16px;
    color: var(--button2Text);
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    background: var(--button2Bg);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    margin-bottom: -5px;
    padding: 15px 40px;
    border-radius: 4px;
}

.RMM-Btn-1:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--button2BgHover);
    z-index: -1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.RMM-Btn-1:hover {
    color: var(--button2TextHover);
}

.RMM-Btn-1:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}

.RMM-Btn-1-reverse {
    font-size: 16px;
    color: var(--button2TextHover);
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    background: var(--button2BgHover);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    margin-bottom: -5px;
    padding: 15px 40px;
    border-radius: 4px;
}

.RMM-Btn-1-reverse:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--button2Bg);
    z-index: -1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.RMM-Btn-1-reverse:hover {
    color: var(--button2Text);
}

.RMM-Btn-1-reverse:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}

#rs-fullblock .rev-btn {
    color: var(--buttonText) !important;
    background: var(--buttonBg) !important;
    border-radius: 4px !important;
    position: relative !important;
    z-index: 0 !important;
    display: inline-table !important;
    padding: 10px 30px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: all 0.3s linear !important;
    font-size: 16px !important;
    line-height: 1 !important;
    padding: 15px 40px !important;
}

    #rs-fullblock .rev-btn:before {
        position: absolute !important;
        content: "" !important;
        top: 50% !important;
        left: 50% !important;
        z-index: -1 !important;
        transform: translate(-50%, -50%) scale(0) !important;
        transition: all 0.3s linear !important;
        background-color: var(--buttonBgHover) !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 3px !important;
    }

    #rs-fullblock .rev-btn a {
        color: var(--button2Text) !important;
    }

    #rs-fullblock .rev-btn:hover {
        color: var(--buttonTextHover) !important;
    }

        #rs-fullblock .rev-btn:hover:before {
            transform: translate(-50%, -50%) scale(1) !important;
        }

.page-shadow {
    position: relative;
}

    .page-shadow:after {
        height: 100%;
        width: 450px;
        content: "";
        background: url(../images/Background/shape3.svg) no-repeat right top;
        position: absolute;
        left: 0px;
        top: 0%;
        z-index: 1;
    }

.Order_1 {
    order: 1;
}

.Order_2 {
    order: 2;
}

@media screen and (max-width: 992px) {
    .clear-section .clear-list {
        flex-wrap: nowrap !important;
    }

    .Order_2 {
        order: 1;
    }

    .Order_1 {
        order: 2;
    }

    .solutions-single-section .Order_1 {
        order: 1;
    }
}

@media screen and (max-width: 767px) {
    .section-title h2 {
        font-size: 2.375rem;
    }
}

@media screen and (max-width: 576px) {
    .clear-section .clear-list li a {
        width: 45px !important;
        height: 45px !important;
        line-height: 45px !important;
        font-size: 30px !important;
    }

    .clear-section .clear-description h3 {
        font-size: 30px !important;
        margin-bottom: 20px !important;
    }

    .clear-section .clear-description p {
        font-size: 15px !important;
        line-height: 25px !important;
    }

    .section-title h2 {
        font-size: 2.375rem;
    }

    .section-title-shadow {
        font-size: 2.375rem;
    }
}
/*======================================
	*      General End   *
======================================*/



/*======================================
	*      Back to Top Start   *
======================================*/
button.back-to-top {
    background: var(--buttonBg);
    color: var(--backToTopIcon);
    border-radius: 50%;
    transition: 0.5s all;
    z-index: 998 !important;
    /*border: solid 1px #0df;*/
    border: unset !important;
}

    button.back-to-top:hover {
        background: var(--buttonBgHover);
        color: var(--backToTopIconHover);
    }

.bg-darkSection {
    position: relative;
    background: var(--sc-primary);
    overflow: hidden;
}
/*======================================
	*      Back to Top End   *
======================================*/
/*======================================
	*      Header Start   *
======================================*/
.header .top-bar {
    background: var(--topBarBg);
    border-bottom: unset;
    color: var(--topBarText);
}

.header .topbar-center, .header .topbar-left, .header .topbar-right {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
}

.topbar-left ul, .topbar-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    font-size: 14px;
    display: flex;
}

.header .top-bar .topbar-left ul li, .header .top-bar .topbar-right ul li {
    color: var(--topBarText);
    font-size: 15px;
    padding-right: 10px;
    padding-left: 0;
    margin-left: 0;
}

    .header .top-bar .topbar-left ul li:nth-last-child(1), .header .top-bar .topbar-right ul li:nth-last-child(1) {
        padding-right: 0;
    }

.header .topbar-left ul li:after, .header .topbar-right ul li:after {
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: unset;
    right: 0;
    content: unset;
    top: 0px;
    opacity: 1;
}

.header .topbar-left ul li:nth-last-child(1):after, .header .topbar-right ul li:nth-last-child(1):after {
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: unset;
    right: 0;
    content: unset;
    top: 0px;
    opacity: 1;
}

.header .top-bar .topbar-left ul li a, .header .top-bar .topbar-right ul li a {
    color: var(--topBarText) !important;
}

.header .top-bar .topbar-left ul li i, .header .top-bar .topbar-right ul li i, .header .mid-bar ul li i {
    color: var(--topBarIcon);
    margin-right: 5px;
    font-size: 18px;
    background: var(--topBarIconBg);
    border-radius: 50%;
    padding: 5px;
    line-height: 17px;
    margin-top: 0;
    transition: 0.5s all;
}

.header .top-bar .topbar-left ul li:hover i, .header .top-bar .topbar-right ul li:hover i, .header .mid-bar ul li:hover i {
    color: var(--topBarIconHover);
    background: var(--topBarIconBgHover);
}

.header .mid-bar {
    background-color: var(--midBarBg);
    border-bottom: unset;
    color: var(--midBarText);
    position: relative;
    height: 90px;
}

    .header .mid-bar .logo img {
        width: 80%;
        transition: 0.5s;
        padding: 5px;
    }

    .header .mid-bar img {
        width: 100%;
        transition: 0.5s;
        padding: 5px;
    }

.mid-bar-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

    .mid-bar-content .logo {
        z-index: 1;
    }

.midbar-center {
    background: #ffffff;
    border-radius: 20px;
    color: #000;
    padding: 0 0 0 0;
    text-align: end;
    width: 200px;
}

.midbar-links ul {
    list-style: none;
}

.midbar-links a {
    color: #000;
}

.header .menu-bar {
    background: var(--menuBarBg);
    width: 100%;
    position: relative;
    min-height: 100px;
    top: 0;
    /* height: 100px; */
    transition: 0.5s all;
}

.header .is-fixed.menuShow .menu-bar {
    min-height: 100px;
    height: 100px;
}

.header .is-fixed .menu-bar {
    background: var(--menuBarFixedBg);
}

.header .navbar-expand-lg .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-grow: inherit;
    justify-content: center;
    padding-right: 0;
    text-transform: uppercase;
    height: 100px;
    align-items: center;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.0117647059);
}

.header .extra-logo1 img {
    width: 200px;
    transition: 0.5s;
}

.header .is-fixed.menuShow .extra-logo1 img {
    width: 200px;
    transition: 0.5s all;
}

.header .extra-logo1 {
    display: block;
    transition: all 0.36s ease-out 0s;
    position: relative;
    z-index: 2;
    margin-left: 25px;
}

.header .menu-bar .container-fluid {
    position: relative;
    height: 100px;
    border-bottom: 1px solid var(--menuBarBorder);
    background-color: var(--menuBarInnerBg);
    border-radius: 0px;
    box-shadow: unset;
    transition: 0.5s all;
    /* margin: 0; */
}

    .header .menu-bar .container-fluid:hover {
        box-shadow: unset;
    }

.header .is-fixed .menu-bar .container {
    box-shadow: unset;
}

.header .extra-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    background: var(--menuBarFixedBg);
}

.header .menu-links .nav > li {
    margin: 0px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    padding-top: 3px;
    transition: 0.5s all;
}

    .header .menu-links .nav > li > a {
        border-radius: 0px;
        color: var(--menuText);
        font-size: 16px;
        padding: 20px 10px;
        cursor: pointer;
        font-weight: 500;
        display: inline-block;
        position: relative;
        transition: 0.5s all;
    }

    .header .menu-links .nav > li.active > a, .header .menu-links .nav > li:hover > a {
        background-color: transparent;
        color: var(--menuActive);
        transition: 0.5s all;
        position: relative;
        font-weight: 600;
    }

.header .add-menu-left ul {
    padding: 0;
    margin: 0;
}

.header .menu-links .nav > li.active > a:before {
    content: unset;
    position: absolute;
    height: 30px;
    width: 5px;
    background: var(--subMenuActive);
    left: 0px;
    top: 17px;
    right: 0;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
}

.header .menu-links .nav > li:hover > a:before {
    top: 17px;
    left: -6px;
    font-weight: 400;
    position: absolute;
    color: var(--subMenuActive);
    font-family: fontawesome;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    content: "\f178";
    content: unset;
    padding-right: 10px;
    opacity: 1;
    background: unset;
}

.header .menu-links .nav > li .sub-menu li a {
    color: #fff;
    display: block;
    font-size: 15px;
    padding: 8px 25px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    position: relative;
    font-weight: 500;
}

.header .menu-links .nav li .sub-menu li a:hover span {
    color: #fff;
    font-weight: 600;
}

.menu-links .nav .add-menu-left ul li.active a {
    color: #fff;
    font-weight: 600;
}

.header .menu-links .nav .add-menu-left ul li a {
    padding: 8px 0px;
    text-transform: uppercase;
}

.header .menu-links .nav > li .sub-menu li {
    position: relative;
    padding: 0 5px;
}

    .header .menu-links .nav > li .mega-menu li a span,
    .header .menu-links .nav > li .sub-menu li a span {
        position: relative;
    }

        .header .menu-links .nav > li .mega-menu li a span:after,
        .header .menu-links .nav > li .sub-menu li a span:after {
            content: "";
            position: absolute;
            height: 2px;
            width: 0;
            background: transparent;
            left: -25px;
            top: 8px;
            right: 0;
            transition: all 0.5s;
            -moz-transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            -moz-transform-origin: right;
            -webkit-transform-origin: right;
            -ms-transform-origin: right;
            -o-transform-origin: right;
            transform-origin: right;
        }

    .header .menu-links .nav > li .mega-menu li:hover > a span:after,
    .header .menu-links .nav > li .sub-menu li:hover > a span:after {
        width: 20px;
        -moz-transform-origin: left;
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        -o-transform-origin: left;
        transform-origin: left;
        left: -25px;
        top: 8px;
        right: auto;
    }

.header .navbar-toggler:hover {
    background: unset;
}

.header .navbar-toggler span {
    background: var(--mobileMenuToggler);
}

.menuicon span:nth-child(2) {
    top: 51%;
    transform: translateY(-49%);
}

.header .menuHide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 0.5s linear;
}

.header .menuShow {
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 0.5s linear;
}

.header .hide-menu {
    display: none;
}

.header .extra-menu {
    position: relative;
}

.header .sub-menu {
    display: block !important;
}

.header .nav > li .sub-menu {
    opacity: 1 !important;
    /*background: linear-gradient(216.37deg, #02e07d 5.57%, #094db0 94.83%);*/
    background: transparent;
    /*position: relative;*/
    margin-left: 0;
}

    .header .nav > li .sub-menu:before {
        opacity: 0.95 !important;
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /*background: linear-gradient(216.37deg, #02e07d 5.57%, #094db0 94.83%);*/
        background: var(--buttonBg);
    }

.header .is-fixed .menu-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    box-shadow: 0 0 50px 0 rgb(0 0 0 / 10%);
    background-color: #12161e;
    /* background-color: var(--primary); */
}

.header .nav > li .sub-menu li.active span {
    color: var(--menuActive);
}

.topbar-middle a {
    color: #fec581;
}

.navbar-toggler {
    margin-right: 10px;
}

.header .menu-links .nav i {
    font-size: 9px;
    margin-left: 3px;
    margin-top: -3px;
    vertical-align: middle;
    color: var(--menuText);
    cursor: pointer;
}

@media screen and (max-width:520px) {
    .header .top-bar .topbar-right .topbar-right-inner:before {
        display: none;
    }

    .header .top-bar .topbar-right .topbar-right-inner {
        left: 0;
        top: 6px;
    }

    .header .topbar-center, .topbar-left, .topbar-right {
        padding: 0px 15px;
    }

    .header .rs-nav .menu-links.show {
        width: 234px !important;
    }
}

@media screen and (max-width:767px) {

    .header .extra-logo1 img {
        width: 150px !important;
    }

    .header .navbar-toggler, .header .is-fixed .navbar-toggler {
        margin: 15px !important;
    }

    .header .top-bar {
        padding: 5px 0;
        display: none;
        border-bottom: none;
    }

    .header .menuHide {
        visibility: visible;
        opacity: 1;
    }

    .header .extra-info-inner {
        height: 75px;
    }

    .header .menu-bar {
        min-height: 70px !important;
        height: 70px !important
    }
}

@media screen and (max-width:1200px) {
    .header .navbar-expand-lg .navbar-nav {
        padding-right: 0;
        margin-bottom: 0;
        margin-left: 5px;
    }

    .header .nav > li .sub-menu:before {
        background: unset;
    }

    .header .menu-links .nav > li.active > a, .header .menu-links .nav > li:hover > a {
        background-color: transparent;
        color: #000;
        z-index: 999;
    }

    .header .menu-links .nav > li ul, .menu-links .nav > li .sub-menu, .menu-links .nav > li .mega-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: var(--buttonBg);
        padding: 0 5px;
        margin-left: 5px;
    }

    .header .menu-links .nav > li > a {
        padding: 10px 10px;
    }

    .header .extra-logo1 {
        display: block;
    }

    .header .extra-info-inner {
        justify-content: space-between;
    }

    .header .menu-bar .container {
        position: relative;
        padding: 0;
        max-width: 100%;
    }

    header .topbar-right, header .topbar-left {
        width: auto;
    }

    .rs-nav .menu-links {
        /*background: linear-gradient(216.37deg, #02e07d 5.57%, #094db0 94.83%) !important;*/
        background: var(--buttonBg);
        width: 80% !important;
        padding-top: 40px !important;
    }

    header .menu-links .nav {
        background: transparent;
    }

    .header .menu-links .nav > li > a {
        border: unset;
        font-size: 15px;
    }

    .header .menu-links .nav > li {
        border-bottom: 1px solid #ffffff70;
    }

    .rs-nav .menu-links .menu-logo {
        display: none !important;
    }

        .rs-nav .menu-links .menu-logo img {
            width: 100px !important;
            display: none;
        }

    .header .menu-links .nav > li > .sub-menu {
        border-top: 1px dashed rgba(0,0,0,0.1);
        border-top: unset;
    }

    .header .menu-links .nav > li > .sub-menu {
        display: none !important;
        transition: .5s all;
    }

        .header .menu-links .nav > li > .sub-menu.open {
            display: block !important;
            transition: .5s all;
        }

    .header .menu-links .nav i {
        margin-top: 15px;
        float: right;
        position: relative;
        z-index: 999;
    }

    .rs-nav .menu-links::-webkit-scrollbar {
        width: 10px;
        height: 0;
    }

    .rs-nav .menu-links::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px;
    }

    .rs-nav .menu-links::-webkit-scrollbar-thumb {
        background: red;
        border-radius: 10px;
    }

    .header .menu-links .nav .add-menu-left ul li a {
        padding: 8px 0px;
    }

    .menu-links .nav .add-menu-left ul li.active a {
        color: #ffffff;
    }
}

@media screen and (max-width:1300px) {

    .header .menu-links .nav > li {
        padding-left: 0px;
    }
}
/*======================================
	*      Header End   *
======================================*/



/*======================================
	*      Banner Start   *
======================================*/
#rs-fullblock {
    position: relative;
    min-height: 100vh;
    z-index: 999;
}

rs-zone#rrzm_2576, rs-zone#rrzm_2577, rs-zone#rrzm_2578, rs-zone#rrzm_2579, rs-zone#rrzm_2580, rs-zone#rrzm_2581 {
    top: 50vh !important;
}

rs-sbg {
    position: relative;
    opacity: 0.5;
    filter: blur(3px);
    background: var(--primary);
    transition: 0.5s all;
}

.hesperiden .tp-bullet:hover, .hesperiden .tp-bullet.selected {
    background: var(--generalTheme) !important;
}

#slider-1248-slide-2576-layer-0, #slider-1248-slide-2577-layer-0, #slider-1248-slide-2578-layer-0, #slider-1248-slide-2579-layer-0, #slider-1248-slide-2580-layer-0, #slider-1248-slide-2581-layer-0 {
    font-size: 70px !important;
    line-height: 1 !important;
    letter-spacing: unset !important;
}

#slider-1248-slide-2576-layer-22, #slider-1248-slide-2577-layer-22, #slider-1248-slide-2578-layer-22, #slider-1248-slide-2579-layer-22, #slider-1248-slide-2580-layer-22, #slider-1248-slide-2581-layer-22 {
    font-size: 25px !important;
    line-height: 1.5 !important;
    letter-spacing: unset !important;
    margin-top: 20px;
}

@media screen and (max-width:767px) {
    #slider-1248-slide-2576-layer-0, #slider-1248-slide-2577-layer-0, #slider-1248-slide-2578-layer-0, #slider-1248-slide-2579-layer-0, #slider-1248-slide-2580-layer-0, #slider-1248-slide-2581-layer-0 {
        font-size: 40px !important;
        line-height: 1 !important;
    }

    #slider-1248-slide-2576-layer-22, #slider-1248-slide-2577-layer-22, #slider-1248-slide-2578-layer-22, #slider-1248-slide-2579-layer-22, #slider-1248-slide-2580-layer-22, #slider-1248-slide-2581-layer-22 {
        font-size: 25px !important;
        line-height: 1.5 !important;
        letter-spacing: unset !important;
    }
}

@media screen and (max-width:576px) {
    #slider-1248-slide-2576-layer-0, #slider-1248-slide-2577-layer-0, #slider-1248-slide-2578-layer-0, #slider-1248-slide-2579-layer-0, #slider-1248-slide-2580-layer-0, #slider-1248-slide-2581-layer-0 {
        font-size: 25px !important;
        line-height: 1 !important;
    }

    #slider-1248-slide-2576-layer-22, #slider-1248-slide-2577-layer-22, #slider-1248-slide-2578-layer-22, #slider-1248-slide-2579-layer-22, #slider-1248-slide-2580-layer-22, #slider-1248-slide-2581-layer-22 {
        font-size: 18px !important;
        line-height: 1.5 !important;
        letter-spacing: unset !important;
    }

    rs-row, rs-row.rs-layer {
        padding: 0 15px !important;
    }

    #rs-fullblock {
        min-height: auto;
    }
}
/*======================================
	*      Banner End   *
======================================*/



/*======================================
	*      Page Banner Start   *
======================================*/
.home-hero1 .page-banner {
    height: 425px;
    background-size: 100%;
    background-position: right bottom;
    display: table;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    z-index: 999;
}

.page-banner.ovbl-dark:before {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: url(../images/Background/shape-circle1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    /*content: '';*/
    z-index: 1;
}

.page-banner.ovbl-dark:after {
    opacity: 0.7;
}

.ovbl-dark:after {
    background: #192333 !important;
}

.page-banner .page-banner-entry {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.page-banner-entry h1 {
    position: relative;
    color: #ffffff;
    font-weight: bolder;
    font-size: 64px !important;
    line-height: 87px !important;
    font-weight: 800 !important;
}

.page-banner .breadcrumb-row ul li {
    padding: 0;
    margin-right: 3px;
    color: #fff;
    display: inline-block;
}

    .page-banner .breadcrumb-row ul li a {
        color: #fff;
        padding: 2px;
    }

.page-banner-bg {
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 50%;
    background-position: right top;
    right: 0;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-banner.About {
    background-image: url(../images/Background/bg-98.jpg);
}

.page-banner.Services {
    background-image: url(../images/Background/bg-99.jpg);
}

.page-banner.Solutions {
    background-image: url(../images/Background/bg-28.jpg);
}

.page-banner.Clients {
    background-image: url(../images/Background/bg-clients.jpg);
}

.page-banner.Blogs {
    background-image: url(../images/Background/bg-97.jpg);
}

.page-banner.Contact {
    background-image: url(../images/Background/bg-contact.jpg);
}

@media screen and (max-width: 1200px) {
    .breadcrumb-row {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .page-banner .page-banner-entry h1 {
        padding: 0px 0px 0px 15px;
        font-size: 45px !important;
        line-height: 50px !important;
    }

    .home-hero1 .page-banner {
        height: 325px;
    }

    .page-banner .page-banner-entry {
        padding-top: 25px;
    }

    .typewriter-text {
        font-size: 45px !important;
        line-height: 50px !important;
        font-weight: 800 !important;
    }

    .page-banner.ovbl-dark:before {
        top: -43px;
        left: 0;
        border-left: 170px solid var(--primary);
    }

    .page-banner-bg {
        width: 100%;
    }
}
/*======================================
	*      Page Banner End   *
======================================*/




/*======================================
	*      About Start   *
======================================*/
.about-section {
    position: relative;
    display: block;
    background: #fcfcfc;
    z-index: 1;
    margin-top: -85px;
    overflow: hidden;
}

.about-section:before {
    position: absolute;
    content: '';
    width: 25.13333rem;
    height: 55.53333rem;
    right: 0;
    top: 0;
    background: rgb(13 56 114 / 2%);
    -webkit-border-radius: 5.33333rem;
    border-radius: 5.33333rem;
    -webkit-transform: rotate(-45deg) translateX(82%);
    -ms-transform: rotate(-45deg) translateX(82%);
    transform: rotate(-45deg) translateX(82%);
}

.about-section:after {
    position: absolute;
    content: '';
    width: 33.33333rem;
    height: 55.53333rem;
    right: 0;
    top: 0;
    background: rgb(0 228 120 / 5%);
    -webkit-border-radius: 5.33333rem;
    border-radius: 5.33333rem;
    -webkit-transform: rotate(-45deg) translate(59%,20%);
    -ms-transform: rotate(-45deg) translate(59%,20%);
    transform: rotate(-45deg) translate(59%,20%);
}

.section-shape {
    position: relative;
    left: 0;
    bottom: 60px;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
    z-index: 1000;
    overflow: hidden;
}

.section-shape svg {
    width: calc(100% + 1.3px);
    height: 60px;
    display: block;
    transform: rotateY(180deg);
}

.section-shape svg path {
    fill: #fcfcfc;
    transform-origin: center;
    transform: rotateY(0deg);
}

.about-img-wrapper-3 .inner-about-exp {
    left: 0;
    right: 0;
    bottom: 0;
    width: 190px;
    height: 150px;
    margin: 0 auto;
    padding-top: 30px;
    border-radius: 5px;
    /*background: linear-gradient(216.37deg, #02e07d 5.57%, #094db0 94.83%);*/
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: var(--buttonBg);
    filter: brightness(160%);
    opacity: 0.9;
}

.about-img-wrapper-3 .inner-about-exp h3 {
    font-size: 62px;
    font-weight: 700;
    display: inline-block;
    color: #fff;
}

.about-img-wrapper-3 .inner-about-exp p {
    font-size: 18px;
    font-weight: 700;
    padding-top: 10px;
    color: #fff;
}

.white-para {
    font-size: 18px;
    padding-top: 10px;
    color: #242424;
}

.about-text-wrapper-3 {
    padding: 30px 0px 0px 0px;
}

.about-feature-wrap-3 {
    max-width: 495px;
    margin-bottom: 30px;
    padding: 50px 0px 30px;
    border-bottom: 1px solid #ebe3ff;
}

.about-feature-wrap-3 .about-feature-item-3:before {
    top: 0;
    content: "";
    width: 1px;
    height: 50px;
    right: -60px;
    position: absolute;
    background-color: #ebe3ff;
}

.about-feature-wrap-3 .about-feature-item-3:last-child:before {
    display: none;
}

.about-feature-wrap-3 .about-feature-item-3 .inner-icon {
    margin-right: 25px;
}

.about-feature-wrap-3 .about-feature-item-3 .inner-icon i {
    font-size: 55px;
    line-height: 0.75;
    color: #3eb7dd;
}

.about-feature-wrap-3 .about-feature-item-3 .inner-text {
    font-size: 20px;
    font-weight: 700;
    max-width: 105px;
    line-height: 1.4;
    color: #e7e7e7;
}

.about-feature-wrap-3 .about-feature-item-3:hover .inner-icon {
    -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;
}

.about-desc-text-3 {
    margin-bottom: 50px;
}

.about-one__left {
    position: relative;
    display: block;
    margin-left: 31px;
    margin-right: 65px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
}

.about-one__img img {
    width: 100%;
}

.about-one__shape-1 {
    position: absolute;
    top: 6px;
    left: 30px;
    width: 44px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 1px;
}

.about-one__shape-2 {
    position: absolute;
    bottom: -38px;
    right: -21px;
    width: 71px;
    height: 67px;
    background-color: var(--generalTheme);
    border-radius: 1px;
}

.about-one__shape-3 {
    position: absolute;
    top: 61px;
    left: -53px;
    width: 44px;
    height: 37px;
    background-color: var(--generalTheme);
    border-radius: 1px;
}

.about-one__img-2 {
    position: absolute;
    bottom: -56px;
    left: -166px;
    border: 10px solid #ffffff;
}

.about-one__img-2 img {
    width: auto;
    height: 250px;
}

.about-one__shape-4 {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 40px;
    background-color: var(--generalTheme);
    border-radius: 1px;
}

@-webkit-keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.zoominout {
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
        opacity: 0;
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(360deg) scale(0.7);
        transform: rotate(360deg) scale(0.7);
        opacity: 0;
    }
}

@media screen and (max-width:992px) {
    .about-one__img-2 {
        bottom: 0px;
        left: -120px;
    }

    .about-one__img img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .about-one__img-2 {
        left: -50px;
    }

    .about-one__img-2 img {
        height: 160px;
    }
}

@media screen and (max-width: 576px) {
    .about-feature-item-3 {
        margin-bottom: 20px;
    }

    .about-one__img-2 {
        display: none;
    }

    .about-one__img-2 img {
        height: 160px;
    }

    .about-section:before, .about-section:after {
        display: none;
    }

    .home-page .section-shape {
        bottom: 85px;
    }
}
/*======================================
	*      About End   *
======================================*/



/*======================================
	*      Services Start   *
======================================*/
.services-section {
    position: relative;
    background: #fcfcfc;
    overflow: hidden;
}

.fRight {
    float: right;
}

.dotter {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 60px;
    display: block;
    text-align: center;
    z-index: 9999;
    left: 50%;
    margin-top: 130px;
    transform: translateX(-50%);
}

.dotter img {
    background: #fff;
    border-radius: 100%;
    margin-bottom: 15px;
    height: 50px;
    width: 50px;
    border: solid 4px var(--primary);
    cursor: pointer;
    box-shadow: 0px 1px 6px 3px #f4f4f4;
    transition: all .5s ease-out;
    margin: 5px;
}

.dotter .selected, .dotter img:hover {
    box-shadow: unset;
    background-position: left bottom;
    border-color: var(--generalTheme);
}

.Product_Box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-title {
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-content.all .services-title {
    line-height: 1.5;
    color: #fff;
}

.service-content.all .solutions-list, .service-content.all .gencontent {
    color: #fff;
    font-size: 18px;
}

.service-content {
    padding: 0;
    /*background: #06d08e;*/
    position: relative;
    z-index: 1;
    background: #242424;
}

.services-section .service-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/Background/bg-pattern1.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.2;
}

.solution-section .service-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/Background/bg-pattern2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.2;
}

.prdBox2 {
    padding: 0;
}

@media screen and (max-width: 576px) {
    .sticky-top {
        margin-bottom: 20px;
    }

    .m-l50 {
        margin-left: 15px;
        padding: 20px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .dotter {
        display: inline-flex;
        left: 50%;
        margin-top: 470px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        transform: translateX(-50%);
    }
}

@media screen and (max-width:1120px) {
    .Product_Box img {
        height: 530px;
    }
}

@media screen and (max-width:930px) {
    .Product_Box img {
        height: 550px;
    }
}

@media screen and (max-width:820px) {
    .Product_Box img {
        height: 600px;
    }
}

@media screen and (max-width:767px) {
    .Product_Box img {
        height: 500px;
    }
}

.service-section {
    position: relative;
    background: #fcfcfc;
    margin-top: -60px;
}

.solutions-single-section {
    margin-bottom: 50px;
}

.solutions-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.solutions-para p, .solutions-para {
    color: #242424;
    font-size: 18px;
}

.solutions-title h3 {
    color: var(--generalTheme);
}

.service-list li {
    width: 100%;
}

    .service-list li a {
        background: var(--generalTheme) !important;
        display: block;
        padding: 12px 50px 12px 20px;
        text-transform: capitalize;
        font-weight: 600;
        position: relative;
        z-index: 1;
        transition: all 0.5s;
        -moz-transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        border-bottom: 1px solid rgba(0,0,0,0.15);
        color: #fff !important;
        font-weight: 500;
        font-size: 16px;
    }

.service-list li:hover a {
    color: #fff !important;
}

.service-list {
    overflow: hidden;
}

.solutions-grid {
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    background: #ffffff1f;
    padding: 40px;
    text-align: start;
}

service-list li {
    width: 100%;
}

.solutions-grid h3 {
    color: var(--generalTheme);
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
}

.solutions-grid p {
    color: #242424;
    margin-bottom: 0;
}

.solutions-list {
    color: #e2e2e2;
    list-style: circle;
}

.solutions-list li {
    margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
    .solutions-img img {
        height: auto;
    }

    .solutions-grid {
        min-height: auto;
    }
}
/*======================================
	*      Services End   *
======================================*/




/*======================================
	*      Solutions Start   *
======================================*/
.solution-section {
    position: relative;
    background: #fcfcfc;
    overflow: hidden;
}

.solutions-list {
    color: #242424;
    list-style: circle;
}

.solutions-list li {
    margin-bottom: 10px;
}

.gencontent {
    color: #fff;
    padding: 0 30px;
}

.solutions-section {
    position: relative;
    background: #fcfcfc;
    margin-top: -60px;
}

.service-card {
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    /*border: 2px solid transparent;*/
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    min-height: 400px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service-card:hover {
    /*border: 2px solid #bebebe;*/
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}

.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

    .service-card h4 {
        color: var(--generalTheme);
        padding-top: 20px;
    }

.sr-content {
    position: relative;
}

.service-card:nth-of-type(odd) .sr-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/Background/intro-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card:nth-of-type(even) .sr-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/Background/intro-bg-mirror.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card:nth-of-type(even) .scImage {
    order: 1;
}

@media screen and (max-width: 576px) {
    .service-card img {
        height: auto;
    }

    .service-card .scImage {
        order: 1;
    }
}

@media screen and (max-width: 1200px) {
    .service-card {
        min-height: unset
    }
}
/*======================================
	*      Solutions End   *
======================================*/
/*======================================
	*      Why Us Start   *
======================================*/
.why-us-section {
    position: relative;
    background: #fcfcfc;
    overflow: hidden;
}

.why-us-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/Background/intro-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-us-section:after {
    position: absolute;
    content: "";
    width: 413px;
    height: 413px;
    top: 35px;
    left: 25px;
    background: url(../images/Background/features-two.png);
    animation: float-bob 15s linear 0s infinite;
}

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

.float-bob {
    animation-name: float-bob;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob;
    -webkit-animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 7s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 7s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 7s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.priccess_box_3 {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.5s all;
}

.priccess_box_3:hover {
    box-shadow: rgba(50, 50, 93, 0.5) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}

.priccess_box_3.min-height {
    min-height: 420px;
}

.priccess_box_3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-image: url(../images/Background/shape-wave.png);
    opacity: 1;
    z-index: -1;
}

.priccess_box_3 .box_icon {
    background: linear-gradient(216.37deg, var(--generalTheme) 5.57%, #094db0 94.83%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: block;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.priccess_box_3 .box_icon img {
    width: 35px;
}

.priccess_box_3 .sirial {
    position: absolute;
    left: 80px;
    width: 25px;
    height: 25px;
    background-color: var(--generalTheme);
    text-align: center;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    border-radius: 100px;
}

.priccess_box_3 .desc {
    font-size: calc(16px - 1px);
    line-height: calc(26px - 1px);
}

.priccess_box_3 .title {
    margin-bottom: 20px;
    min-height: 50px;
}

.priccess_box_3 h5, .priccess_box_3 .desc {
    color: #242424;
}

.why-img img {
    border-radius: 15px;
    width: 100%;
    height: 335px;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

@media screen and (max-width: 992px) {
    .priccess_box_3.min-height {
        min-height: auto;
    }
}

@media screen and (max-width: 576px) {
    .why-img img {
        height: auto;
    }
}
/*======================================
	*      Why Us End   *
======================================*/
/*======================================
	*      Hooks Start   *
======================================*/
.hooks-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 50px 0;
}

.hooks-section.light {
    background: var(--sc-primary);
}

.hooks-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /*background: url(../images/Background/hooks.png);*/
    background: #fff;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hooks-section h2 {
    color: #242424;
    font-size: 35px;
}

.cta-one {
    position: relative;
    display: block;
    z-index: 1;
}

.cta-one__content {
    position: relative;
    display: block;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #05d58a;
    border-radius: 20px;
    border: 4px solid #01e27a;
    padding: 51px 55px 51px;
    overflow: hidden;
    z-index: 1;
}

.cta-one__left {
    position: relative;
    display: block;
}

.cta-one__title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 36px;
    letter-spacing: -0.02em;
}

.cta-one__right {
    position: relative;
    display: flex;
    align-items: center;
}

.cta-one__call {
    position: relative;
    display: flex;
    align-items: center;
}

.cta-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 2px solid #0ce0ff;
    border-radius: 50%;
    color: #0ce0ff;
    font-size: 20px;
}

.cta-one__call-number {
    position: relative;
    top: -1px;
    margin-left: 10px;
}

.cta-one__call-number a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cta-one__call-number a:hover {
    color: #0ce0ff;
}

.cta-one__call-number p {
    font-size: 14px;
    color: #97a2b7;
    line-height: 18px;
    letter-spacing: -0.02em;
}

.cta-one__btn-box {
    margin-left: 40px;
}

.cta-one__btn:hover {
    color: #16243d;
}

.cta-one__btn:before {
    background-color: #ffffff;
}

.cta-one__btn:after {
    background-color: #ffffff;
}

.cta-one__img {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: luminosity;
    opacity: .10;
    z-index: -1;
}

.cta-one__img img {
    width: auto;
}

.cta-two {
}

@media screen and (max-width:992px) {
    .hooks-left img {
        width: 40%;
        float: right;
    }
}
/*======================================
	*      Hooks End   *
======================================*/







/*======================================
	*      Clear Start   *
======================================*/
.clear-section {
    position: relative;
    background: var(--primary);
}

    .clear-section::before {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../images/Background/pattern1.svg);
        z-index: 1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
    }

    .clear-section .service-list li {
        width: 100%;
    }

    .clear-section .clear-list {
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        margin-left: 0;
    }

        .clear-section .clear-list li {
            color: #fff;
            width: 12%;
            text-align: center;
        }

            .clear-section .clear-list li a {
                color: #fff;
                background: linear-gradient(225.37deg, #0e3c5f 1.57%, #008fd2 97.83%);
                width: 80px;
                height: 80px;
                line-height: 80px;
                display: inline-block;
                text-align: center;
                border-radius: 40px 40px 40px 5px;
                padding: 0;
                margin-bottom: 30px;
                font-size: 60px;
                transition: 0.5s all;
            }

                .clear-section .clear-list li a:hover {
                    border-radius: 40px 5px 40px 40px;
                }

    .clear-section .clear-description {
        position: relative;
        z-index: 1;
    }

        .clear-section .clear-description h3 {
            color: #e2e2e2;
            font-size: 50px;
            margin-bottom: 35px;
            text-decoration: underline;
        }

        .clear-section .clear-description p {
            color: #fff;
            font-size: 20px;
        }

.clear-box {
    border-radius: 30px;
    padding: 30px;
    background: linear-gradient(-45deg, #0c4369, #0a5581, #1b2848, #263e77);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.5s all;
}

.clear-grid {
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    background: #ffffff1f;
    padding: 40px;
    text-align: center;
    min-height: 275px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.5s all;
}

    .clear-grid:hover {
        box-shadow: unset;
    }

    .clear-grid h3 {
        color: #e2e2e2;
        font-size: 25px;
        font-weight: 700;
        line-height: 25px;
    }

        .clear-grid h3 span {
            font-size: 35px;
            padding-right: 2px;
            color: #18a8ff;
        }

    .clear-grid p {
        color: #ffffff;
        margin-bottom: 0;
    }

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media screen and (max-width: 992px) {
    .clear-section .clear-list {
        justify-content: space-between;
    }
}
/*======================================
	*      Clear End   *
======================================*/




/*======================================
	*      Leadership End   *
======================================*/
.leadership-section {
    position: relative;
    background: var(--sc-primary);
    min-height: 100vh;
}

.teams-img img {
    position: relative;
    z-index: 0;
    border-radius: 10px;
    height: 350px;
    object-fit: cover;
}

.team-carousel {
    text-align: center;
    position: relative;
    z-index: 0;
    margin-top: 30px;
}

    .team-carousel .item {
        margin: 0;
    }

.teams-bx {
    background: #ffffff0a;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 30px;
    transition: 0.5s all;
}

    .teams-bx:hover {
        box-shadow: unset;
    }

.team-carousel .single-team-img {
    position: relative;
    height: 180px;
}

.team-carousel .teams-bx .single-team-img img {
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    position: absolute;
    left: 30%;
    border-radius: 10px;
}

.team-content .name {
    color: #e2e2e2;
    margin-bottom: 10px;
}

.team-content .designation {
    color: #e2e2e2;
}

.team-content .description {
    color: #e2e2e2;
}

.team-carousel .owl-nav {
    margin-top: 30px;
    display: block;
    text-align: center;
}

.team-carousel .owl-prev, .team-carousel .owl-next {
    background-color: transparent;
    border-color: rgb(255 255 255 / 50%);
    color: #ffffff;
    padding: 6px 15px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 20px;
    display: inline-block;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
}

    .team-carousel .owl-prev:hover, .team-carousel .owl-next:hover {
        background-color: rgb(1 78 140);
        border-color: #ffffff;
        color: #ffffff;
    }

@media screen and (max-width: 992px) {
    .team-carousel .item {
        margin: 0 0;
    }
}

@media screen and (max-width: 576px) {
    .team-carousel .teams-bx .single-team-img img {
        left: 30%;
    }

    .team-carousel .owl-nav {
        top: 0;
    }
}

@media screen and (max-width: 400px) {
    .team-carousel .teams-bx .single-team-img img {
        left: 20%;
    }
}
/*======================================
	*      Leadership End   *
======================================*/




/*======================================
	*      Sectors Start   *
======================================*/
.sectors-section {
    position: relative;
    background: var(--primary);
}

    .sectors-section::after {
        height: 800px;
        width: 500px;
        content: "";
        background: url(../images/Background/shape3.svg) no-repeat right top;
        position: absolute;
        right: 0px;
        top: -12%;
        z-index: 1;
        transform: rotate(180deg);
    }

.sectors-bx {
    border-width: 1px;
    border-style: solid;
    padding: 19px;
    position: relative;
    display: flex;
    border-radius: 16px;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    box-shadow: rgba(11, 209, 209, 0.2) 0px 3px 20px;
    border: 1px solid transparent;
    background: linear-gradient(#131C31, #131C31) padding-box, linear-gradient(to right, rgb(14, 165, 234), rgb(11, 209, 209)) border-box;
}

    .sectors-bx:hover {
        box-shadow: unset;
        transform: translateY(-2px);
        transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

sectors-bx .sectors-image {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    min-width: 32px;
    object-fit: cover;
}

.sectors-bx .sectors-image img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.sector-name {
    color: #94A9C9;
    padding-left: 10px;
}

.justify-content-evenly {
    justify-content: space-evenly;
}
/*======================================
	*      Sectors End   *
======================================*/




/*======================================
	*      Contact Start   *
======================================*/
.contact-section {
    position: relative;
    background: #fcfcfc;
    margin-top: -60px;
}

.contact-form {
    position: relative;
    border-radius: 30px;
    padding: 20px 30px;
    background: #fcfcfc;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-form h3 {
    color: #242424;
}

.single-contact-box {
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    background: #ffffff08;
    border-radius: 10px;
    min-height: 160px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.5s all;
}

.single-contact-box:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}

.single-contact-box .icon {
    background: radial-gradient(50% 50% at 50% 50%,rgba(255,255,255,0) 0%, var(--generalTheme) 100%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: #242424;
    margin-right: 10px;
}

.inner {
    position: relative;
    z-index: 1;
}

.contact-form:before {
    opacity: 0.9;
}

.single-contact-box h5, .single-contact-box a, .single-contact-box p {
    color: #242424;
    margin-bottom: 5px;
}

.single-contact-box a:hover {
    color: #05d58a;
}

.single-contact-box ul {
    list-style: none;
    color: #d6e1e1;
}

    .single-contact-box ul li {
        font-size: 17px;
    }

.contact-section .form-area-box .form-group.focused label {
    color: #242424;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], select, textarea {
    color: #242424 !important;
}

.form-area-box .input-group label {
    color: #242424;
}

.form-area-box .input-group .form-control {
    border: 1px solid #242424a1;
    border-radius: 21px;
    background: #ffffff08;
}
/*======================================
	*      Contact End   *
======================================*/





/*======================================
	*      Blog Start   *
======================================*/
.blog-section {
    position: relative;
    background: #fcfcfc;
    margin-top: -60px;
}

.RMM-Box {
    text-align: center;
    margin-bottom: 30px;
}

.RMM-Box-Inner {
    position: relative;
    width: 100%;
}

.RMM-Box-Inner a {
    transition: all 300ms ease-in-out;
    text-decoration: none !important;
    outline: none;
    color: #fff;
}

.RMM-Box-Inner a h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.RMM-Box-Content {
    transform: scale(0.8);
    transition: all 300ms ease-in-out;
    background-color: var(--generalTheme);
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0;
    z-index: 1;
    padding: 80px 40px;
    opacity: 0;
    border-radius: 50%;
    color: #fff;
}


.RMM-Box:hover .RMM-Box-Content {
    opacity: 1
}

.RMM-Box-Title {
    padding-top: 1rem;
    color: #242424;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 1.5;
}

.date {
    color: #fff;
}

.RMM-Box-Content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.RMM-Box-Button {
    border-color: #444445;
    color: #fff;
    background-color: #444445;
    margin-top: 30px;
    display: inline-block;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: 30px;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    padding: 0 25px;
    font-size: 14px;
    vertical-align: middle;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .RMM-Box-Button:focus, .RMM-Box-Button:hover {
        color: #fff;
        background-color: transparent;
        border-color: #444445;
    }

.RMM-Box img {
    display: block;
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 50%;
}

.events-details-desc, .events-details-desc h3, .events-details-description, .events-details-description p, .events-details-description div {
    color: #242424;
    text-align: justify;
}

.events-details-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-section .side-bar .widget-title, .blog-section .side-bar a {
    color: #242424;
    text-align: justify;
}

    .blog-section .side-bar a:hover {
        color: #0bccd3;
    }

.blog-section .aside-bx {
    border-left: 1px solid rgb(255 255 255 / 28%);
    padding-left: 30px;
}

@media screen and (max-width:576px) {
    .blog-Box-Inner {
        top: 80%;
    }

    .RMM-Box img {
        height: 300px;
    }
}
/*======================================
	*      Blog End   *
======================================*/




/*======================================
	*      Clients Start   *
======================================*/
.clients-section {
    position: relative;
    background: var(--primary);
}

    .clients-section .slick-slide img {
        display: block;
        height: 100px;
        width: 200px;
        object-fit: contain;
        margin: 0 20px;
        background: #fff;
        border-radius: 20px;
    }

    .clients-section .slick-slider {
        margin-bottom: 50px;
    }

    .clients-section .slick-slide .inner {
        padding: 5px;
        background: #fff;
        margin: 10px;
        border-radius: 20px;
    }
/*======================================
	*      Clients End   *
======================================*/



/*======================================
	*      Footer Start   *
======================================*/
.subscribe-form {
    display: none;
}

.subscribe-section {
    position: relative;
    background: #000;
}

    .subscribe-section:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-image: url(../images/Background/Subscribe-Bg.jpg) !important;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
        opacity: 0.5;
    }

.subscribe-form input#subscribe_mail {
    border-radius: 40px 0 0 40px !important;
    color: #000 !important;
}

.subscribe-section .input-group-append {
    margin-left: -10px;
}

.subscribe-form button.btn {
    border-radius: 0 40px 40px 0 !important;
}

.subscribe-form .btn {
    padding: 0 40px !important;
}

.widget.footer_widget img {
    width: 220px;
}

.footer-style2 .footer-top {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.footer-style2 {
    position: relative;
    padding: 80px 0 0 0;
    background-image: url(../images/Background/Footer-Bg.jpg);
    z-index: 2;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

    .footer-style2:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: var(--primary) !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        opacity: 0.7;
        z-index: -1;
    }

.footer-pattern {
    width: 100%;
    position: absolute;
    top: -2px;
    left: 0;
}

.footer-style2 .footer-top {
    padding: 30px 0 30px;
    margin-top: 30px;
}

    .footer-style2 .footer-top a, .footer-style2 .footer-top p {
        color: var(--footerText);
        font-size: var(--paragraphFontSize);
    }

        .footer-style2 .footer-top a:hover {
            color: var(--footerTextHover);
        }

.widget.footer_widget.about {
    background-color: var(--footerAboutBox);
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-style2 .footer-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

    .footer-style2 .footer-title:after {
        display: block;
        height: 2px;
        margin-top: 0;
        margin-bottom: -12px;
        content: '';
        position: absolute;
        bottom: 0;
        width: 50px;
        left: 0;
        background: #fff;
    }

.footer-style2 .list-2 ul li {
    width: 100%;
    float: left;
    position: relative;
    padding: 0px 10px 0px 15px;
    margin-bottom: 0;
    line-height: 20px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    border: unset;
}

.footer-top .widget {
    padding: 0;
}

.footer-style2 .list-2 ul li:before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    font-family: "FontAwesome";
    color: #fff;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.footer-style2 .list-2 ul li:hover:before {
    left: 2px;
}

.footer-style2 .footer-top.top-padding {
    padding: 60px 0 30px;
}

.footer-style2 .footer-bottom {
    background: var(--footerBottomBg);
    font-size: 14px;
    color: var(--footerBottomText);
    font-weight: 400;
    padding: 5px 0 !important;
    border-top: 1px solid rgb(255 255 255 / 50%);
}

    .footer-style2 .footer-bottom p {
        font-size: 14px;
        color: var(--footerBottomText);
        font-weight: 400;
        line-height: 24px;
    }

.footer-style2 .input-group .input-group-append {
    margin-left: -10px;
}

.footer-icons ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 0;
}

    .footer-icons ul li {
        display: inline-block;
        border-radius: 50%;
        background-color: var(--primary);
        margin: 5px 2px;
        width: 50px;
        text-align: center;
        transition: 0.5s all;
        padding: 2px;
    }

        .footer-icons ul li:hover {
            transform: scale(1.1);
        }

        .footer-icons ul li img {
            border-radius: 50%;
        }

.RMM-Social-Media-5 ul {
    list-style: none;
    padding-left: 0;
}

    .RMM-Social-Media-5 ul li {
        display: inline-block;
        border-radius: 5px;
        margin: 5px 2px;
        width: 50px;
        text-align: center;
        border-bottom: unset !important;
    }

        .RMM-Social-Media-5 ul li a {
            color: #333 !important;
        }

        .RMM-Social-Media-5 ul li:hover a {
            color: #fff !important;
        }

.RMM-Link {
    display: none;
}

    .RMM-Link a {
        color: gold;
    }

        .RMM-Link a:hover {
            color: gold;
        }

@media screen and (max-width: 767px) {
    .footer-style2 .list-2 ul li {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .footer-style2 .list-2 ul li {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .footer-style2 .footer-title {
        margin-top: 20px;
    }
}
/*======================================
	*      Footer End   *
======================================*/



/*======================================
	*      Enquiry Popup Start   *
======================================*/
.enquiry {
    transform: rotate(-90deg) translate(-20%,0%);
    transform-origin: right;
    z-index: 998;
    position: fixed;
    top: 210px;
    right: 45px;
    font-size: 12px;
}

    .enquiry .apoint-btn-box {
        transform: none !important;
        padding: 15px 10px 5px 10px;
        cursor: pointer;
        background: var(--enquiryBg) !important;
        display: block;
        visibility: visible !important;
        color: var(--enquiryText);
        font-size: 15px;
    }

        .enquiry .apoint-btn-box:before,
        .enquiry .apoint-btn-box:after {
            content: "";
            background: var(--enquiryBg);
            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: #0860a9;
    /*border: solid 5px #fff;*/
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    border-radius: 5px;
    /*border: 4px solid var(--primary);*/
    position: relative;
    top: 16%;
}

    .Formoutliner:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/Background/Enquiry-form-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        opacity: 0.1;
    }

.main-img img {
    width: 35%;
}

@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, .Formoutliner textarea {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
    color: #000 !important;
}

.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;
}

.Formoutliner .contact-form #success {
    margin-top: 23%;
}

.cont-info {
    padding: 6px 30px 80px;
    background: var(--buttonBg);
    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;
}

.Formoutliner .ft-social-bx .btn:hover {
    background: var(--button2Hover);
}

@media only screen and (max-width:500px) {
    .enquiry {
        transform: rotate(-90deg) translate(-20%,0%);
        transform-origin: right;
        z-index: 99;
        position: fixed;
        top: 200px !important;
        right: 44px;
        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: -6px;
        left: 2px;
        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: 500px;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -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 {
    position: relative;
    display: block;
    width: 35px;
    height: 70px;
    line-height: 70px;
    color: #222;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
    transition: 0.5s all;
}

.icon-bar a:before {
    content: '';
    position: absolute;
    width: 60px;
    height: 70px;
    background-color: var(--tollFreeBg);
    border-radius: 50% 0 0 50%;
    left: -26px;
    top: 0;
    z-index: -1;
}

.icon-bar a i {
    font-size: 30px;
    color: #fff;
}

.icon-bar a:hover i {
    color: #fff;
}

.enroll i {
    width: 27px;
    margin-top: 20px;
    float: left;
    margin-left: 0px;
}

.enroll #enroll {
    /*display: none;*/
    color: var(--tollFreeText);
    position: relative;
    top: 0px;
    position: absolute;
    width: 225px;
    font-size: 0;
}

.enroll, .enroll a {
    text-decoration: none !important;
    font-size: 13px !important;
    background: var(--tollFreeBg) !important;
}

    .enroll:hover {
        width: 200px !important;
        font-size: 15px !important;
        color: #fff;
    }

        .enroll:hover #enroll {
            display: block;
            font-size: 18px !important;
        }
/*======================================
	*      Enroll End   *
======================================*/

