﻿@import url("https://fonts.googleapis.com/css?family=Poppins:400,400i,500,600,700|Rubik:400,400i,500,500i,700,700i&display=swap");

@media print {
    html, body {
        display: none; /* hide whole page */
    }
}

:root {
    --main-color-one: #F9556D;
    --main-color-two: #F9556D;
    --secondary-color: #30373f;
    --heading-color: #272b2e;
    --paragraph-color: #232f3e;
    --heading-font: "Poppins", sans-serif;
    --body-font: "Rubik", sans-serif;
    --poppins-font: "Poppins", sans-serif;
    --body-font-size: 15px;
    --line-height30: 30px;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    user-select: none;
   
}

    body::-webkit-scrollbar {
        width: 1em;
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    body::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
    }

h1 {
    font-size: 65px;
    line-height: 1.0833333333;
}

h2 {
    font-size: 46px;
    line-height: 1.2380952381;
}

h3 {
    font-size: 36px;
    line-height: 1.0833333333;
}

h4 {
    font-size: 20px;
    line-height: 1.2380952381;
}

h5 {
    font-size: 24px;
    line-height: 1.2380952381;
}

h6 {
    font-size: 22px;
    line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    /*font-family: var(--heading-font);*/
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
   /* line-height: var(--line-height30);*/
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--paragraph-color);
}

    a,
    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
        color: inherit;
    }

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

    ol li {
        list-style: none;
        margin-bottom: 1rem;
    }

        ol li:before {
            counter-increment: counter;
            content: counter(counter);
            font-weight: 500;
            margin-right: 10px;
        }

.desktop-center-item {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

code {
    color: #faa603;
}

.border-none {
    border: 0 !important;
}

.gray-bg {
    background: #F5F8FF;
}

.blue-bg {
    background: #01358D;
}

.dark-bg {
    background-color: #111d5c;
}

.section-bg-1 {
    background-color: #f4f7fc;
}

.border-bottom-dashed {
    border-bottom: 1px dashed #8F98A8;
}

.bg-none {
    background: none;
}

    .bg-none:after {
        display: none;
    }

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .check-list li {
        display: block;
        padding-left: 20px;
        position: relative;
        z-index: 0;
    }

        .check-list li:after {
            position: absolute;
            left: 0;
            top: 0;
            font-family: "fontawesome";
            content: "";
            color: var(--main-color-one);
        }

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

    .comment-navigation .nav-previous > a,
    .posts-navigation .nav-previous > a,
    .post-navigation .nav-previous > a,
    .comment-navigation .nav-next > a,
    .posts-navigation .nav-next > a,
    .post-navigation .nav-next > a {
        transition: 0.3s ease-in;
    }

    .comment-navigation .nav-previous:hover > a,
    .posts-navigation .nav-previous:hover > a,
    .post-navigation .nav-previous:hover > a,
    .comment-navigation .nav-next:hover > a,
    .posts-navigation .nav-next:hover > a,
    .post-navigation .nav-next:hover > a {
        color: var(--main-color-one);
    }


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.bg-gray {
    background: #F5F8FF;
}

.pd-top-30 {
    padding-top: 30px;
}

.pd-top-40 {
    padding-top: 40px;
}

.pd-top-50 {
    padding-top: 50px;
}

.pd-top-80 {
    padding-top: 80px;
}

.pd-top-90 {
    padding-top: 90px;
}

.pd-top-100 {
    padding-top: 15px;
}

.pd-top-105 {
    /*  padding-top: 105px;*/
}

.pd-top-110 {
    padding-top: 110px;
}

.pd-top-112 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-form-area {
    padding-top: 69px;
}
.pd-top-115 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pd-top-120 {
    padding-top: 140px;
  
    padding-bottom: 80px;
   
}

.pd-top-135 {
    padding-top: 135px;
}

.pd-top-150 {
    padding-top: 150px;
}

.pd-top-170 {
    padding-top: 170px;
}

.pd-top-190 {
    padding-top: 190px;
}

.pd-bottom-65 {
    padding-bottom: 65px;
}

.pd-bottom-90 {
    padding-bottom: 90px;
}

.pd-bottom-100 {
    padding-bottom: 50px;
    background: #eef2f9;
    padding-top: 50px;
}

.pd-bottom-120 {
    padding-bottom: 120px;
}

.pd-default-120 {
    padding: 120px 0;
}

.pd-default-two {
    padding: 110px 0 120px 0;
}

.mg-top-40 {
    margin-top: 40px;
}

.mg-top-45 {
    margin-top: 45px;
}

.mg-top-60 {
    margin-top: 60px;
}

.mg-top-65 {
    margin-top: 65px;
}

.mg-top-75 {
    padding-top: 50px !important;
    padding-bottom: 50px;
}

.mg-top-80 {
    margin-top: 80px;
}

.mg-top-100 {
    margin-top: 100px;
}

.mg-top-105 {
    margin-top: 105px;
}

.mg-top-110 {
    margin-top: 110px;
}
.career p {
    color: #0e1d35;
}
.career p a {
        color: #e96429;
    }
/*.mg-top-120 {
    margin-top: 120px;
}
*/
.mg-top-135 {
    margin-top: 135px;
}

.mg-top-170 {
    /*  margin-top: 170px;*/
}

.mg-bottom-30 {
    margin-bottom: 30px;
}

.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}


.footer-widget .widget-title {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.22px;
    color: #fff;
  /*  margin-bottom: 43px;*/
}

    .footer-widget .widget-title:after {
        display: none;
    }

.footer-widget .footer_top_widget {
    border-bottom: 1px solid rgba(151, 161, 179, 0.1);
    margin-bottom: 46px;
    padding-bottom: 34px;
}

    .footer-widget .footer_top_widget .footer-logo {
        margin-bottom: 30px;
        display: block;
    }

        .footer-widget .footer_top_widget .footer-logo img {
            width: 160px;
            height: auto;
        }

    .footer-widget .footer_top_widget p {
        font-size: var(--body-font-size);
        line-height: var(--line-height30);
        letter-spacing: 0.3px;
        color: #5B6880;
    }

.footer-widget.widget_nav_menu {
    margin-bottom: 50px;
}

    .footer-widget.widget_nav_menu ul li {
        display: inline-block;
    }

        .footer-widget.widget_nav_menu ul li a {
            font-size: 16px;
            letter-spacing: 0.32px;
            color: #01358D;
            line-height: 19px;
            margin: 0 24px;
            font-weight: 500;
        }

.footer-widget .about_us_widget .footer-logo {
    margin-bottom: 44px;
    display: inline-block;
}

    .footer-widget .about_us_widget .footer-logo img {
        width: 140px;
        height: auto;
    }

.footer-widget .about_us_widget p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-bottom: 39px;
}

.footer-widget .about_us_widget .social-icon li:first-child {
    margin-left: 0;
}

.footer-widget .contact_info_list .contact-content {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-bottom: 22px;
}

.footer-widget .contact_info_list p {
    font-size: var(--body-font-size);
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #5B6880;
}

    .footer-widget .contact_info_list p span {
        font-weight: 500;
        color: #01358D;
    }

.footer-widget .about_recent_post {
    padding-top: 9px;
}

    .footer-widget .about_recent_post .media {
        margin-bottom: 24px;
    }

        .footer-widget .about_recent_post .media img {
            margin-right: 26px;
            border-radius: 4px;
        }

        .footer-widget .about_recent_post .media .media-body {
            margin-top: 15px;
        }

            .footer-widget .about_recent_post .media .media-body h6 {
                font-size: 18px;
                line-height: 22px;
                letter-spacing: 0.18px;
                color: #01358D;
                font-weight: 500;
                font-family: var(--body-font);
            }

            .footer-widget .about_recent_post .media .media-body span {
                font-size: 14px;
                line-height: 30px;
                letter-spacing: 0.42px;
                color: #97A1B3;
            }

.footer-area-2 .widget_nav_menu ul {
    padding-left: 0;
}

    .footer-area-2 .widget_nav_menu ul li {
        display: block;
    }

        .footer-area-2 .widget_nav_menu ul li a {
            font-size: var(--body-font-size);
            line-height: var(--line-height30);
            letter-spacing: 0.3px;
            color: #ffffff;
            font-weight: 400;
            margin: 0;
            transition: all 0.3s ease-in;
        }

.new {
    margin-top: 50px;
    border-right: 1px dotted #fff;
    /*    margin-right: 80px;*/
}

.new1 {
    margin-top: 75px;
    /*  margin-right: 80px;*/
}

.footer-area-2 .widget_nav_menu ul li a:hover, .footer-area-2 .widget_nav_menu ul li a:active, .footer-area-2 .widget_nav_menu ul li a:focus {
    color: #e96429;
}
.navbar-area {
    padding: 0;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 8;
    transition: all 0.3s ease-in;
}


