@charset "UTF-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Cairo&display=swap:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);

:root {
    --primary: #34BEEF;
    --secondary: #1D1955;
    --primary-body: #000;
    --secondary-body: #F2FCFF;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 992px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'Cairo', "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo,Cairo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

 
* {
    box-sizing: border-box;
}

    *::before, *::after {
        box-sizing: border-box;
    }

body {
    font-family: system-ui;
    background-color: var(--transparent-body);
    color: var(--primary-body);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}
body.ar{
    direction:rtl;
    text-align:right;
	 font-family: 'Cairo';
}
.btn.primary {
    background-color: var(--primary);
    padding: 0.25rem 1.5rem;
}
section {
    position: relative;
}

a,
a:hover {
    text-decoration: none;
}

p {
    line-height: 1.75;
    margin-bottom: 1.38em;
}

/* 2 - Global Style
--------------------------------------------------------------------------------------*/
.wave-shape {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
    left: 0;
    bottom: 0;
    pointer-events: none;
    -webkit-transition: .3s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .3s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}
 
  
    .btn svg,
    .btn span,
    .btn i {
        vertical-align: middle;
    }
     
 
@media (min-width: 1230px) {
    .container {
        max-width: 1200px;
    }

    .navbar {
        padding-left: 0;
        padding-right: 0;
    }
}
 
.overflow-hidden {
    overflow: hidden;
}

.s-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.s-pb-large {
    padding-bottom: 200px;
}

.s-title {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

    .s-title h2 {
        font-size: 26px;
         color: var(--primary-body);
        margin-bottom: 10px;
        font-weight: bold;
    }

.features-bg .s-title h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

    .s-title p {
        font-size: 18px;
        color: #5f6368;
        margin-bottom: 0;
    }

 
.overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

 
.ovh {
    overflow: hidden;
}

@-webkit-keyframes upndown {
    to {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    from {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@keyframes upndown {
    to {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    from {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@-webkit-keyframes pulse {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2.4);
        opacity: 0;
    }
}


@keyframes pulse {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2.4);
        opacity: 0;
    }
}


.img-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-left img {
    margin-right: auto;
}

.img-right img {
    margin-left: auto;
}

.img-center img {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 767px) {
    .gutter-60 {
        margin-left: -30px;
        margin-right: -30px;
    }

        .gutter-60 > .col,
        .gutter-60 > [class*=col-] {
            padding-left: 30px;
            padding-right: 30px;
        }

    .gutter-40 {
        margin-left: -20px;
        margin-right: -20px;
    }

        .gutter-40 > .col,
        .gutter-40 > [class*=col-] {
            padding-left: 20px;
            padding-right: 20px;
        }
}

.page-title {
    position: relative;
    padding-top: 250px;
    padding-bottom: 170px;
}

    .page-title .overlay {
        opacity: .9;
        background-image: -webkit-linear-gradient( 0deg, #0581A7 0%, #7658f7 100%);
        background-image: linear-gradient( 90deg, #0581A7 0%, #7658f7 100%);
    }

.page-title-content {
    text-align: center;
}

    .page-title-content .page-name {
        font-size: 40px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 15px;
    }

     

/* 3 - Header Style
--------------------------------------------------------------------------------------*/
.navbar {
    /*padding-top: 33px;
	padding-bottom: 33px;*/
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    backface-visibility: hidden;
    -webkit-transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}

    .navbar.sticky-nav {
        background-color: #fff;
        padding-top: 10px;
        padding-bottom: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,.15);
    }

        .navbar.sticky-nav .navbar-nav li a.nav-link-scroll::after,
        .navbar.sticky-nav .navbar-nav li a.nav-link-scroll::before,
        .nav-c-black .navbar-nav li a.nav-link-scroll::before,
        .nav-c-black .navbar-nav li a.nav-link-scroll::after {
            background-color: #0581A7;
        }

        .navbar.sticky-nav .navbar-nav li a,
        .navbar.sticky-nav .nav-search i,
        .nav-c-black .navbar-nav li a,
        .nav-c-black .nav-search i {
            color: #000;
        }

            .navbar.sticky-nav .navbar-nav li a:hover,
            .navbar.sticky-nav .navbar-nav li a.active,
            .nav-c-black .navbar-nav li a:hover,
            .nav-c-black .navbar-nav li a.active {
                color: #0581A7;
            }

.navbar-nav li,
.navbar-nav li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: relative;
    -webkit-transition: .15s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .15s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}

.navbar-nav > li {
    padding-top: 1em;
    padding-bottom: 1em;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav li a,
    .navbar-expand-lg .navbar-nav li a.nav-link {
        padding: 0;
    }

    .navbar-nav li {
        margin-left: 1.55em;
        margin-right: 1.55em;
    }

        .navbar-nav li a.nav-link-scroll::after {
            content: "";
            position: absolute;
            display: block;
            width: 0;
            height: 1px;
            background-color: #fff;
            bottom: 0;
            left: 0;
            border: 0;
            -webkit-transition: .2s cubic-bezier(0.43, 0.49, 0.51, 0.68);
            transition: .2s cubic-bezier(0.43, 0.49, 0.51, 0.68);
        }

        .navbar-nav li a.nav-link-scroll::before {
            content: "";
            position: absolute;
            display: block;
            width: 0;
            height: 1px;
            background-color: #fff;
            bottom: 0;
            right: 0;
            -webkit-transition: .2s cubic-bezier(0.43, 0.49, 0.51, 0.68);
            transition: .2s cubic-bezier(0.43, 0.49, 0.51, 0.68);
        }

        .navbar-nav li a.nav-link-scroll:hover::after,
        .navbar-nav li a.nav-link-scroll:hover::before,
        .navbar-nav li a.nav-link-scroll.active::after,
        .navbar-nav li a.nav-link-scroll.active::before {
            width: 50%;
        }

    .navbar-nav > li:last-child {
        margin-right: .85em;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        min-width: 160px;
        background: #fff;
        display: block;
        left: 0;
        margin: 0;
        border: 0;
        opacity: 0;
        padding: 20px 15px;
        visibility: hidden;
        border-radius: 0;
        border-radius: 3px;
        overflow: hidden;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.17);
        -webkit-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
    }

    .dropdown-menu li {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-nav .dropdown-menu li a,
    .navbar-expand-lg .navbar-nav .dropdown-menu li a,
    .navbar-expand-lg .navbar-nav .dropdown-menu li a.nav-link {
        color: #000;
        padding: .7em 1.2em;
        /*white-space: nowrap;*/
        font-size: 13px;
    }

        .navbar-nav .dropdown-menu li a:hover,
        .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover,
        .navbar-expand-lg .navbar-nav .dropdown-menu li a.nav-link:hover {
            color: #0581A7;
        }

    #main-nav .dropdown:hover > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.navbar-nav .dropdown-menu, #main-nav .dropdown:hover > .dropdown-menu {
    position: absolute !important;
    float: none !important;
    right: 0 !important;
    left: -736px !important;
    min-width: 1519px !important;
    top: 55px;
    z-index: 1000;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    padding: 3rem 11rem;
}

    .navbar-nav .dropdown-menu.lastmenu, #main-nav .dropdown:hover > .dropdown-menu.lastmenu {
        left: -1103px !important;
    }

    .navbar-nav .dropdown-menu.lastmenu, #main-nav .dropdown:hover > .dropdown-menu.firstmenu {
        left: -509px !important;
    }

.lang {
    color: #0581A7 !important;
}

.navbar-nav .dropdown-menu.lan, #main-nav .dropdown:hover > .dropdown-menu.lan {
    left: 0 !important;
    right: 0 !important;
    min-width: 100px !important;
    padding: 10px;
}

.nav-search {
    position: relative;
    padding-left: 12px;
}

    .nav-search::before {
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 80%;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #fff;
        -webkit-transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
        transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    }

    /*.navbar.sticky-nav .nav-search::before,
.nav-c-black .nav-search::before,
.nav-c-black .menu-toggle span{
	background-color: #000;
}*/

    .nav-search i {
        color: #fff;
        font-size: 14px;
        display: block;
        cursor: pointer;
        -webkit-transition: .15s cubic-bezier(0.43, 0.49, 0.51, 0.68);
        transition: .15s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    }

.navbar-brand .color-logo,
.navbar.sticky-nav .navbar-brand .white-logo {
    display: inline-block;
    height: 50px !important;
    width: -webkit-fill-available;
}
.main-links .color-logo{
    display: inline-block;
    height: 50px !important;
    width: -webkit-fill-available;
}
.main-links.scrolling .color-logo{
    display: none;
 
}
.main-links .dark-logo{
      display: none;

}
.main-links.scrolling .dark-logo {
    display: inline-block;
    height: 50px !important;
    width: -webkit-fill-available;
}
 
.navbar-nav > li.dropdown {
    position: relative;
}

.menu-toggle {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    margin-left: 12px;
    margin-right: 12px;
    display: block;
}

    .menu-toggle .hamburger {
        position: absolute;
        height: 100%;
        width: 100%;
        display: block;
    }

        .menu-toggle .hamburger span {
            width: 100%;
            height: 2px;
            position: relative;
            top: 0;
            left: 0;
            margin: 4px 0;
        }

            .menu-toggle .hamburger span:nth-child(1) {
                transition-delay: .3s;
            }

            .menu-toggle .hamburger span:nth-child(2) {
                transition-delay: .4s;
            }

            .menu-toggle .hamburger span:nth-child(3) {
                transition-delay: .5s;
            }

    .menu-toggle .hamburger-cross {
        position: absolute;
        height: 100%;
        width: 100%;
        transform: rotate(45deg);
        display: block;
    }

        .menu-toggle .hamburger-cross span,
        .menu-toggle .hamburger-cross span:nth-child(1) {
            height: 0%;
            width: 2px;
            position: absolute;
            top: 0;
            left: 10px;
            transition-delay: 0s;
        }

            .menu-toggle .hamburger-cross span:nth-child(2) {
                width: 0%;
                height: 2px;
                position: absolute;
                left: 0;
                top: 10px;
                transition-delay: .2s;
            }

        .menu-toggle .hamburger span,
        .menu-toggle .hamburger-cross span {
            display: block;
            background: #fff;
            border-radius: 3px;
            -webkit-transition: .2s ease-in-out;
            transition: .2s ease-in-out;
        }

.navbar.sticky-nav .menu-toggle .hamburger span,
.navbar.sticky-nav .menu-toggle .hamburger-cross span {
    background: #000;
}

.navbar-toggler[aria-expanded="true"] .hamburger span {
    width: 0%;
}

    .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
        transition-delay: 0s;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
        transition-delay: .125s;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
        transition-delay: .2s;
    }

