.VideoModal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
        padding: 40px; /* Margin-like effect */
    }

/* Modal Content */
    .VideoModal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 10px;
        border: 1px solid #888;
        width: 45%; /* Default width for larger screens */
        max-width: 900px; /* Maximum width */
        box-sizing: border-box;
    }

/* Flex container for heading and close button */
    .VideoModal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1px;
    }

/* Close button (X) */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Heading styles */
    .VideoModal-heading {
        font-size: 24px;
        color: #333;
    }

/* Responsive video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Colored margins */
    .VideoModal-content-wrapper {
        background-color: #ffcc00; /* Change margin color */
        padding: 20px; /* Control the size of the colored margins */
    }

/* Responsive Design */
/* Adjust modal size on tablets */
@@media (max-width: 768px) {
    .VideoModal-content {
        width: 75%; /* Make the modal wider for tablets */
    }

    .close {
        font-size: 24px; /* Reduce size of close button */
    }

    .VideoModal-heading {
        font-size: 20px; /* Reduce heading font size */
    }
}

/* Adjust modal size on mobile devices */
@@media (max-width: 480px) {
    .VideoModal-content {
        width: 90%; /* Make the modal take most of the screen on mobile */
    }

    .close {
        font-size: 20px; /* Smaller close button */
    }

    .VideoModal-heading {
        font-size: 18px; /* Reduce heading font size further */
    }

    .VideoModal {
        padding: 20px; /* Reduce padding on smaller screens */
    }
}