/*----------------------------------
    Footer Area
----------------------------------*/

.footer-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #091a36;
}

.footer-area-2 .footer-widget-area {
    padding-top: 70px;
    border-top: 1px solid rgba(151, 161, 179, 0.2);
}

.footer-area-2 .copyright-inner {
    border-top: 1px solid rgba(151, 161, 179, 0.2);
    padding: 12px 0;
    margin-top: 45px;
}

    .footer-area-2 .copyright-inner .copyright-text {
        padding-bottom: 0;
    }

.footer-area-2 .newsletter-subcribe .form-group input {
    border: 1px solid rgba(151, 161, 179, 0.5);
}


/*---------------------------------------
    ## Button
---------------------------------------*/
.box-shadow {
    box-shadow: 0px 25px 70px #01358D1A;
}

.padding-60px {
    padding: 60px;
}

.btn-wrapper {
    display: block;
}

    .btn-wrapper .btn-appstore {
        margin-right: 18px;
        display: inline-block;
        border-radius: 8px;
        transition: all 0.3s ease-in;
    }

        .btn-wrapper .btn-appstore:hover {
            box-shadow: 0px 15px 22px #5B68801C;
        }

    .btn-wrapper .btn-playstore {
        display: inline-block;
        border-radius: 8px;
        transition: all 0.3s ease-in;
    }

        .btn-wrapper .btn-playstore:hover {
            box-shadow: 0px 15px 22px #5B68801C;
        }

.btn {
    height: 52px;
    line-height: 52px;
    padding: 0 48px;
    letter-spacing: 0.45px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

    .btn i {
        margin-left: 15px;
    }

    .btn:focus {
        outline: 0;
        box-shadow: none;
    }

    .btn.btn-rounded {
        border-radius: 30px;
    }

    .btn.btn-radius {
        border-radius: 4px;
    }

.btn-extra-small {
    height: 36px;
    line-height: 36px;
    padding: 0 30px;
    font-size: 14px;
}

.btn-small {
    height: 42px;
    line-height: 42px;
    padding: 0 30px;
    font-size: 14px;
}

.btn-large {
    height: 48px;
    line-height: 48px;
    padding: 0 30px;
}

.btn-extra-large {
    height: 60px;
    line-height: 60px;
    padding: 0 70px;
}

.btn-transparent {
    border: 1px solid #fff;
    color: #fff;
}

    .btn-transparent:hover, .btn-transparent:focus {
        color: #5B6880;
        background: #fff;
    }

.btn-no-border-radius {
    border-radius: 0;
}

.btn-border-radius {
    border-radius: 4px;
}

.btn-ex-border-radius {
    border-radius: 40px;
}

.btn-white {
    background: #fff;
    border: 1px solid #fff;
    color: #fff;
}

    .btn-white:hover, .btn-white:focus {
        color: #1b358e;
        background: #fff;
        border: 2px solid #1b358e;
    }

.btn-normal {
    background: #fff;
    border: 1px solid #97A1B3;
    color: #5B6880;
}

    .btn-normal:hover, .btn-normal:focus {
        color: #97A1B3;
        background: transparent;
    }

.btn-deactive {
    background: #fff;
    border: 1px solid #D6DAE1;
    color: #D6DAE1;
}

    .btn-deactive:hover, .btn-deactive:focus {
        color: #D6DAE1;
        background: transparent;
    }

.btn-green {
    background: #32E2A9;
    box-shadow: 0px 11px 14px #32E2A94D;
    color: #fff;
}

    .btn-green:hover, .btn-green:focus {
        opacity: 0.7;
        color: #fff;
    }

.btn-blue {
    background: #01358D;
    color: #fff;
}

    .btn-blue:hover {
        opacity: 0.7;
        color: #fff;
    }

.btn-red {
    background: var(--main-color-one);
    /* box-shadow: 0px 10px 14px #F524434F;*/
    color: #fff;
}
.btn-rounded {
    padding: 10px;
    border-radius: 21px;
}
.btn-red:hover {
    opacity: 0.8;
    color: #fff;
}

.btn-red-border {
    background: #fff;
    border: 1px solid var(--main-color-one);
}

    .btn-red-border:hover {
        opacity: 0.8;
        color: #fff;
        box-shadow: 0px 10px 14px #F524434F;
        background: var(--main-color-one);
    }

.btn-gray {
    background: #F0F0F0;
    color: #97A1B3;
}

    .btn-gray:hover {
        background: var(--main-color-one);
        color: #fff;
    }

.single-video-play span {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.96px;
    color: #97A1B3;
    margin-right: 30px;
}

.single-video-play a {
    width: 52px;
    height: 52px;
    display: inline-block;
    background: #FF657C;
    box-shadow: 0px 10px 16px #F9556D45;
    border-radius: 50%;
    line-height: 57px !important;
    text-align: center;
    display: inline-block !important;
}

    .single-video-play a i {
        color: #fff;
        font-size: 18px;
        padding-left: 5px;
    }

.desktop-center {
    text-align: center;
}

.desktop-left {
    text-align: left;
}

.desktop-right {
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .tablet-center {
        text-align: center;
    }

    .tablet-left {
        text-align: left;
    }

    .tablet-right {
        text-align: right;
    }
}

@media only screen and (max-width: 414px) {
    .mobile-center {
        text-align: center;
    }

    .mobile-left {
        text-align: left;
    }

    .mobile-right {
        text-align: right;
    }
}
/*----------------------------------------
  ## Section title
----------------------------------------*/
.section-title {
    /*margin-bottom: 23px;*/
}

    .section-title .counting-number {
        font-size: 92px;
        font-weight: 500;
        letter-spacing: 1.84px;
        color: #5B6880;
        background: transparent;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: black;
        position: relative;
        display: inline-block;
    }

        .section-title .counting-number:after {
            content: "";
            position: absolute;
            height: 42px;
            width: 42px;
            background: rgba(216, 255, 243, 0.7);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            margin-top: -21px;
            margin-left: -21px;
            z-index: -1;
        }

    .section-title .title {
        letter-spacing: 0.92px;
        color: #091a36;
        opacity: 1;
        font-weight: 700;
        margin-bottom: 0;
        font-family: var(--poppins-font);
    }

        .section-title .title span {
            color: #091a36;
        }

    .section-title .title-2 {
        font-size: 36px;
        line-height: 44px;
    }

    .section-title p {
        color: #000;
        opacity: 1;
        font-size: var(--body-font-size);
        line-height: var(--line-height30);
        /*  margin-top: 18px;*/
        margin-bottom: 0;
        font-weight: 400;
        margin-bottom: 10px;
        padding-top: 10px;
    }
.piki {
    font-size: 15px;
    padding-bottom: 30px;
    color: #091a36;
}

    .section-title a {
        font-size: var(--body-font-size);
        font-weight: 500;
        letter-spacing: 0.45px;
        color: #ffffff;
        transition: all 0.3s ease-in;
        /*margin-top: 24px;*/
        display: inline-block;
        position: relative;
    }

.featu {
    float: right;
    margin-top: 20px;
}
.headtitle {
    font-size: 15px !important;
    color: #fff !important;
    padding-top: 13px;
}
.section-title a img {
    margin-left: 6px;
    transition: 0.3s;
}

.section-title a:hover img {
    margin-left: 9px;
}

.section-title a.read-more i {
    font-size: 35px;
    position: absolute;
    right: -42px;
    bottom: -3px;
}

.section-title a:hover {
   /* color: #ffffff;
    background: #f36d21;*/
}

.section-title.style-two {
    margin-bottom: 44px;
    padding: 10px;
}

.section-title.style-three {
    max-width: 80%;
    margin-bottom: 45px;
}

.section-title.style-four .title {
    font-size: 36px;
    line-height: 1.2;
}

.section-title.style-four p {
    line-height: 26px;
}

.section-title.style-five .sub-title {
    font-size: 18px;
    font-weight: 500;
}

    .section-title.style-five .sub-title span {
        color: var(--main-color-one);
    }

.section-title.ui-element-section-title {
    margin-bottom: 0;
}

    .section-title.ui-element-section-title .title {
        font-size: 32px;
        line-height: 1.2;
        color: #5B6880;
    }

    .section-title.ui-element-section-title p {
        font-size: 16px;
        line-height: 26px;
        color: #5B6880;
        position: relative;
        display: inline-block;
    }

        .section-title.ui-element-section-title p:after {
            content: "";
            position: absolute;
            right: -50px;
            top: 50%;
            background: #4B4B4B;
            height: 1px;
            width: 30px;
        }

.section-title-3 {
    max-width: 80%;
}

.riyaqas-check-list {
    margin-bottom: 25px;
}

    .riyaqas-check-list img {
        margin-right: 18px;
    }

    .riyaqas-check-list span {
        letter-spacing: 0.34px;
        color: #5B6880;
        font-size: 17px;
        line-height: 28px;
    }

.client-slider-title {
    font-size: 32px;
    line-height: 28px;
    font-family: var(--poppins-font);
    letter-spacing: 0.64px;
    color: #5B6880;
    font-weight: 400;
}

    .client-slider-title span {
        color: var(--main-color-one);
        font-weight: 500;
    }


.single-accordion {
    border: 1px solid #F5F9FF;
    border-radius: 3px;
    margin-bottom: 14px;
    box-shadow: 2px 5px 9px #e2e2e2ad;
}

    .single-accordion .card-header {
        background: transparent;
        border-radius: 0;
        border: 0;
        padding: 0;
    }

        .single-accordion .card-header h2 button {
            line-height: 30px !important;
            letter-spacing: 0.32px;
            color: #091a36;
            width: 100%;
            text-align: left;
            position: relative;
            background: #fff;
            border-radius: 10px;
            border: 0;
            float: left;
            font-weight: 500;
          /*  padding: 10px;*/
        }

            .single-accordion .card-header h2 button:after {
                content: "";
                position: absolute;
                height: 2px;
                width: 12px;
               
                top: 50%;
                right: 20px;
            }

            .single-accordion .card-header h2 button:before {
                content: "";
                position: absolute;
                height: 2px;
                width: 12px;
              
                top: 50%;
                transition: all 0.3s ease;
                right: 20px;
            }

            .single-accordion .card-header h2 button:hover, .single-accordion .card-header h2 button:focus, .single-accordion .card-header h2 button:active {
                text-decoration: none;
            }

            .single-accordion .card-header h2 button i {
                float: right;
            }

            .single-accordion .card-header h2 button.collapsed:before {
                transform: matrix(0, 1, -1, 0, 0, 0);
            }

    .single-accordion .card-body {
        padding: 21px 16px 26px 36px;
        font-size: var(--body-font-size);
        line-height: var(--line-height30);
        letter-spacing: 0.3px;
        color: #2a2c30;
    }

.accordion.style-two .single-accordion {
    box-shadow: 0px 10px 54px #97A1B224;
    border: 0;
}

    .accordion.style-two .single-accordion .card-header h2 button {
        background: transparent;
        padding: 0 35px 0 55px;
        color: #5B6880;
    }

        .accordion.style-two .single-accordion .card-header h2 button:before, .accordion.style-two .single-accordion .card-header h2 button:after {
            left: 30px;
            background: var(--main-color-one);
        }

        .accordion.style-two .single-accordion .card-header h2 button.collapsed:before, .accordion.style-two .single-accordion .card-header h2 button.collapsed:after {
            background: #5B6880;
        }

    .accordion.style-two .single-accordion .card-body {
        padding: 10px 30px 35px 53px;
    }


/***** google map *****/

.contact-info {
    padding: 50px;
}

    .contact-info .title {
        font-size: 36px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0.36px;
        color: #01358D;
        position: relative;
        margin-bottom: 15px;
        display: block;
    }

    .contact-info .sub-title {
        margin-bottom: 26px;
    }

    .contact-info p {
        font-size: var(--body-font-size);
        line-height: 28px;
        letter-spacing: 0.3px;
        color: #5B6880;
    }

        .contact-info p span {
            color: #01358D;
            font-weight: 500;
        }




/******* single-service-left *******/
.single-service-left {
    margin: 0 10px;
    background: #eef2f9a1;
    padding: 57px 44px 60px;
    box-shadow: 0px 12px 34px #97A1B221;
    border-radius: 6px;
    transition: all 0.3s ease-in;
    margin-bottom: 20px;
    border: 1px solid #00000014;
}

    .single-service-left:hover {
        box-shadow: 0px 15px 40px #97A1B247;
        border: 1px solid #6c757d;
    }

    .single-service-left .media1 .thumb {
        width: 65px;
        border-radius: 50%;
        margin: 0 auto;
    }

        .single-service-left .media1 .thumb img {
            width: 100%;
        }

    .single-service-left .media1 .media-body {
    }

        .single-service-left .media1 .media-body h6 {
            font-size: 16px;
            line-height: 30px;
            font-weight: 600;
            letter-spacing: 0.24px;
            color: #091a36;
            margin-bottom: 14px;
            text-align: center;
            padding-top: 25px;
        }

        .single-service-left .media1 .media-body p {
            font-size: var(--body-font-size);
            line-height: var(--line-height30);
            letter-spacing: 0.03px;
            color: #000000;
            margin-bottom: 20px;
        }

        .single-service-left .media1 .media-body a {
            font-size: var(--body-font-size);
            line-height: var(--line-height30);
            line-height: 30px;
            letter-spacing: 0.3px;
            color: #5B6880;
            position: relative;
            transition: all 0.3s ease-in;
        }

            .single-service-left .media1 .media-body a img {
                margin-left: 9px;
                transition: all 0.3s ease-in;
            }

            .single-service-left .media1 .media-body a i {
                font-size: 26px;
                position: absolute;
                right: -33px;
                bottom: -4px;
            }

            .single-service-left .media1 .media-body a:hover {
                color: var(--main-color-one);
            }

                .single-service-left .media1 .media-body a:hover img {
                    margin-left: 13px;
                }

/*----------------------------------------------
	## Feature
-----------------------------------------------*/
.single-feature {
    margin-bottom: 52px;
}

    .single-feature .media {
        background: #fff;
        box-shadow: 0px 12px 50px #AFAFAF38;
        border-radius: 100px 0px 0px 0px;
        padding: 62px 57px 52px 52px;
    }

        .single-feature .media .media-left {
            margin-right: 26px;
        }

        .single-feature .media .media-body h6 {
            letter-spacing: 0.20px;
            color: #091a36;
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 64px;
            font-size: 15px;
        }

.card-body a {
    color: #e96429;
}

.single-feature .media .media-body p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #1b1b1b;
}

