    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,500&display=swap');
    body {
        font-family: 'Noto Sans Display', sans-serif;
        color: #444444;
        font-size: 16px;
        line-height: 26px;
    }
    
    a {
        color: #e31e27;
        text-decoration: none;
    }
    
    a:hover {
        color: #000;
        text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Noto Sans Display', sans-serif;
    }
    .whatappgif {
    position: fixed;
    width: 50px;
    bottom: 10px;
    z-index: 9;
    border: solid #7ad06d 2px;
    border-radius: 100%;
    right: 10px;
}
    
    /*--------------------------------------------------------------
    # Back to top button
    --------------------------------------------------------------*/
    .back-to-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 996;
        background: #e31e27;
        width: 40px;
        height: 40px;
        border-radius: 50px;
        transition: all 0.4s;
    }
    
    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }
    
    .back-to-top:hover {
        background: #f5821f;
        color: #fff;
    }
    
    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
    
    /*--------------------------------------------------------------
    # Preloader
    --------------------------------------------------------------*/
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: #fff;
    }
    
    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #e31e27;
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }
    
    @-webkit-keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
    
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
    
        100% {
            transform: rotate(360deg);
        }
    }
    
    /*--------------------------------------------------------------
    # Disable aos animation delay on mobile devices
    --------------------------------------------------------------*/
    @media screen and (max-width: 768px) {
        [data-aos-delay] {
            transition-delay: 0 !important;
        }
    }
    
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;

    box-shadow: 0px 0 18px rgb(55 66 59 / 8%);
}

#header .logo {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

#header .logo img {
    height: 80px;
}