.navbar-toggler[aria-expanded="true"] .hamburger-cross span:nth-child(1) {
    height: 100%;
    transition-delay: .3s;
}

.navbar-toggler[aria-expanded="true"] .hamburger-cross span:nth-child(2) {
    width: 100%;
    transition-delay: .4s;
}

.navbar-toggler {
    outline: none;
    padding: 0;
    border: 0;
}

    .navbar-toggler:focus {
        outline: none;
    }

.nav-button {
    margin-left: 30px;
}

    .nav-button a {
        display: inline-block;
        background-color: #fff;
        font-size: 16px;
        font-weight: 500;
        color: #0581A7;
        border-radius: 3px;
        box-shadow: 0px 10px 20px 0px rgba(0, 7, 40, 0.1);
        min-width: 140px;
        text-align: center;
        padding: 1em;
        -webkit-transition: .15s ease-in-out;
        transition: .15s ease-in-out;
    }

        .nav-button a:hover {
            opacity: .9;
        }

.navbar.sticky-nav .nav-button a {
    box-shadow: 0px 5px 10px 0px rgba(0, 7, 40, 0.1);
    background-color: #0581A7;
    color: #fff;
}

 
.m-s-input {
    position: relative;
    padding-bottom: 5px;
}

    .m-s-input:before {
        content: "";
        left: 0;
        bottom: 0;
        width: 10%;
        height: 4px;
        background: -webkit-linear-gradient( -90deg, rgb(96,56,247) 0%, rgb(14,194,233) 100%);
        background: linear-gradient( -90deg, rgb(96,56,247) 0%, rgb(14,194,233) 100%);
        position: absolute;
        -webkit-transition: .65s ease-in-out;
        transition: .65s ease-in-out;
    }