.single-feature .border-radius-2 {
    border-radius: 0px 0px 0px 100px;
}

.single-feature .border-radius-3 {
    border-radius: 100px 0px 0px 0px;
}

.single-feature .border-radius-4 {
    border-radius: 0px 0px 100px 0px;
}

.single-feature-left {
    margin-right: 17px;
}

.single-feature-right {
    margin-left: 17px;
}

/*----------------------------------------
	## Pricing
----------------------------------------*/
.single-pricing {
    background: #fff;
    box-shadow: 0px 3px 26px #01358D0D;
    padding: 54px 50px 46px 50px;
    transition: all 0.3s ease-in;
    border: 1px solid #091a361c;
    /* height: 1200px;*/
}

    .single-pricing .title {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.36px;
        color: #091b36;
        margin-bottom: 40px;
        text-align: center;
    }

    .single-pricing .thumb {
        margin-bottom: 40px;
        text-align: center;
    }

    .single-pricing .amount {
        /* border-bottom: 1px solid #E4E4E5;*/
        /*  margin-bottom: 20px;*/
        padding-bottom: 16px;
    }

        .single-pricing .amount del {
            display: block;
            margin-bottom: 5px;
        }

        .single-pricing .amount p {
            color: #091b36;
        }

    .single-pricing .price {
        font-size: 36px;
        line-height: 25px;
        font-weight: 500;
        letter-spacing: 0.72px;
        color: #01358D;
        text-align: center;
    }

th span {
    font-size: 9px;
}

.nko {
    padding-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #00000038;
    margin-top: 15px;
}

.nkos {
    padding-bottom: 30px;
    text-align: center;
}

#more {
    display: none;
}

#more-1 {
    display: none;
}

#more-2 {
    display: none;
}

.manag img {
    width: 20%;
}

.mig i {
    color: #e96429;
}

.pri {
    font-size: 14px;
    text-align: center;
    padding-bottom: 8px;
    color: #343a40;
    font-weight: 400;
}

.single-pricing .price span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.36px;
    color: #5B6880;
    margin-left: -9px;
}

.single-pricing ul {
    padding-top: 15px;
    padding-left: 0;
    transition: 0.4s ease-in-out;
}

    .single-pricing ul li {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        letter-spacing: .15px;
        /* line-height: 35px;*/
        list-style: none
    }

        .single-pricing ul li a {
            padding-left: 7px;
            padding-right: 7px;
        }

.fa.fa-check {
    padding-top: 3px;
    color: #01358d;
    padding-right: 10px;
}

.single-pricing.style-two .title {
    margin-bottom: 25px;
}