.get-started-btn {
    margin-left: 40px;
    background-image:linear-gradient(90deg, #7114EF 0%, #1475F7 50%, #7114EF) !important;
    color: #fff;
    border-radius: 50px;
    padding: 5px 20px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 13px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started-btn:hover {
    background: linear-gradient(300deg , #03228f 34%, #0e73e4 100%) !important;
    border-color: transparent;
    text-decoration: none;
    color:#fff;
}


@media (max-width: 768px) {
    .get-started-btn {
        margin: 0px;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    margin-bottom:0px !important;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #37423b;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #e31e27;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #e31e27;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
    html {
        font-size: 62.5%;
    }
    
    
    @media (min-width: 992px) {
    
        .slider,
        .slide {}
    }
    
    .slide {
        position: relative;
        transition: 1s;
    }
    
    .slide .slide__img {}
    
    @media (min-width: 992px) {
        .slide .slide__img {}
    }
    
    .slide .slide__img img {
    
    
        opacity: 1 !important;
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        transition: all 1s ease;
    
    }
    
    .slide .slide__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .slide .slide__content.slide__content__left {
        left: 15%;
        transform: translate(-15%, -50%);
    }
    
    .slide .slide__content.slide__content__right {
        right: 15%;
        left: auto;
        transform: translate(5%, -50%);
    }
    
    .slide .slide__content--headings {
        color: #FFF;
    }
    
    .slide .slide__content--headings h2 {
        font-size: 4.5rem;
        margin: 10px 0;
    }
    
    .slide .slide__content--headings .animated {
        transition: all 0.5s ease;
    }
    
    .slide .slide__content--headings .top-title {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 0;
        letter-spacing: 0.4px;
    }
    
    .slide .slide__content--headings .title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        margin: 0;
        line-height: 3rem;
        display: initial;
    }
    
    .slide .slide__content--headings .button-custom {
        text-decoration: none;
        color: #333;
        padding: 1.2rem 2.5rem;
        font-size: 1.5rem;
    }
    
    .slider [data-animation-in] {
        opacity: 0;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        transition: opacity 0.5s ease 0.3s;
        transition: 1s;
    }
    
    .slick-dotted .slick-slider {
        margin-bottom: 30px;
    }
    
    .slick-dots {
        position: absolute;
        bottom: 25px;
        list-style: none;
        display: block;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }
    
    .slick-dots li button {
        border: 0;
        display: block;
        outline: none;
        line-height: 0px;
        font-size: 0px;
        color: transparent;
        padding: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slick-dots li button:hover,
    .slick-dots li button:focus {
        outline: none;
    }
    
    .simple-dots .slick-dots li {
        width: 20px;
        height: 20px;
    }
    
    .simple-dots .slick-dots li button {
        border-radius: 50%;
        background-color: white;
        opacity: 0.25;
        width: 20px;
        height: 20px;
    }
    
    .simple-dots .slick-dots li button:hover,
    .simple-dots .slick-dots li button:focus {
        opacity: 1;
    }
    
    .simple-dots .slick-dots li.slick-active button {
        color: white;
        opacity: 0.75;
    }
    
    .stick-dots .slick-dots li {
        height: 3px;
        width: 50px;
    }
    
    .stick-dots .slick-dots li button {
        position: relative;
        background-color: white;
        opacity: 0.25;
        width: 50px;
        height: 3px;
        padding: 0;
    }
    
    .stick-dots .slick-dots li button:hover,
    .stick-dots .slick-dots li button:focus {
        opacity: 1;
    }
    
    .stick-dots .slick-dots li.slick-active button {
        color: white;
        opacity: 0.75;
    }
    
    .stick-dots .slick-dots li.slick-active button:hover,
    .stick-dots .slick-dots li.slick-active button:focus {
        opacity: 1;
    }
    
    /* /////////// IMAGE ZOOM /////////// */
    @-webkit-keyframes zoomInImage {
        from {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    }
    
    @keyframes zoomInImage {
        from {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    }
    
    .zoomInImage {
        -webkit-animation-name: zoomInImage;
        animation-name: zoomInImage;
    }
    
    @-webkit-keyframes zoomOutImage {
        from {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    }
    
    @keyframes zoomOutImage {
        from {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    }
    
    .zoomOutImage {
        -webkit-animation-name: zoomOutImage;
        animation-name: zoomOutImage;
        transition: 1s;
    }
    
    .slick-nav {
        
        
        
        
        
        
        
    }
    
    .slick-nav.prev-arrow {
        
        
        
    }
    
    .slick-nav.next-arrow {
        
        
    }
    
    .slick-nav i {}
    
    .slick-nav i:before,
    .slick-nav i:after {
        content: "";
        width: 10px;
        height: 2px;
        border-radius: 1px;
        position: absolute;
        left: 50%;
        top: 50%;
        background: var(--active);
        margin: -1px 0 0 -5px;
        display: block;
        transform-origin: 9px 50%;
    }
    
    .slick-nav i:before {
        transform: rotate(-40deg);
    }
    
    .slick-nav i:after {
        transform: rotate(40deg);
    }
    
    .slick-nav:before,
    .slick-nav:after {}
    
    .slick-nav svg {
        
        
        
        
        
        
        
        
        
        
    }
    
    .slick-nav.animate svg {
        -webkit-animation: stroke 1s ease forwards 0.3s;
        animation: stroke 1s ease forwards 0.3s;
    }
    
    .slick-nav.animate i {
        -webkit-animation: arrow 1.6s ease forwards;
        animation: arrow 1.6s ease forwards;
    }
    
    .slick-nav.animate i:before {
        -webkit-animation: arrowUp 1.6s ease forwards;
        animation: arrowUp 1.6s ease forwards;
    }
    
    .slick-nav.animate i:after {
        -webkit-animation: arrowDown 1.6s ease forwards;
        animation: arrowDown 1.6s ease forwards;
    }
    
    @-webkit-keyframes stroke {
        52% {
            transform: rotate(-180deg);
            stroke-dashoffset: 0;
        }
    
        52.1% {
            transform: rotate(-360deg);
            stroke-dashoffset: 0;
        }
    
        100% {
            transform: rotate(-180deg);
            stroke-dashoffset: 126;
        }
    }
    
    @keyframes stroke {
        52% {
            transform: rotate(-180deg);
            stroke-dashoffset: 0;
        }
    
        52.1% {
            transform: rotate(-360deg);
            stroke-dashoffset: 0;
        }
    
        100% {
            transform: rotate(-180deg);
            stroke-dashoffset: 126;
        }
    }
    
    @-webkit-keyframes arrow {
    
        0%,
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    
        23% {
            transform: translateX(17px);
            opacity: 1;
        }
    
        24%,
        80% {
            transform: translateX(-22px);
            opacity: 0;
        }
    
        81% {
            opacity: 1;
            transform: translateX(-22px);
        }
    }
    
    @keyframes arrow {
    
        0%,
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    
        23% {
            transform: translateX(17px);
            opacity: 1;
        }
    
        24%,
        80% {
            transform: translateX(-22px);
            opacity: 0;
        }
    
        81% {
            opacity: 1;
            transform: translateX(-22px);
        }
    }
    
    @-webkit-keyframes arrowUp {
    
        0%,
        100% {
            transform: rotate(-40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @keyframes arrowUp {
    
        0%,
        100% {
            transform: rotate(-40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @-webkit-keyframes arrowDown {
    
        0%,
        100% {
            transform: rotate(40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @keyframes arrowDown {
    
        0%,
        100% {
            transform: rotate(40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @media (max-width: 1366px) {
        .navbar .dropdown .dropdown ul {
            left: -90%;
        }
    
        .navbar .dropdown .dropdown:hover > ul {
            left: -100%;
        }
    }
    
    /**
    * Mobile Navigation 
    */
    .mobile-nav-toggle {
        color: #37423b;
        font-size: 28px;
        cursor: pointer;
        display: none;
        line-height: 0;
        transition: ease all 1s;
        width: 40px;
        height: 40px;
    }
    
    .mobile-nav-toggle.bi-x {
        color: #fff;
    }
    
    @media (max-width: 991px) {
        .mobile-nav-toggle {
            display: grid;
            float: right;
            margin-top: 10px;
            position: relative;
        }
    
        .navbar ul {
        }
    }
    
    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(32, 38, 34, 0.9);
        transition: 0.3s;
        z-index: 999;
    }
    
    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }
    
    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #37423b;
    }
    
    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #e31e27;
    }
    
    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }
    
    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }
    
    .navbar-mobile .dropdown ul li {
        min-width: 200px;
    }
    
    .navbar-mobile .dropdown ul a {
        padding: 10px 20px;
    }
    
    .navbar-mobile .dropdown ul a i {
        font-size: 12px;
    }
    
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover > a {
        color: #e31e27;
    }
    
    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }
    
    /*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
    #hero {
        width: 100%;
        height: 80vh;
        background: url("../img/hero-bg.jpg") top center;
        background-size: cover;
        position: relative;
    }
    
    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0.4);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    
    #hero .container {
        padding-top: 72px;
    }
    
    @media (max-width: 992px) {
        #hero .container {
            padding-top: 62px;
        }
    }
    
    #hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
        font-family: 'Noto Sans Display', sans-serif;
    }
    
    #hero h2 {
        color: #eee;
        margin: 10px 0 0 0;
        font-size: 24px;
    }
    
    #hero .btn-get-started {
        font-family: 'Noto Sans Display', sans-serif;
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 35px;
        border-radius: 50px;
        transition: 0.5s;
        margin-top: 30px;
        border: 2px solid #fff;
        color: #fff;
    }
    
    #hero .btn-get-started:hover {
        background: #e31e27;
        border: 2px solid #e31e27;
    }
    
    @media (min-width: 1024px) {
        #hero {
            background-attachment: fixed;
        }
    }
    
    @media (max-width: 768px) {
        #hero {
            height: 100vh;
        }
    
        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }
    
        #hero h2 {
            font-size: 18px;
            line-height: 24px;
        }
    }
    
    /*--------------------------------------------------------------
    # Sections General
    --------------------------------------------------------------*/
    section {
        padding: 40px 0;
    
        width: 100%;
        float: left;
    }
    
    .section-bg {}
    
    .section-title {
        padding-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
    
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #e31e27;
        font-family: 'Noto Sans Display', sans-serif;
        line-height: 24px;
    }
    
    .section-title h2::after {
        content: "";
        width: 120px;
        height: 1px;
        display: inline-block;
        background: #ebebeb;
        margin: 4px 10px;
    }
    
    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: 'Noto Sans Display', sans-serif;
        color: #37423b;
    }
    
    .breadcrumbs {
        margin-top: 73px;
        text-align: center;
        background: #e31e27;
        padding: 30px 0;
        color: #fff;
    }
    
    @media (max-width: 992px) {
        .breadcrumbs {
            margin-top: 63px;
        }
    }
    
    .breadcrumbs h2 {
        font-size: 32px;
        font-weight: 500;
    }
    
    .breadcrumbs p {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    /*--------------------------------------------------------------
    # About
    --------------------------------------------------------------*/
    .about .content h3 {
        font-weight: 600;
        font-size: 26px;
    }
    
    .about .content ul {
        list-style: none;
        padding: 0;
        width: 100%;
        float: left;
        display: flex;
        margin: 15px 0;
    }
    
    .about .content ul li {
        padding-bottom: 10px;
        width: 50%;
        display: flex;
        align-items: center;
    }
    
    .about .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #e31e27;
    }
    
    .about .content .learn-more-btn {
        background: #e31e27;
        color: #fff;
        border-radius: 50px;
        padding: 8px 25px 9px 25px;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 14px;
        display: inline-block;
    }
    
    .about .content .learn-more-btn:hover {
        background: #f5821f;
        color: #fff;
    }
    
    @media (max-width: 768px) {
        .about .content .learn-more-btn {
            margin: 0 48px 0 0;
            padding: 6px 18px;
        }
    }
    
    /*--------------------------------------------------------------
    # Counts
    --------------------------------------------------------------*/
    .counts {
        
        display: flex;
        align-items: center;
        position: relative;
    background: url(../img/counterup.jpg);background-size: cover;height: 350px;background-attachment: fixed;}
    
    .counts .counters span {
        font-size: 50px;
        display: block;
        color: #fff;
        font-weight: 300;
        width: auto;
        float: left;
        
        border-radius: 5px;
    
        text-align: center;
        
        
        font-size: 36px;
        line-height: 40px;
        font-weight: 700;
    }
    
    .counts .counters p {
        padding: 0;
    
    
        font-size: 15px;
        font-weight: 600;
    
    
    
        display: none;
    }
    
    /*--------------------------------------------------------------
    # Why Us
    --------------------------------------------------------------*/
    .why-us .content {
        padding: 30px;
        background: #e31e27;
        border-radius: 4px;
        color: #fff;
    }
    
    .why-us .content h3 {
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }
    
    .why-us .content p {
        margin-bottom: 30px;
    }
    
    .why-us .content .more-btn {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 6px 30px 8px 30px;
        color: #fff;
        border-radius: 50px;
        transition: all ease-in-out 0.4s;
    }
    
    .why-us .content .more-btn i {
        font-size: 14px;
    }
    
    .why-us .content .more-btn:hover {
        color: #e31e27;
        background: #fff;
    }
    
    .why-us .icon-boxes .icon-box {
        text-align: center;
        background: #fff;
        padding: 40px 30px;
        width: 100%;
        border: 1px solid #eef0ef;
    }
    
    .why-us .icon-boxes .icon-box i {
        font-size: 32px;
        padding: 18px;
        color: #e31e27;
        margin-bottom: 30px;
        background: #ecf9f0;
        border-radius: 50px;
    }
    
    .why-us .icon-boxes .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 30px 0;
    }
    
    .why-us .icon-boxes .icon-box p {
        font-size: 15px;
        color: #848484;
    }
    
    /*--------------------------------------------------------------
    # Features
    --------------------------------------------------------------*/
    .features {
        padding-top: 0px;
        text-align: center;
    float: left;width: 100%;display: grid;justify-content: center;}
    
    .features .icon-box {
        display: flex;
        align-items: center;
        padding: 20px;
        transition: 0.3s;
        border: 1px solid #eef0ef;
    }
    
    .features .icon-box i {
        font-size: 32px;
        padding-right: 10px;
        line-height: 1;
    }
    
    .features .icon-box h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }
    
    .features .icon-box h3 a {
        color: #37423b;
        transition: 0.3s;
    }
    
    .features .icon-box:hover {
        border-color: #e31e27;
    }
    
    .features .icon-box:hover h3 a {
        color: #e31e27;
    }
    
    /*--------------------------------------------------------------
    # Courses
    --------------------------------------------------------------*/
    .courses .course-item {
        border-radius: 5px;
        border: 1px solid #eef0ef;
        margin-bottom: 25px;
    }
    
    .courses .course-content {
        padding: 15px;
    }
    
    .courses .course-content h3 {
        font-weight: 700;
        font-size: 16px;
    }
    
    .courses .course-content h3 a {
        color: #37423b;
        transition: 0.3s;
    }
    
    .courses .course-content h3 a:hover {
        color: #e31e27;
    }
    
    .courses .course-content p {
    
    
        line-height: 20px;
        font-size: 13px;
    }
    
    .courses .course-content h4 {
        font-size: 14px;
        background: #e31e27;
        padding: 7px 14px;
        color: #fff;
        margin: 0;
    }
    
    .courses .course-content .price {
        margin: 0;
        font-weight: 700;
        font-size: 18px;
        color: #37423b;
    }
    
    .courses .trainer {
        padding-top: 15px;
        border-top: 1px solid #eef0ef;
    }
    
    .courses .trainer .trainer-profile img {
        max-width: 50px;
        border-radius: 50px;
    }
    
    .courses .trainer .trainer-profile span {
        padding-left: 10px;
        font-weight: 600;
        font-size: 16px;
        color: #5a6c60;
    }
    
    .courses .trainer .trainer-rank {
        font-size: 18px;
        color: #657a6d;
    }
    
    /*--------------------------------------------------------------
    # Trainers
    --------------------------------------------------------------*/
    .trainers .member {
        text-align: center;
        margin-bottom: 30px;
        background: #fff;
        border: 1px solid #eef0ef;
    }
    
    .trainers .member img {
        margin: -1px -1px 30px -1px;
    }
    
    .trainers .member .member-content {
        padding: 0 20px 30px 20px;
    }
    
    .trainers .member h4 {
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 18px;
    }
    
    .trainers .member span {
    
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 18px;
    }
    
    .trainers .member p {
        padding-top: 10px;
        font-size: 14px;
        font-style: italic;
        color: #aaaaaa;
    }
    
    .trainers .member .social {
        margin-top: 5px;
    }
    
    .trainers .member .social a {
        color: #7e9486;
        transition: 0.3s;
    }
    
    .trainers .member .social a:hover {
        color: #e31e27;
    }
    
    .trainers .member .social i {
        font-size: 12px;
        margin: 0 2px;
    }
    
    /*--------------------------------------------------------------
    # Testimonials
    --------------------------------------------------------------*/
    .testimonials .testimonial-wrap {
        padding-left: 50px;
    }
    
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }
    
    .testimonials .testimonial-item {
        box-sizing: content-box;
        padding: 30px 30px 30px 60px;
        margin: 30px 15px;
        min-height: 200px;
        border: 1px solid #eef0ef;
        position: relative;
        background: #fff;
    }
    
    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 10px;
        border: 6px solid #fff;
        position: absolute;
        left: -45px;
    }
    
    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }
    
    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0;
    }
    
    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: #c1ecce;
        font-size: 26px;
    }
    
    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }
    
    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }
    
    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }
    
    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }
    
    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #e31e27;
    }
    
    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #e31e27;
    }
    
    @media (max-width: 767px) {
        .testimonials .testimonial-wrap {
            padding-left: 0;
        }
    
        .testimonials .testimonials-carousel,
        .testimonials .testimonials-slider {
            overflow: hidden;
        }
    
        .testimonials .testimonial-item {
            padding: 30px;
            margin: 15px;
        }
    
        .testimonials .testimonial-item .testimonial-img {
            position: static;
            left: auto;
        }
        #header .logo img {height: 50px;}
        #header {padding: 5px 0;}
        .headerstn {height: 50px!important; }
    }
    
    /*--------------------------------------------------------------
    # Cource Details
    --------------------------------------------------------------*/
    .course-details h3 {
        font-size: 24px;
        margin: 30px 0 15px 0;
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
    }
    
    .course-details h3:before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 1px;
        background: #eef0ef;
        bottom: 0;
        left: 0;
    }
    
    .course-details h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 1px;
        background: #e31e27;
        bottom: 0;
        left: 0;
    }
    
    .course-details .course-info {
        background: #f6f7f6;
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    
    .course-details .course-info h5 {
        font-weight: 400;
        font-size: 16px;
        margin: 0;
        font-family: 'Noto Sans Display', sans-serif;
    }
    
    .course-details .course-info p {
        margin: 0;
        font-weight: 600;
    }
    
    .course-details .course-info a {
        color: #657a6d;
    }
    
    /*--------------------------------------------------------------
    # Cource Details Tabs
    --------------------------------------------------------------*/
    .cource-details-tabs {
        overflow: hidden;
        padding-top: 0;
    }
    
    .cource-details-tabs .nav-tabs {
        border: 0;
    }
    
    .cource-details-tabs .nav-link {
        border: 0;
        padding: 12px 15px 12px 0;
        transition: 0.3s;
        color: #37423b;
        border-radius: 0;
        border-right: 2px solid #e2e7e4;
        font-weight: 600;
        font-size: 15px;
    }
    
    .cource-details-tabs .nav-link:hover {
        color: #e31e27;
    }
    
    .cource-details-tabs .nav-link.active {
        color: #e31e27;
        border-color: #e31e27;
    }
    
    .cource-details-tabs .tab-pane.active {
        -webkit-animation: fadeIn 0.5s ease-out;
        animation: fadeIn 0.5s ease-out;
    }
    
    .cource-details-tabs .details h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #37423b;
    }
    
    .cource-details-tabs .details p {
        color: #777777;
    }
    
    .cource-details-tabs .details p:last-child {
        margin-bottom: 0;
    }
    
    @media (max-width: 992px) {
        .cource-details-tabs .nav-link {
            border: 0;
            padding: 15px;
        }
    
        .cource-details-tabs .nav-link.active {
            color: #fff;
            background: #e31e27;
        }
    }
    
    /*--------------------------------------------------------------
    # Events
    --------------------------------------------------------------*/
    .events .card {
        border: 0;
        padding: 0 30px;
        margin-bottom: 60px;
        position: relative;
    }
    
    .events .card-img {
        width: calc(100% + 60px);
        margin-left: -30px;
        overflow: hidden;
        z-index: 9;
        border-radius: 0;
    }
    
    .events .card-img img {
        max-width: 100%;
        transition: all 0.3s ease-in-out;
    }
    
    .events .card-body {
        z-index: 10;
        background: #fff;
        border-top: 4px solid #fff;
        padding: 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        margin-top: -60px;
        transition: 0.3s;
    }
    
    .events .card-title {
        font-weight: 700;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .events .card-title a {
        color: #37423b;
        transition: 0.3s;
    }
    
    .events .card-text {
        color: #5e5e5e;
    }
    
    .events .read-more a {
        color: #777777;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 12px;
        transition: 0.3s;
    }
    
    .events .read-more a:hover {
        color: #e31e27;
    }
    
    .events .card:hover img {
        transform: scale(1.1);
    }
    
    .events .card:hover .card-body {
        border-color: #e31e27;
    }
    
    .events .card:hover .card-body .card-title a {
        color: #e31e27;
    }
    
    /*--------------------------------------------------------------
    # Pricing
    --------------------------------------------------------------*/
    .pricing .box {
        padding: 20px;
        background: #fff;
        text-align: center;
        border: 1px solid #eef0ef;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    
    .pricing h3 {
        font-weight: 400;
        margin: -20px -20px 20px -20px;
        padding: 20px 15px;
        font-size: 16px;
        font-weight: 600;
        color: #777777;
        background: #f8f8f8;
    }
    
    .pricing h4 {
        font-size: 36px;
        color: #e31e27;
        font-weight: 600;
        font-family: 'Noto Sans Display', sans-serif;
        margin-bottom: 20px;
    }
    
    .pricing h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }
    
    .pricing h4 span {
        color: #bababa;
        font-size: 16px;
        font-weight: 300;
    }
    
    .pricing ul {
        padding: 0;
        list-style: none;
        color: #444444;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }
    
    .pricing ul li {
        padding-bottom: 16px;
    }
    
    .pricing ul i {
        color: #e31e27;
        font-size: 18px;
        padding-right: 4px;
    }
    
    .pricing ul .na {
        color: #ccc;
        text-decoration: line-through;
    }
    
    .pricing .btn-wrap {
        margin: 20px -20px -20px -20px;
        padding: 20px 15px;
        background: #f8f8f8;
        text-align: center;
    }
    
    .pricing .btn-buy {
        background: #e31e27;
        display: inline-block;
        padding: 8px 35px;
        border-radius: 50px;
        color: #fff;
        transition: none;
        font-size: 14px;
        font-weight: 400;
        font-family: 'Noto Sans Display', sans-serif;
        font-weight: 600;
        transition: 0.3s;
    }
    
    .pricing .btn-buy:hover {
        background: #f5821f;
    }
    
    .pricing .featured h3 {
        color: #fff;
        background: #e31e27;
    }
    
    .pricing .advanced {
        width: 200px;
        position: absolute;
        top: 18px;
        right: -68px;
        transform: rotate(45deg);
        z-index: 1;
        font-size: 14px;
        padding: 1px 0 3px 0;
        background: #e31e27;
        color: #fff;
    }
    
    /*--------------------------------------------------------------
    # Contact
    --------------------------------------------------------------*/
    .contact {
        padding-top: 5px;
    }
    
    .contact .info {
        width: 100%;
        
    text-align: center;}
    
    .contact .info i {
        font-size: 20px;
        
        float: left;
        width: 44px;
        height: 44px;
        
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }
    
    .contact .info h4 {
        
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #37423b;
    }
    
    .contact .info p {
        
        margin-bottom: 0;
        font-size: 14px;
        color: #657a6d;
    }
    
    .contact .info .email,
    .contact .info .phone {
        margin-top: 10px;
    }
    
    .contact .info .email:hover i,
    .contact .info .address:hover i,
    .contact .info .phone:hover i {
        
        
    }
    
    .contact .php-email-form {
        width: 100%;
        background: rgb(237 242 250 / 70%);
    padding: 50px;}
    
    .contact .php-email-form .form-group {
        
    margin-bottom: 0;}
    
    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    .contact .php-email-form .error-message br + br {
        margin-top: 25px;
    }
    
    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }
    
    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }
    
    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }
    
    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 4px;
        box-shadow: none;
        font-size: 14px;
    }
    
    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #e31e27;
    }
    
    .contact .php-email-form input {
        height: 44px;
    border: 1px solid #efefef !important;}
    
    .contact .php-email-form textarea {
        padding: 10px 12px;
        background: #fff;
        border: 1px solid #efefef !important;
    }
    
    .contact .php-email-form button[type=submit] {
        background: #e31e27;
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }
    
    .contact .php-email-form button[type=submit]:hover {
        background: #f5821f;
    }
    
    @-webkit-keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
    
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
    
        100% {
            transform: rotate(360deg);
        }
    }
    
    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    #footer {
        color: #fff;
        font-size: 14px;
        background:url('https://mutualsathi.com/images/bg-footer1.jpg');
        float: left;
        width: 100%;
    position: relative;overflow: hidden;}
    
    #footer .footer-top {
        padding: 0;
    
        border-bottom: solid 1px #021d2c;
    }
    
    #footer .footer-top .footer-contact {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-contact h4 {
        
        
        
        
        
    font-size: 22px;margin-bottom: 0;}
    
    #footer .footer-top .footer-contact p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: 'Noto Sans Display', sans-serif;
        color: #fff;
    }
    
    #footer .footer-top h4 {
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        position: relative;
        padding-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    #footer .footer-top .footer-links {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    #footer .footer-top .footer-links ul i {
        padding-right: 2px;
        color: #8d8d8d;
        font-size: 18px;
        line-height: 1;
    }
    
    #footer .footer-top .footer-links ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }
    
    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 0;
    }
    
    #footer .footer-top .footer-links ul a {
        color: #fff;
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
    }
    
    #footer .footer-top .footer-links ul a:hover {
        text-decoration: none;
        color: #c9c9c9;
    }
    
    #footer .footer-newsletter {
        font-size: 15px;
    }
    
    #footer .footer-newsletter h4 {}
    
    #footer .footer-newsletter form {
        margin-top: 30px;
        background: #fff;
        padding: 6px 10px;
        position: relative;
        border-radius: 50px;
        text-align: left;
        border: 1px solid #e0e5e2;
    }
    
    #footer .footer-newsletter form input[type=email] {
        border: 0;
        padding: 4px 8px;
        width: calc(100% - 100px);
        outline: 0;
    }
    
    #footer .footer-newsletter form input[type=submit] {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px 2px 20px;
        background: #e31e27;
        color: #fff;
        transition: 0.3s;
        border-radius: 50px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    #footer .footer-newsletter form input[type=submit]:hover {
        background: #f5821f;
    }
    
    #footer .credits {
        padding-top: 5px;
        font-size: 13px;
    }
    
    #footer .credits a {
        color: #f5821f;
        transition: 0.3s;
    }
    
    #footer .credits a:hover {
        color: #e31e27;
    }
    
    #footer .social-links a {
        font-size: 12px;
        display: inline-block;
    
        color: #fff;
        line-height: 1;
        padding: 8px 5px;
    
        border-radius: 50%;
        text-align: center;
    
    
        transition: 0.3s;
    }
    
    #footer .social-links a:hover {}
    
    .topstrip {
        background: #e31e27;
    }
    
    .topcont {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .topcont ul {
        width: 100%;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: end;
    }
    
    .topcont ul li {
        margin-right: 20px;
        line-height: 20px;
        font-size: 12px;
        color: #fff;
    }
    
    .topcont ul li a {
        color: #fff;
    }
    
    section.banner__slider {
        
    padding: 40px 100px;}
    
    .aboutus {
        width: 100%;
        margin: 0px auto;
    }
    
    .title {
        width: 100%;
        float: left;
    
    
    }
    
    .title h2 span {
        display: inline-block;
        color: #FE5A0E;
        background: linear-gradient(to right, #e41e26 0%, #f58120 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }
    
    .title h2 {
        margin: 0 0 25px 0;
        font-size: 42px;
    
        line-height: 50px;
    
        font-weight: 700;
        color: #2e2d2d;
    }
    
    p {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.8px;
        text-align: justify;
    
        color: #000;
    font-weight: 300;}
    
    .about {
    
        
    }
    
    .counts:before {
    
    
        position: absolute;
    
    
    }
    
    .btn-3 {
        display: inline-block;
        position: relative;
        background: none;
        cursor: pointer;
        border-bottom: solid 1px #ababab;
        transition: ease all 1s;
        text-decoration: none;
        margin: 20px 0;
        background-color: transparent;
        background-image: linear-gradient(90deg, #7114EF 0%, #1475F7 50%, #7114EF) !important;
    
    
    
        padding: 0px 32px 0px 34px;
        border-radius: 58px 58px 58px 58px;
    
    
        box-shadow: 0px 6px 6px 0px rgb(55 80 244 / 30%);
    }
    
    .btn-3::before {
        right: 0;
        top: 0;
        transition-delay: 0.2s;
    }
    
    .btn-3::before,
    .btn-3::after {}
    
    .btn-3 span::before,
    .btn-3 span::after {
    
    
        height: 50%;
        position: absolute;
        transition: all 0.2s linear;
        background: #ffffff;
        right: 0;
        top: 50%;
        transform: translateY(0%);
    }
    
    .btn-3 span::before {}
    
    .btn-3:hover::after {
        transition-delay: 0.0s;
    }
    
    .btn-3:hover span::after {
        transition-delay: 0.2s;
    }
    
    .btn-3:hover::before {
        transition-delay: 0.4s;
    }
    
    .btn-3:hover span::before {
        transition-delay: 0.6s;
    }
    
    .btn-3:hover::before,
    .btn-3:hover::after {
        width: 100%;
    }
    
    .btn-3:hover span::before,
    .btn-3:hover span::after {
        height: 100%;
        background: #0a0e13;
        transform: inherit;
    }
    
    .btn-3 span {
        display: block;
    
    
        letter-spacing: 0.5px;
    
    
    
    
    
    
        transform: translateY(0);
        transition: transform 1s 1s, background-position 1s, ease all 0.5s;
        position: relative;
    
        cursor: pointer;
    
        font-size: 13px;
        line-height: 50px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
    }
    
    .btn-3::after {
        left: 0;
        bottom: 0;
    }
    
    .btn-3:hover {
        border-color: transparent;
        text-decoration: none;
    }
    
    .btn-3:hover span::before {
        top: 0;
    }
    
    .btn-3:hover span::after {
        bottom: 0;
        top: 0;
        opacity: 1;
    }
    
    .courses .course-item a.btn-3 {
        margin: 0;
    }
    
    .courses .course-item a.btn-3 span {}
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-weight: 400;
        display: inline-block;
        position: relative;
    }
    
    .section-title:after,
    .section-title:before {
        content: "";
        position: absolute;
        bottom: 0;
    }
    
    .section-title:after {}
    
    .section-title:before {}
    
    /* CAROUSEL STARTS */
    .customer-feedback .owl-item img {
        width: 85px;
        height: 85px;
    }
    
    .feedback-slider-item {
        position: relative;
        padding: 60px;
        margin-top: -40px;
    }
    
    .customer-name {
        margin-top: 15px;
        margin-bottom: 25px;
        font-size: 20px;
        font-weight: 500;
    }
    
    .feedback-slider-item p {
        line-height: 1.875;
    }
    
    .customer-rating {
        background-color: #eee;
        border: 3px solid #fff;
        color: rgba(1, 1, 1, 0.702);
        font-weight: 700;
        border-radius: 50%;
        position: absolute;
        width: 47px;
        height: 47px;
        line-height: 44px;
        font-size: 15px;
        right: 0;
        top: 77px;
        text-indent: -3px;
    }
    
    .thumb-prev .customer-rating {
        top: -20px;
        left: 0;
        right: auto;
    }
    
    .thumb-next .customer-rating {
        top: -20px;
        right: 0;
    }
    
    .customer-rating i {
        color: rgb(251, 90, 13);
        position: absolute;
        top: 10px;
        right: 5px;
        font-weight: 600;
        font-size: 12px;
    }
    
    /* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
    .feedback-slider-item:after {
        content: "";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
        top: 103px;
        background-color: #f6f6f6;
        border: 1px solid rgba(251, 90, 13, 0.1);
        border-radius: 10px;
        z-index: -1;
    }
    
    .thumb-prev,
    .thumb-next {
        position: absolute;
        z-index: 99;
        top: 45%;
        width: 98px;
        height: 98px;
        left: -90px;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    .thumb-next {
        left: auto;
        right: -90px;
    }
    
    .feedback-slider-thumb img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .feedback-slider-thumb:hover {
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    }
    
    .customer-feedback .owl-nav [class*="owl-"] {
        position: relative;
        display: inline-block;
        bottom: 45px;
        transition: all 0.2s ease-in;
    }
    
    .customer-feedback .owl-nav i {
        background-color: transparent;
        color: rgb(251, 90, 13);
        font-size: 25px;
    }
    
    .customer-feedback .owl-prev {
        left: -15px;
    }
    
    .customer-feedback .owl-prev:hover {
        left: -20px;
    }
    
    .customer-feedback .owl-next {
        right: -15px;
    }
    
    .customer-feedback .owl-next:hover {
        right: -20px;
    }
    
    /* DOTS */
    .customer-feedback .owl-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 35px;
    }
    
    .customer-feedback .owl-dot {
        display: inline-block;
    }
    
    .customer-feedback .owl-dots .owl-dot span {
        width: 11px;
        height: 11px;
        margin: 0 5px;
        background: #fff;
        border: 1px solid rgb(251, 90, 13);
        display: block;
        -webkit-backface-visibility: visible;
        -webkit-transition: all 200ms ease;
        transition: all 200ms ease;
        border-radius: 50%;
    }
    
    .customer-feedback .owl-dots .owl-dot.active span {
        background-color: rgb(251, 90, 13);
    }
    
    /* RESPONSIVE */
    @media screen and (max-width: 767px) {
        .feedback-slider-item:after {
            left: 30px;
            right: 30px;
        }
    
        .franchise {
            flex-wrap: wrap !important;
        }
    
        .franchiselft {
            width: 100% !important;
            padding-right: 0 !important;
            margin-right: 0 !important;
        }
    
        .franchisseright {
            width: 60% !important;
        }
    
        .banners img {
            height: 250px;
            object-fit: cover;
        }
    
        .vmbox {
            width: 100% !important;
            flex-wrap: wrap;
            margin: 0 !important;
        }
    
        .vmboxcnt.pull-right {
            width: 100%;
            margin-top: 30px;
        }
    
        .contact-details {
            width: 100%;
        }
    
        .contact .info .email,
        .contact .info .phone {
            margin-top: 20px;
        }
    
        .contact .php-email-form input {
            height: 35px;
            font-size: 13px;
        }
    
        .contact .php-email-form textarea {
            font-size: 13px;
            letter-spacing: 0.5px;
        }
    
        .get-started-btn {
            font-size: 12px;
        }
    
        .vmboxhdng,
        .vmboxcnt,
        .vmboxhdng.pull-left {
            width: 100% !important;
            text-align: center;
        }
    
        .director-message h3 {
            font-size: 19px;
            line-height: 26px;
        }
    
        .contact .info h4 {
            font-size: 15px;
        }
    
        .contact-details {
            width: 100%;
        }
    
        .col-lg-8.mt-5.mt-lg-0 .row {
            margin: 0;
        }
    
        .col-lg-8.mt-5.mt-lg-0 .row .col-md-6.form-group {
            padding-left: 0;
            padding-right: 0;
            margin-bottom: 0;
        }
    
        .contact .php-email-form .form-group {
        }
    
        .director {
            padding: 25px 0 !important;
        }
    
        #header .logo img {
        }
    
        .lightbox {
            width: 48% !important;
            padding: 4px !important;
            margin: 1% !important;
        }
    
        #header {
            padding: 0;
        }
    
        section {
            padding: 25px 0;
        }
    
        .aboutus {
            width: 100%;
            margin: 0;
        }
    
        .aboutus .row {
            flex-direction: column-reverse;
        }
    
        .counts .counters span {
            font-size: 40px;
        }
    
        .counts .counters p {
            font-size: 13px;
        }
    
        .section-title h2 {
            font-size: 12px;
        }
    
        .section-title p {
            font-size: 24px;
        }
    
        .container.d-md-flex.py-4 {
            flex-wrap: wrap;
            justify-content: center;
        }
    
        .headerstn {
            height: 50px !important;
        }
    
        .slide .slide__content--headings .top-title {
            font-size: 2rem;
        }
    
        .slide .slide__content {
            width: 80%;
        }
    
        .slide .slide__img img {
        }
    
        .topcont ul {
            display: none;
        }
    
        .title h2 {
            font-size: 14px;
            line-height: 24px;
        }
    
        .title.justify-content-center {}
    
        .director-message {
            padding: 15px !important;
            width: 94% !important;
            margin: 0 3% !important;
        }
    
        .director-message img {
            width: 100% !important;
            margin-bottom: 20px;
            margin-right: 0 !important;
        }
    
        .vmboxhdng img {
            width: 70%;
            margin: 15px 15%;
        }
    
        .customer-feedback .owl-nav [class*="owl-"] {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            margin-top: 45px;
            bottom: auto;
        }
    
        .customer-feedback .owl-prev {
            left: 0;
        }
    
        .customer-feedback .owl-next {
            right: 0;
        }
    }
    
    /* extra */
    .copyright {
        font-size: 12px;
    }
    
    .copyright a {
        display: inline-block;
        padding: 15px 2px;
    }
    
    .copyright a:not(:last-child):after {
        content: "/";
        margin-left: 10px;
    }
    
    .toptal {
        color: #204ecf;
    }
    
    .upstack {
        color: #008bf7;
    }
    
    .upwork {
        color: #37a000;
    }
    
    .fiverr {
        color: #1dbf73;
    }
    
    .jobs {
        color: magenta;
        text-decoration: underline;
        margin-top: -15px;
    }
    
    @import url(//cdn.rawgit.com/rtaibah/dubai-font-cdn/master/dubai-font.css);
    
    *,
    *:after,
    *:before {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        -moz-user-select: none;
        user-select: none;
        cursor: default;
    }
    
    html {
        width: 100%;
        height: auto;
    }
    
    body {
        /* width: 100%; */
        /* height: auto; */
        /* font-size: 16px; */
        /* font-family: Dubai-Light; */
        /* background: rgba(30, 30, 30); */
    }
    
    .testim {
        width: 100%;
        background: #fff7f7;
    }
    
    .testim .wrap {
        position: relative;
        width: 100%;
        max-width: 1020px;
    
        margin: auto;
    }
    
    .testim .arrow {
        display: block;
        position: absolute;
        color: #000;
        cursor: pointer;
        font-size: 2em;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        padding: 5px;
        z-index: 22222222;
    }
    
    .testim .arrow:before {
        cursor: pointer;
    }
    
    .testim .arrow:hover {
        color: #ea830e;
    }
    
    .testim .arrow.left {
        left: 10px;
    }
    
    .testim .arrow.right {
        right: 10px;
    }
    
    .testim .dots {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        display: block;
    
        height: 12px;
    }
    
    .testim .dots .dot {
        list-style-type: none;
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1px solid #cfcfcf;
        margin: 0 2px;
        cursor: pointer;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        position: relative;
    }
    
    .testim .dots .dot.active,
    .testim .dots .dot:hover {
        background: #e31e27;
        border-color: #e31e27;
    }
    
    .testim .dots .dot.active {
        -webkit-animation: testim-scale 0.5s ease-in-out forwards;
        -moz-animation: testim-scale 0.5s ease-in-out forwards;
        -ms-animation: testim-scale 0.5s ease-in-out forwards;
        -o-animation: testim-scale 0.5s ease-in-out forwards;
        animation: testim-scale 0.5s ease-in-out forwards;
    }
    
    .testim .cont {
        position: relative;
        overflow: hidden;
    }
    
    .testim .cont > div {
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 0 70px 0;
        opacity: 0;
    }
    
    .testim .cont > div.inactive {
        opacity: 1;
    }
    
    .testim .cont > div.active {
        position: relative;
        opacity: 1;
    }
    
    .testim .cont div .img img {
        display: block;
        width: 100px;
        height: 100px;
        margin: auto;
        border-radius: 50%;
    }
    
    .testim .cont div h2 {
        color: #e31e27;
        font-size: 1em;
        margin: 15px 0;
    }
    
    .testim .cont div p {
    
    
        width: 80%;
        margin: auto;
    }
    
    .testim .cont div.active .img img {
        -webkit-animation: testim-show 0.5s ease-in-out forwards;
        -moz-animation: testim-show 0.5s ease-in-out forwards;
        -ms-animation: testim-show 0.5s ease-in-out forwards;
        -o-animation: testim-show 0.5s ease-in-out forwards;
        animation: testim-show 0.5s ease-in-out forwards;
    }
    
    .testim .cont div.active h2 {
        -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
        -moz-animation: testim-content-in 0.4s ease-in-out forwards;
        -ms-animation: testim-content-in 0.4s ease-in-out forwards;
        -o-animation: testim-content-in 0.4s ease-in-out forwards;
        animation: testim-content-in 0.4s ease-in-out forwards;
    }
    
    .testim .cont div.active p {
        -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
        -moz-animation: testim-content-in 0.5s ease-in-out forwards;
        -ms-animation: testim-content-in 0.5s ease-in-out forwards;
        -o-animation: testim-content-in 0.5s ease-in-out forwards;
        animation: testim-content-in 0.5s ease-in-out forwards;
    }
    
    .testim .cont div.inactive .img img {
        -webkit-animation: testim-hide 0.5s ease-in-out forwards;
        -moz-animation: testim-hide 0.5s ease-in-out forwards;
        -ms-animation: testim-hide 0.5s ease-in-out forwards;
        -o-animation: testim-hide 0.5s ease-in-out forwards;
        animation: testim-hide 0.5s ease-in-out forwards;
    }
    
    .testim .cont div.inactive h2 {
        -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
        -moz-animation: testim-content-out 0.4s ease-in-out forwards;
        -ms-animation: testim-content-out 0.4s ease-in-out forwards;
        -o-animation: testim-content-out 0.4s ease-in-out forwards;
        animation: testim-content-out 0.4s ease-in-out forwards;
    }
    
    .testim .cont div.inactive p {
        -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
        -moz-animation: testim-content-out 0.5s ease-in-out forwards;
        -ms-animation: testim-content-out 0.5s ease-in-out forwards;
        -o-animation: testim-content-out 0.5s ease-in-out forwards;
        animation: testim-content-out 0.5s ease-in-out forwards;
    }
    
    @-webkit-keyframes testim-scale {
        0% {
            -webkit-box-shadow: 0px 0px 0px 0px #eee;
            box-shadow: 0px 0px 0px 0px #eee;
        }
    
        35% {
            -webkit-box-shadow: 0px 0px 10px 5px #eee;
            box-shadow: 0px 0px 10px 5px #eee;
        }
    
        70% {
            -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
            box-shadow: 0px 0px 10px 5px #ea830e;
        }
    
        100% {
            -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
            box-shadow: 0px 0px 0px 0px #ea830e;
        }
    }
    
    @-moz-keyframes testim-scale {
        0% {
            -moz-box-shadow: 0px 0px 0px 0px #eee;
            box-shadow: 0px 0px 0px 0px #eee;
        }
    
        35% {
            -moz-box-shadow: 0px 0px 10px 5px #eee;
            box-shadow: 0px 0px 10px 5px #eee;
        }
    
        70% {
            -moz-box-shadow: 0px 0px 10px 5px #ea830e;
            box-shadow: 0px 0px 10px 5px #ea830e;
        }
    
        100% {
            -moz-box-shadow: 0px 0px 0px 0px #ea830e;
            box-shadow: 0px 0px 0px 0px #ea830e;
        }
    }
    
    @-ms-keyframes testim-scale {
        0% {
            -ms-box-shadow: 0px 0px 0px 0px #eee;
            box-shadow: 0px 0px 0px 0px #eee;
        }
    
        35% {
            -ms-box-shadow: 0px 0px 10px 5px #eee;
            box-shadow: 0px 0px 10px 5px #eee;
        }
    
        70% {
            -ms-box-shadow: 0px 0px 10px 5px #ea830e;
            box-shadow: 0px 0px 10px 5px #ea830e;
        }
    
        100% {
            -ms-box-shadow: 0px 0px 0px 0px #ea830e;
            box-shadow: 0px 0px 0px 0px #ea830e;
        }
    }
    
    @-o-keyframes testim-scale {
        0% {
            -o-box-shadow: 0px 0px 0px 0px #eee;
            box-shadow: 0px 0px 0px 0px #eee;
        }
    
        35% {
            -o-box-shadow: 0px 0px 10px 5px #eee;
            box-shadow: 0px 0px 10px 5px #eee;
        }
    
        70% {
            -o-box-shadow: 0px 0px 10px 5px #ea830e;
            box-shadow: 0px 0px 10px 5px #ea830e;
        }
    
        100% {
            -o-box-shadow: 0px 0px 0px 0px #ea830e;
            box-shadow: 0px 0px 0px 0px #ea830e;
        }
    }
    
    @keyframes testim-scale {
        0% {
            box-shadow: 0px 0px 0px 0px #eee;
        }
    
        35% {
            box-shadow: 0px 0px 10px 5px #eee;
        }
    
        70% {
            box-shadow: 0px 0px 10px 5px #ea830e;
        }
    
        100% {
            box-shadow: 0px 0px 0px 0px #ea830e;
        }
    }
    
    @-webkit-keyframes testim-content-in {
        from {
            opacity: 0;
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
        }
    
        to {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    @-moz-keyframes testim-content-in {
        from {
            opacity: 0;
            -moz-transform: translateY(100%);
            transform: translateY(100%);
        }
    
        to {
            opacity: 1;
            -moz-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    @-ms-keyframes testim-content-in {
        from {
            opacity: 0;
            -ms-transform: translateY(100%);
            transform: translateY(100%);
        }
    
        to {
            opacity: 1;
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    @-o-keyframes testim-content-in {
        from {
            opacity: 0;
            -o-transform: translateY(100%);
            transform: translateY(100%);
        }
    
        to {
            opacity: 1;
            -o-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    @keyframes testim-content-in {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
    
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @-webkit-keyframes testim-content-out {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    
        to {
            opacity: 0;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
    }
    
    @-moz-keyframes testim-content-out {
        from {
            opacity: 1;
            -moz-transform: translateY(0);
            transform: translateY(0);
        }
    
        to {
            opacity: 0;
            -moz-transform: translateY(-100%);
            transform: translateY(-100%);
        }
    }
    
    @-ms-keyframes testim-content-out {
        from {
            opacity: 1;
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    
        to {
            opacity: 0;
            -ms-transform: translateY(-100%);
            transform: translateY(-100%);
        }
    }
    
    @-o-keyframes testim-content-out {
        from {
            opacity: 1;
            -o-transform: translateY(0);
            transform: translateY(0);
        }
    
        to {
            opacity: 0;
            transform: translateY(-100%);
            transform: translateY(-100%);
        }
    }
    
    @keyframes testim-content-out {
        from {
            opacity: 1;
            transform: translateY(0);
        }
    
        to {
            opacity: 0;
            transform: translateY(-100%);
        }
    }
    
    @-webkit-keyframes testim-show {
        from {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }
    
        to {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    }
    
    @-moz-keyframes testim-show {
        from {
            opacity: 0;
            -moz-transform: scale(0);
            transform: scale(0);
        }
    
        to {
            opacity: 1;
            -moz-transform: scale(1);
            transform: scale(1);
        }
    }
    
    @-ms-keyframes testim-show {
        from {
            opacity: 0;
            -ms-transform: scale(0);
            transform: scale(0);
        }
    
        to {
            opacity: 1;
            -ms-transform: scale(1);
            transform: scale(1);
        }
    }
    
    @-o-keyframes testim-show {
        from {
            opacity: 0;
            -o-transform: scale(0);
            transform: scale(0);
        }
    
        to {
            opacity: 1;
            -o-transform: scale(1);
            transform: scale(1);
        }
    }
    
    @keyframes testim-show {
        from {
            opacity: 0;
            transform: scale(0);
        }
    
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @-webkit-keyframes testim-hide {
        from {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    
        to {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }
    }
    
    @-moz-keyframes testim-hide {
        from {
            opacity: 1;
            -moz-transform: scale(1);
            transform: scale(1);
        }
    
        to {
            opacity: 0;
            -moz-transform: scale(0);
            transform: scale(0);
        }
    }
    
    @-ms-keyframes testim-hide {
        from {
            opacity: 1;
            -ms-transform: scale(1);
            transform: scale(1);
        }
    
        to {
            opacity: 0;
            -ms-transform: scale(0);
            transform: scale(0);
        }
    }
    
    @-o-keyframes testim-hide {
        from {
            opacity: 1;
            -o-transform: scale(1);
            transform: scale(1);
        }
    
        to {
            opacity: 0;
            -o-transform: scale(0);
            transform: scale(0);
        }
    }
    
    @keyframes testim-hide {
        from {
            opacity: 1;
            transform: scale(1);
        }
    
        to {
            opacity: 0;
            transform: scale(0);
        }
    }
    
    @media screen and (max-width: 767px) {
        .franchiselft h3 {
            font-size: 16px;
        }
    
        .franchisseright {
            width: 100% !important;
        }
    
        .registrationform {
            padding: 10px !important;
        }
    
        form .row .col-md-12 {
            width: 100%;
        }
    
        .registrationform input[type="text"],
        .registrationform input[type="email"],
        .registrationform input[type="tel"],
        .registrationform input[type="date"],
        .registrationform select {
            height: 35px;
            padding: 0 10px;
            font-size: 10px;
        }
    
        .newregfrm .form-group {
            margin-bottom: 5px;
        }
    
        .franchiselft form .row .col-md-12 {
            margin: 0;
            padding: 0;
        }
    
        .franchiselft form .row {
            margin: 0;
        }
    
        .franchiselft form .row .col-md-6 {
            padding: 0;
        }
    
        textarea.form-control {
            font-size: 11px;
        }
    
        .agree p {
            font-size: 10px;
            line-height: 20px;
        }
    
        .banners.aboutcont img {
            object-position: 70%;
        }
    
        .agree {
            margin-bottom: 10px;
        }
    }
    
    @media all and (max-width: 300px) {
        body {
            font-size: 14px;
        }
    }
    
    @media all and (max-width: 500px) {
        .testim .arrow {
            font-size: 1.5em;
        }
    
        .testim .cont div p {
            line-height: 25px;
        }
    }
    
    
    #footer .footer-newsletter p {
        color: #777;
    }
    
    .container.d-md-flex.py-4 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    #footer .footer-top img {
        filter: grayscale(1);
        height: 70px;
        margin-bottom: 15px;
    }
    
    .headerstn {
       width: 100%;
    display: inline-block;
    padding: 0;
    height: 80px;
    
    }
    
    section#banner {
        padding: 0;
    }
    
    
    .vmboxhdng {
        width: 35%;
    }
    
    .vmboxcnt {
        width: 60%;
        position: relative;
    }
    
    .vmboxhdng h5 {
        line-height: 135px;
        text-transform: uppercase;
    }
    
    .vmbox {
        width: 80%;
        margin: 15px 10%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .vmboxcnt p {
        width: 100%;
        float: left;
    }
    
    .vmbox:nth-child(2) .vmboxcnt {
        left: 0;
    }
    
    .vmbox:nth-child(2) .vmboxhdng {
        right: 25px;
        position: relative;
    }
    
    img {
        max-width: 100%;
    }
    
    .vmbox:nth-child(2) {
        flex-direction: row-reverse;
    }
    
    #sponsor {
        background: #f1f5f8;
        margin-top: 50px;
    }
    
    .planning li {
        font-size: 26px;
        border-left: solid 5px #ef090b;
        margin-bottom: 20px;
        width: 70%;
        float: left;
        position: relative;
        padding-left: 100px;
        height: 80px;
        display: flex;
        align-items: center;
    }
    
    .planning li:nth-child(even) {
        float: right;
    }
    
    .planning li span {
        position: absolute;
        top: -8px;
        font-size: 60px;
        left: 10px;
        font-weight: 900;
        opacity: 0.1;
    }
    
    .aboutcont {
        position: relative;
        width: 100%;
        float: left;
    }
    
    .aboutcont img.img-fluid.float-left {
        position: absolute;
        right: 0;
        top: 10%;
    }
    
    .director-message {
        width: 100%;
        float: left;
        background: #fff;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 1px 6px 0 rgb(50 50 50 / 12%);
    }
    
    .director {
        padding: 50px 0;
        width: 100%;
        background-image: linear-gradient(135deg, #97ABFF 10%, #123597 100%);
        background-image: linear-gradient(109.6deg, rgb(242 247 255) 11.2%, rgb(219 225 255) 91.2%);
    }
    
    .director-message img {
        width: 300px;
        float: left;
        margin-right: 30px;
        border-radius: 10px;
    }
    
    .director-message p {
        margin-bottom: 0.5rem;
        line-height: 26px;
    }
    
    .director-message p:nth-child(2):first-letter {
        font-size: 60px;
        font-family: 'Playfair Display';
    }
    
    h4.white-color {
        color: #fdfdfd;
    }
    
    .director-message p:last-child {
        margin: 0;
    }
    
    section#director {
        padding-bottom: 0;
    }
    
    div#lightgallery,
    .tab-container-response {
        width: 100%;
    
    }
    
    div#lightgallery {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .lightbox {
        width: 30%;
        float: left;
        margin: 1.6%;
        padding: 10px;
        border: solid 1px #ededed;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        transition: ease all 0.3s;
        cursor: pointer;
    }
    
    .lightbox h6 {
        margin: 0;
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        letter-spacing: 1px;
        font-family: 'Roboto';
        padding-bottom: 0;
    }
    
    .lightbox p {
        margin: 0;
        font-size: 15px;
        letter-spacing: 0.1px;
    }
    
    .contact-details {
        width: 70%;
        margin: 0 auto;
    }
    
    .newregfrm {
        width: 100%;
    
        float: left;
    }
    
    .registrationcont h4 {
        margin: 0;
        float: left;
        font-size: 37px;
        font-weight: 700;
    }
    
    .registrationcont .heading {
        float: left;
        width: 100%;
    }
    
    .registrationform {
        /* float: left; */
        /* width: 100%; */
        /* padding: 35px; */
    }
    
    .newsnupdate {
        float: left;
        margin: 0;
        padding: 0;
        height: 390px;
        overflow: auto;
    }
    
    .registrationcont .heading {
        margin: 0;
    }
    
    .registration {
        padding: 50px 0;
        background: url(images/bg-2.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    
    .registrationcont {
        width: 90%;
        float: left;
    }
    
    .registrationcont span {
        color: #efefef;
        letter-spacing: 0.2px;
    }
    
    .registrationcont h4 {
        font-size: 46px;
        font-weight: 700;
        color: #fff;
        margin: 10px 0;
        line-height: 60px;
        letter-spacing: 1px;
    }
    
    .registrationcont p {
        color: #fff;
    }
    
    .registrationform {
    
    
    
        padding: 45px;
        border-radius: 10px;
        position: relative;
        border: solid 1px #f5f4f4;
    }
    
    .registrationform h4 {
        color: #1c1e27;
        font-size: 19px;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .registrationform input[type="text"],
    .registrationform input[type="email"],
    .registrationform input[type="tel"],
    .registrationform input[type="date"],
    .registrationform select {
        width: 100%;
        height: 50px;
        padding: 0 15px;
        border: none;
        background: #f1f2f6;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 13px;
        outline: 0;
    }
    
    .form-group {
        
    }
    
    textarea.form-control {
        width: 100%;
        padding: 10px 20px;
        background: #f1f2f6;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none !important;
        height: 120px;
        resize: none;
        font-size: 13px;
    }
    
    button.btn.btn-primary.webtn {
        font-size: 14px;
        background: #e31e27;
        color: #fff;
        font-weight: 600;
        padding: 12px 20px 10px;
        line-height: 15px;
        position: relative;
        z-index: 1;
        display: inline-block;
        -webkit-transition: all .35s;
        transition: all .35s;
        -moz-transition: all .35s;
        -ms-transition: all .35s;
        text-transform: uppercase;
        border: none;
        letter-spacing: 2px;
        border-radius: 10px;
        overflow: hidden;
        border-radius: 50px;
    }
    
    .form-control:focus {
        background: #e8f0fe !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .registration .col-md-7.col-xs-12 {
        align-items: center;
        display: flex;
    }
    
    .agree {
        display: flex;
        margin-bottom: 15px;
    }
    
    .agree input[type="checkbox"] {
        margin-top: 5px;
        margin-right: 10px;
    }
    
    .agree p {
        margin: 0;
        font-size: 12px;
        line-height: 20px;
    }
    
    .aboutus .row.aos-init.aos-animate {
        width: 100%;
        margin: 0;
    }
    
    form .row {
        
        
    }
    
    .franchise {
        float: left;
        width: 100%;
        display: flex;
    }
    
    .franchisseright {
        width: 24%;
        background: #f7f7f7;
        padding: 20px;
    }
    
    .franchiselft {
        width: 75%;
        margin-right: 1%;
        padding-right: 25px;
    }
    
    .franchisseright ul {
        float: left;
        width: 100%;
    }
    
    .franchisseright ul li {
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: solid 1px #ededed;
        font-size: 14px;
    }
    
    .franchiselft h3 {
        font-size: 19px;
        font-weight: 900;
        text-transform: uppercase;
        color: #e31e27;
    }
    
    .franchisseright ul li:last-child {
        border: none;
        padding: 0;
        margin: 0;
    }
    
    table.table {
        background: #f7f7f7;
    }
    
    .question,
    .answer {
        list-style-type: none;
    }
    
    .question {
        padding: 10px 15px;
        position: relative;
        margin: 0;
        font-size: 19px;
        color: #fff;
        background: #df6d72;
        line-height: 30px;
        text-align: left;
        text-transform: uppercase;
    }
    
    .question:hover {
        cursor: pointer;
    }
    
    .answer {
        display: none;
        padding: 15px 0;
        float: left;
        width: 100%;
        text-align: left;
    }
    
    .expand-bar {
        position: absolute;
        top: 50%;
        left: 1em;
        transition: all 0.5s ease;
    }
    
    .expand-bar,
    .expand-bar:after {
        width: 15px;
        height: 2px;
        background-color: #fff;
        right: 15px;
        left: auto;
    }
    
    .expand-bar:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        transform: rotate(90deg);
        transition: all 0.5s ease;
    }
    
    .open {
        border-bottom: none;
    }
    
    .open .expand-bar {
        transform: rotate(180deg);
    }
    
    .open .expand-bar:after {
        transform: rotate(180deg);
    }
    
    .neighbourhood {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .neightboodbox {
        width: 100%;
        margin-bottom: 1%;
    }
    
    .answer ul {
        padding: 0;
        list-style: none;
        width: 100%;
        float: left;
    }
    
    .answer ul li {
        font-size: 19px;
        line-height: 40px;
        font-weight: 300;
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        border-bottom: #cccbcb solid 1px;
        margin-bottom: 5px;
        padding-bottom: 5px;
        text-align: left;
    }
    
    .answer ul li:last-child {
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .answer.specification ul li {
        text-align: left;
        border: none;
        align-items: unset;
        margin: 0;
        background: #b21c21;
        border-radius: 30px;
        color: #fff;
        width: auto;
        display: inline-block;
        padding: 0 20px;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
    }
    
    .answer.specification ul li p {
        width: 65%;
        float: left;
        letter-spacing: 1.5px;
    }
    
    .registrationform h3 {
        margin-bottom: 15px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    .poupfrm {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: rgb(0 0 0 / 90%);
        z-index: 99999;
        display: none;
    }
    
    .poupfrm .newregfrm {
        width: 50%;
        margin: 10px 25%;
    }
    
    .poupfrm .newregfrm .registrationform {
        border-color: #121212;
        background: #fff;
        position: relative;
    }
    
    .cross {
        position: absolute;
        right: 5%;
        top: 5%;
    }
    
    .webslider {
        overflow: hidden;
        width: 100%;
    }
    
    .lightbox h3 {
        margin-bottom: 5px;
        margin-top: 15px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .paginate_button {
        border-radius: 0 !important;
    }
    
    html {
        font-size: 62.5%;
    }
    
    body {}
    
    @media (min-width: 992px) {
    
        .slider,
        .slide {}
    }
    
    .slide {display: flex !important;align-items: center;}
    
    .slide .slide__img {
        width: 60%;
        
        
    }
    
    @media (min-width: 992px) {
        .slide .slide__img {}
    }
    
    .slide .slide__img img {
    
    
    
    
    
    
        
        
        
    }
    
    .slide .slide__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .slide .slide__content.slide__content__left {
        left: 15%;
        transform: translate(-15%, -50%);
    }
    
    .slide .slide__content.slide__content__right {
        right: 15%;
        left: auto;
        transform: translate(5%, -50%);
    }
    
    .slide .slide__content--headings {
        color: #FFF;
    }
    
    .slide .slide__content--headings h2 {
        font-size: 4.5rem;
        margin: 10px 0;
    }
    
    .slide .slide__content--headings .animated {
        transition: all 0.5s ease;
    }
    
    .slide .slide__content--headings .top-title {}
    
    .slide .slide__content--headings .title {
        font-size: 3.5rem;
    }
    
    .slide .slide__content--headings .button-custom {
        text-decoration: none;
        color: #333;
        padding: 1.2rem 2.5rem;
        font-size: 1.5rem;
    }
    
    .slider [data-animation-in] {
        opacity: 0;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        transition: opacity 0.5s ease 0.3s;
        transition: 1s;
    }
    
    .slick-dotted .slick-slider {
        margin-bottom: 30px;
    }
    
    .slick-dots {
        position: absolute;
        bottom: 25px;
        list-style: none;
        display: block;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }
    
    .slick-dots li button {
        border: 0;
        display: block;
        outline: none;
        line-height: 0px;
        font-size: 0px;
        color: transparent;
        padding: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slick-dots li button:hover,
    .slick-dots li button:focus {
        outline: none;
    }
    
    .simple-dots .slick-dots li {
        width: 20px;
        height: 20px;
    }
    
    .simple-dots .slick-dots li button {
        border-radius: 50%;
        background-color: white;
        opacity: 0.25;
        width: 20px;
        height: 20px;
    }
    
    .simple-dots .slick-dots li button:hover,
    .simple-dots .slick-dots li button:focus {
        opacity: 1;
    }
    
    .simple-dots .slick-dots li.slick-active button {
        color: white;
        opacity: 0.75;
    }
    
    .stick-dots .slick-dots li {
        height: 3px;
        width: 50px;
    }
    
    .stick-dots .slick-dots li button {
        position: relative;
        background-color: white;
        opacity: 0.25;
        width: 50px;
        height: 3px;
        padding: 0;
    }
    
    .stick-dots .slick-dots li button:hover,
    .stick-dots .slick-dots li button:focus {
        opacity: 1;
    }
    
    .stick-dots .slick-dots li.slick-active button {
        color: white;
        opacity: 0.75;
    }
    
    .stick-dots .slick-dots li.slick-active button:hover,
    .stick-dots .slick-dots li.slick-active button:focus {
        opacity: 1;
    }
    
    /* /////////// IMAGE ZOOM /////////// */
    @-webkit-keyframes zoomInImage {
        from {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    }
    
    @keyframes zoomInImage {
        from {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    }
    
    .zoomInImage {
        -webkit-animation-name: zoomInImage;
        animation-name: zoomInImage;
    }
    
    @-webkit-keyframes zoomOutImage {
        from {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    }
    
    @keyframes zoomOutImage {
        from {
            transform: scale3d(1.1, 1.1, 1.1);
            transition: 1s;
        }
    
        to {
            transform: scale3d(1, 1, 1);
            transition: 1s;
        }
    }
    
    .zoomOutImage {
        -webkit-animation-name: zoomOutImage;
        animation-name: zoomOutImage;
        transition: 1s;
    }
    
    .slick-nav {
        
        
        
        
        
        
        
    }
    
    .slick-nav.prev-arrow {
        
        
        
    }
    
    .slick-nav.next-arrow {}
    
    .slick-nav i {
        display: block;
        position: absolute;
        margin: -10px 0 0 -10px;
        width: 20px;
        height: 20px;
        left: 50%;
        top: 50%;
    }
    
    .slick-nav i:before,
    .slick-nav i:after {
        content: "";
        width: 10px;
        height: 2px;
        border-radius: 1px;
        position: absolute;
        left: 50%;
        top: 50%;
        background: var(--active);
        margin: -1px 0 0 -5px;
        display: block;
        transform-origin: 9px 50%;
    }
    
    .slick-nav i:before {
        transform: rotate(-40deg);
    }
    
    .slick-nav i:after {
        transform: rotate(40deg);
    }
    
    .slick-nav:before,
    .slick-nav:after {
        
        
        
        
        
        
        
        
        
    }
    
    .slick-nav svg {}
    
    .slick-nav.animate svg {
        -webkit-animation: stroke 1s ease forwards 0.3s;
        animation: stroke 1s ease forwards 0.3s;
    }
    
    .slick-nav.animate i {
        -webkit-animation: arrow 1.6s ease forwards;
        animation: arrow 1.6s ease forwards;
    }
    
    .slick-nav.animate i:before {
        -webkit-animation: arrowUp 1.6s ease forwards;
        animation: arrowUp 1.6s ease forwards;
    }
    
    .slick-nav.animate i:after {
        -webkit-animation: arrowDown 1.6s ease forwards;
        animation: arrowDown 1.6s ease forwards;
    }
    
    @-webkit-keyframes stroke {
        52% {
            transform: rotate(-180deg);
            stroke-dashoffset: 0;
        }
    
        52.1% {
            transform: rotate(-360deg);
            stroke-dashoffset: 0;
        }
    
        100% {
            transform: rotate(-180deg);
            stroke-dashoffset: 126;
        }
    }
    
    @keyframes stroke {
        52% {
            transform: rotate(-180deg);
            stroke-dashoffset: 0;
        }
    
        52.1% {
            transform: rotate(-360deg);
            stroke-dashoffset: 0;
        }
    
        100% {
            transform: rotate(-180deg);
            stroke-dashoffset: 126;
        }
    }
    
    @-webkit-keyframes arrow {
    
        0%,
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    
        23% {
            transform: translateX(17px);
            opacity: 1;
        }
    
        24%,
        80% {
            transform: translateX(-22px);
            opacity: 0;
        }
    
        81% {
            opacity: 1;
            transform: translateX(-22px);
        }
    }
    
    @keyframes arrow {
    
        0%,
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    
        23% {
            transform: translateX(17px);
            opacity: 1;
        }
    
        24%,
        80% {
            transform: translateX(-22px);
            opacity: 0;
        }
    
        81% {
            opacity: 1;
            transform: translateX(-22px);
        }
    }
    
    @-webkit-keyframes arrowUp {
    
        0%,
        100% {
            transform: rotate(-40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @keyframes arrowUp {
    
        0%,
        100% {
            transform: rotate(-40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @-webkit-keyframes arrowDown {
    
        0%,
        100% {
            transform: rotate(40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    @keyframes arrowDown {
    
        0%,
        100% {
            transform: rotate(40deg) scaleX(1);
        }
    
        20%,
        80% {
            transform: rotate(0deg) scaleX(0.1);
        }
    }
    
    .highlightpoint {
        width: 100%;
        float: left;
        margin-top: -100px;
        position: relative;
        z-index: 99;
        padding-bottom: 50px;
    }
    
    .pointstn {
        width: 100%;
        float: left;
        display: flex;
        justify-content: center;
    }
    
    .pointbox {
        position: relative;
        ;
        ;
        width: 250px;
        height: 250px;
        border-radius: 100%;
        margin: 0 0.5%;
        display: flex;
        align-items: center;
        justify-content: center;
    box-shadow: 3px 6px 6px rgb(85 85 85 / 16%);background: #f9f9f9;overflow: hidden;text-align: center;}
    
    .pointbox:before {
        content: '';
        background: #043872;
        position: absolute;
        width: 100%;
        height: 0%;
        
    transition: ease all 0.5s;top: 0;}
    
    .pointbox:nth-child(2):before {
        
        
    }
    
    .pointbox:nth-child(3):before {
        
    }
    
    .pointbox img {
    
    
        width: 60px;
    position: absolute;left: 0;transition: ease all 0.5s;}
    
    .features h2 {
        font-size: 18px;
        color: #1d2630;
        position: relative;
        padding: 12px;
        text-align: center;
        margin: 0;
    transition: ease all 0.5s;width: 100%;}
    
    #main {
        float: left;
        width: 100%;
    }
    
    img.img-fluid.dotimg {
        position: absolute;
        top: -10%;
        right: 10%;
        z-index: -1;
    ;
    animation: animationFramesTwo 12s infinite linear alternate;}
    
    .title span {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#7114EF), to(#1475F7));
        background-image: -webkit-linear-gradient(to left, #7114EF, #1475F7);
        background-image: -moz-linear-gradient(to left, #7114EF, #1475F7);
        background-image: -ms-linear-gradient(to left, #7114EF, #1475F7);
        background-image: -o-linear-gradient(to left, #7114EF, #1475F7);
        background-image: linear-gradient(to left, #7114EF, #1475F7);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7114EF', endColorStr='#1475F7');
        background-color: transparent;
        background-clip: text;
        -o-background-clip: text;
        -ms-background-clip: text;
        -moz-background-clip: text;
        -webkit-background-clip: text;
        text-fill-color: transparent;
        -o-text-fill-color: transparent;
        -ms-text-fill-color: transparent;
        -moz-text-fill-color: transparent;
        -webkit-text-fill-color: transparent;
        box-shadow: 0 11px 27px rgb(0 9 71 / 13%);
        padding: 10px 30px;
        display: inline-block;
        border-radius: 30px;
        margin-bottom: 15px;
        font-weight: 700;
        letter-spacing: 0.3px;
        font-size: 16px;
    }
    
    .aboutus p:nth-child(2) {
        display: flex;
        width: 100%;
        float: left;
        border-left: solid 2px #7114ef;
        padding-left: 10px;
    }
    
    .about .content ul li span {
        font-size: 19px;
        float: left;
        line-height: 22px;
        padding: 10px;
        font-weight: 600;
        color: #000;
    }
    
    .el-btn-video {
        position: absolute;
        right: 135px;
        bottom: 120px;
        z-index: 99;
        width: 56px;
        height: 56px;
        font-size: 14px;
        line-height: 56px;
        text-align: center;
        background-color: #006cff;
        background-image: -webkit-gradient(linear, left top, right top, from(#006cff), to(#1227b8));
        background-image: -webkit-linear-gradient(left, #006cff, #1227b8);
        background-image: -moz-linear-gradient(left, #006cff, #1227b8);
        background-image: -ms-linear-gradient(left, #006cff, #1227b8);
        background-image: -o-linear-gradient(left, #006cff, #1227b8);
        background-image: linear-gradient(left, #006cff, #1227b8);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#006cff', endColorStr='#1227b8', gradientType='1');
        color: #fff;
        -webkit-border-radius: 56px;
        -khtml-border-radius: 56px;
        -moz-border-radius: 56px;
        -ms-border-radius: 56px;
        -o-border-radius: 56px;
        border-radius: 56px;
        background-image: -webkit-gradient(linear, left top, right top, from(#7114EF), to(#1475F7));
        background-image: -webkit-linear-gradient(to left, #7114EF, #1475F7);
        background-image: -moz-linear-gradient(to left, #7114EF, #1475F7);
        background-image: -ms-linear-gradient(to left, #7114EF, #1475F7);
        background-image: -o-linear-gradient(to left, #7114EF, #1475F7);
        background-image: linear-gradient(to left, #7114EF, #1475F7);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7114EF', endColorStr='#1475F7', gradientType='1');
    }
    
    a.el-btn-video:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(15, 103, 246, .63);
        border-radius: 50%;
        animation: pulse-border2 1500ms ease-out infinite;
        -webkit-animation: pulse-border2 1500ms ease-out infinite;
        z-index: -2;
    }
    
    .aboutus img.img-fluid {
        border-radius: 10px;
    }
    
    .tabs {
    
    
        width: 100%;
        display: flex;
        float: left;
        text-align: left;
    
    flex-wrap: wrap;}
    
    .tabs > ul {
        list-style-type: none;
        padding: 0;
        width: 100%;
        text-align: left;
        float: left;
        
    display: flex;}
    
    .tabs > ul li {
        display: block;
    
        text-align: center;
        border-right: solid 1px #ededed;
    width: 33.33%;}
    
    .tabs > ul li a {
        display: block;
        text-decoration: none;
        background: #203f6c;
        padding: 2rem 1.5rem;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.2s ease-in-out;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-weight: 600;
    }
    
    .tabs > ul li a.active {
        background: linear-gradient(90deg, #7114EF 0%, #1475F7 50%, #7114EF) !important;
        color: #ffffff;
    }
    
    .tabs > ul li a:hover:not(.active) {
        color: #fff;
    }
    
    .tabs section {
        background: #fff;
        padding: 2.5rem;
        display: none;
    }
    
    .tabs section.active {
        display: block;
    }
    
    .title h2 em {
        font-style: initial;
        color: #2952f4;
        background: linear-gradient(to right, #f80503 0%, #ff7d09 100%);
        background: -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background: -webkit-gradient(linear, left top, right top, from(#f80503), to(#ff7d09));
        background: linear-gradient(to right, #1970f7 0%, #6c1af0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .container {
        max-width: 75%;
    }
    
    .container.d-flex.align-items-center.justify-content-between {
        max-width: 90%;
    }
    
    .tabs > ul li a i {
        margin-right: 15px;
    }
    
    .tabs section h3 {
        font-size: 26px;
        font-weight: 600;
        color: #2e2d2d;
        border-left: solid 4px #2952f4;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    
    .services {
        background: #F8F4F3;
    }
    
    .whychoose ul li {
        display: flex;
        width: 50%;
        float: left;
        margin: 5px 0;
        position: relative;
        padding-left: 22px;
        font-weight: 300;
    }
    
    .whychoose ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }
    
    .whychoose ul li:before {
        content: "\f0a9";
        font-family: 'FontAwesome';
        position: absolute;
        top: 0;
        left: 0;
        font-size: 18px;
        color: #043872;
    }
    
    .col-lg-4.col-6.text-center.d-flex {
        
        
        
        
        
    align-items: center;padding: 0 20px;}
    
    .counts h3 {
        margin: 0;
        padding: 0;
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    color: #fff;}
    
    .col-lg-4.col-6.text-center.d-flex .col-md-4.col-xs-12 {
        
        
        
        
        
        
        
        
        
        
    text-align: center;display: flex;align-items: center;justify-content: center;}
    
    .col-lg-4.col-6.text-center.d-flex .col-md-8.col-xs-12 {
        
    }
    
    #whychoose {
        background: #f5fffe;
    }
    
    .social-links {
        float: right;
        width: auto;
    }
    
    .ftrcont {
        margin: 25px 0;
        display: flex;
        align-items: center;
        border-bottom: solid 1px rgb(255 248 248 / 4%);
    }
    
    .ftrcont .row {
        align-items: center;
    }
    
    span.icons {
        position: relative;
    width: 60px;height: 60px;float: left;transform: translate(-50%,-50%);left: 50%;top: 50%;}
    
    .pointbox:after {
        content: '';
        background-image: url(../img/next.png);
        width: 16px;
        height: 16px;
        position: absolute;
        bottom: 12%;
        left: 50%;
        transform: translateY(-50%);
        background-size: cover;
    }
    
    @keyframes animationFramesTwo {
        0% {
            transform: translateX(0)
        }
    
        25% {
            transform: translateX(40px)
        }
    
        50% {
            transform: translateX(0)
        }
    
        75% {
            transform: translateX(-40px)
        }
    
        100% {
            transform: translateX(0)
        }
    }
    .shape {
        position: absolute;
        top: -240px;
        left: 0;
        /* width: 100%; */
    }
    .shape svg {
        width: 100%;
    display: none;}
    svg {
        overflow: hidden;
        vertical-align: middle;
    }
    .pointbox .shape {top: inherit;bottom: 0;}
    
    .pointbox .shape svg path {fill: rgb(203 203 203 / 25%);}
    .pointbox:hover:before {background: #203f6c;
                }
    .btn-3:hover {background: linear-gradient(300deg , #03228f 34%, #0e73e4 100%) !important;}
    .counts .container {}
    .fixed {
        position: fixed;
        top: 0;
        left: 0;
        animation: smoothScroll 2s forwards;
        z-index: 999;
    }
    
    @keyframes smoothScroll {
        0% {
            transform: translateY(-150px);
        }
    
        100% {
            transform: translateY(0px);
        }
    }
    .aboutus.innerabout {margin-top: 50px;}
    .process {margin: 50px 0;float: left;width: 100%;}
    
    .abouticon {text-align: right;position: relative;float: left;width: 100%;height: 200px;}
    
    .abouticon span {
        font-size: 100px;
        opacity: 0.9;
        font-weight: 900;
        color: transparent;
        -webkit-text-stroke: 2px #f4f4f4;
        line-height: 50px;}
    
    .abouticon img {position: absolute;left: 10px;top: 30px;}
    
    .abouticon h2 {width: 100%;float: left;text-align: center;position: absolute;left: 0;bottom: 5%;font-size: 17px;}
    .abouticonicons{
        
    position: absolute;width: 100%;top: 0;bottom: 0;border: 1px solid #e7e7e7;padding: 50px 30px 65px 0;}
    .abouticon:before, .abouticon:after {content: '';width: 0;
        height: 2px;
        position: absolute;
        transition: all 0.2s linear;
        background: #086AD8;
    }
    .abouticonicons:before, .abouticonicons:after{
            content: "";
        width: 2px;
        height: 0;
        position: absolute;
        transition: all 0.2s linear;
        background: #086AD8;
    }
    .abouticon:before{
        right: 0;
        top: 0;
    }
    .abouticonicons:before{
            left: 0;
        top: 0;
    }
    .abouticon:after{
            left: 0;
        bottom: 0;
    }
    .abouticonicons:after{
            right: 0;
        bottom: 0;
    }
    .abouticon:hover:before{
            width: 100%;
            transition-delay: 0s;
    }
    .abouticonicons:hover:before, .abouticonicons:hover:after{
        height:100%;
    }
    .abouticon:hover:after{
        width:100%;
    }
    .technology {width: 100%;float: left;background: url(../img/web-development-process.jpg);display: flex;align-items: center;justify-content: center;position: relative;padding: 50px 0;flex-wrap: wrap;text-align: center;}
    .technology:before {content: '';background: rgba(20,29,56,0.95);position: absolute;width: 100%;height: 100%;left: 0;right: 0;}
    .technologybox {width: 100%;float: left;position: relative;height: 100%;display: flex;align-items: center;justify-content: center;}
    
    .technologybox .row {width: 100%;float: left;justify-content: space-between;}
    
    .technologyicon {position: relative;
        padding: 45px 15px 25px;
        text-align: center;
        border-radius: 10px;
        border: 1px dashed rgba(255,255,255,0.60);
        transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;width: 19%;}
    
    .indexicon h6 {float: left;width: 100%;margin-top: 30px;color: #fff;font-size: 17px;transition: ease all 1s;}
    .technology .title {position: relative;}
    
    .technology .title h2 {color: #fff;}
    section#technology {padding-bottom: 0;}
    
    .process {margin-bottom: 0;}
    .breadcumb-area {
        background: #E9E9E9;
        padding: 60px 0px 15px 0px;
    }
    .breadcumb-area .breadcumb-title {
        width: 60%;
        margin: 0 auto;
        padding: 60px 0px 60px 0px;
        border: 7px solid #ecc405;
        box-sizing: border-box;
        color: #ecc405;
    }
    .ptb-100-70 {
        width: 100%;
        float: left;
    }
    .service-wrap {
        text-align: center;
        padding: 10px;
        float: left;
        width: 100%;
        border-radius: 8px;
    }
    .service-wrap:hover{
    
    }
    .service-wrap:hover h2{
        
    }
    .service-wrap:hover .service-top{
        
    }
    .service-wrap:hover .service-icon{
        
    }
    .service-top {
        
        padding: 15px 0;
        float: left;
        width: 100%;
        
        border-radius: 8px;
    }
    .service-icon {
        font-size: 30px;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        margin: auto;
        border-radius: 50%;
        position: relative;
        z-index: 11;
        
    background: linear-gradient(to right, #1970f7 0%, #6c1af0 100%);color: #fff;}
    .service-content h4 {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: normal;
    color: #043872;text-transform: uppercase;}
    .service-content p {
        font-size: 14px;
    }
    .abt-web {
        padding: 0 0;
        text-align: center;
        width: 80%;
        margin: 0 auto 50px;
    }
    body{
        overflow-x: hidden;
    }
    .banner-wrapper {
        position: relative;
        height: 100vh;
    }
    .banner-wrapper img{
        height: 100vh;
    }
    .banner-wrapper::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.2);
    }
    .res-cont-wrap.testserv, .tech-wrap.workstn .tech-cont, .tech-wrap.workstn{
    background:#fff;    
    box-shadow: none;
    }
    .breadcumb-area {
        background: #E9E9E9;
        padding: 60px 0px 15px 0px;
    }
    .breadcumb-area .breadcumb-title {
        width: 60%;
        margin: 0 auto;
        padding: 60px 0px 60px 0px;
        border: 7px solid #ecc405;
        box-sizing: border-box;
        color: #ecc405;
    }
    .ptb-100-70 {
        width: 100%;
        float: left;
    }
    .service-wrap {
        text-align: center;
        padding: 10px;
        float: left;
        width: 100%;
        border-radius: 8px;
    }
    .service-wrap:hover{
    
    }
    .service-wrap:hover h2{
        
    }
    .service-wrap:hover .service-top{
        
    }
    .service-wrap:hover .service-icon{
        
    }
    .service-top {
        
        padding: 15px 0;
        float: left;
        width: 100%;
        margin-bottom: 25px;
        border-radius: 8px;
    }
    .service-icon {
        
        
        
        
        
        
        
        
        
        
    }
    .service-content h4 {
        
        
        
    }
    .service-content p {
        font-size: 14px;
    }
    .heading-block {
        display: inline-block;
        width: 100%;
    }
    .heading-block h3 {
        font-size: 30px;
        text-transform: uppercase;
        margin: 0px;
        font-weight: normal;
        letter-spacing: 3px;
    }
    
    .testi-sec{
        position: relative;
        padding-bottom:0px;
    }
    .testimonial.test-pos h5, .testimonial.test-pos h4 {
        color: #fff;
    }
    .testi-sec .bg-wrap {
        position: absolute;
        bottom: -60px;
        width: 100%;
        height: 60px;
            background: #eacda3;
        background: #e53935;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #e35d5b, #e53935);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #e35d5b, #e53935); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
        z-index: -1;
    }
    .testi.testi-simple {
        width: 100% !important;
    }
    .testi.testi-simple article {
        border: 4px solid #f8c000;
        padding: 25px;
        padding-bottom: 40px;
    }
    .testi-sec.style-5 .avatar {
        height: 114px;
        width: 114px;
        margin-top: 0;
        margin: 0 auto;
        margin-bottom: 30px;
        overflow: hidden;
        background: #E9E9E9;
        border: 1px solid #777;
        border-radius: 100%;
    }
    .testi-sec.style-5 .testi p {
        color: #535353 !important;
        margin-bottom: 10px;
    }
    hr.center {
        margin: 15px auto;
    }
    hr.small {
        height: 1px;
        width: 20px;
        margin: 15px 0;
        margin-bottom: 10px;
        background: #535353;
        border: none;
    }
    .padding-bottom-60 {
        padding-bottom: 60px;
    }
    .testi-sec .testi h6 {
        font-weight: 600;
        font-size: 16px;
        margin-top: 25px;
    }
    .testi-sec .testi span {
        text-transform: none;
    }
    .pd-0{
        padding: 0;
    }
    .sec-img-wrap img{
      width: 90%;
    margin-left: 5%;}
    .sec-col-con {
          padding: 80px 15px;
        color: #E9E9E9;
        position: relative;
        
        
        background: #70798C;
    }
    .sec-col-psd {
        
        background: #42273B;
    }
    .sec-col-lan {
        padding: 80px 15px;
        color: #E9E9E9;
        position: relative;
        background: #F15946;
        
        }
    .sec-col-main {
        
        background: #fc7176;
    }
    .pos-right{
        right: 0 !important;
        left: inherit !important;
    }
    .sec-con {
        padding: 50px;
        position: relative;
        padding-bottom: 0;
    }
    .sec-con h3 {
        font-size: 36px;
        margin: 10px 0;
        position: relative;
        line-height: 40px;
        
    font-weight: bold;color: #fff;}
    .sec-num {
        font-size: 120px;
        position: absolute;
        top:25px;
        left: 0;
        padding: 30px;
        z-index: 1;
        
        color: #ffffff;
        
        opacity: 0.3;
    font-family: 'Playfair Display', serif;}
    .sec-con h3::after {
        content: '';
        display: block;
        background: #E9E9E9;
        position: absolute;
        right: 0;
        width: 180px;
        height: 3px;
        top: 50%;
        transform: translateY(-50%);
        display: none;
    }
    .sec-col-lan h3::after{
        display: none;
    }
    
    .caret-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 180px;
        left: -50px;
        color: #70798c;
    }
    .test-right p{
        height: auto;
    }
    .sec-col-psd .caret-icon{
        color: #42273b;
    }
    .caret-icon-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 180px;
        right: -50px;
        color: #F15946;
    }
    .sec-col-main .caret-icon-right {
        color: #fc7176;
    }
    .res-cont-wrap {
        margin: 20px;
        padding: 0;
        box-shadow: 0 3px 3px rgba(0,0,0,0.2);
        background: #314755;
        background: -webkit-linear-gradient(to left, #26a0da, #314755);
        background: linear-gradient(to left, #8ed2ed, #314755);
        width: auto;
        float: none;
    }
    .res-wrap h5 {
        color: #1b1b1b;
    }
    .res-info-wrap {
        margin-top: 30px;
    }
    .res-info-box {
        width: 200px;
        text-align: center;
        color: #E9E9E9;
        display: inline-block;
        position: relative;
    }
    .res-info-box:nth-child(1) {
        transform: scale(0.8);
        left: 160px;
        z-index: 3;
    }
    .res-info-box:nth-child(2) .info-circle {
        background: #BC6C4B;
    }
    .res-info-box:nth-child(2) {
        transform: scale(0.9);
        left: 110px;
        z-index: 2;
    }
    .res-info-box:nth-child(3) {
         left: 80px;
    }
    .res-info-box:nth-child(4) {
        transform: scale(0.9);
        left: 50px;
    }
    .res-info-box:nth-child(4) .info-circle {
        background: #E9E9E9;
        color: #222;
    }
    .res-info-box:nth-child(4) .info-circle p {
        color: #222;
    }
    .res-info-box:nth-child(5) {
        transform: scale(0.8);
    }
    .res-info-box:nth-child(5) .info-circle {
        background: #64BABB;
    }
    .res-info-box .info-circle {
        width: 200px;
        height: 200px;
        background: #D29B36;
        border-radius: 100%;
        text-align: center;
        opacity: 0.8;
        position: relative;
    }
    .img-ab {
        position: absolute;
        top: 0;
        right: 0;
        width: 390px;
        height: 100%;
        z-index: -1;
    }
    .img-ab img {
        height: 100%;
    }
    .circle-inner{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .res-info-box .info-circle .fa {
         font-size: 80px;
    }
    .res-info-box .info-p {
        margin-top: 40px;
    }
    .res-info-box:nth-child(3) .info-circle .fa {
        font-size: 120px;
    }
    
    .info-circle::after {
        content: '';
        display: block;
        width: 2px;
        height: 50px;
        border-left: 2px dashed #1b1b1b;
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
    }
    .info-circle::before {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: #1b1b1b;
        border-radius: 100%;
    }
    .ab-img-wrap{
        position: relative;
    }
    .ab-img-wrap img{
        position: relative;
    }
    .ab-img-bg {
        position: absolute;
        top: -40px;
        right: 0;
        width: 400px;
        height: 400px;
        border-radius: 100%;
        z-index: -1;
        background: #cc2b5e;
        background: -webkit-linear-gradient(to right, #bd38de, #cc2b5e);
        background: linear-gradient(to right, #bd38de, #cc2b5e);
    }
    .cogs-wrapper {
        position: absolute;
        top: -30px;
        left: 40px;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        border-radius: 100%;
        background: #eee;
            background-image: none;
        font-size: 30px;
        color: #E9E9E9;
        background: #CB356B;
        background: -webkit-linear-gradient(to right, #BD3F32, #CB356B);
        background: linear-gradient(to right, #BD3F32, #CB356B);
    }
    
    .ab-soft-cont-wrap p:first-child::first-letter { 
        font-size: 80px;
        padding: 10px 10px 10 0px;
        display:inline-block;
        float:left;
        line-height:1;
        margin-right:1rem;
        font-weight:500;
        background-size:cover;
        color:#f5831a;
        font-family: 'baskervilla'
        
    }
    .ab-soft-cont {
    }
    
    /*--------------------------------------------------------------
    3.0 Slider
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    >>> TABLE OF CONTENTS:
    ----------------------------------------------------------------
    1.0 Variables
    2.0 Cards
    3.0 Bullets
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    1.0 Variables
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    2.0 Cards
    --------------------------------------------------------------*/
    .slider__item {
      transition: all 0.3s ease;
      -webkit-transition-timing-function: 
        cubic-bezier(0.4, 0.0, 0.2, 1);
    		transition-timing-function: 
         cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    #slide-1:checked ~ .slider__holder .slider__item--1 {
      position: relative;
      z-index: 2;
      transform: translate(0) scale(1);
    }
    
    #slide-2:checked ~ .slider__holder .slider__item--1 {
      z-index: 1;
      transform: translateX(-300px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-2:checked ~ .slider__holder .slider__item--1 {
        opacity: 0.6;
      }
    }
    #slide-3:checked ~ .slider__holder .slider__item--1 {
      z-index: 0;
      transform: translateX(-300px) scale(0.65);
    }
    
    @media (max-width: 900px) {
      #slide-3:checked ~ .slider__holder .slider__item--1 {
        transform: translateX(-170px) scale(0.65);
      }
    }
    @media (max-width: 768px) {
      #slide-3:checked ~ .slider__holder .slider__item--1 {
        opacity: 0;
      }
    }
    #slide-4:checked ~ .slider__holder .slider__item--1 {
      z-index: -1;
      opacity: 0;
      transform: translateX(-210px) scale(0.65);
    }
    
    #slide-5:checked ~ .slider__holder .slider__item--1 {
      z-index: -1;
      opacity: 0;
      transform: translateX(-210px) scale(0.65);
    }
    
    #slide-1:checked ~ .slider__holder .slider__item--2 {
      z-index: 1;
      transform: translateX(100px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-1:checked ~ .slider__holder .slider__item--2 {
        opacity: 0.6;
      }
    }
    #slide-2:checked ~ .slider__holder .slider__item--2 {
      position: relative;
      z-index: 2;
      transform: translate(0) scale(1);
    }
    
    #slide-3:checked ~ .slider__holder .slider__item--2 {
      z-index: 1;
      transform: translateX(-140px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-3:checked ~ .slider__holder .slider__item--2 {
        opacity: 0.6;
      }
    }
    #slide-4:checked ~ .slider__holder .slider__item--2 {
      z-index: 0;
      transform: translateX(-210px) scale(0.65);
    }
    
    @media (max-width: 900px) {
      #slide-4:checked ~ .slider__holder .slider__item--2 {
        transform: translateX(-170px) scale(0.65);
      }
    }
    @media (max-width: 768px) {
      #slide-4:checked ~ .slider__holder .slider__item--2 {
        opacity: 0;
      }
    }
    #slide-5:checked ~ .slider__holder .slider__item--2 {
      z-index: -1;
      opacity: 0;
      transform: translateX(-210px) scale(0.65);
    }
    
    #slide-1:checked ~ .slider__holder .slider__item--3 {
      z-index: 0;
      transform: translateX(210px) scale(0.65);
    }
    
    @media (max-width: 900px) {
      #slide-1:checked ~ .slider__holder .slider__item--3 {
        transform: translateX(170px) scale(0.65);
      }
    }
    @media (max-width: 768px) {
      #slide-1:checked ~ .slider__holder .slider__item--3 {
        opacity: 0;
      }
    }
    #slide-2:checked ~ .slider__holder .slider__item--3 {
      z-index: 1;
      transform: translateX(100px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-2:checked ~ .slider__holder .slider__item--3 {
        opacity: 0.6;
      }
    }
    #slide-3:checked ~ .slider__holder .slider__item--3 {
      position: relative;
      z-index: 2;
      transform: translate(0) scale(1);
    }
    
    #slide-4:checked ~ .slider__holder .slider__item--3 {
      z-index: 1;
      transform: translateX(-100px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-4:checked ~ .slider__holder .slider__item--3 {
        opacity: 0.6;
      }
    }
    #slide-5:checked ~ .slider__holder .slider__item--3 {
      z-index: 0;
      transform: translateX(-210px) scale(0.65);
    }
    
    @media (max-width: 900px) {
      #slide-5:checked ~ .slider__holder .slider__item--3 {
        transform: translateX(-170px) scale(0.65);
      }
    }
    @media (max-width: 768px) {
      #slide-5:checked ~ .slider__holder .slider__item--3 {
        opacity: 0;
      }
    }
    #slide-1:checked ~ .slider__holder .slider__item--4 {
      z-index: -1;
      opacity: 0;
      transform: translateX(210px) scale(0.65);
    }
    
    #slide-2:checked ~ .slider__holder .slider__item--4 {
      z-index: 0;
      transform: translateX(210px) scale(0.65);
    }
    
    @media (max-width: 900px) {
      #slide-2:checked ~ .slider__holder .slider__item--4 {
        transform: translateX(170px) scale(0.65);
      }
    }
    @media (max-width: 768px) {
      #slide-2:checked ~ .slider__holder .slider__item--4 {
        opacity: 0;
      }
    }
    #slide-3:checked ~ .slider__holder .slider__item--4 {
      z-index: 1;
      transform: translateX(140px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-3:checked ~ .slider__holder .slider__item--4 {
        opacity: 0.6;
      }
    }
    #slide-4:checked ~ .slider__holder .slider__item--4 {
      position: relative;
      z-index: 2;
      transform: translate(0) scale(1);
    }
    
    #slide-5:checked ~ .slider__holder .slider__item--4 {
      z-index: 1;
      transform: translateX(-100px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-5:checked ~ .slider__holder .slider__item--4 {
        opacity: 0.6;
      }
    }
    #slide-1:checked ~ .slider__holder .slider__item--5 {
      z-index: -1;
      opacity: 0;
      transform: translateX(210px) scale(0.65);
    }
    
    #slide-2:checked ~ .slider__holder .slider__item--5 {
      z-index: -1;
      opacity: 0;
      transform: translateX(210px) scale(0.65);
    }
    
    #slide-3:checked ~ .slider__holder .slider__item--5 {
      z-index: 0;
      transform: translateX(300px) scale(0.65);
    }
    
    @media (max-width: 900px) {
      #slide-3:checked ~ .slider__holder .slider__item--5 {
        transform: translateX(170px) scale(0.65);
      }
    }
    @media (max-width: 768px) {
      #slide-3:checked ~ .slider__holder .slider__item--5 {
        opacity: 0;
      }
    }
    #slide-4:checked ~ .slider__holder .slider__item--5 {
      z-index: 1;
      transform: translateX(100px) scale(0.85);
    }
    
    @media (max-width: 768px) {
      #slide-4:checked ~ .slider__holder .slider__item--5 {
        opacity: 0.6;
      }
    }
    #slide-5:checked ~ .slider__holder .slider__item--5 {
      position: relative;
      z-index: 2;
      transform: translate(0) scale(1);
    }
    
    /*--------------------------------------------------------------
    3.0 Bullets
    --------------------------------------------------------------*/
    .bullets__item {
      transition: all 0.2s ease;
    }
    
    #slide-1:checked ~ .bullets .bullets__item--1 {
      background: #E9E9E9;
    }
    
    #slide-2:checked ~ .bullets .bullets__item--2 {
      background: #E9E9E9;
    }
    
    #slide-3:checked ~ .bullets .bullets__item--3 {
      background: #E9E9E9;
    }
    
    #slide-4:checked ~ .bullets .bullets__item--4 {
      background: #E9E9E9;
    }
    
    #slide-5:checked ~ .bullets .bullets__item--5 {
      background: #E9E9E9;
    }
    
    /*--------------------------------------------------------------
    >>> TABLE OF CONTENTS:
    ----------------------------------------------------------------
    1.0 Card
    2.0 Slider
    3.0 Bullets
    4.0 Section
    5.0 Button
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    1.0 Card
    --------------------------------------------------------------*/
    .card {
      position: relative;
      display: block;
      border-radius: 8px;
      background: #E9E9E9;
      box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    }
    
    /*--------------------------------------------------------------
    2.0 Slider
    --------------------------------------------------------------*/
    .slider {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    
    .slider__radio {
      display: none;
    }
    
    .slider__holder {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      margin-top: 0px;
      text-align: left;
    }
    .test-pos{
        position: static;
        padding-top: 60px;
        background: #e53935;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #e35d5b, #e53935);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #e35d5b, #e53935); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        transform: inherit;
    
     }
     section.testi-sec.style-5.softwaresolution .testimonial.test-pos, section.testi-sec.style-5.softwaresolution .bg-wrap{
             background: linear-gradient(to right, #a044ff, #6a3093)
     }
    .test-pos h3{
        color: #E9E9E9;
    }
    .test-pos .main-test {
        background: none;
        padding: 0;
    }
    .test-pos a.carousel-control-prev {
    
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    
    }
    a.carousel-control-next.text-faded {
        position: absolute;
        right: 0;
        top: 45%;
        transform: translateY(-50%);
    }
    @media (max-width: 900px) {
      .slider__holder {
        max-width: 0px;
      }
    }
    @media (max-width: 600px) {
      .slider__holder {
        margin-top: 0px;
      }
    }
    .slider__item {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      overflow: hidden;
      width: 100%;
      opacity: 1;
      cursor: pointer;
    }
    
    .slider__item-content {
      padding: 40px;
    }
    
    @media (max-width: 600px) {
      .slider__item-content {
        padding: 32px 32px;
      }
    }
    @media (max-width: 375px) {
      .slider__item-content {
        padding: 40px 24px;
      }
    }
    .slider__item-text {
      padding: 60px 0;
    }
    
    
    4.0 Section
    --------------------------------------------------------------*/
    .section {
      position: relative;
      width: 100%;
      padding: 120px 24px;
      text-align: center;
    }
    
    .section__entry {
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
    }
    
    .section__entry--center {
      text-align: center;
    }
    
    .section__title {
      display: block;
      padding-bottom: 12px;
    }
    
    .section__text {
      display: block;
    }
    
    /*--------------------------------------------------------------
    5.0 Button
    --------------------------------------------------------------*/
    .button {
      display: inline-block;
      height: 44px;
      padding: 12px 16px;
      font-weight: 500;
      line-height: 20px;
      color: #E9E9E9;
      border-radius: 3px;
      background: rgba(0, 0, 0, 0.2);
    }
    
    .button:hover {
      background: rgba(0, 0, 0, 0.1);
    }
    
    /*--------------------------------------------------------------
    4.0 All Tutorials
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------*/
    .create-icon-wrap {
        width: 193px;
        height: 193px;
        border: 1px solid;
        border-radius: 100%;
        position: relative;
        background:#003249;
        transition: all 0.5s;
        display: inline-block;
        margin-left: 50px;
    }
    .create-icon-wrap .item {
        width: 76px;
        height: 96px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .create-icon-wrap .item-p {
        display: block;
        position: absolute;
        left: 0;
        color: #fff;
        letter-spacing: 1px;
        opacity: 1;
        transition: all 0.5s;
        text-align: center;
        bottom: 40px;
        width: 100%;
    }
    .item .item-bl{
        opacity: 0;
        display: block;
        transform: scale(0);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: all 0.5s;
    }
    .item .item-wh{
        opacity: 1;
        display: block;
        transform: scale(1);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: all 0.5s;
    }
    .create-icon-wrap:hover {
        background: #003249;
    }
    .create-icon-wrap:hover .item .item-bl{
        opacity: 0;
        transform: scale(0);
    }
    .create-icon-wrap:hover .item .item-wh{
        opacity: 1;
        transform: scale(1);
    }
    .create-process-wrap .create-icon-wrap:nth-child(1) {
        opacity: 0.5;
    }
    .create-process-wrap .create-icon-wrap:nth-child(2) {
        opacity: 0.6;
    }
    .create-process-wrap .create-icon-wrap:nth-child(3) {
        opacity: 0.7;
    }
    .create-process-wrap .create-icon-wrap:nth-child(4) {
        opacity: 0.8;
    }
    .create-process-wrap .create-icon-wrap:nth-child(5) {
        opacity:1;
    }
    .create-icon-wrap:hover .item-p{
        color: #E9E9E9;
        opacity: 1;
        letter-spacing: 0px;
    }
    .create-icon-wrap::after {
        content: '';
        display: block;
        width: 52px;
        height: 1px;
        background: #999;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -53px;
        z-index: 0;
    }
    .create-icon-wrap:last-child::after{
        display: none;
    }
    
    .col-bg {
        background-image: url(../images/web-software-development.jpg);
        background-size: cover;
        height: 500px;
    }
    .flex{
        display: flex;
    }
    .sec-sof {
        background: none;
        padding: 50px 0;
    }
    .sec-sof .sec-con{
        color: #1b1b1b;
        padding: 55px 80px 0;
    }
    .sec-sof .sec-con p {
        color: #1b1b1b;
    }
    .sec-sof .sec-con h3{
        color: #222;
    }
    .sec-sof .sec-con h3::after{
        display: none;
        
    }
    .sec-sof .sec-con .sec-num{
        color: #e4e4e4;
    }
    .col-bg-2{
      background-image: url(../images/app-developer.jpg);
        background-position: center;
        height: 500px;
        background-size: cover;
    }
    .col-bg-3 {
        background-image: url(../images/it-consulting.jpg);
        background-position: center;
        height: 500px;
        background-size: cover;
    }
    .col-bg-4{
        background-image: url('../images/erp-software.jpg');
        background-position: center;
        height: 500px;
        background-size: cover;
    }
    .col-bg-5 {
        background-image: url(../images/app-development.jpg);
        background-position: center;
        height: 500px;
        background-size: cover;
    }
    .feat-head {
        position: relative;
        display: flex;
        margin-bottom: 20px;
    }
    .feat-head h4 {
        font-size: 16px;
        line-height: 36px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-left: 20px;
        padding-top: 10px;
    }
    .feat-box {
        margin: 0 0 25px 0;
    }
    .feat-head .fa {
        font-size: 32px;
        display: block;
        height: 80px;
        width: 80px;
        background: #e62b4c;
        text-align: center;
        border-radius: 50%;
        border: 7px solid #E9E9E9;
        box-shadow:0 3px 10px 4px rgba(187, 187, 187, 0.67);
        position: relative;
    }
    
    .feat-head .fa:before {
        display: block;
        max-width: 100%;
        padding: 15px 0;
        top: 50%;
        transform: translate(-50%,-50%);
        left: 50%;
        position: absolute;
        color: #E9E9E9;
    }
    .res-info-box:nth-child(4) .info-circle:before {
        
    }
    .res-info-box:nth-child(4) .info-circle:after {
        
    }
    .tech-cont{
        background-image: linear-gradient(to right, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
    }
    .tech-wrap{
        background: #E9E9E9;
    }
    .tech-box-wrap{
        display: flex;
        width: fit-content;
        width: -moz-fit-content;
        margin: auto;
    }
    .tech-box {
        text-align: center;
        width: 150px;
        position: relative;
        margin-left: 100px;
    }
    .tech-box:first-child {
        margin-left: 0;
    }
    .tech-circle {
        position: relative;
        width: 150px;
        height: 150px;
        color: #E9E9E9;
        font-size: 60px;
        line-height: 150px;
        text-align: center;
        border-radius: 100%;
        background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);
    }
    .tech-box p {
        font-size: 22px;
        font-weight: 500;
        margin-top: 10px;
        color: purple;
    }
    .tech-right {
        position: absolute;
        top: 0px;
        color: #E9E9E9;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 100%;
        right: 4px;
        background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    }
    .industry-wrapper{
        background-image: url(https://img.freepik.com/free-vector/monochrome-low-poly-background_1048-8601.jpg?size=338&ext=jpg);
        position: relative;
        padding:0px;
    }
    .industry-wrapper::before {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        content: '';
        display: block;
    }
    .industry-wrapper h4, .industry-wrapper .sec-title{
        color: #E9E9E9;
        position: relative;
    }
    .ind-cont{
        position: relative;
        padding: 0 50px;
    }
    .ind-box {
        width: 230px;
        text-align: center;
        border-radius: 5px;
    }
    
    .ind-con {
        width: 80px;
        margin: auto;
    }
    .ind-box p {
        font-size: 16px;
        font-weight: 400;
        margin-top: 10px;
        border-radius: 30px 30px 0 0;
        padding: 10px 0;
        color: #fff;
    }
    .slick-slide {
        padding: 0px 0 30px;
      }
    .prevSlick, .nextSlick {
    
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        cursor: pointer;
        color: #E9E9E9;
    
    }
    .prevSlick{
        left: 15px;
    }
    .nextSlick{
        right: 15px;
    }
    /* the slides */
    .slick-slide {
        margin: 0 10px;
    }
    /* the parent */
    .slick-list {
        margin: 0 -10px;
    }
    .tell-form-wrap {
        
    }
    
    .form-wrap-inner .form-control {
        border: none;
        box-shadow: none;
        border-bottom: 1px solid #c0c0c0;
        border-radius: 0;
        margin-bottom: 50px;
    }
    .form-wrap-inner .form-group label{
        display: block;
    }
    
    .sft-btn {
        background: #DA4453;
        background: -webkit-linear-gradient(to right, #89216B, #DA4453);
        background: linear-gradient(to right, #89216B, #DA4453);
        border: none;
        border-radius: 30px;
        padding: 10px 50px;
        font-weight: 500;
        float: right;
        box-shadow: 3px 3px 5px #989898;
    }
    
    /****  floating-Lable style start ****/
    .floating-label { 
      position:relative; 
      margin-bottom:20px; 
    }
    .floating-input , .floating-select {
      font-size:14px;
      padding:4px 4px;
      display:block;
      width:100%;
      height:30px;
      background-color: transparent;
      border:none;
      border-bottom:1px solid #757575;
    }
    
    .floating-input:focus , .floating-select:focus {
         outline:none;
         border-bottom:2px solid #5264AE; 
    }
    
    label {
       
      
      
      
      
      
      
       
       
      
    }
    
    .floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
      top:-18px;
      font-size:14px;
      color:#5264AE;
    }
    
    .floating-select:focus ~ label , .floating-select:not([value=""]):valid ~ label {
      top:-18px;
      font-size:14px;
      color:#5264AE;
    }
    
    /* active state */
    .floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
      width:50%;
    }
    
    w {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    .floating-textarea {
       min-height: 30px;
       max-height: 260px; 
       overflow:hidden;
      overflow-x: hidden; 
    }
    
    /* highlighter */
    .highlight {
      position:absolute;
      height:50%; 
      width:100%; 
      top:15%; 
      left:0;
      pointer-events:none;
      opacity:0.5;
    }
    
    /* active state */
    .floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
      -webkit-animation:inputHighlighter 0.3s ease;
      -moz-animation:inputHighlighter 0.3s ease;
      animation:inputHighlighter 0.3s ease;
    }
    
    /* animation */
    @-webkit-keyframes inputHighlighter {
    	from { background:#5264AE; }
      to 	{ width:0; background:transparent; }
    }
    @-moz-keyframes inputHighlighter {
    	from { background:#5264AE; }
      to 	{ width:0; background:transparent; }
    }
    @keyframes inputHighlighter {
    	from { background:#5264AE; }
      to 	{ width:0; background:transparent; }
    }
    
    /****  floating-Lable style end ****/
    .choose-box {
        position: relative;
        padding-left: 75px;
        margin-bottom: 30px;
        cursor: default;
        float: left;
    }
    .choose-content p {
        padding-right: 25px;
    }
    .choose-box:hover .choose-icon {
        background: #fff;
        color: #f5831a;
    }
    .choose-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        background: #f5831a;
        border: 2px solid #f5831a;
        font-size: 30px;
        text-align: center;
        line-height: 60px;
        color: #fff;
        border-radius: 100%;
        transition: all .5s ease-in-out;
    }
    .choose-content h5 {
        font-size: 20px;
        font-weight: 520;
        color:#f5831a;
    }
    .meet-expert-wrap {
        position: fixed;
        top: 25%;
        right: 0;
        width: 350px;
        text-align: center;
        padding: 25px;
        color: #E9E9E9;
        cursor: pointer;
        display: none;
        z-index: 99999999;
        letter-spacing: 1px;
        background: #fff;
    }
    .pl-cf-p {
        font-size: 30px;
        letter-spacing: 1px;
        display: inline-block;
        line-height: 40px;
        text-transform: uppercase;
        padding-top: 20px;
        text-align: left;
    }
    .pl-cf-p b {
        color: #E9E9E9;
    }
    .cf-img{
        display: inline-block;
        vertical-align: top;
    }
    .cf-img img {
        width: 100%;
    }
    .cst-get-btn {
        letter-spacing: 0;
        font-size: 20px;
        background: #bf0800;
        color: #e9e9e9;
        padding: 10px 20px;
        margin-top: 3px;
        border: 2px solid #bf0800;
        display: inline-block;
        float: left;
        margin-left: 120px;
        font-weight: 600;
    }
    .cst-get-btn:hover{
        color: #bf0800;
        background: #e9e9e9;
        text-decoration: none;
    }
    .cf-img img {
        width: 320px;
        padding: 20px 10px;
    }
    .clsffe {
        padding: 0;
    }
    .clsffe p.pl-cf-p {
        color: #E9E9E9;
    }
    .slick-slide img{
        
    }
    .slick-slide:hover img{
        filter: grayscale(0);
    }
    .hvr-shutter-out-vertical input[type="submit"] {
        background: transparent;
        border: none;
        text-transform: uppercase;
    }
    .cntrvw {
        margin-top: 25px;
    }
    .cntrvw h4 {
        width: auto;
        float: right;
        font-size: 16px;
        text-align: right;
        color: #565656;
    }
    .cntrvw h4 em {
        width: 100%;
        float: left;
        font-weight: normal;
        font-style: normal;
        font-size: 12px;
        letter-spacing: 0.3px;
    }
    .service-item .col-sm-6.col-xs-12.col-md-3 {
        border: solid 1px #f3f3f3;
        border-right: 0;
    }
    .bg-white {
        background: #fff;
    }
    .res-cont-wrap.web-soltn {
        background: #4776E6;
        background: -webkit-linear-gradient(to right, #8E54E9, #4776E6);
        background: linear-gradient(to right, #8E54E9, #4776E6);
    }
    .expert-form.meet-expert-wrap .form-wrap-inner .form-control {
        margin-bottom: 15px;
    }
    .expert-form.meet-expert-wrap .form-wrap-inner label {
        font-size: 13px;
        text-transform: inherit;
        letter-spacing: 0;
    }
    .expert-form.meet-expert-wrap h3 {
        color: #1b1b1b;
        letter-spacing: 0.5px;
        margin-bottom: 25px;
        margin-top: 0;
        border-bottom: dashed 1px #ededed;
        display: inline-block;
        padding-bottom: 10px;
    }
    .expert-form.meet-expert-wrap .qst-btn {
        margin-top: 0;
    }
    .feat-box p {
        padding-left: 15px;
    }
    .tell-form-wrap img.img-responsive.tell-img {
        position: relative;
    }
    .sec-con h4, .sec-col-con h4 {
        line-height: 24px;
    }
    .sec-con ul li {
        list-style: square;
        margin-left: 30px;
        margin-bottom: 5px;
    }
    ul.unorderlist h4, .tab-panel p {color: #fff;}
    section.web-sec-wrap.pd-nor {padding-bottom: 0;}
    
    section.web-sec-wrap.pd-nor .row:nth-child(even) {flex-direction: row-reverse;}
    .technologyicon:before {content: '';background: #fff;position: absolute;width: 100%;height: 0%;left: 0;top: 0;bottom: 0;right: 0;z-index: 1;transition: ease all 0.5s;}
    
    .indexicon {position: relative;z-index: 1;}
    
    .technologyicon:hover:before {height: 100%;}
    
    .technologyicon:hover .indexicon h6 {color: #043872;}
    .pointbox:hover:before {height: 100%;}
    
    .pointbox:hover .features h2 {color: #fff;}
    
    .pointbox:hover:after {background-image: url(../img/w-next.png);content: '';z-index: 9999;position: absolute;}
    .pointbox img.white {opacity: 0;}
    
    .pointbox:hover img.white {opacity: 1;}
    
    .pointbox:hover img.black {opacity: 0;}
    .slide_cont {width: 40%;text-align: center;}
    
    .slide_cont h2 {margin: 0;font-size: 50px;font-weight: 100;}
    .slick-nav {
      --active: #fff;
      --border: rgba(255, 255, 255, 0.12);
      width: 44px;
      height: 44px;
      position: absolute;
      cursor: pointer;
      top: calc(50% - 44px);
    }
    .slick-nav.prev-arrow {
      left: -5%;
      transform: scaleX(-1);
      z-index: 999;
    }
    .slick-nav.next-arrow {
      left: auto;
      right: -5%;
    }
    .slick-nav i {
      display: block;
      position: absolute;
      margin: -10px 0 0 -10px;
      width: 20px;
      height: 20px;
      left: 50%;
      top: 50%;
    }
    .slick-nav i:before, .slick-nav i:after {
      content: "";
      width: 50px;
      height: 1px;
      border-radius: 1px;
      position: absolute;
      left: 50%;
      top: 50%;
      background: #000000;
      
      display: block;
      transform-origin: 50px 50%;
    }
    .slick-nav i:before {
      transform: rotate(-40deg);
    }
    .slick-nav i:after {
      transform: rotate(40deg);
    }
    .slick-nav:before, .slick-nav:after {
      content: "";
      display: block;
      position: absolute;
      right: -30px;
      top: -12px;
      width: 150%;
      height: 150%;
    }
    .slick-nav svg {
      width: 44px;
      height: 44px;
      display: block;
      position: relative;
      z-index: 1;
      color: #043872;
      stroke-width: 2px;
      stroke-dashoffset: 126;
      stroke-dasharray: 126 126 0;
      transform: rotate(0deg);
    }
    .slick-nav.animate svg {
      -webkit-animation: stroke 1s ease forwards 0.3s;
              animation: stroke 1s ease forwards 0.3s;
    }
    .slick-nav.animate i {
      -webkit-animation: arrow 1.6s ease forwards;
              animation: arrow 1.6s ease forwards;
    }
    .slick-nav.animate i:before {
      -webkit-animation: arrowUp 1.6s ease forwards;
              animation: arrowUp 1.6s ease forwards;
    }
    .slick-nav.animate i:after {
      -webkit-animation: arrowDown 1.6s ease forwards;
              animation: arrowDown 1.6s ease forwards;
    }
    
    @-webkit-keyframes stroke {
      52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
      }
      52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
      }
      100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
      }
    }
    
    @keyframes stroke {
      52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
      }
      52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
      }
      100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
      }
    }
    @-webkit-keyframes arrow {
      0%, 100% {
        transform: translateX(0);
        opacity: 1;
      }
      23% {
        transform: translateX(17px);
        opacity: 1;
      }
      24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
      }
      81% {
        opacity: 1;
        transform: translateX(-22px);
      }
    }
    @keyframes arrow {
      0%, 100% {
        transform: translateX(0);
        opacity: 1;
      }
      23% {
        transform: translateX(17px);
        opacity: 1;
      }
      24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
      }
      81% {
        opacity: 1;
        transform: translateX(-22px);
      }
    }
    @-webkit-keyframes arrowUp {
      0%, 100% {
        transform: rotate(-40deg) scaleX(1);
      }
      20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
      }
    }
    @keyframes arrowUp {
      0%, 100% {
        transform: rotate(-40deg) scaleX(1);
      }
      20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
      }
    }
    @-webkit-keyframes arrowDown {
      0%, 100% {
        transform: rotate(40deg) scaleX(1);
      }
      20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
      }
    }
    @keyframes arrowDown {
      0%, 100% {
        transform: rotate(40deg) scaleX(1);
      }
      20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
      }
    }
    .counts:before {content: '';background: rgb(4 56 114 / 47%);position: absolute;top: 0;bottom: 0;left: 0;right: 0;}
    
    .col-lg-4.col-6.text-center.d-flex:nth-child(2) {border-left: solid 1px #3e6086;border-right: solid 1px #3e6086;}
    section.banner__slider.wowslider {padding: 0;}
    .income {background: #c4d7ff;}
    
    .incometax {width: 100%;float: left;}
    
    .incomesttn {width: 100%;float: left;display: flex;justify-content: space-between;}
    
    .incomebox {width: 44%;}
    
    .incomebox h3 {font-size: 23px;margin-bottom: 10px;}
    
    .incomebox p {margin: 0;font-size: 19px;line-height: 28px;}
    
    .whtisincome .abt-web {margin-bottom: 0;}
    .budgetterms {width: 100%;float: left;display: flex;flex-wrap: wrap;justify-content: space-between;margin-top: 20px;}
    
    .budgetbox {width: 30%;margin-bottom: 2%;text-align: center;}
    
    .budgetimg {width: 100%;height: 280px;}
    
    .budgetimg img {width: 100%;height: 100%;object-fit: cover;border-radius: 100%;}
    
    .budgetbox h2 {margin: 15px 0;font-size: 16px;}
    .pointbox a {width: 100%;height: 100%;display: flex;align-items: center;position: relative;}
    .abt-web ul {list-style: none;display: flex;justify-content: space-between;margin-top: 15px;width: 100%;float: left;}
    .abt-web ul li {width: 25%;display: flex;align-items: center;justify-content: center;}
    
    .abt-web ul li label {width: 80px;height: 80px;border: solid 1px #ededed;margin-right: 10px;border-radius: 100%;position: relative;box-shadow: 1px 4px 6px rgb(149 140 140 / 23%);margin-bottom: 0;}
    
    .abt-web ul li label img {width: 60%;height: 60%;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
    .abt-web ul li span {font-size: 16px;line-height: 20px;}
    .title.mt-50 {margin: 35px 0 10px 0;}
    #form {
        background: #f9f9f9;
        background: #abbaab;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #ffffff, #abbaab);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to left, #ffffff, #f2f2f2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }
    
    .txt strong {
        width: 100%;
        float: left;
        color: #043872;
    }
    
    .forms {
        background: #ffffff;
        border: solid 1px #f0f0f0;
        padding: 35px;
        float: left;
        width: 100%;
        box-shadow: 3px 1px 10px rgb(85 85 85 / 5%);
    }
    
    .social-media {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .smediabtn {
        background: #005397;
        margin-right: 20px;
        width: 150px;
        height: 35px;
        line-height: 35px;
        color: #fff;
        text-align: center;
    }
    
    .smediabtn i {
        color: #fff;
    }
    
    .smediabtn:last-child {
        background: #dd4b3e;
    }
    
    .forms h3 {
        text-align: center;
        margin-bottom: 22px;
    }
    
    .forms ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .forms ul li {
        width: 100%;
        float: left;
        margin-bottom: 15px;
    }
    
    .forms ul li input[type="text"], .forms ul li input[type="email"],.forms ul li input[type="password"], .forms ul li input[type="tel"],.forms ul li input[type="date"], .forms ul li select  {
        width: 100%;
        line-height: 35px;
        text-indent: 10px;
    }
   
    .forms ul li .btn-3 {
        line-height: 50px;
        border: none;
        color: #fff;
        margin: 0;
    }
    
    .form .col-md-7.col-xs-12 {
        display: flex;
        align-items: center;
    }
    
    .txt h1 {
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 30px;
    }
    
    .txt2 h1 {
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 30px;
    }
    
    .bestpointer {
        padding-left: 20px;
    }
    
    .bestpointer li {
        margin-bottom: 5px;
    }
    
    .forms ul li small {
        line-height: 20px;
        float: left;
    }
    .workstn {width: 100%;display: flex;align-items: center;justify-content: space-around;flex-direction: row-reverse;}
    
    .workimg {
        width: 35%;
    }
    
    .workcont {
        width: 55%;
        text-align: left;
    }
    .workheading {
        margin-bottom: 10px;
        border-left: 2px solid #043872;
        padding-left: 10px;
        float: left;
        width: 100%;
    }
    
    .icons {
        margin-bottom: 10px;
    }
    
    .workheading h2 {
        margin: 0;
        color: #52aeeb;
    }
    
    .workcont p {
        float: left;
        width: 100%;
        line-height: 24px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .workstn:nth-child(odd) {flex-direction: unset;}
    .login-root {
      background: #fff;
      display: flex;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
    }
    .loginbackground {
      min-height: 692px;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      top: 0;
      z-index: 0;
      overflow: hidden;
    }
    .flex-flex {
      display: flex;
    }
    .align-center {
      align-items: center;
    }
    .center-center {
      align-items: center;
      justify-content: center;
    }
    .box-root {
      box-sizing: border-box;
    }
    .flex-direction--column {
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .loginbackground-gridContainer {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: [start] 1fr [left-gutter] (86.6px) [16] [left-gutter] 1fr
        [end];
      grid-template-columns: [start] 1fr [left-gutter] repeat(16, 86.6px) [left-gutter] 1fr [end];
      -ms-grid-rows: [top] 1fr [top-gutter] (64px) [8] [bottom-gutter] 1fr [bottom];
      grid-template-rows: [top] 1fr [top-gutter] repeat(8, 64px) [bottom-gutter] 1fr [bottom];
      justify-content: center;
      margin: 0 -2%;
      transform: rotate(-12deg) skew(-12deg);
    }
    .box-divider--light-all-2 {
      box-shadow: inset 0 0 0 2px #e3e8ee;
    }
    .box-background--blue {
      background-color: #5469d4;
    }
    .box-background--white {
      background-color: #ffffff;
    }
    .box-background--blue800 {
      background-color: #212d63;
    }
    .box-background--gray100 {
      background-color: #e3e8ee;
    }
    .box-background--cyan200 {
      background-color: #7fd3ed;
    }
    .padding-top--64 {
      padding-top: 64px;
    }
    .padding-top--24 {
      padding-top: 24px;
    }
    .padding-top--48 {
      padding-top: 48px;
    }
    .padding-bottom--24 {
      padding-bottom: 24px;
    }
    .padding-horizontal--48 {
      padding: 48px;
    }
    .padding-bottom--15 {
      padding-bottom: 15px;
    }
    
    .flex-justifyContent--center {
      -ms-flex-pack: center;
      justify-content: center;
    }
    
    .formbg {
      margin: 0px auto;
      width: 100%;
      max-width: 800px;
      background: white;
      border-radius: 4px;
      box-shadow: rgba(60, 66, 87, 0.12) 0px 7px 14px 0px,
        rgba(0, 0, 0, 0.12) 0px 3px 6px 0px;
      margin-bottom: 50px;
    }
    span {
    }
    label {
      margin-bottom: 10px;
    }
    .reset-pass a,
    label {
      font-size: 14px;
      font-weight: 600;
      display: block;
    }
    .reset-pass > a {
      text-align: right;
      margin-bottom: 10px;
    }
    .grid--50-50 {
      display: grid;
      grid-template-columns: 50% 50%;
      align-items: center;
    }
    
    .field input, .field select, .field textarea {
      font-size: 16px;
      line-height: 28px;
      padding: 8px 16px;
      width: 100%;
      min-height: 44px;
      border: unset;
      border-radius: 4px;
      outline-color: rgb(84 105 212 / 0.5);
      background-color: rgb(255, 255, 255);
      box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px;
      resize: none;
    }
    
    input[type="submit"] {
      background-color: rgb(84, 105, 212);
      box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
        rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgb(84, 105, 212) 0px 0px 0px 1px,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
        rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
    }
    .field-checkbox input {
      width: 20px;
      height: 15px;
      margin-right: 5px;
      box-shadow: unset;
      min-height: unset;
    }
    .field-checkbox label {
      display: flex;
      align-items: center;
      margin: 0;
    }
    a.ssolink {
      display: block;
      text-align: center;
      font-weight: 600;
    }
    .footer-link span {
      font-size: 14px;
      text-align: center;
    }
    .listing a {
      color: #697386;
      font-weight: 600;
      margin: 0 10px;
    }
    
    .animationRightLeft {
      animation: animationRightLeft 2s ease-in-out infinite;
    }
    .animationLeftRight {
      animation: animationLeftRight 2s ease-in-out infinite;
    }
    .tans3s {
      animation: animationLeftRight 3s ease-in-out infinite;
    }
    .tans4s {
      animation: animationLeftRight 4s ease-in-out infinite;
    }
    
    @keyframes animationLeftRight {
      0% {
        transform: translateX(0px);
      }
      50% {
        transform: translateX(1000px);
      }
      100% {
        transform: translateX(0px);
      }
    }
    
    @keyframes animationRightLeft {
      0% {
        transform: translateX(0px);
      }
      50% {
        transform: translateX(-1000px);
      }
      100% {
        transform: translateX(0px);
      }
    }
    .d-flex.col-12.submitbutton {
        justify-content: center;
    }
    .field label {
        color: #5469d3;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 12px;
    }
    @media (max-width:1080px){
        .navbar{
            width:60%;
        }
        .navbar a, .navbar a:focus {
        padding-left: 10px;
        letter-spacing:1px;
    }
    }
    @media (max-width:768px){
       .pointbox {
        height: 180px;
    }
    .navbar{
        display:
        none;
        width: 0;
        opacity: 0 !important;
    }
    .pointbox img {
        width: 40px;
    }
     .headerstn.fixed .container {
    max-width: 75%;
}
.navbar.open {
    display: block;
    position: fixed;
    height: 100vh;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 92%);
    transition: ease all 1s !important;
    opacity: 1 !important;
    right: 0;
}

.navbar.open ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40%;
    flex-wrap: wrap;
    margin-top: 40%;
    text-align: center;
    background: transparent;
}

.navbar.open ul li {
    width: 100%;
    float: left;
}

.navbar.open a, .navbar a:focus {
    justify-content: center;
    border-bottom: solid 1px #242424;
    color: #ededed;
}
.headerstn .container {
    max-width: 90%;
}   
    span.icons {width: 50px;}
    
    .features h2 {
        font-size: 15px;
        padding-top: 0;
    }
    
    .pointbox:after {
        width: 12px;
        height: 12px;
    }
    .mobile-nav-toggle span {
        width: 100%;
        height: 1px;
        background: #fff;
        float: left;
        position: absolute;
        transition: ease all 0.5s;
        z-index: 999;
    }
    #header .logo {width: 45%;height: 50px;}
    .row.counters {
        justify-content: center;
    }
    .title h2 {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 30px;
    }
    .slide_cont h2 {
        font-size: 36px;
    }
    }
    @media (max-width:630px){
        .counts {
    height: auto;
    padding: 50px 0;
}
i.bi.bi-list.mobile-nav-toggle {}

.mobile-nav-toggle.open {}

.mobile-nav-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
    left: 0;
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    left: 0;
}

.mobile-nav-toggle span:nth-child(2) {top: 13px;}

.mobile-nav-toggle span:nth-child(3) {top: 26px;}

.pointbox img {
    width: 100%;
}

.container {
    max-width: 90%;
}

.slide_cont h2 {
    font-size: 24px;
    letter-spacing: 0.5px;
}
.col-lg-4.col-6.text-center.d-flex {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    flex: 0 0 100%;
    margin-bottom: 25px;
}


.slide_cont {
    width: 100%;
}

.slide {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: 25px;
}

.slide .slide__img img {
    width: 100%;
}

.slide .slide__img {
    width: 90%;
}

section.banner__slider {
    padding: 30px 0;
    overflow: hidden;
}

.ftrcont {
    text-align: center;
}

.ftrcont .col-md-4.col-xs-12.d-flex.justify-content-end {
    justify-content: center !important;
}

.container.d-md-flex.py-4 {
    text-align: center;
    justify-content: center;
}

.highlightpoint {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pointstn {
    flex-wrap: wrap;
    margin-top: 25px;
}

.pointbox {
    height: 180px;
    width: 180px;
    margin-bottom: 5px;
}
  #header .logo {
    width: 75%;
}
}
    @media (max-width:480px){
        .pointbox:after {
    bottom: 6%;
}
.abt-web ul {
    flex-wrap: wrap;
}

.abt-web ul li {
    width: 50%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.abt-web ul li span {
    width: 100%;
    float: left;
    margin-top: 15px;
}
.workstn {
    flex-wrap: wrap;
}

.workimg {
    width: 100%;
}

.workcont {
    width: 90%;
    margin-top: 50px;
}

.workimg img {
    width: 50%;
}
.features h2 {
    font-size: 13px;
    padding-bottom: 5px;
    padding-left: 0;
    padding-right: 0;
}

.pointstn {
    justify-content: space-around;
}

.title h2 {
    font-size: 22px;
    line-height: 26px;
    margin: 10px 0;
}

.about .content ul li img {
    width: 25%;
}

.counts {
    padding: 25px 0;
}

.counts h3 {
    font-size: 17px;
}

.counts .counters span {
    font-size: 34px;
}

.col-lg-4.col-6.text-center.d-flex:nth-child(2) {border-left: 0;border-right: 0;border-top: solid 1px #3e6086;border-bottom: solid 1px #3e6086;padding: 25px 0;}

.whychoose ul li {
    width: 100%;
}
.title span {
    font-size: 11px;
    padding: 5px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
main#main {
    overflow: hidden;
}
.banner img {
    height: 200px;
    object-fit: cover;
}
.aboutus.innerabout{
    margin:0;
}
.technologyicon {
    width: 40%;
    margin: 5%;
    padding: 10px;
}

.technologybox .row {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}

.technology {
    padding: 25px 0;
}
.padding-horizontal--48 {
    padding: 10px;
}
.d-flex.col-12 {
    flex-wrap: wrap;
}

.field label {
    margin-bottom: 5px;
}
.contact .php-email-form{
    padding:10px;
}
    }
@media (max-width:420px){
    .btn-3 span {
    font-size: 10px;
    line-height: 30px;
}
.pointbox {
    height: 150px;
    width: 150px;
    margin-bottom: 5px;
}
.btn-3 {
    padding: 0 20px;
}

.container {
    max-width: 100%;
}

.headerstn.fixed .container {
    max-width: 90%;
}
.slick-slide{
    padding:0;
    margin:0;
}
}
.precounter{
    font-size: 50px;
    display: block;
    color: #fff;
    font-weight: 300;
    width: auto;
    float: left;
    border-radius: 5px;
    text-align: center;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;  
        }

         .buttons {
        background-color: #9b2000;
        border-radius: 60px;
        border: none;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        padding: 5px 15px;
        text-align: center;
        font-size: 12px;
        text-transform: uppercase;
        font-family: 'Nunito', sans-serif;
        margin: 5px 0;
      }
      .buttons p{
         font-size: 12px; 
         margin-top: -10px;
         color: #fff;
         text-align: center;
      }
      .deptext{
          font-size: 14px; 
          font-weight: 600;
      }
      @keyframes glowing {
        0% {
          background-color: #0e73e4;
          box-shadow: 0 0 5px #0e73e4;
        }
        50% {
          background-color: #0e73e4;
          box-shadow: 0 0 20px #0e73e4;
        }
        100% {
          background-color: #043872;
          box-shadow: 0 0 5px #043872;
        }
      }
      .buttons {
        animation: glowing 1300ms infinite;
      }
     p.small {
    line-height: 1.0;
     margin-bottom: 1px;
    }
      .certificates {
    position: fixed;
    width: auto;
    bottom: 0;
    z-index: 999;
    justify-content: space-between;
    margin: 10px 1%;
    display: grid;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #37423b;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 34, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #e31e27;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #e31e27;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}