.open .m-s-input:before {
    width: 100%
}

.main-search-form input {
    background: transparent;
    border: 0;
    width: 100%;
    display: block;
    outline: none;
    font-size: 2.6em;
    padding: 0;
    line-height: 1.4;
    color: #fff;
}

    .main-search-form input::-webkit-input-placeholder {
        color: #fff;
    }

    .main-search-form input::-moz-placeholder {
        color: #fff;
    }

    .main-search-form input:-ms-input-placeholder {
        color: #fff;
    }

    .main-search-form input::placeholder {
        color: #fff;
    }

.main-search-form span {
    display: block;
    text-align: right;
    margin-top: 10px;
    color: #fff;
}

.main-search-area i {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    cursor: pointer;
    font-size: 3em;
    color: #e85454
}

.menu-search-open {
    cursor: pointer;
}


/* 4 - Banner and Slider Style
--------------------------------------------------------------------------------------*/
.main-banner {
    position: relative;
    padding-top: 100px;
}

    .main-banner > .container {
        position: relative;
        z-index: 1;
    }

.home-1-banner {
    padding-top: 245px;
    padding-bottom: 100px;
}

.home-3-banner {
    padding-bottom: 100px;
    background: -ms-linear-gradient(50deg, #6038f6 0%, #0dc2e9 100%);
    background: -moz-linear-gradient(50deg, #6038f6 0%, #0dc2e9 100%);
    background: -webkit-linear-gradient(50deg, #6038f6 0%, #0dc2e9 100%);
    background: linear-gradient(50deg, #6038f6 0%, #0dc2e9 100%);
}

    .home-3-banner .wave {
        pointer-events: none;
    }

    .home-3-banner .h3-wabe {
        position: absolute;
        width: 100%;
        height: auto;
        display: block;
        bottom: 0;
        left: 0;
    }

        .home-3-banner .h3-wabe img {
            width: 100%;
            height: auto;
            display: block;
        }

.home-4-banner {
    background: -webkit-linear-gradient(50deg, rgb(13,197,173) 0%, rgb(50,73,214) 100%);
    background: linear-gradient(50deg, rgb(13,197,173) 0%, rgb(50,73,214) 100%);
}

.home-5-banner {
    padding-bottom: 5px;
    background: #fff;
}

.bgHeader {
    background-image: url(../images/header/Picture1.jpg);
}

.home-6-banner .overlay {
    opacity: .9;
    background: -webkit-linear-gradient( 40deg, rgb(17,191,218) 0%, rgb(11,15,196) 100%);
    background: linear-gradient( 40deg, rgb(17,191,218) 0%, rgb(11,15,196) 100%);
}

.home-7-banner {
    padding-bottom: 100px;
    background: -webkit-linear-gradient( 30deg, rgb(26,41,128) 0%, rgb(38,208,206) 100%);
    background: linear-gradient( 30deg, rgb(26,41,128) 0%, rgb(38,208,206) 100%);
}

.home-8-banner {
    padding-bottom: 100px;
}

    .home-8-banner .overlay {
        background-color: #000;
        opacity: .65;
    }

.main-banner .banner-content {
     position: relative;
}

    .main-banner .banner-content .title {
        font-size: 29px;
        line-height: 1.32;
        font-family: LamaSans-Black !important;
        font-weight: bold;
        color: var(--primary);
    }

    .main-banner .banner-content .sub-title {
        display: block;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
        color: var(--primary-body);
     }
.headerSlider ul li {
    color: var(--primary-bg-color);
    display:flex;
    align-items:center;
    margin-bottom:0.25rem
}
    .headerSlider ul li span {
        color: var(--primary);
        font-size: 14px;
        margin-left: 0.5rem;
        margin-bottom: 0.5rem;
    }
.ar .headerSlider.position-absolute{
    right:92px ;
}
.headerSlider.position-absolute{
    left:92px ;
}

.svg-li svg {
    height: 22px;
}
.svg-li  {
    width: 25px;
}
.headerSlider li img {
    width: 4%;
    height: auto;
}
 
.banner-img-wrapper {
    height: 630px;
    position: relative;
}

    .banner-img-wrapper.banner-7-img-wrapper {
        height: 640px;
    }

    .banner-img-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        position: absolute;
        bottom: 0;
    }

    .banner-img-wrapper .banner-img-1 {
        left: 15px;
        bottom: 0;
    }

    .banner-img-wrapper .banner-img-2 {
        right: 15px;
        bottom: 0;
    }

    .banner-img-wrapper.banner-7-img-wrapper .banner-img-1 {
        left: 45px;
        bottom: 55px;
    }

    .banner-img-wrapper.banner-7-img-wrapper .banner-img-2 {
        right: -5px;
        bottom: 0;
    }

.home-2-banner {
    min-height: 900px;
    background: -moz-linear-gradient( 40deg, rgb(247,56,97) 0%, rgb(254,114,78) 100%);
    background: -webkit-linear-gradient( 40deg, rgb(247,56,97) 0%, rgb(254,114,78) 100%);
    background: -ms-linear-gradient( 40deg, rgb(247,56,97) 0%, rgb(254,114,78) 100%);
    background: linear-gradient( 40deg, rgb(247,56,97) 0%, rgb(254,114,78) 100%);
}

    .home-2-banner .overlay {
        background-image: url(../images/h2s-bg.png);
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

.home-2-banner2 {
    position: relative;
    padding-bottom: 90px;
}

    .home-2-banner2 .banner-content .title {
        color: #445063;
    }

    .home-2-banner2 .banner-content .sub-title {
        color: #5f6368
    }

    .home-2-banner2 .banner-content {
        z-index: 1;
    }

.home-2-b2-img {
    z-index: 0;
}

    .home-2-b2-img img {
        max-width: 100%;
        height: auto;
        display: block;
    }

.home-2-b2-img {
    margin-left: -100px;
    margin-right: -80px;
}

@media (min-width: 1640px) {
    .home-2-b2-img {
        margin-left: -100px;
        margin-right: -230px;
    }
}

.iconic-top-slider .banner-content .title,
.iconic-top-slider .banner-content .sub-title,
.iconic-top-slider .banner-content .btn-wrapper {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
    -webkit-transition: .65s ease-in-out;
    transition: .65s ease-in-out;
}

.iconic-top-slider .h2-img-shadow {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: .75s ease-in-out;
    transition: .75s ease-in-out;
}

.iconic-top-slider .swiper-slide-active .banner-content .title,
.iconic-top-slider .swiper-slide-active .banner-content .sub-title,
.iconic-top-slider .swiper-slide-active .banner-content .btn-wrapper,
.iconic-top-slider .swiper-slide-active .h2-img-shadow {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.iconic-top-slider .swiper-slide-active .banner-content .title,
.iconic-top-slider .swiper-slide-active .h2-img-shadow {
    transition-delay: .8s;
}

.iconic-top-slider .swiper-slide-active .banner-content .sub-title {
    transition-delay: 1s;
}

.iconic-top-slider .swiper-slide-active .banner-content .btn-wrapper {
    transition-delay: 1.2s;
}

.iconic-main-slider {
    padding-bottom: 50px;
}

.home-2-slider .swiper-pagination-bullet {
    background-color: #fc808d;
}

.home-4-slider .swiper-pagination-bullet {
    background-color: #5dbfcd;
}

.iconic-main-slider .swiper-pagination-bullet.swiper-pagination-bullet-active,
.iconic-main-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
}

.h3-banner-img-wrapper {
    height: 710px;
    position: relative;
}

    .h3-banner-img-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        position: absolute;
    }

    .h3-banner-img-wrapper .h3-banner-img-1 {
        top: 0;
        right: -55px;
    }

    .h3-banner-img-wrapper .h3-banner-img-2 {
        bottom: 0;
        right: -30px;
    }

@media (min-width: 1450px) {
    .h3-banner-img-wrapper .h3-banner-img-1 {
        right: -85px;
    }

    .h3-banner-img-wrapper .h3-banner-img-2 {
        right: -58px;
    }
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
}

.main-slider .banner-img {
    z-index: 2;
    position: relative;
}
 
@media (min-width: 1340px) {
    .home-5-banner .video-popup {
        margin-right: -70px;
        margin-left: 80px;
    }
}

@media (min-width: 1600px) {
    .home-5-banner .video-popup {
        margin-right: -180px;
        margin-left: 100px;
    }
}

.h6-slider-img-1,
.h6-slider-img-2 {
    position: relative;
    height: auto;
}

    .h6-slider-img-1 img,
    .h6-slider-img-2 img {
        max-width: 100%;
        height: auto;
        display: block;
        position: relative;
    }

        .h6-slider-img-1 img:nth-child(1) {
            left: 0;
            bottom: 0;
        }

        .h6-slider-img-1 img:nth-child(2) {
            right: -200px;
            bottom: 196px;
        }

        .h6-slider-img-1 img:nth-child(3) {
            left: 175px;
            bottom: 95px;
        }

    .h6-slider-img-1 img {
        opacity: 0;
        -webkit-transform: translate3d(70%, 70%, 0);
        transform: translate3d(70%, 70%, 0);
        -webkit-transition: .85s ease-in-out;
        transition: .85s ease-in-out;
    }

.swiper-slide-active .h6-slider-img-1 img,
.swiper-slide-active .h6-slider-img-2 img {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    .swiper-slide-active .h6-slider-img-1 img:nth-child(1) {
        transition-delay: .2s;
    }

    .swiper-slide-active .h6-slider-img-1 img:nth-child(2) {
        transition-delay: .8s;
    }

    .swiper-slide-active .h6-slider-img-1 img:nth-child(3) {
        transition-delay: .5s;
    }

.h6-slider-img-2 img:nth-child(1) {
    left: 0;
    bottom: 0;
}

.h6-slider-img-2 img:nth-child(2) {
    right: -150px;
    top: 20px;
}

.h6-slider-img-2 img {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

.swiper-slide-active .h6-slider-img-2 img:nth-child(1) {
    transition-delay: 1s;
}

.testimonial-one-item-slider .swiper-slide {
    margin-right: 30px;
}

.swiper-slide-active .h6-slider-img-2 img:nth-child(2) {
    transition-delay: 1.3s;
}

.home-7-banner .banner-content .sub-title {
    font-style: normal;
    font-size: 20px;
    line-height: 1.5;
}

.home-7-banner .scroll-next-sec {
    position: absolute;
    bottom: 60px;
    left: 50%;
    border-color: #4081ad;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.home-4-slider {
    pointer-events: none;
}

    .home-4-slider .btn,
    .home-4-slider .swiper-pagination-bullet {
        pointer-events: auto;
    }
       
.wrappers {
    display: block;
    width: 650px;
    overflow: scroll;
} 
/* 17 - Video Style
--------------------------------------------------------------------------------------*/
.video-sec {
    padding-top: 200px;
    padding-bottom: 150px;
}

    .video-sec.size-large {
        padding-top: 250px;
        padding-bottom: 200px;
    }

    .video-sec .overlay {
        opacity: .95;
        background: -moz-linear-gradient( 90deg, #0dc1e9 0%, #0581A7 100%);
        background: -webkit-linear-gradient( 90deg, #0dc1e9 0%, #0581A7 100%);
        background: -ms-linear-gradient( 90deg, #0dc1e9 0%, #0581A7 100%);
        background: linear-gradient( 90deg, #0dc1e9 0%, #0581A7 100%);
    }

.video-play-content {
    position: relative;
    text-align: center;
}

.video-play-btn {
    margin-bottom: 80px;
}

    .video-play-btn a {
        display: inline-block;
        width: 80px;
        height: 80px;
        position: relative;
        text-align: center;
        background: -webkit-linear-gradient( -140deg, #9479fe 0%, #0581A7 100%);
        background: -ms-linear-gradient( -140deg, #9479fe 0%, #0581A7 100%);
        background: linear-gradient( -140deg, #9479fe 0%, #0581A7 100%);
        box-shadow: 0px 13px 30px 0px rgba(0, 12, 31, 0.1);
        border-radius: 50%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        -webkit-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

        .video-play-btn a:focus {
            transform: scale(1.5);
            opacity: 0;
        }


        .video-play-btn a:after,
        .video-play-btn a:before {
            content: "";
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
            box-shadow: 0 0 0 .8px rgba(255, 255, 255, .5);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            opacity: 0;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            animation: pulse 2.2s ease-out infinite;
            backface-visibility: hidden;
            pointer-events: none;
        }

        .video-play-btn a:after {
            animation-delay: 1s;
        }

.video-play-content .title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5em;
    margin-bottom: 0;
    line-height: 1.5;
    position: relative;
}

.video-play-btn a svg {
    margin-left: 5px;
}

.video-popup {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 14px 0px rgba(0, 26, 36, 0.2);
}

    .video-popup:after {
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #000;
        display: block;
        opacity: .2;
    }

    .video-popup img {
        max-width: 100%;
        display: block;
        height: auto;
    }

    .video-popup .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .video-popup .video-play a {
            display: block;
            position: relative;
            width: 70px;
            height: 70px;
            line-height: 80px;
            background-color: #fff;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0px 4px 14px 0px rgba(0, 26, 36, 0.2);
            padding-left: 5px;
        }

            .video-popup .video-play a:after {
                content: "";
                width: 142.87%;
                height: 142.87%;
                display: block;
                top: 50%;
                left: 50%;
                position: absolute;
                background-color: rgba(255,255,255,.35);
                border: 1px solid #fff;
                border-radius: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }

            .video-popup .video-play a svg path {
                fill: #0581A7;
            }

.video-img-area {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 30px 69px 0px rgba(0, 26, 36, 0.3);
}

.h7-video-sec {
    padding-bottom: 120px;
}

    .h7-video-sec .video-img-area {
        margin-top: -180px
    }

.video-img-area img {
    width: 100%;
    height: auto;
    display: block;
}

.video-img-area .video-play-btn {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-img-area:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background: -webkit-linear-gradient( 60deg, rgb(26,41,128) 0%, rgb(38,208,206) 100%);
    background: linear-gradient( 60deg, rgb(26,41,128) 0%, rgb(38,208,206) 100%);
    opacity: .8;
}

.video-play-btn a {
    background: -webkit-linear-gradient( 230deg, rgb(38,208,206) 0%, rgb(38,56,163) 100%);
    background: -ms-linear-gradient( 230deg, rgb(38,208,206) 0%, rgb(38,56,163) 100%);
    box-shadow: 0px 16px 30px 0px rgba(0, 12, 31, 0.1);
}

.h2-video-play {
    padding-top: 180px;
    padding-bottom: 150px;
}

    .h2-video-play .overlay {
        background-color: #445063;
        opacity: .94;
    }

.video-and-nl-sec {
    background-color: #f6f9fd;
}
 
.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: none;
    background: -webkit-linear-gradient(40deg, #0581A7 0%, #7658f7 100%);
    background: linear-gradient( 40deg, #0581A7 0%, #7658f7 100%);
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0,0,0,.25);
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

    .scroll-top:hover {
        line-height: 33px;
    }

.wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 5px;
    height: 50px;
}
 
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 850px;
    transition: all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 95px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

    .hero-style .slide-title h2 {
        font-size: 100px;
        font-weight: 600;
        line-height: 1;
        color: #ffffff;
        margin: 0 0 40px;
        text-transform: capitalize;
        transition: all .4s ease;
    }

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.8;
    font-family: Rajdhani;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn, .theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

    .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
        background-color: #2b3b95;
        color: #fff;
    }

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-btn, .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev, .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: none !important;
}

.mega-menu ul {
    list-style: none;
}

.mega-menu .svg-border {
    border-radius: 4px !important;
    width: 45px !important;
    height: 45px !important;
    padding: 8px !important;
    border: 2px solid #dee2e6 !important;
    margin-right: 10px !important;
    display: flex !important;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}

.mega-menu .use-case label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

.mega-menu img {
    width: -webkit-fill-available;
    border-radius: 4px;
}

.mega-menu .btn.store-btn {
    display: inline !important;
    min-width: 100px !important;
    width: 100px !important;
    font-size: 12px !important;
    padding: 7px 2px !important;
    margin-right: 7px !important;
}

.mega-menu .firstmenu h6 {
    font-weight: bold !important;
    color: #6c757d !important;
    text-transform: uppercase !important;
}

.mega-menu .services li {
    color: #0581a7 !important;
    font-size: 14px !important;
    padding-right: 1px;
}

.mega-menu .sub-list li {
    color: #212529 !important;
    font-size: 11px !important;
    padding-right: 0 !important;
}

.mega-menu .sub-list i {
    color: #5f6368 !important;
    font-size: 6px !important;
    margin-right: 5px;
}

.mega-menu h6 {
    text-transform: uppercase;
    font-size: 14px;
}

.svg-border {
    border-radius: 4px !important;
    width: 50px !important;
    height: 50px !important;
    padding: 8px !important;
    border: 2px solid #dee2e6 !important;
    margin-right: 10px !important;
    display: flex !important;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}

.use-case label {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #000 !important;
}

.firstmenu img {
    width: -webkit-fill-available;
}

.firstmenu .btn.store-btn {
    display: inline !important;
    min-width: 100px !important;
    width: 115px !important;
    font-size: 12px !important;
    padding: 7px 2px !important;
    margin-right: 7px !important;
}

.firstmenu h6 {
    font-weight: bold !important;
    color: #6c757d !important;
    text-transform: uppercase !important;
}

.services li {
    color: #0581a7 !important;
    font-size: 14px !important;
}

.sub-list li {
    color: #212529 !important;
    font-size: 13px !important;
}

.sub-list i {
    color: #212529 !important;
    font-size: 8px !important;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
}


 






/*************************************************************************/
.mega-menu {
    display: block;
    float: left;
    width: 100%;
    /*box-shadow: 0px 1px 4px #dadada;*/
}
    /*
	.mega-menu img {
		box-shadow: 0px 2px 15px -7px rgb(1 167 190 / 75%);
		-webkit-box-shadow: 0px 2px 15px -7px rgb(1 167 190 / 75%);
		-moz-box-shadow: 0px 2px 15px -7px rgba(1,167,190,0.75);
		margin-bottom: 10px;
	}*/

    .mega-menu .icon-btn-r {
        border: 0
    }

    .mega-menu .btn:hover {
        box-shadow: 0px 0px 3px 0px var(--primary);
        -webkit-box-shadow: 0px 0px 3px 0px var(--primary);
        -moz-box-shadow: 0px 0px 3px 0px var(--primary);
        transition: 1s;
    }
.btn-primary:focus, .btn-primary:hover {
    border-color: transparent !important;
    background-color: var(--primary) !important;
    background: var(--primary) !important;
    opacity:0.92;
    transition: all .5s ease-in-out;
}
.mega-menu .main-links.scrolling ul li a {
    color: var(--primary)
}

.mega-menu  a:hover {
    box-shadow: none
}

    .mega-menu .mobile-nav-icon {
        display: none;
    }

    .mega-menu.sticky-header {
        position: fixed;
        top: 0;
        z-index: 999999;
        background-color: transparent;
        /*box-shadow: 0 0 5px rgb(0 0 0 / 15%);*/
    }

    .mega-menu a {
        text-decoration: none;
        color: #fff;
        font-weight:bold;
        border-bottom: 0px solid white;
    }

    .mega-menu .main-links {
        background-color: transparent;
        /*border-bottom: 1px solid #dedede;*/
        z-index: 9;
        position: relative;
        display: block;
        float: left;
        width: 100%;
        /*height:65px;*/
        line-height: 62px;
    }
        .mega-menu .main-links.scrolling {
            background-color: #fff;
            /* border-bottom: 1px solid #dedede; */
            z-index: 9;
            position: relative;
            display: block;
            float: left;
            width: 100%;
            /* height: 65px; */
            line-height: 62px;
            box-shadow: 0px 0px 10px 0 #343a407d;
        }
.d-flex.mobile {
    position: absolute;
    top: 80px;
    left: -115px;
}
#CRM .d-flex.mobile {
    position: absolute;
    top: 70px;
    left: -145px;
}
img.pt-4.mobile {
    width: 165px;
}
img.pt-4.desktop {
    /* position: absolute; */
    top: -47px;
    width: 400px;
}
        .mega-menu .main-links.disable-highlighter ul li a:hover {
            border-color: transparent;
        }

        .mega-menu .main-links.text-highlighter ul li a:hover {
            color: red;
        }

        .mega-menu .main-links ul {
            display: flex;
            margin: 0;
            float: left;
            position: relative;
        }

            .mega-menu .main-links ul.follow-highlighter-enabled a:hover {
                border-color: transparent;
            }

            .mega-menu .main-links ul.follow-highlighter-enabled .follow-highlighter {
                position: absolute;
                width: 0%;
                height: 4px;
                background-color: red;
                bottom: 0px;
                transition: all ease 0.3s;
            }

                .mega-menu .main-links ul.follow-highlighter-enabled .follow-highlighter.right {
                    animation-duration: 0.3s;
                    animation-fill-mode: both;
                    animation-timing-function: ease-in;
                    animation-direction: alternate;
                }

            .mega-menu .main-links ul li {
                width: auto;
                float: left;
                margin-left: 40px;
                line-height: 4.5;
            }
 
            body.ar .mega-menu .main-links ul li {
                width: auto;
                float: left;
                margin-right: 40px !important;
                margin-left:0 !important;
                line-height: 4.5;
            }
 

                .mega-menu .main-links ul li a {
                    position: relative;
                    /*padding: 25px 0px;*/
                    /*float: left;*/
                    cursor: pointer;
                 }

                    .mega-menu .main-links ul li a.navbar-brand:hover {
                        border: 0 !important;
                    }

                    .mega-menu .main-links ul li a.highlight {
                        /*border-bottom: 4px solid red;*/
                    }

                    .mega-menu .main-links ul li a .caret.caret-down {
                        border: solid #48494B;
                        border-width: 0 2px 2px 0;
                        display: inline-block;
                        padding: 2px;
                        transform: rotate(45deg);
                        -webkit-transform: rotate(45deg);
                        margin-left: 8px;
                        margin-bottom: 2px;
                    }

                    .mega-menu .main-links ul li a .caret.caret-up {
                        border: solid black;
                        border-width: 0 2px 2px 0;
                        display: inline-block;
                        padding: 2px;
                        transform: rotate(-135deg);
                        -webkit-transform: rotate(-135deg);
                        margin-left: 8px;
                        margin-top: 2px;
                    }

                    .mega-menu .main-links ul li a .caret.caret-img {
                        display: inline-block;
                        background-size: cover;
                        position: absolute;
                        width: 15px;
                        height: 15px;
                        margin-top: 3px;
                        right: -20px;
                    }

    .mega-menu .menu-dropdown {
        display: block;
        float: left;
        width: 100%;
    }

        .mega-menu .menu-dropdown .menu-item-wrapper {
            display: none;
            padding: 15px;
            margin: 0;
            float: left;
            width: 100%;
            flex-wrap: wrap;
            flex-direction: row;
            padding-left: 0
        }

            .mega-menu .menu-dropdown .menu-item-wrapper.active {
                display: flex;
                background: #ffffff;
            }

            .mega-menu .menu-dropdown .menu-item-wrapper li {
                /*margin-right: 30px;*/
            }

            .mega-menu .menu-dropdown .menu-item-wrapper .category-wrapper {
                float: left;
                display: inline-block;
                margin-left: 0;
            }

                .mega-menu .menu-dropdown .menu-item-wrapper .category-wrapper:last-child {
                    margin-right: 0;
                }

                .mega-menu .menu-dropdown .menu-item-wrapper .category-wrapper .item-category {
                    font-weight: bold;
                    color: #9D9D9D;
                    font-size: 16px;
                    position: relative;
                    margin-bottom: 15px;
                    display: block;
                    /*padding: 0px 15px;*/
                }

.category-wrapper p {
    color: #5C5C5C
}

.mega-menu .menu-dropdown .menu-item-wrapper .category-wrapper ul {
    display: inline-block;
    float: left;
}

.mega-menu .menu-dropdown .menu-item-wrapper li {
    color: #777777;
    /*display: block;*/
    height: auto;
}

    .mega-menu .menu-dropdown .menu-item-wrapper li:last-child {
        margin-bottom: 0px;
    }

    .mega-menu .menu-dropdown .menu-item-wrapper li a {
        color: #48494B;
    }

        .mega-menu .menu-dropdown .menu-item-wrapper li a:last-child {
            /*padding-bottom: 0;*/
            color: #000;
            padding: 0.7em 1.2em;
            /* white-space: nowrap; */
            font-size: 12px;
        }

        .mega-menu .menu-dropdown .menu-item-wrapper li a:hover {
            color: #0581A7;
        }

        .mega-menu .menu-dropdown .menu-item-wrapper li a.btn, .mega-menu .menu-dropdown .menu-item-wrapper li a.btn:hover {
            color: #ffffff;
        }

    .mega-menu .menu-dropdown .menu-item-wrapper li ul.padd-0 {
        padding: 0;
    }

.mega-menu .menu-dropdown .menu-item-wrapper.dropdown {
    background-color: white;
    float: left;
    width: auto;
    padding: 25px;
    position: absolute;
    box-shadow: 0px 1px 4px #dadada;
}

    .mega-menu .menu-dropdown .menu-item-wrapper.dropdown.active {
        display: block;
    }

    .mega-menu .menu-dropdown .menu-item-wrapper.dropdown li {
        margin-right: 0;
    }

        .mega-menu .menu-dropdown .menu-item-wrapper.dropdown li:last-child {
            margin-bottom: 0;
        }

.mega-menu .menu-dropdown .back-link {
    display: none;
    margin-bottom: 30px;
    color: blue;
}

@media only screen and (max-width: 767px) {
    .follow-highlighter {
        display: none;
    }

    .mega-menu.sticky-header {
        position: relative;
    }

        .mega-menu.sticky-header.responsive-menu .main-links {
            margin-top: 71px;
        }

        .mega-menu.sticky-header.responsive-menu .menu-dropdown {
            position: fixed;
            top: 71px;
            z-index: 99;
            background: white;
        }

            .mega-menu.sticky-header.responsive-menu .menu-dropdown .menu-item-wrapper .back-link {
                display: block;
                color: #0289A8
            }

        .mega-menu.sticky-header .mobile-nav-icon {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 99;
        }

    .mega-menu .mobile-nav-icon {
        position: relative;
        z-index: 91;
        background-color: #fff;
        display: block;
        border: none;
        padding: 25px 40px;
        border-bottom: 1px solid #dadada;
    }

        .mega-menu .mobile-nav-icon a {
            border: none;
        }

    .mega-menu .main-links {
        display: none;
        padding: 25px 40px;
    }

        .mega-menu .main-links.active {
            display: block;
        }

        .mega-menu .main-links ul {
            flex-wrap: wrap;
            padding: 0;
            width: 100%;
        }

            .mega-menu .main-links ul li {
                width: 100%;
                margin-right: 0;
            }

                .mega-menu .main-links ul li a {
                    padding: 10px 0px;
                }

                    .mega-menu .main-links ul li a.highlight {
                        border: none;
                    }

    .mega-menu .menu-dropdown .menu-item-wrapper {
        max-height: 100vh;
        overflow: scroll;
    }

        .mega-menu .menu-dropdown .menu-item-wrapper.active {
            display: block;
        }
}

@keyframes fromLeft {
    0% {
        width: 0;
        left: 0;
    }

    100% {
        width: 100%;
        left: 0;
    }
}

@keyframes fromRight {
    0% {
        width: 0;
        right: 0;
    }

    100% {
        width: 100%;
        right: 0;
    }
}





 /*********************************** Asrari ***************************************/
.header-video {
 
    max-width: 100%;
    max-height: 550px;
    overflow: hidden;
    color: #fff;
}
    .header-video video {
        width: 100%;
        height: 100%;
    }
.end-0 {
    right: 0 !important;
}

.top-0 {
    top: 0 !important;
}
.downloadBtn{
    background-color:#fff !important;
    color:#000;
    border: 2px solid #fff !important;
    border-radius:5px;
    font-weight:bold;
}
.requestDemoBtn {
    background-color: transparent !important;
    color: #fff !important;
    border:2px solid #fff !important;
    border-radius:5px;
    margin-left:5px;
    font-weight:bold
}
.ar .requestDemoBtn {
 
    margin-right:5px;
}
.mask-img {
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
}
.sub-title {
     font-size: 20px;
}
 
.banner-content {
    display: grid;
    align-content: stretch;
    padding-top: 6rem;
    padding-bottom: 3rem;
    align-items: center;
}
/*.play-button {
    width: 152px;
    height: 152px;
    position: relative;
    cursor: pointer;
}*/

/*.play-backdrop {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
}

.play-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: calc(100% + 15px);
    border: none;
    outline: none;
    background: none;
    opacity: 0;
    cursor: pointer;
}

    .play-close::before,
    .play-close::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: rotate(45deg);
        background-color: #fff;
    }

    .play-close::after {
        transform: rotate(-45deg);
    }

.play-circles {
    display: block;
    width: 100%;
    height: 100%;
}

.play-perspective {
    width: 600px;
    height: 400px;
    position: absolute;*/
    /*left: -230px;*/
    /*top: -125px;
}*/

.play-triangle {
    width: 600px;
    height: 400px;
    background-color: #fff;
    cursor: pointer;
}
 
/*.play-video {
    text-align: center;
}
.bg-dark {
    position: relative;
    text-align: center;
    color: #fff;*/ /* Change the color according to your design */
/*}
    .bg-dark iframe {
        width: 100%;
        height: 100%;
    }

.play-button {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 125%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.play-video {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;*/ /* 16:9 aspect ratio for responsive video */
/*}

    .play-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }*/

#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

#video-frame {
    width: 80%;
    height: 80%;
}

#play-icon {
    position: absolute;
    width: 97%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    margin: 0 9px;
}

    #play-icon img {
        width: 50px; /* Adjust the size of the icon */
        height: 50px;
    }
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play {
    position: absolute;
    width: inherit;
    left: 0;
    z-index: 1;
    bottom: 0;
    top: 0;
    display: flex;
    padding: 25px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #00000096;
 }
.fa-play-circle {
    position: absolute;
    font-size: 100px;
    color: #fff;
}
.play-close {
     position: absolute; 
     top: 2%; 
     right: 4%;
}

.features-bg {
    background-color: #1AACE0;
    color: #fff;
}
.features-card {
    display: grid;
    justify-items: center;
    height:100%;
    cursor:pointer
}
.features-svg {
    border-radius: 8px;
    box-shadow: 0 0 36px rgb(29 25 85 / 10%);
    padding: 15px;
    border: 1px solid rgb(255 255 255 / 18%);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8rem;
    background-color: var(--primary);
}
    .features-svg svg {
        width: 70%;
    }
.blog-post {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

    .blog-post .post-thumb {
        margin-bottom: 27px;
        position: relative;
        overflow: hidden;
    }
        .blog-post .post-thumb img {
            width: 100%;
            height: 240px;
            display: block;
        }
.post-thumb .overlay-text {
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 0;
    color: #fff !important;
    z-index: 5;
}
body.ar .post-thumb .overlay-text {
    position: absolute;
    bottom: 5%;
    right: 5% !important;
    left: 0%;
    right: 0%;
    color: #fff !important;
    z-index: 5;
}
.blog-post .post-thumb .meta-date {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 2;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    border: 2px solid #fff;
    pointer-events: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    line-height: 1;
    -webkit-transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}
body.ar .blog-post .post-thumb .meta-date {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 2;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    border: 2px solid #fff;
    pointer-events: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    line-height: 1;
    -webkit-transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}
.blog-post .post-thumb:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1D1955;
    opacity: 0.4;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}
body.ar .blog-post .post-thumb:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1D1955;
    opacity: 0.4;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    -webkit-transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .25s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}
.blog-post .post-thumb .meta-date .date {
    font-size: 20px;
    font-weight: 700;
    display: block;
}
.blog-post .post-thumb.customize:after {
    width: 105%;
    left: 8px;
}
.customize img{
    width: 105% !important;
}
.why-asrari-tabs .tab-pane {
    padding: 15px 0; 
 }

.why-asrari-tabs .nav-pills {
    position: relative;
    border: none !important;
    background-color: #fff;
    border-bottom: 1px solid #70707080 !important;
    padding: 0;
}

    .why-asrari-tabs .nav-pills li {
        margin: 0px !important;
    }

        .why-asrari-tabs .nav-pills li a {
            position: relative;
            margin-right: 0px !important;
            padding: 20px 40px !important;
            font-size: 16px;
            border: none !important;
            width: max-content;
            cursor:pointer;
        }

    .why-asrari-tabs .nav-pills a:hover {
        background-color: #fff !important;
        border: none;
    }

.why-asrari-tabs .slider {
    display: inline-block;
    width: 130px;
    height: 3px;
    border-radius: 0px;
    background-color: var(--primary);
    
    position: absolute;
    z-index: 1200;
    bottom: -2px;
    transition: all .4s linear;
}

.why-asrari-tabs .nav-pills .active {
    background-color: transparent !important;
    border: none !important;
    color: #39bcd3 !important;
}
.pricing{
    background-color:var(--secondary-body);
}
.pricing .card {
    color: var(--secondary);
    border-radius:7px
}
.pricing .card span{
    font-size:14px;
 }
.pricing .card .fw-bold {
    font-weight:bold;
}
.btn.btn-primary.ordernow {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    width: 100%;
    font-weight: bold;
    padding: 0.65rem 0.35rem;
}
.btn.btn-primary.ContactUs {
    background-color: var(--secondary);
    border-color: var(--secondary);
    border-radius: 50px;
    font-weight: bold;
    padding: 0.65rem 0.35rem;
    width:14rem;
}
.btn.focus, .btn:focus {
    box-shadow:none !important;
}
body.ar .PackagesPricesList li {
    margin-right: -40px!important;
}
.PackagesPricesList li {
    margin-left: -40px;
}
    .PackagesPricesList li {
        list-style: none;
    }

.PackagesPricesList li::before {
    content: '\25CF';
    font-size: 1.5em;
        margin-left: 0;
    padding-right: 10px;
    color: var(--primary);
    list-style-type: none;
}
body.ar .PackagesPricesList li::before {
    content: '\25CF';
    font-size: 1.5em;
    margin-right: -10px;
    padding-left: 10px;
    color: var(--primary);
    list-style-type: none;
}
/*.details-PlatformFeatures {
    background-color: var(--primary);
    border-radius: 8px;
     padding: 15px;
    border: 1px solid rgb(255 255 255 / 18%);
    height:100%;
}*/
.multipletab { 
    overflow: hidden;
    position: relative;
}

.tab-buttons {
    display: inline-block;
    width: 100%;
    position:relative;
}


.multipletab .tab-content {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: var(--primary);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgb(255 255 255 / 18%);
    height: 100%;
    left:13px;
}
.ar .multipletab .tab-content{
    right:13px !important;
}

.multipletab .tab-content > div {
    position: absolute;
}

.multipletab .tab-nav {
    opacity: 1;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

 

.tab-nav > span {
    position: absolute;
    top: 50%;
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
}

    .tab-nav > span.next {
        right: 0px;
          z-index:99999999999999999;
    }

    .tab-nav > span.prev {
        left: 0px;
         z-index: 99999999999999999;
    }

.listOfFeature{
    color:var(--secondary)
}
    .listOfFeature li {
        width: 50%;
        float: right;
        font-size: 14px;
    }
.svg-details-PlatformFeatures {
    width: 150px;
}
.close-slider{
    position:relative;
    z-index:9999999999999;
}
.close-slider svg{
    cursor:pointer;
}
.features-card {
    text-align: center;
}