.single-pricing.style-two .thumb {
    width: 70px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #FFF7F8;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.single-pricing-active {
    transition: transform .3s ease-in-out;
    transform: scale(1.1);
    box-shadow: 0px 12px 20px #01358d42;
}
.single-pricing a i {
    font-size: 19px;
  
}

    .single-pricing-active .title {
        color: #091b36;
    }

    .single-pricing-active .thumb {
        margin-bottom: 40px;
    }

    .single-pricing-active .amount del {
        color: #fff;
    }

    .single-pricing-active .price {
        color: #091b36;
    }

        .single-pricing-active .price span {
            color: #e96429;
        }

    .single-pricing-active ul li {
        color: #091a36;
    }

    .single-pricing-active .btn {
        color: #1b358e;
        background: #fff;
        border: 2px solid #1b358e;
    }

.sb-pricing-tabs {
    display: inline-block;
    border-bottom: 0;
    margin-bottom: 50px;
}

    .sb-pricing-tabs .nav-item {
        display: inline-block;
    }

        .sb-pricing-tabs .nav-item a {
            border: 1px solid #F1E7E8;
            font-size: 15px;
            border-radius: 0;
            height: 46px;
            padding: 0 20px;
            line-height: 46px;
            margin: 0 2px;
            position: relative;
            color: #091a36;
            letter-spacing: 0.5px;
        }

            .sb-pricing-tabs .nav-item a:after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: -6px;
                background: #091a36;
                height: 10px;
                width: 10px;
                transform: rotate(45deg);
                margin-left: -5px;
                visibility: hidden;
                opacity: 0;
            }

            .sb-pricing-tabs .nav-item a.active {
                border: 1px solid #ffffff;
                background: #091a36;
                color: #feffff;
                font-weight: 600;
            }

                .sb-pricing-tabs .nav-item a.active:after {
                    visibility: visible;
                    opacity: 1;
                }

.sb-hosting-tabs {
    border-bottom: 0;
   /* margin-top: 62px;*/
}
.servers:hover {
    transition: transform.8s;
    transform: translateY(-12px);
}
i.fa.fa-arrow-circle-right {
    padding-right: 10px;
}
    .sb-hosting-tabs .nav-item {
        display: block;
        width: 100%;
        margin-bottom: 16px;
    }

        .sb-hosting-tabs .nav-item a {
            border: 1px solid #F1E7E8;
            font-size: 20px;
            border-radius: 0;
            padding: 17px 27px;
            margin: 0 2px;
            position: relative;
            display: block;
            letter-spacing: 0.4px;
        }

            .sb-hosting-tabs .nav-item a img {
                margin-right: 10px;
            }

            .sb-hosting-tabs .nav-item a.active {
                border: 1px solid #e96429;
                background: #e96429;
                color: #fff;
            }

                .sb-hosting-tabs .nav-item a.active img {
                    filter: brightness(200);
                }

        .sb-hosting-tabs .nav-item:last-child {
            margin-bottom: 0;
        }


.riyaqas-form-wrap .btn {
    height: 48px;
    line-height: 48px;
    padding: 0 60px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 30px;
  /*  float: right;*/
}

.single-input-wrap {
    position: relative;
}

    .single-input-wrap .single-input {
        width: 100%;
        height: 52px;
        background: #fff;
        border: 1px solid #D9DDE4;
        border-radius: 20px;
        padding: 18px;
        margin-bottom: 30px;
        font-size: 15px;
        line-height: 1.2;
        letter-spacing: 0.3px;
        color: #97A1B2;
    }

        .single-input-wrap .single-input.textarea {
            min-height: 134px;
        }

    .single-input-wrap.input-checkbox {
        margin-bottom: 30px;
    }

        .single-input-wrap.input-checkbox .single-input {
            width: auto;
            height: auto;
        }

    .single-input-wrap .input-checkbox-text span {
        color: var(--main-color-one);
    }

    .single-input-wrap .single-select {
        width: 100%;
        height: 52px;
        background: transparent;
        border: 1px solid #D9DDE4;
        border-radius: 4px;
        padding: 16px 18px;
        margin-bottom: 30px;
        font-size: 15px;
        line-height: 1.2;
        letter-spacing: 0.3px;
        color: #97A1B2;
    }

        .single-input-wrap .single-select span.current {
            width: 180px;
            display: block;
        }

        .single-input-wrap .single-select:after {
            border-bottom: 1px solid #999;
            border-right: 1px solid #999;
            height: 7px;
            right: 20px;
            width: 7px;
        }

        .single-input-wrap .single-select .list {
            width: 100%;
        }

            .single-input-wrap .single-select .list li {
                font-size: 14px !important;
                letter-spacing: 0.28 !important;
                color: #97A1B2 !important;
                font-weight: 400 !important;
                transition: 0.4s !important;
            }

                .single-input-wrap .single-select .list li:hover, .single-input-wrap .single-select .list li:focus, .single-input-wrap .single-select .list li.selected {
                    color: #01358D !important;
                }

    .single-input-wrap label {
        position: absolute;
        top: 17px;
        left: 20px;
        cursor: text;
        transition: all 0.15s ease-in-out 0s;
        z-index: 0;
        font-size: var(--body-font-size);
        line-height: 1.2;
        letter-spacing: 0.3px;
        color: #091a36;
    }

        .single-input-wrap label.active {
            top: -6px;
            left: 17px;
            font-size: 11px;
            color: inherit;
            cursor: pointer;
            color: #e96429;
            z-index: 1;
            padding: 0 1px;
        }

.riyaqas-file-input-wrap {
    margin-top: 10px;
    height: 100%;
}

    .riyaqas-file-input-wrap .riyaqas-file-input {
        cursor: pointer;
        height: 60px;
        line-height: 60px;
        width: 100%;
    }

    .riyaqas-file-input-wrap label {
        cursor: pointer;
        border: 0;
        color: #fff;
        border-radius: 0;
        background: #32E2A9;
        height: 62px;
        line-height: 64px;
        text-align: center;
        padding: 0;
        cursor: cell;
    }

        .riyaqas-file-input-wrap label:after {
            display: none !important;
        }

.job-apply-area {
    box-shadow: 0px 8px 30px #97A1B224;
    border-radius: 8px;
    padding: 120px 68px;
}

    .job-apply-area .single-input-wrap .single-input {
        border: 0;
        border-bottom: 1px solid #D9DDE4;
        border-radius: 0;
        padding: 0;
    }

    .job-apply-area .single-input-wrap textarea {
        padding: 10px 0 !important;
    }

    .job-apply-area .single-input-wrap label {
        left: 0;
    }

    .job-apply-area .btn-blue {
        margin-top: 70px;
    }



a {
    color: #0a1b46;
}

    a:hover {
        text-decoration: none;
        color: #bd2130
    }

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: rgba(0, 84, 166, 0.85) !important;
    color: inherit;
    border: none;
    padding: 5px 14px !important;
    position: absolute;
    top: 50%;
    color: #fff !impotant;
    border-radius: 3px !impotant
}

.owl-carousel .owl-nav .owl-prev {
    left: 0;
}

    .owl-carousel .owl-nav .owl-prev span {
        font-size: 20px;
        line-height: 22px;
    }

    .owl-carousel .owl-nav .owl-prev:focus {
        outline: none;
        border: none;
        box-shadow: none
    }

.owl-carousel .owl-nav .owl-next {
    right: 0
}

    .owl-carousel .owl-nav .owl-next span {
        font-size: 20px;
        line-height: 22px;
    }

    .owl-carousel .owl-nav .owl-next:focus {
        outline: none;
        border: none;
        box-shadow: none
    }

#places {
    margin-top: 40px
}

@media (max-width: 767px) {
    #places {
        margin-top: 0
    }
}

#places .item {
    margin: 0 15px
}

#places .owl-item {
    opacity: 0.5;
    transform: scale(0.85);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(0.85, 0.85);
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden
}

    #places .owl-item.active.center {
        opacity: 1;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0) scale(1, 1);
        transform: scale(1)
    }

        #places .owl-item.active.center .item .title h4, #places .owl-item.active.center .item .views {
            opacity: 1
        }

.owl-theme .owl-dots {
    margin-top: 10px !important;
    margin-bottom: 25px
}

.custom-search-input-2 i {
    z-index: 7;
}

.homesearch {
    background: #F5F8FF;
    padding: 50px 0 70px;
    margin: 90px 0px 70px 0px;
}

.form-control:focus {
    border-color: #d2d8dd;
    box-shadow: none !important;
}



/* active state */

.floating-input:focus ~ .bar:before,
.floating-input:focus ~ .bar:after,
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after {
    width: 50%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}


/* highlighter */

.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active state */

.floating-input:focus ~ .highlight,
.floating-select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}


/* animation */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.special h3 {
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    background-color: #091a36 !important;
    padding: 23px;
}

.con {
    background: linear-gradient(162deg, rgba(9,26,54,1) 28%, rgba(35,78,150,1) 100%);
    padding-top: 37px;
    padding-bottom: 36px;
}