:root {
    --pinkColor:#1f3485;
    --blue:#06568f;
    --green:#6bab43;
    --navy-blue:#041d32;
    --gray:#777777;
    --grayDark:#b5b5b5;
    --text-dark:#333;
    --blackColor:#000;
    --redColor:#e4514d;
    --redlight:#d41611;
    --redDark:#cc221e;
    --yellow:#ffcc00;
    --orange:#fc5945;
    --gray-light:#fffbfa;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url(../fonts/FuturaBT-Medium.eot);
    src: url(../fonts/FuturaBT-Medium.eot?#iefix) format('embedded-opentype'),url(../fonts/FuturaBT-Medium.woff) format('woff'),url(../fonts/FuturaBT-Medium.ttf) format('truetype'),url(../fonts/FuturaBT-Medium.svg#FuturaBT-Medium) format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Bk BT';
    src: url(../fonts/FuturaBT-Book.eot);
    src: url(../fonts/FuturaBT-Book.eot?#iefix) format('embedded-opentype'),url(../fonts/FuturaBT-Book.woff) format('woff'),url(../fonts/FuturaBT-Book.ttf) format('truetype'),url(../fonts/FuturaBT-Book.svg#FuturaBT-Book) format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Franklin Gothic';
    src: url(../fonts/FranklinGothic-Heavy.eot);
    src: url(../fonts/FranklinGothic-Heavy.eot?#iefix) format('embedded-opentype'),url(../fonts/FranklinGothic-Heavy.woff) format('woff'),url(../fonts/FranklinGothic-Heavy.ttf) format('truetype'),url(../fonts/FranklinGothic-Heavy.svg#FranklinGothic-Heavy) format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Bk BT';
    src: url(../fonts/FuturaBT-BookItalic.eot);
    src: url(../fonts/FuturaBT-BookItalic.eot?#iefix) format('embedded-opentype'),url(../fonts/FuturaBT-BookItalic.woff) format('woff'),url(../fonts/FuturaBT-BookItalic.ttf) format('truetype'),url(../fonts/FuturaBT-BookItalic.svg#FuturaBT-BookItalic) format('svg');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url(../fonts/FuturaBT-Bold.eot);
    src: url(../fonts/FuturaBT-Bold.eot?#iefix) format('embedded-opentype'),url(../fonts/FuturaBT-Bold.woff) format('woff'),url(../fonts/FuturaBT-Bold.ttf) format('truetype'),url(../fonts/FuturaBT-Bold.svg#FuturaBT-Bold) format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Auto;
    font-weight: 400;
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.graylight {
    background: #f7f9fa;
}

.headerNav {
    z-index: 2000;
    transition: all .9s;
    display: flex;
    align-items: center;
}

.fixedHeader {
    position: fixed;
    top: 0;
}

.cart-shortlist {
    top: -8px;
    left: 4px;
    height: 19px;
    width: 19px;
    background: var(--pinkColor);
    color: #fff;
    line-height: 19px;
    font-size: 13px;
    border-radius: 50%;
}

.headerNav .logo {
    width: 60px;
}

.mobilelogo {
    text-align: center;
}

.headerNav button i {
    color: #fff !important;
}

.main-nav, .main-nav * {
    margin: 0;
    margin-right: 9px;
    padding: 0;
    list-style: none;
}

    .main-nav > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
    }

    .main-nav a {
        color: #fff;
        font-size: 18px;
        letter-spacing: 2px;
    }

    .main-nav li:not(:last-child) a {
        padding: 13px 22px 13px 0;
    }

    .main-nav a.active, .main-nav a:hover, .main-nav li:hover > a, .main-nav ul a.active {
        color: #000;
    }

    .main-nav .drop-down ul {
        display: block;
        position: absolute;
        right: 0;
        top: calc(100% + 30px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0 0 30px rgba(127,137,161,.25);
        transition: ease all .3s;
        margin-top: 10px;
    }

    .main-nav .drop-down:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .main-nav .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .main-nav .drop-down ul a {
        padding: 4px 20px;
        font-size: 18px;
        color: #353535;
        display: block;
        TEXT-TRANSFORM: CAPITALIZE;
    }

        .main-nav .drop-down ul .active > a, .main-nav .drop-down ul a:hover, .main-nav .drop-down ul li:hover > a {
            background-color: var(--pinkColor);
            color: #fff;
            text-decoration: none;
        }

    .main-nav .drop-down > a:after {
        border: none !important;
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f107" !important;
        vertical-align: 0;
        padding-left: 6px;
    }

    .main-nav .drop-down:hover .main-nav .drop-down > a:before {
        border: none !important;
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f106" !important;
        vertical-align: 0;
    }

    .main-nav .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .main-nav .drop-down .drop-down:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }

    .main-nav .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .main-nav .drop-down .drop-down > a:after {
            content: "\f105";
            position: absolute;
            right: 15px;
        }

.mobile-nav {
    padding: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 4444;
    overflow-y: auto;
    left: -290px;
    width: 290px;
    padding-top: 18px;
    background: #fff;
    transition: .4s;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #333;
        padding: 10px 20px;
        font-weight: 500;
		text-transform:uppercase;
        border-bottom: 1px solid;
        border-color: #f1f1f1;
    }

        .mobile-nav .drop-down.active, .mobile-nav a.active, .mobile-nav a:focus, .mobile-nav a:hover {
            background-color: var(--pinkColor);
            color: #fff;
            text-decoration: none !important;
        }

            .mobile-nav .drop-down.active a {
                color: #fff;
            }

            .mobile-nav .drop-down.active ul li a {
                color: #000;
            }

    .mobile-nav .drop-down ul li a:hover {
        background-color: var(--pinkColor);
        color: #fff;
    }

    .mobile-nav .drop-down > a:after {
        right: 15px;
        top: 13px;
        position: absolute;
        content: "\f067";
        border: none !important;
        font: normal normal normal 14px/1 FontAwesome;
        vertical-align: 0;
    }

    .mobile-nav .drop-down.active > a:after {
        content: "\f068" !important;
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

        .mobile-nav .drop-down ul li {
            background-color: #fff4fa;
        }

    .mobile-nav .drop-down li a {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 3337;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0,0,0,.5);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }

.innrerpages #header, .innrerpages .hedertop {
    background: #1f3485;
}

#header {
    padding-top: 0;
}

.loginbtn {
    font-size: 20px;
    border: 1px solid #fff;
    color: #fff !important;
    padding: 9px 24px;
    border-radius: 60px;
    background: #1f3485;
    margin-right: 50px;
    margin-top: 20px;
}

.home-page {
    background: url(../images/headerbanner.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
}

.hedertop {
    font-size: 16px;
    padding: 5px 0;
}

.emaildiv p {
    color: #fff;
    margin: 0;
}

.contentdiv {
    WIDTH: 100%;
    text-align: center;
    margin-top: 10px;
}

    .contentdiv p {
        color: #fff;
        margin: 0;
        padding: 0 0 0 22px;
    }

.carousel-indicators .active {
    opacity: 1;
    background: #1f3485;
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    transition: opacity .6s ease;
    border-radius: 50px;
    border: 2px solid #eae9f3;
    opacity: 1;
}

.carousel-indicators {
    bottom: 0;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
}

.carousel-item {
    min-height: 65vh;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    top: 30%;
}

    .carousel-caption button {
        background-color: inherit;
    }

.carousel .icon-container {
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    padding: 1em;
    text-align: center;
    border-radius: 50%;
}

.carousel-caption button {
    border-color: #fff;
    margin-top: 1em;
    border-radius: 70px;
    border: 1px solid #fff !important;
}

    .carousel-caption button:hover {
        background-color: #1f3485;
    }

.carousel-caption h2 {
    animation-delay: 1s;
    font-size: 40px;
}

.carousel-caption h3 {
    animation-delay: 2s;
    font-size: 28px;
}

.carousel-caption button {
    animation-delay: 3s;
    padding: 10px 50px;
}

.sliderOuter .cru-aarow {
    width: 50px;
    height: 50px;
    top: 43%;
    background: #000;
    border: 1px solid #fff;
    border-radius: 50px;
    margin: 0 30px;
}

    .sliderOuter .cru-aarow img {
        width: 20px;
    }

.section-heading {
    text-align: center;
}

    .section-heading h2 {
        font-size: 35px;
        color: #213686;
        font-weight: 700;
        line-height: 0;
        padding: 16px 0 20px 0;
		text-align: center;
    }

    .section-heading span {
        display: block;
        font-size: 20px;
        margin-bottom: 50px;
    }

.featuresBox {
    text-align: center;
    box-shadow: 0 5px 0 0 #ccc;
    border-radius: 3px;
    background: #efefef;
    padding: 75px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 72px 0;
}

    .featuresBox img {
        position: absolute;
        top: -110px;
    }

    .featuresBox p {
        margin: 0;
        font-size: 18px;
        height: 150px;
    }

.counter-box {
    background: url(../images/counterbg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

    .counter-box .counter-desc {
        font-size: 36px;
        color: #fff;
    }

    .counter-box p {
        font-size: 42px;
        font-weight: 700;
        color: #fff;
    }

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #4285f4;
    margin: 0;
    padding: 6px 0 !important;
}

#header.sticky .logo {
    width: 50px;
}

.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 4px;
    padding: 7px;
    -webkit-transition: .3s;
    transition: .3s;
}

    .price:hover {
        box-shadow: 0 8px 12px 0 rgba(0,0,0,.2);
    }

.profasses {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,.2);
}

    .profasses .getstart a {
        background-color: #82b440;
    }

.price .priceheader {
    color: #fff;
    font-size: 25px;
    text-align: center;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    background: #555b71;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.price li {
    border-top: 1px solid #eee;
    padding: 11px 27px;
    margin: 0 6px;
    text-align: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 15px;
}

    .price li:first-child {
        border-top: none !important;
    }

.priceheader {
    border-top: 5px solid transparent;
}

    .priceheader:after {
        display: inline-block;
        content: "\f0d7";
        color: #fff;
        position: absolute;
        bottom: -22px;
        text-shadow: 0 1px 0 #eee;
    }

    .priceheader h3 {
        margin: 0 0 20px 0;
        font-size: 38px;
        color: #c5e9f5;
        position: relative;
        padding: 0 0 7px 0;
    }

    .priceheader span {
        color: #fff;
        font-size: 40px;
        padding-bottom: 0;
        display: block;
        line-height: 1;
    }

    .priceheader p {
        margin: 0;
        line-height: 1;
        color: #fff;
        font-size: 40px;
        margin-bottom: 10px;
    }

    .priceheader h3:after {
        width: 100px;
        height: 2px;
        content: "";
        display: inline-block;
        background: #26e5fe;
        background: -moz-linear-gradient(left,#26e5fe 0,#d3b3fd 100%);
        background: -webkit-linear-gradient(left,#26e5fe 0,#d3b3fd 100%);
        background: linear-gradient(to right,#26e5fe 0,#d3b3fd 100%);
        position: absolute;
        bottom: -14px;
        left: 0;
        right: 0;
        margin: auto;
    }

.getstart {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

    .getstart a {
        background-color: #4285f4;
        text-transform: uppercase;
        color: #fff;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
    }

        .getstart a:hover {
            color: #fff;
        }

.profasses {
    background: url(../images/recomd.png);
    background-repeat: no-repeat;
    background-position: left top;
}

    .profasses .priceheader {
        border-top: 5px solid;
        border-image: linear-gradient(to right,#00d2ff,#3a7bd5);
        border-image-slice: 1;
    }

.olinesupport {
    
    background-repeat: no-repeat;
    background-position: right center;
    background-attachment: fixed;
}

.colsuport h2 {
    color: #4285f4;
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
}

    .colsuport h2 span {
        display: block;
        font-size: 38px;
        font-weight: 400;
        color: #000;
    }

.colsuport p {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

.colsuport h5 {
    font-size: 22px;
    font-weight: 700;
    padding: 20px 0 20px 0;
    line-height: 30px;
}

.colsuport a {
    font-size: 22px;
    font-weight: 500;
    background-color: #4285f4;
    border-radius: 58px;
    color: #fff;
    padding: 16px 58px;
}

    .colsuport a:hover {
        color: #fff;
    }

.colsuport img {
    width: 390px;
}

.demobox h2 {
    color: #4285f4;
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
}

    .demobox h2 span {
        display: block;
        font-size: 38px;
        font-weight: 400;
        color: #000;
    }

.demobox p {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

.demobox h6 {
    color: #4285f4;
    padding-bottom: 10px;
    font-size: 18px;
}

    .demobox h6 img {
        padding: 0 10px 0 0;
    }

.demoboxform input {
    background: #fafafa;
    padding: 15px 30px;
    border-radius: 5px;
    margin: 20px 0 5px 0;
    height: inherit;
}

.demoboxform button {
    background: #1f3485;
    padding: 7px 30px;
    border-radius: 5px;
    height: inherit;
    margin: 16px 0 5px 0;
    line-height: 1;
    font-size: 24px;
    color: #fff;
}

.footerOuter {
    background-color: #05275f;
    padding: 15px;
}

    .footerOuter p {
        padding: 0;
        margin: 0;
        color: #fff;
        font-size: 16px;
    }

.socailfooter {
    text-align: right;
}

    .socailfooter a {
        font-size: 16px;
        padding: 0 10px 0 0;
        color: #fff;
    }

.videoSection {
    
    background-attachment: fixed;
    background-size: cover;
    
}

.addOnfeature {
    background: #eef1fb;
}

    .addOnfeature .nav-tabs {
        display: none;
    }

        .addOnfeature .nav-tabs .nav-link {
            font-weight: 700;
            border-radius: 0;
            border-top: 5px solid transparent;
        }

    .addOnfeature .card-body h5 {
        padding: 4px 0 12px 0;
        color: #fff;
    }

    .addOnfeature .card-body {
        background: #05275f;
    }

    .addOnfeature .nav-tabs .nav-item.show .nav-link, .addOnfeature .nav-tabs .nav-link.active {
        color: #fff;
        background-color: #05275f;
        border-color: #05275f #05275f #05275f;
        border-top: 5px solid #4285f4;
    }

@media(min-width:992px) {
    .addOnfeature .nav-tabs {
        display: flex;
    }

    .addOnfeature .card {
        border: none;
    }

        .addOnfeature .card .card-header {
            display: none;
        }

        .addOnfeature .card .collapse {
            display: block;
        }
}

@media(max-width:991px) {
    .addOnfeature .tab-content > .tab-pane {
        display: block !important;
        opacity: 1;
    }
}

.getInTouch {
    text-align: center;
    background: #fbfcfd;
}

.contInfo {
    background: #fff;
    box-shadow: 0 -6px 1px 0 #4285f4;
}

.testimonal {
    background: url(../images/testimonial.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .testimonal .carousel-indicators {
        bottom: -32px;
    }

    .testimonal h2 {
        color: #000;
    }

.signlevideo {
    background: url(../images/videobg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.signlevideo2 {
    background: url(../images/videobg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.viceobox iframe {
    border: 5px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
}

.videocontentbox h3 {
    color: #000;
    font-weight: 400;
    padding: 13px 0 5px 0;
    font-size: 20px;
}

.videocontentbox p {
    color: #000;
    font-size: 18px;
    line-height: 33px;
}

.signlevideo .owl-nav {
    font-size: 40px;
    color: #fff;
    text-align: right;
}

    .signlevideo .owl-nav button {
        margin: 0 20px 0 20px;
    }

.owl-next, .signlevideo .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border: 0 solid #000;
}

.signlevideo .owl-prev {
    left: -20px;
}

.signlevideo .owl-next {
    right: -20px;
}

.signlevideo2 .owl-nav {
    font-size: 40px;
    color: #fff;
    text-align: right;
}

    .signlevideo2 .owl-nav button {
        margin: 0 20px 0 20px;
    }

.owl-next, .signlevideo2 .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border: 0 solid #000;
}

.signlevideo2 .owl-prev {
    left: -20px;
}

.signlevideo2 .owl-next {
    right: -20px;
}

.pricingtable .owl-nav {
    font-size: 40px;
    color: #000;
    text-align: right;
}

    .pricingtable .owl-nav button {
        margin: 0 20px 0 20px;
    }

.owl-next, .pricingtable .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border: 0 solid #000;
}

.pricingtable .owl-prev {
    left: -20px;
}

.pricingtable .owl-next {
    right: -20px;
}

.wihtecontr .section-heading h2 {
    color: #fff;
}

.wihtecontr .section-heading span {
    color: #fff;
}

.contentbox h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 28px;
    margin-top: 15px;
    text-align: center;
    color: #1f3485;
}

.contentbox h2 {
    font-size: 31px;
    padding: 15px 0 0 0;
    color: red;
    font-weight: 700;
}

.contentbox span {
    font-size: 26px;
    font-weight: 700;
}

.contentbox ol {
    padding: 15px 0 0 20px;
}

    .contentbox ol li {
        padding: 0 0 12px 0;
    }

.stepsdesign .stepsimg {
    margin: auto;
    text-align: center;
}

.stepsboxcontent p {
    font-size: 17px;
}

.stephead {
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 7px 0;
    display: block;
    color: #58b3df;
    border-bottom: 3px dashed #efefef;
    margin: 0 0 7px 0;
    position: relative;
}

    .stephead:after {
        content: "";
        display: inline-block;
        width: 150px;
        height: 7px;
        background: #40a8dc;
        position: absolute;
        left: 0;
        bottom: -5px;
    }

.dirationim {
    position: absolute;
    right: 0;
    bottom: -77px;
}

.dirationim1 {
    position: absolute;
    left: 0;
    bottom: -77px;
}

.stepsboxcontent {
    position: relative;
}

.featuresBoxde {
    text-align: center;
    padding: 20px;
    margin: 0 0 30px 0;
    background: #fff;
    box-shadow: 5px 5px 0 0 #efefef;
}

    .featuresBoxde h3 {
        font-size: 20px;
        font-weight: 700;
        color: #0e142d;
    }

.feat p.service_text {
    color: #ccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.feat .extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

    .feat .extra-text::before {
        content: "";
        width: 60px;
        height: 3px;
        background: #f91942;
        position: absolute;
        left: 0;
        bottom: -10px;
        right: 0;
        margin: 0 auto;
    }

    .feat .extra-text span {
        font-weight: 700;
        color: #f91942;
    }

.feat .item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow: 0 0 25px rgba(0,0,0,.07);
    box-shadow: 0 0 25px rgba(0,0,0,.07);
    border-radius: 20px;
    border: 5px solid rgba(0,0,0,.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all .5s ease 0s;
}

    .feat .item:hover {
        background: #1f3485;
        box-shadow: 0 8px 20px 0 rgba(0,0,0,.2);
        -webkit-transition: all .5s ease 0;
        transition: all .5s ease 0;
        transition: all .5s ease 0s;
    }

        .feat .item:hover .item, .feat .item:hover span.icon {
            background: #fff;
            border-radius: 50px;
            -webkit-transition: all .5s ease 0;
            transition: all .5s ease 0;
            transition: all .5s ease 0s;
        }

        .feat .item:hover h6, .feat .item:hover p {
            color: #fff;
            -webkit-transition: all .5s ease 0;
            transition: all .5s ease 0;
            transition: all .5s ease 0s;
        }

    .feat .item .icon {
        font-size: 40px;
        margin-bottom: 25px;
        color: #f91942;
        width: 90px;
        height: 90px;
        line-height: 96px;
        border-radius: 50px;
    }

    .feat .item .feature_box_col_one {
        background: rgba(247,198,5,.2);
        color: #f91942;
    }

    .feat .item .feature_box_col_two {
        background: rgba(255,77,28,.15);
        color: #f91942;
    }

    .feat .item .feature_box_col_three {
        background: rgba(0,147,38,.15);
        color: #f91942;
    }

    .feat .item .feature_box_col_four {
        background: rgba(0,108,255,.15);
        color: #f91942;
    }

    .feat .item .feature_box_col_five {
        background: rgba(146,39,255,.15);
        color: #f91942;
    }

    .feat .item .feature_box_col_six {
        background: rgba(23,39,246,.15);
        color: #f91942;
    }

    .feat .item p {
        font-size: 15px;
        line-height: 26px;
    }

    .feat .item h6 {
        margin-bottom: 9px;
        color: #2f2f2f;
        margin-top: 8px;
        font-weight: 700;
    }

.feat .mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.feat .mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.feat .mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.feat .skills {
    padding-top: 0;
}

    .feat .skills .prog-item {
        margin-bottom: 25px;
    }

        .feat .skills .prog-item:last-child {
            margin-bottom: 0;
        }

        .feat .skills .prog-item p {
            font-weight: 500;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .feat .skills .prog-item .skills-progress {
            width: 100%;
            height: 10px;
            background: #e0e0e0;
            border-radius: 20px;
            position: relative;
        }

            .feat .skills .prog-item .skills-progress span {
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                background: #f91942;
                width: 10%;
                border-radius: 10px;
                -webkit-transition: all 1s;
                transition: all 1s;
            }

                .feat .skills .prog-item .skills-progress span:after {
                    content: attr(data-value);
                    position: absolute;
                    top: -5px;
                    right: 0;
                    font-size: 10px;
                    font-weight: 600;
                    color: #fff;
                    background: rgba(0,0,0,.9);
                    padding: 3px 7px;
                    border-radius: 30px;
                }

.herobannertop {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.hero-contant {
    padding: 70px 0 50px 0;
}

    .hero-contant h2 {
        font-size: 36px;
        font-weight: 700;
        padding: 0 0 10px 0;
    }

    .hero-contant p {
        font-size: 22px;
        line-height: 36px;
    }

.demoboxform select {
    background: #fafafa;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 20px 0 5px 0;
    height: inherit;
}

.herobanner img {
    width: 100%;
    max-width: 380px;
}

.demoboxform textarea {
    background: #fafafa;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 20px 0 5px 0;
    height: inherit;
}

.signlevideo .owl-prev {
    left: -50px;
}

.signlevideo .owl-next {
    right: -50px;
}

.pricingtable .owl-prev {
    left: -50px;
}

.pricingtable .owl-next {
    right: -50px;
}

.signlevideo .fa-angle-right:before {
    content: "\f105";
    color: #000;
}

.signlevideo .fa-angle-left:before {
    content: "\f104";
    color: #000;
}

.signlevideo2 .owl-prev {
    left: -50px;
}

.signlevideo2 .owl-next {
    right: -50px;
}

.signlevideo2 .fa-angle-right:before {
    content: "\f105";
    color: #000;
}

.signlevideo2 .fa-angle-left:before {
    content: "\f104";
    color: #000;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.pt-5, .py-5 {
    padding-top: 1rem !important;
}

.fake-site {
    width: 100%;
    height: 100%;
}

    .fake-site iframe {
        width: 100%;
        height: 100%;
    }

.amg-button {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    background: #39d084;
    color: #fff;
    text-transform: uppercase;
    font-size: 26px;
    margin: 10px 0;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    border: none;
}

.amg-blue .amg-floating-icon, .amg-blue .amg-floating-link {
    background: #2c3e50;
}

.amg-orange .amg-floating-icon, .amg-orange .amg-floating-link {
    background: #ff8d00;
}

.amg-green .amg-floating-icon, .amg-green .amg-floating-link {
    background: 0 0;
}

.amg-floating-contact-wrap {
    position: fixed;
    left: 0;
    font-size: 48px;
    opacity: .6;
    z-index: 999;
    -webkit-transition: right 1s;
    -moz-transition: right 1s;
    -o-transition: right 1s;
    transition: right 1s;
}

    .amg-floating-contact-wrap:first-child {
        top: 70%;
    }

    .amg-floating-contact-wrap:nth-child(2) {
        top: 125px;
    }

.amg-floating-icon, .amg-floating-link {
    text-align: center;
}

.amg-floating-icon {
    width: 48px;
    float: left;
    padding: 10px;
}

    .amg-floating-icon i:before {
        vertical-align: middle;
    }

.amg-floating-link {
    width: 50px;
    min-height: 48px;
    padding: 10px 0;
    overflow: hidden;
}

    .amg-floating-link a {
        white-space: nowrap;
        color: #fff;
        color: rgba(255,255,255,.7);
        text-decoration: none;
    }

        .amg-floating-link a:hover {
            color: #fff;
            color: #fff;
        }

    .amg-floating-link a, .amg-floating-link form {
        width: 60px !important;
        margin: 0 10px;
    }

.amg-floating-contact-wrap.hover {
    opacity: 1;
    right: 0;
}

    .amg-floating-contact-wrap.hover .amg-floating-link {
        right: 0;
    }

@media(max-width:1000px) {
    #header {
        padding-top: 0;
        background: #1f3485;
        padding: 8px;
    }
}

@media(max-width:1200px) {
    .main-nav a {
        font-size: 14px !important;
    }

    .headerNav .logo {
        left: -28px !important;
    }
}

.pb-5, .py-5 {
    padding-bottom: 0 !important;
}

.featuresBoxde {
    height: 165px;
}

.demoboxform {
    margin: auto;
    background: #1f34851f;
    padding: 14px;
    border-radius: 10px;
}

.form-control input:focus {
    background-color: #4285f4 !important;
}

.homedownbtn {
    width: 100%;
    background: #4285f4;
    padding: 10px;
    text-align: center;
    color: #fff;
}
.OfferPrice {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e8e3e3;
}
.pricingptag {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #e8e3e3;
    text-decoration: line-through;
}

p.topheadcontact {
    color: #1f3485;
    FONT-SIZE: 18PX;
    FONT-WEIGHT: BOLD;
}

.btnnewdownload {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px;
}

.headvideo {
    text-align: justify;
    margin: 15px 10px 23px 0;
    font-size: 20px;
}

.headvideoheading {
    color: #1f3485;
    font-weight: 700;
    margin-top: 15px;
    font-size: 40px;
}

.hero-contant h1 {
    font-size: 36px;
    font-weight: 700;
    padding: 0 0 10px 0;
}


.imgworkfeature {
    width: 189px;
    margin-bottom: 14px;
}

imgworkfeature p span {
    font-weight: bold;
    font-size: 18px;
}

.featuresBoxnew h1 {
    color: #000000;
    font-size: 35px;
	text-align:center;
}


.featuresBoxnew {
    padding: 10px;
    border-radius: 2px;
    margin-top: 14px;
    border: 2px solid #fff;
    min-height: 300px;
    text-align:justify;
    
    color: black;
    background: #fbfbfb;
    font-size: 18px;
    font-weight: 400;
    margin: 30px 19px 0 0;
}

.featuresBoxnewsec {
    padding: 10px;
    border-radius: 2px;
    margin-top: 14px;
    border: 2px solid #fff;
    text-align: center;
    color: #fff;
    background: #1f34852e;
    font-size: 18px;
    font-weight: 400;
    margin: 30px 19px 0 0;
}

.h2verfy {
    color: #000 !important;
    text-align: center;
    font-size: 40px;
    margin-top: 35px;
}



@media (max-width: 1000px){
	.right-logo img {
	display: none !important;
}


#header {
padding-top: 0;
background: transparent;
padding: 8px;
}
.headerNav button i {
    color: #000 !important;
}
.main-nav a {
font-size: 12px !important;
text-transform:uppercase !important;
}

}



@media (max-width: 991px){
  .desktop-none{
        display: block !important;
        }

.hedertop header#header {
    display: none;
}
.hedertop header#header {
    display: none;
}
.middle-header .col-md-7.col-12 {
    order: 3;
    flex: 1;
    max-width: 10%;
}
.middle-header .col-md-3.col-12 {
    order: 2;
    flex: 1;
    max-width: 100%;
}
.middle-header .col-md-7.col-12 .container.d-flex.align-items-center.justify-content-between {
    justify-content: end !important;
	padding: 0;
}
.middle-header .col-md-1.col-12 {
    max-width: 10%;
}
.home-page.sticky {
    background: #fff;
}
.home-page.sticky {
    background: #fff !important;
    z-index: auto !important;
    position: relative !important;
}
}


        *, body {
            font-family: 'Poppins', sans-serif;
        }

        #homepageslider {
            display: none;
        }

        .headerNav .logo {
            width: 77px;
            padding: 5px;
            left: -48px;
            position: relative;
        }

        .home-page {
            background: transparent;
        }

        .main-nav a {
            color: #000;
            text-transform: uppercase;
            font-size: 15px;
            font-weight: 500;
        }

        .main-nav li:not(:last-child) a {
            padding: 4px 10px 4px 0px;
        }

        .herobannertop {
            border-bottom: 1px solid #eee;
        }

        .section-padding {
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .hero-contant {
            padding: 0px 6px 50px 0;
        }

        .main-nav .drop-down ul a {
            padding-left: 18px;
        }

        .main-nav .drop-down li {
            background: #f0ecf3;
        }


        .signlevideo2 .videocontentbox h3 {
            height: 102px;
        }

        .socailfooter {
            text-align: left;
        }

        .contentleft {
            text-align: left !important;
        }

        .contentright {
            text-align: right !important;
        }

        .hedertop {
            font-size: 16px;
            padding: 12px 0;
            background: #ededed;
            align-items: center;
            display: flex;
        }

        .topheadcontact {
            margin-bottom: 0;
        }

        .contentleft a {
            padding: 0px;
            margin: 0px 12px;
        }

        .contentleft i {
            color: #495a9c;
        }

        .contentright i {
            color: #495a9c;
            padding-right: 4px;
        }

        .left-logo {
            text-align: left;
        }

        .right-logo {
            text-align: right;
        }

        .middle-header {
            padding: 0 0;
        }

        #header {
            padding: 15px 0;
            text-align: center;
        }

            #header .main-nav {
                margin: auto;
                width: auto !important;
            }

        .right-logo img {
            width: 250px;
        }

        .fa, .far, .fas {
            font-family: "FontAwesome" !important;
        }

        .container {
            max-width: 1240px !important;
        }

        .main-nav li:not(:last-child) a {
            padding: 4px 5px 4px 0px;
        }

        .hedertop #header {
            padding: 0;
        }

        .pricingbox {
            margin-bottom: 20px;
        }

        p.topheadcontact {
            color: #1f3485;
            FONT-SIZE: 15PX;
            FONT-WEIGHT: 500;
            text-align: center;
        }

        .home-page.sticky {
            background: #7a8cd2;
            color: #fff;
            transition: all 0.3s;
            z-index: 99999;
            padding: 0 !important;
        }

        .accordion__question__container, #sidebar {
            background: #495a9c !important;
            color: #000 !important;
        }

        .accordion__question {
            color: #fff !important;
            font-size: 16px;
            margin-bottom: 0;
        }

        .hedertop .main-nav a {
            text-transform: capitalize;
        }
        .desktop-none{
        display: none;

        }
   