strong {
    color: #f56c15;
    font-size: 16px;
}

.sba-pricing-area.pd-top-110 {
    /*  background-image: url(../../img/backgraund.jpg);
    background-size: cover;*/
}

.offers {
    background: #f1f6fb !important;
}





.service-area:after {
    content: "";
    position: absolute;
    background-image: url('../../curve_shape5.svg');
    
    background-repeat: no-repeat;
    right: 0;
    top: 74%;
    background-size: auto;
    left: 70%;
    bottom: 0;
    margin-top: -278px;
    z-index: 1;
}

.section-title.style-two.text-xl-left.text-center img {
    z-index: 999;
    position: relative;
}

.service-area1 {
    padding-bottom: 50px;
    padding-top: 70px;
}

.single-pricing ul li img {
    width: 34px;
}

.close-btn {
    position: absolute;
    color: #ffffff;
    border-radius: 12px;
    height: 25px;
    width: 25px;
    padding: 1px;
    top: 7px;
    right: 13px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: none;
}

/* Features of tizzy mail start*/

.natasha {
   /* margin-top: 195px;*/
}

.natasha1 {
    margin-top:-34px;
}

.natasha2 {
    margin-top:-70px;
}


.featuress ul li {
    padding-bottom: 15px;
    list-style: none;
    border-radius: 18px;
    transition: all 0.3s ease-in;
}

.nko1 {
    padding: 20px;
}

    .nko1 ul li {
        padding-bottom: 15px;
        list-style: none;
        border-radius: 18px;
        transition: all 0.3s ease-in;
        display: flex;
    }

    .nko1 i {
        padding-right: 10px;
        padding-top: 4px;
        color: #e96429;
    }

.so {
    margin-top: 70px;
}

.featuress img {
    width: 37px;
    padding-right: 10px;
}

.featuress span {
    padding-left: 29px;
    font-size: 12px;
    color: #5b6880;
    display: flex;
}

.custom-gutters-16 {
   /* padding-top: 60px;*/
   /* padding-bottom: 50px;*/
}

.title-1 {
    color: #091a36;
    font-size: 30px;
    text-align: center;
    font-family: var(--poppins-font);
    font-weight: 700;
    padding-bottom: 30px;
    padding-top: 30px;
}

    .title-1 span {
        color: #e96429;
    }

.img_faq img {
    width: 80%;
}

p.microsoftpar {
    font-size: 13px;
    margin-bottom: 16px;
}

p.microsoftpar1 {
    margin-top: 10px;
    font-size: 13px;
    text-align: justify;
}

h6.titlepre {
    font-size: 16px !important;
    color: #091b36 !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px;
    margin-bottom: 25px;
}

h3.price span {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #091b36 !important;
}

.microfeathead {
    padding-bottom: 15px;
}



.what-we-do .outer {
    position: relative;
    padding-top: 20px;
}

    .what-we-do .outer .inner-circle {
        position: absolute;
        left: 45%;
        margin-left: -150px;
        top: 31%;
        margin-top: -150px;
        width: 420px;
        height: 419px;
        border: 1px dashed #d0d0d0;
        line-height: 300px;
        text-align: center;
        border-radius: 50%;
        z-index: 2;
    }

.inner-circle img {
    margin-top: 23%;
}

.what-we-do .outer .phone {
    position: absolute;
    width: 100%;
    left: 50%;
    top: -110px;
    transform: translateX(-50.5%);
}

.what-we-do .outer .service-box-three:first-child {
    left: 0px;
    top: 10px;
}

.what-we-do .outer .service-box-three {
    margin-bottom: 50px;
}

.service-box-three {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

    .service-box-three .inner-box {
        position: relative;
        display: block;
        text-align: right;
        padding-right: 110px;
    }

    .service-box-three .icon-box {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 60px;
        height: 60px;
        text-align: center;
        line-height: 58px;
        color: #fff !important;
        font-size: 30px;
        border-radius: 50%;
        background-image: linear-gradient(to right, #21d397 0%, #7450fe 100%);
        transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
    }

.what-we-do .outer .service-box-four {
    margin-bottom: 50px;
}

.service-box-four {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

    .service-box-four .inner-box {
        position: relative;
        display: block;
        text-align: left;
        padding-left: 110px;
    }

    .service-box-four .icon-box {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 60px;
        height: 60px;
        text-align: center;
        line-height: 58px;
        color: #fff !important;
        font-size: 30px;
        border-radius: 50%;
        background-image: linear-gradient(to right, #7450fe 0%, #21d397 100%);
        transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
    }

@media (min-width: 1200px) {
    .outer .right-column {
        margin-left: 33.3%;
    }
}

.service-box-three h3 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.24px;
    color: #091a36;
    margin-bottom: 14px;
}

.service-box-four h3 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.24px;
    color: #091a36;
    margin-bottom: 14px;
}

section.what-we-do.section-padding-100 {
    padding-top: 100px;
}

.regis h1 {
    color: #fff;
    font-size: 30px;
    text-align: center;
    font-family: var(--poppins-font);
    font-weight: 700;
}

    .regis h1 span {
        color: #e96429;
    }

.regis {
    background: #081f44;
    padding: 60px;
}

.form {
    text-align: center;
}

.hok p {
    color: #091a36;
    padding-top: 21px;
    text-align: center;
    font-size: 15px;
}

.riyaqas-form-wrap.mt-5.mt-lg-0 {
    padding-right: 15px;
    padding-left: 15px;
}

.custom-gutters-16 h3 {
    font-size: 13px;
    text-align: center;
}

.suk {
    border-radius: 36px 0 0 36px;
    padding: .375rem .75rem;
   
}

.suk1 {
    border-radius: 0px 36px 36px 0px;
    padding: .375rem .75rem;
}

.media-left {
    width: 54px;
    margin-left: 38%;
    margin-right: 38%;
    margin-bottom: 11px;
}

.single-service-2.style-three.text-center h5 {
    font-size: 17px;
}

.single-service-2.style-three.text-center ul li {
    list-style: none;
    padding-bottom: 12px;
    font-weight: 600;
    color: #e96429;
}

.care li {
    list-style: none;
    padding-bottom: 8px;
    display: flex;
}
.care i {
    padding-right: 5px;
}
.care h4, h6 {
    color: #091a36;
}

.single-service-2.style-three.text-center ul li a {
    list-style: none;
    padding-bottom: 12px;
    font-weight: 400;
}

.title-h {
    font-size: 35px !important;
    line-height: 45px;
    padding: 10px;
}

    .title-h span {
        color: #fff;
    }

.consulting p {
    margin-bottom: 29px;
}

.mig li {
    padding-bottom: 15px;
    list-style: none;
    padding-left: 0px;
    transition: all 0.3s ease-in;
    display: flex;
    text-align: initial;
}

.mig {
    padding-left: 0px !important;
 /*   padding-top: 50px;*/
}

    .mig i {
        padding-right: 10px;
    }
.shadowone {
    height:200px;
    width:80%;
    background:#ccc;
    position:absolute;
    border-radius:10px;
    bottom:0;
    left:10%;
    z-index:-1;

}
.shadowtwo {
    height:200px;
    width:60%;
    background:#ccc;
    position:absolute;
    border-radius:10px;
    bottom:0;
    left:10%;
    z-index:-2;

}
.single-service-left:hover {
    transform:translateY(-50px);
}
.single-service-left:hover .shadowone {
    transform: translateY(-25px);
}
p.server {
    font-size: 16px;
    font-weight: 600;
    color: #3a3a3ae0;
}

.manag {
    box-shadow: 2px 2px 8px #e4e7eb87;
    padding: 25px;
    margin-top: 80px;
    height: 290px;
    background: #f6f6f6;
    border: 1px solid #e8e8e8;
}
.manag1 {
    box-shadow: 2px 2px 8px #e4e7eb87;
    padding: 25px;
    margin-top: 80px;
    height: 350px;
    background: #f6f6f6;
    border: 1px solid #e8e8e8;
}
.manag1 img {
    width: 20%;
}

    .manag p {
        padding-top: 14px;
        padding-bottom: 14px;
    }

h4.title1 {
    margin-bottom: 15px;
}

.single-service ul li {
    padding-bottom: 10px;
    list-style: none;
    display: flex;
}
    .single-service ul li i {
        padding-right: 10px;
        color: #e96429;
    }
.price span {
    padding-left: 5px;
}

.order-lg-1 {
    padding-top: 35px;
}


.nik {
    padding-top: 50px;
}
.section-title.style-two.supo a {
    color: #e96429;
    margin-top: 0px;
}

.section-title.sup {
    margin-top: 60px;
}
.carousel {  
    margin-top: 3.5rem;
}

.carousel-caption {
    /*bottom: 0rem;*/
    z-index: 10;
}

    .carousel-caption.text-right h1 {
        color: #fff;
        font-size: 38px;
    }

.carousel-item {
    height: 19rem;
 
}

    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
    }

        .carousel-item > img::before {
            position: absolute;
            background-color: #000;
        }



.featurette-divider {
    margin: 5rem 0; 
}


.featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
}
@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
        color: #fff;
    }

    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}

.banner-head {
    color: #000 !important;
}

.section-title.style-two.consulting ul li {
    font-size: 16px;
    padding-bottom: 10px;
    display: flex;
}


.partluil ul li i {
    padding-right: 8px;
    padding-top: 3px;
}

.partluil {
    margin-top: 30px;
    color: #091a36;
}

    .partluil ul li {
        font-size: 15px !important;
        letter-spacing: 0.5px;
    }

    .partluil ul {
        padding-left: 0px;
    }

ul.parttpbann li {
    color: #fff;
    padding-left: 16px;
}

    ul.parttpbann li a {
        color: #fff;
    }

h2.pttpbantit {
    color: #fff !important;
}

.ptarcho {
    padding: 0px !important;
}

.about-provide-area {
    background-repeat: no-repeat;
}

.mana {
    margin-top: 82px;
    border-left: 1px solid #e96429;
    border-left-style: dotted;
    height: 440px;
}




#section {
    width: 500px;
    height: 400px;
    word-wrap: break-word;
}

.moretext {
    display: none;
}

h1.banner-head {
    color: #fff !important;
 
    padding: 20px 10px;
    font-size: 60px;
}
h2.banner-head {
    font-size: 24px;
    float: left;
    color: #fff !important;
}
    h1.banner-head span {
        color: #e96429;
    }

h1.remaneban {
    margin-bottom: 92px;
}

.consulting a {
    color: #ffffff;
}

.part {
    float: right;
}

h2.title b {
    font-size: 13px;
    color: #ea7b3d;
}

    h2.title b a {
        color: #ea7b3d;
        font-weight: 600;
        font-size: 15px;
    }

.section-title.text-center.w-100 {
    padding-top: 50px;
}

p.tizzt-mail {
    padding-top: 40px;
    color: #091a36;
}

i.fa.fa-whatsapp.my-float {
    font-size: 15px;
}

.service-area.sbtc-service-area.pd-top-120 {
    padding-top: 60px;
    margin-top: 60px;
    background-color: #fff;
}

.sidebar-contact {
    position: fixed;
    top: 51%;
    left: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 999;
}

    .sidebar-contact.active {
        left: 0;
    }

    .sidebar-contact input,
    .sidebar-contact textarea {
        width: 100%;
        height: 36px;
        padding: 5px;
        margin-bottom: 10px;
        box-sizing: border-box;
        border: 1px solid rgba(0,0,0,.5);
        outline: none;
    }

    .sidebar-contact h2 {
        margin: 0 0 20px;
        padding: 0;
    }

    .sidebar-contact textarea {
        height: 60px;
        resize: none;
    }

    .sidebar-contact input[type="submit"], input[type="button"] {
        background: #e96429;
        color: #fff;
        cursor: pointer;
        border: none;
        font-size: 18px;
    }

.toggle {
    position: absolute;
    height: 167px;
    width: 43px;
    text-align: center;
    cursor: pointer;
    background: #e96429;
    top: 40%;
    right: -36px;
    line-height: 48px;
    padding: 8px;
}
.sidebar-contact.active h2 {
    font-size: 25px;
    color: #091a36;
    text-align: center;
}
    .toggle:before {
       margin-left: -79px;
    content: 'Request a Call Back';
  
    font-size: 17px;
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    -webkit-transform: translate(1.1em,0) rotate(
270deg
);
    -moz-transform: translate(1.1em,0) rotate(270deg);
    -o-transform: translate(1.1em,0) rotate(270deg);
    
  
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
  
    -ms-transform: none;
    -ms-transform-origin: none;  
    margin-top: 52px;
    }



.toggle.active:before {
   /* content: '\f00d';*/
}

@media(max-width:768px) {
    .sidebar-contact {
        width: 100%;
        height: 100%;
        left: -100%;
        display: none;
    }

        .sidebar-contact .toggle {
            top: 50%;
            transform: translateY(-50%);
            transition: 0.5s;
        }

        .sidebar-contact.active .toggle {
            top: 0;
            right: 0;
            transform: translateY(0);
        }

    .scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .content {
        padding: 50px 50px;
    }
}
.toggle p {
    transform: rotate( 359deg );
}
.requestcallback {
    color: darkred;
    position: relative;
    top: 0;
    left: 0;
}

.requestcallback-btn {
    pointer-events: none;
    opacity: 0.3
}



    .container .slider {
        animation: slidein 30s linear infinite;
        white-space: nowrap;
    }

        .container .slider .logos {
            width: 100%;
            display: inline-block;
            margin: 0px 0;
        }

            .container .slider .logos .fab {
                width: calc(100% / 5);
                animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
            }

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.feedback {
    background-color:#091a36;
    color: white;
    padding: 14px 15px 13px 15px;
    border-radius: 50%;
    border-color:#091a36;
}

#mybutton {
    position: fixed;
    bottom: 50px;
    right: 10px;
    display:none;
}

.single-service.style-three.text-center h5 {
    font-size: 17px;
}

.cont {
    margin-top: 100px;
}

.title b a {
    color: #ea7b3d;
    font-weight: 600;
    font-size: 15px;
}
.title {
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #091a36;
}
   .title span {
        color: #e96429;
    }
.cloud p {
    color: #000;
    opacity: 1;
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    /* margin-top: 18px; */
    margin-bottom: 0;
    font-weight: 400;
    margin-bottom: 10px;
    float: left;
}


ul.v-slides {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.v-slide {
    font-size: 24px;
    line-height: 50px;
    color: #4bb3fd;
}

.v-wrap, .v-slide {
    box-sizing: border-box;
    width: 100%;
    height: 200px;
}


.v-wrap {
    background: #ffd7d1;
    border: 1px solid #9c1e0b;
    overflow: hidden; 
}


.v-move {
    position: relative;
    bottom: 0%;
}


.v-slide {
    padding: 10px;
}

/* SLIDE ANIMATION MAGIC */
@keyframes slidev {
   
    0% {
        bottom: 0;
    }

    15% {
        bottom: 0;
    }

    20% {
        bottom: 100%;
    }

    35% {
        bottom: 100%;
    }

    40% {
        bottom: 200%;
    }

    55% {
        bottom: 200%;
    }

    60% {
        bottom: 300%;
    }

    75% {
        bottom: 300%;
    }

    80% {
        bottom: 400%;
    }

    95% {
        bottom: 400%;
    }

    100% {
        bottom: 0;
    }
}

.v-move {
    animation: slidev linear 25s infinite;
}

    .v-move:hover {
        animation-play-state: paused;
    }
.form-group h2 {
    color: #091a36;
    padding-top: 21px;
    font-size: 15px;
}
.inq {
    padding-left: 100px;
    padding-right: 100px;
}

.single-pricing h2 {
    text-align: center;
    font-size: 32px;
/*    color: #e96429;*/
   
}
.sos {
    border: none;
}
.home {
    margin-bottom: -36px;
    margin-top: 30px;
}
.home a {
    margin-left: 17px;
}

.single-pricing a {
    color: #091a36;
    font-size: 14px;
}
/*client logo*/
.homes {
    border-right: 1px solid #ccc;
    padding-right: 20px;
    text-align: justify;
}
.homew {
    padding-bottom: 50px !important;
    padding-left: 50px;
   padding-top: 50px;
}

.logo-client img {
    filter: grayscale(100%);
}

.logo-client img:hover {
        filter: grayscale(0);
    }
.logo-client {
    padding: 10px;
    text-align: center;
}

.jym h5 {
    font-size: 17px;
    height: 50px;
    color: #e96429;
}

.home-ab {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}


    section {
    color: #7a90ff;
    padding: 2em 0 8em;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.pricing {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 3em;
}

.pricing-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 330px;
    flex: 0 1 330px;
}

.pricing-action {
    color: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

    .pricing-action:focus {
        outline: none;
    }

.pricing-feature-list {
    text-align: left;
}

.pricing-palden .pricing-item {
   
    cursor: default;
    color: #84697c;
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
    border-radius: 20px 20px 10px 10px;
    margin: 1em;
}

@media screen and (min-width: 66.25em) {
    .pricing-palden .pricing-item {
        margin: 1em -0.5em;
        height: 395px;
    }

    .pricing-palden .pricing__item--featured {
        margin: 0;
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
        height: 433px;
    }
}

.pricing-palden .pricing-deco {
    border-radius: 10px 10px 0 0;
    background: #28a745;
    padding: 5em 0 10em;
    position: relative;
}
h2.nk1 {
    font-size: 26px;
    font-weight: 600;
}
.pricing-palden .pricing-deco-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
}

.pricing-palden .pricing-title {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.pricing-palden .deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
    font-size: 2.5em;
}

.pricing-palden .pricing-price {
    font-size: 5em;
    font-weight: bold;
    padding: 0;
    color: #fff;
    margin: 0 0 0.25em 0;
    line-height: 0.75;
}

.pricing-palden .pricing-currency {
    font-size: 20px;
    vertical-align: top;
}

.pricing-palden .pricing-period {
    font-size: 0.15em;
    padding: 0 0 0 0.5em;
   
}

.pricing-palden .pricing__sentence {
    font-weight: bold;
    margin: 0 0 1em 0;
    padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list { 
   
    list-style: none;
    text-align: center;
    margin-top: -70px;
    z-index: 9;
}

.pricing-palden .pricing-feature {
    padding: 1em 0;
}

.pricing-palden .pricing-action {
    font-weight: bold;
    margin: auto 3em 2em 3em;
    padding: 1em 2em;
    color: #fff;
    border-radius: 30px;
   /* background: linear-gradient(135deg,#a93bfe,#584efd);*/
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

    .pricing-palden .pricing-action:hover,
    .pricing-palden .pricing-action:focus {
        background: linear-gradient(135deg,#fd7d57,#f55d59);
    }

.pricing-palden .pricing-item--featured .pricing-deco {
    padding: 5em 0 8.885em 0;
}
.title-new {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #ffffff;
}

/*Phone icon start*/
.list-container {
    position: relative;
}

    .list-container.active .more-button-list {
        opacity: 1;
        transform: scale(1);
    }

    .list-container.active .more-button-list-item {
        animation: fadeInItem 0.6s 0.2s forwards;
    }

        .list-container.active .more-button-list-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        .list-container.active .more-button-list-item:nth-child(3) {
            animation-delay: 0.6s;
        }

        .list-container.active .more-button-list-item:nth-child(4) {
            animation-delay: 0.8s;
        }

    .list-container.active .more-button {
        animation: onePulse 0.6s forwards linear;
    }

    .list-container.active .menu-icon-wrapper {
        transform: rotate(-45deg);
    }

    .list-container.active .menu-icon-line.first {
        transform: rotate(-90deg) translateX(1px);
    }

    .list-container.active .menu-icon-line.last {
        transform: rotate(-90deg) translateX(-1px);
    }

.more-button {
    background-color: #08c733;
    box-shadow: 0px 0px 0px 4px #08d73742;
    border-radius: 50%;
    width: 40px;
    height: 50px;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

    .more-button:hover, .more-button:focus {
        box-shadow: 0px 0px 0px 8px #28a7454a;
        background-color: #0ace37;
    }

    .more-button:focus {
        outline: 0;
    }

.more-button-list {
    background-color: #fff;
    border-radius: 8px;
    list-style-type: none;
    width: 140px;
    /*height: 170px;*/
    box-shadow: 0px 0px 4px 4px rgba(150, 157, 249, 0.16);
    padding: 0;
    padding: 6px;
    position: absolute;
    right: 24px;
    bottom: 0;
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: all 0.3s ease 0.1s;
}

    .more-button-list li {
        opacity: 0;
    }

.more-button-list-item {
    display: flex;
    align-items: center;
    color: #1c3991;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in;
    transform: translatex(-10px);
}

    .more-button-list-item:hover {
        color: #5c67ff;
    }

    .more-button-list-item:after {
        content: '';
        position: absolute;
        height: 1px;
        width: calc(100% - 24px);
        left: 12px;
        bottom: 0;
        background-color: rgba(132, 160, 244, 0.1);
    }

    .more-button-list-item:last-child:after {
        display: none;
    }

    .more-button-list-item svg {
        width: 18px;
        height: 18px;
    }

    .more-button-list-item span {
        display: inline-block;
        line-height: 20px;
        font-size: 14px;
        margin-left: 8px;
    }

@keyframes onePulse {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(92, 103, 255, 0.3);
    }

    50% {
        box-shadow: 0px 0px 0px 12px rgba(92, 103, 255, 0.1);
    }

    100% {
        box-shadow: 0px 0px 0px 4px rgba(92, 103, 255, 0.3);
    }
}

@keyframes fadeInItem {
    100% {
        transform: translatex(0px);
        opacity: 1;
    }
}

.socials {
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
}

.social-link {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    margin-right: 12px;
}

.menu-icon-wrapper {
    border-radius: 2px;
    width: 52px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
}

.menu-icon-line {
    background-color: #fff;
    border-radius: 2px;
    width: 100%;
    height: 2px;
}

    .menu-icon-line.half {
        width: 50%;
    }

    .menu-icon-line.first {
        transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
        transform-origin: right;
    }

    .menu-icon-line.last {
        align-self: flex-end;
        transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
        transform-origin: left;
    }

.sba-featute-area {
    background: #eef2f9;
    padding-top: 50px;
    padding-bottom: 50px;
}

.sbmc-tips-section.bg-img-right-area.mg-top-170 {
    padding-top: 50px;
    padding-bottom: 50px;
}


.single-case-studies.style-two {
    box-shadow: none;
    border: 1px solid #d8d8d8;
    height: 690px;
}

.single-case-studies .thumb {
    overflow: hidden;
    background: #f3f7fc;
    padding: 50px;
}

.riyaqas-check-list img {
    margin-right: 10px;
    width: 13%;
}

.navbar .navbar-brand {
    color: #fff !important;
    font-size: 30px;
    position: relative;
    margin-top: -28px;
}

.navbar .navbar-nav li a {
    color: #fff !important;
    font-size: 14px;
}
.riyaqas-list-3 li {
    list-style: none;
    position: relative;
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #212529;
    padding-left: 34px;
    margin-bottom: 5px;
}
    .riyaqas-list-3 li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        border: 3px solid #e96429;
        background: #fff;
    }

.single-service {

    padding: 96px 40px 35px 40px;
    margin-bottom: 16px;
    transition: all 0.3s ease-in;
/*    margin-top: 25px;*/
}

div#features {
    margin-left: 103px !important;
}
div#\31 {
    margin-left: 103px !important;
}

.shape {
    position: absolute;
}
.shape.shape1 {
    animation: 4s linear 3s infinite alternate slidein;
    margin-top: 50px;
}
    .shape.shape2 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: -31px;
        margin-left: 145px;
    }
    .shape.shape3 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: 20px;
        margin-left: 300px;
    }
    .shape.shape4 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: -31px;
        margin-left: 460px;
    }

    .shape.shape5 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: 35px;
        margin-left: 647px;
    }
    .shape.shape6 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: -48px;
        margin-left: 866px;
    } 
    .shape.shape7 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: 50px;
        margin-left: 1000px;
    } 
    .shape.shape8 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: -50px;
        margin-left: 1150px;
    }
    .shape.shape9 {
        animation: 4s linear 3s infinite alternate slidein;
        margin-top: 40px;
        margin-left: 1250px;
    }


.thumb.crown img {
    background: #091a36;
    border-radius: 50%;
    padding: 5px;
    
}

.sbtc-goal-counter-area {
    position: relative;
}
    .sbtc-goal-counter-area .thumb {
        position: relative;
    }
    .sbtc-goal-counter-area .goal-counter {
        background: #edf1f8;
        padding: 78px 76px 110px;
        position: absolute;
        right: -37%;
        top: 18%;
        z-index: 1;
        width: 674px;
   /*     max-height: 454px;*/
    }

ul.riyaqas-list-3.mb-0 {
    margin-left: -38px;
}
.rating:before {
    position: absolute;
    content: '';
    bottom: 1px;
    left: 13px;
    width: 30px;
    height: 2px;
    background-color: #091a36;
}
.rating:after {
    position: absolute;
    content: '';
    bottom: 1px;
    right: 13px;
    width: 30px;
    height: 2px;
    background-color: #091a36;
}
.rating {
    position: absolute;
    /* top: 80px;*/
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #e96429;
}
.rating1:before {
    position: absolute;
    content: '';
    bottom: 1px;
    left: 13px;
    width: 30px;
    height: 2px;
    background-color: #091a36;
}
.rating1:after {
    position: absolute;
    content: '';
    bottom: 1px;
    right: 13px;
    width: 30px;
    height: 2px;
    background-color: #091a36;
}
.rating1 {
    position: absolute;
    /* top: 80px;*/
    left: 12%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #e96429;
}

.servers {
    border: 1px solid #ebebeb;
    padding: 10px;
    background: #f4f7fb;
    border-radius: 5px;
    box-shadow: 0px 1px 8px #e7e7e76b;
}

.media-body h6 {
    text-align: center;
    font-size: 18px;
}

.remo {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title.text-center.ab {
    margin-bottom: 85px;
}
.support {
    padding-bottom: 60px;
    padding-top: 60px;
}



#sky {
    overflow: hidden;
    position: relative;
    background: #fff4ef;
   /* background: -webkit-linear-gradient(top, #edf1f8 0%, #fff 100%);
    background: -linear-gradient(top, #edf1f8 0%, #fff 100%);
    background: -moz-linear-gradient(top, #edf1f8 0%, #fff 100%);*/
    padding-top: 50px;
    padding-bottom: 50px;
}

.cloud {
    position: absolute;
    background-image: url('../../unnamed.png');
   
    background-repeat: no-repeat;
    width: 176px;
    height: 114px;
}

#cloud1 {
    top: 40px;
    left: 400px;
    -webkit-animation: movingclouds 20s linear infinite;
    -moz-animation: movingclouds 20s linear infinite;
    -o-animation: movingclouds 20s linear infinite;
}

#cloud2 {
    top: 10px;
    left: 600px;
    -webkit-animation: movingclouds 25s linear infinite;
    -moz-animation: movingclouds 25s linear infinite;
    -o-animation: movingclouds 25s linear infinite;
}

#cloud3 {
    top: 100px;
    left: 100px;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.9;
    -webkit-animation: movingclouds 18s linear infinite;
    -moz-animation: movingclouds 18s linear infinite;
    -o-animation: movingclouds 18s linear infinite;
}

#cloud4 {
    top: -20px;
    left: 40px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
    -webkit-animation: movingclouds 20s linear infinite;
    -moz-animation: movingclouds 20s linear infinite;
    -o-animation: movingclouds 20s linear infinite;
}

#cloud5 {
    top: 100px;
    left: 500px;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0.7;
    -webkit-animation: movingclouds 25s linear infinite;
    -moz-animation: movingclouds 25s linear infinite;
    -o-animation: movingclouds 25s linear infinite;
}

#cloud6 {
    top: 20px;
    left: 200px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.5;
    -webkit-animation: movingclouds 27s linear infinite;
    -moz-animation: movingclouds 27s linear infinite;
    -o-animation: movingclouds 27s linear infinite;
}

#cloud7 {
    top: 92px;
    left: 700px;
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0.4;
    -webkit-animation: movingclouds 29s linear infinite;
    -moz-animation: movingclouds 29s linear infinite;
    -o-animation: movingclouds 29s linear infinite;
}



@keyframes movingclouds {
    0% {
        margin-left: 100%;
    }

    100% {
        margin-left: -150%;
    }
}

@-webkit-keyframes movingclouds {
    0% {
        margin-left: 100%;
    }

    100% {
        margin-left: -150%;
    }
}

@-moz-keyframes movingclouds {
    0% {
        margin-left: 100%;
    }

    100% {
        margin-left: -150%;
    }
}

@keyframes movingplane {
    0% {
        margin-left: 100%;
        top: 300px;
    }

    29% {
        margin-left: 50%;
        top: 50px;
        -webkit-transform: rotate(20deg);
        -moz-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    31% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    60% {
        margin-left: 0%;
        top 300px;
    }

    100% {
        margin-left: -100%;
        top: 300px;
    }
}

@-webkit-keyframes movingplane {
    0% {
        margin-left: 100%;
        top: 300px;
    }

    29% {
        margin-left: 50%;
        top: 50px;
        -webkit-transform: rotate(20deg);
        -moz-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    31% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    60% {
        margin-left: 0%;
        top:300px;
    }

    100% {
        margin-left: -100%;
        top: 300px;
    }
}

@-moz-keyframes movingplane {
    0% {
        margin-left: 100%;
        top: 300px;
    }

    29% {
        margin-left: 50%;
        top: 50px;
        -webkit-transform: rotate(20deg);
        -moz-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    31% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    60% {
        margin-left: 0%;
        top : 300px;
    }

    100% {
        margin-left: -100%;
        top: 300px;
    }
}
.nav-item i {
    background: #000;
    padding: 10px;
    border-radius: 50%;
    margin-left: -42px;
    position: absolute;
    margin-top: -7px;
    color: #fff;
}

.ser {
    background:none !important;
    box-shadow:none !important;
}

.mj {
    margin-bottom: 0px !important;
    padding: 0px !important;
    border-right: 1px solid #fff;
}
.mj a {
   
    border: none !important;
}
/*add stop cart start*/
.page-wrapper {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-wrapper button {
        padding: 10px;
        border: none;
        background: #4285f4;
        position: relative;
        outline: none;
        border-radius: 5px;
        color: #ffffff;
        font-size: 13px;
    }

        .page-wrapper button .cart-item {
            position: absolute;
            height: 24px;
            width: 24px;
            top: -10px;
            right: -10px;
        }

            .page-wrapper button .cart-item:before {
                content: '1';
                display: block;
                line-height: 24px;
                height: 24px;
                width: 24px;
                font-size: 12px;
                font-weight: 600;
                background: #091a36;
                color: white;
                border-radius: 20px;
                text-align: center;
            }

        .page-wrapper button.sendtocart .cart-item {
            display: block;
            animation: xAxis 1s forwards cubic-bezier(1, 0.44, 0.84, 0.165);
        }

            .page-wrapper button.sendtocart .cart-item:before {
                animation: yAxis 1s alternate forwards cubic-bezier(0.165, 0.84, 0.44, 1);
            }

.cart {
  /*  position: fixed;*/
  /*  top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;*/
}
.media {
    padding-bottom: 25px;
}
    .cart i {
        font-size: 25px;
        color: white;
    }

    .cart:before {
        content: attr(data-totalitems);
        font-size: 10px;
        font-weight: 600;
        position: absolute;
        top: 0px;
        right: 18px;
        background: #e96429;
        line-height: 14px;
        padding: 3px 6px;
        height: 19px;
        color: white;
        text-align: center;
        border-radius: 24px;
    }

    .cart.shake {
        animation: shakeCart 0.4s ease-in-out forwards;
    }

@keyframes xAxis {
    100% {
        transform: translateX(calc(50vw - 105px));
    }
}

@keyframes yAxis {
    100% {
        transform: translateY(calc(-50vh + 75px));
    }
}

@keyframes shakeCart {
    25% {
        transform: translateX(6px);
    }

    50% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}
input,
textarea {
    border: 1px solid #eeeeee;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 10px;
}

    input[type="button"] {
        -webkit-appearance: button;
        cursor: pointer;
    }

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

.input-group {
    clear: both;
    margin: 15px 0;
    position: relative;
    flex-wrap: nowrap;
}

    .input-group input[type='button'] {
        background-color: #eeeeee;
        min-width: 38px;
        width: auto;
        transition: all 300ms ease;
    }

    .input-group .button-minus,
    .input-group .button-plus {
        font-weight: bold;
        height: 38px;
        padding: 0;
        width: 38px;
        position: relative;
    }

    .input-group .quantity-field {
        position: relative;
        height: 38px;
        left: -6px;
        text-align: center;
        width: 62px;
        display: inline-block;
        font-size: 13px;
        margin: 0 0 5px;
        resize: vertical;
    }

.button-plus {
    left: -13px;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}


/*add stop cart End*/
/*.price li {
    float: left;
}*/

select {
    border: none;
}
.quantity input {
    height: 52px;
    width: 50px;
    border: 0;
    background: #F0F0F0;
    font-size: 20px;
    letter-spacing: 0.2px;
    color: #5B6880;
    font-family: var(--raleway-font);
    text-align: center;
    margin: 0 52px;
}

.value-button {
    display: inline-block;
    border-radius: 5px;
    margin: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    padding: 8px 0;
    font-weight: 600;
    background: #eee;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .value-button:hover {
        cursor: pointer;
    }

form #decrease {
    margin-right: -4px;
    border-radius: 8px 0 0 8px;
}

form #increase {
    margin-left: -4px;
    border-radius: 0 8px 8px 0;
}

form #input-wrap {
    margin: 0px;
    padding: 0px;
}

input#number {
    text-align: center;
    border: none;
    margin: 4px;
    width: 70px;
    height: 40px;
    background: #eee;
    border-radius: 5px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.tier1 {
    width: 100%;
    text-align: center;
}
.form-control {
    width:100%;
}
.care {
    border: 1px solid #ccc;
    padding: 20px;
   
}

.card-body ul li {
    list-style: none;
    display: flex;
}
i.fa.fa-arrow-right {
    padding-right: 7px;
    padding-top: 7px;
}
button.btn.btn-link i {
    float: left !important;
    padding-top: 8px;
    padding-right: 10px;
    color: #e96429;
}