﻿.breadcrumb {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    padding: 0px;
    margin: 0px;
}

    .breadcrumb li {
        text-transform: capitalize;
    }

        .breadcrumb li a {
            color: var(--light-white);
            text-shadow: var(--primary-tshadow);
        }

            .breadcrumb li a:hover {
                color: var(--primary-light);
                text-decoration: underline;
            }

    .breadcrumb .active {
        color: var(--primary-light);
        text-shadow: var(--primary-tshadow);
    }

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-light);
    text-shadow: var(--primary-tshadow);
}

.pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 18px 25px;
    margin-bottom: 30px;
    border-radius: var(--card-radius);
    background: var(--light-white);
    border: 1px solid var(--border);
}

.page-item {
    margin: 0px 6px;
}

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        border-radius: var(--icon-radius);
    }

    .page-item .active {
        color: var(--white);
        background: var(--primary);
    }

.page-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: var(--icon-radius);
    font-weight: 500;
    border: none;
    padding: 0px;
    color: var(--body);
    background: var(--white);
}

    .page-link:hover {
        color: var(--white);
        background: var(--primary);
    }

    .page-link:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

@media (max-width: 991px) {
    .page-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.blog-card {
    background: var(--light-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

    .blog-card:hover {
        background: var(--white);
        -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    }

        .blog-card:hover .blog-img img {
            -webkit-transform: scale(1.08) rotate(-1deg);
            transform: scale(1.08) rotate(-1deg);
        }

.blog-img {
    position: relative;
    overflow: hidden;
    z-index: -1;
    border-top-right-radius: var(--card-radius);
    border-top-left-radius: var(--card-radius);
}

    .blog-img img {
        width: 100%;
        border-top-right-radius: var(--card-radius);
        border-top-left-radius: var(--card-radius);
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }

.blog-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    padding: 15px 15px;
    border-top-right-radius: var(--card-radius);
    border-top-left-radius: var(--card-radius);
}

    .blog-overlay span {
        color: var(--white);
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 13px;
        line-height: 18px;
        letter-spacing: 0.3px;
        text-transform: capitalize;
    }

.safety {
    background: #dc3545;
}

.marketing {
    background: #28a745;
}

.advertise {
    background: #982fd5;
}

.security {
    background: #e69721;
}

.blog-content {
    margin-top: -30px;
    padding: 0px 20px 20px;
}

.blog-avatar {
    margin-bottom: 15px;
}

    .blog-avatar img {
        width: 60px;
        border-radius: var(--card-radius);
        border: 3px solid var(--white);
    }

.blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .blog-meta li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .blog-meta li i {
            font-size: 15px;
            margin-left: 8px;
            color: var(--primary);
            margin-top: -1px;
        }

        .blog-meta li p {
            font-size: 15px;
            line-height: 15px;
            color: var(--heading);
            text-transform: capitalize;
        }

            .blog-meta li p a {
                color: var(--heading);
            }

.blog-text {
    margin-bottom: 27px;
}

    .blog-text h4 {
        font-weight: 600;
        margin-bottom: 10px;
    }

        .blog-text h4 a {
            color: var(--gray);
            transition: all linear 0.3s;
            -webkit-transition: all linear 0.3s;
            -moz-transition: all linear 0.3s;
            -ms-transition: all linear 0.3s;
            -o-transition: all linear 0.3s;
        }

            .blog-text h4 a:hover {
                color: var(--primary);
            }

.blog-read {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

    .blog-read:hover {
        color: var(--primary);
    }

        .blog-read:hover i {
            margin-right: 8px;
        }

    .blog-read i {
        margin-right: 3px;
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }

.blog-sidebar {
    padding: 25px 15px;
    margin-bottom: 30px;
    background: var(--light-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
}

.blog-sidebar-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

    .blog-sidebar-title h5 {
        font-weight: 700;
        text-transform: uppercase;
    }

.blog-src {
    position: relative;
}

    .blog-src input {
        width: 100%;
        height: 52px;
        border-radius: 50px;
        padding: 0px 20px 0px 60px;
        border: 2px solid var(--primary);
    }

    .blog-src button {
        border: none;
        outline: none;
        background: none;
        position: absolute;
        top: 6px;
        left: 6px;
    }

        .blog-src button i {
            width: 40px;
            height: 40px;
            font-size: 14px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            color: var(--white);
            background: var(--primary);
            text-shadow: -2px 3px 8px rgba(0, 0, 0, 0.1);
        }

.blog-suggest li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

    .blog-suggest li:last-child {
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-bottom: none;
    }

.suggest-img {
    margin-left: 15px;
}

    .suggest-img a img {
        width: 100px;
        border-radius: 8px;
    }

.suggest-title {
    margin-bottom: 20px;
}

    .suggest-title h3 {
        font-size: 13px;
        line-height: 26px;
    }

    .suggest-title h4 a {
        color: var(--heading);
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }

        .suggest-title h4 a:hover {
            color: var(--primary);
        }

.suggest-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.suggest-date {
    margin-left: 30px;
}

.suggest-date,
.suggest-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

    .suggest-date i,
    .suggest-comment i {
        font-size: 16px;
        margin-left: 8px;
        margin-top: -1px;
        color: var(--primary);
    }

    .suggest-date p,
    .suggest-comment p {
        font-size: 15px;
        line-height: 18px;
        text-transform: capitalize;
    }

.blog-cate {
    display: block;
}

    .blog-cate li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

        .blog-cate li:hover h5 a {
            color: var(--primary);
        }

        .blog-cate li:hover p {
            color: var(--white);
            background: var(--primary);
        }

        .blog-cate li h5 {
            font-weight: 500;
        }

            .blog-cate li h5 a {
                color: var(--body);
                transition: all linear 0.3s;
                -webkit-transition: all linear 0.3s;
                -moz-transition: all linear 0.3s;
                -ms-transition: all linear 0.3s;
                -o-transition: all linear 0.3s;
            }

                .blog-cate li h5 a:hover {
                    text-decoration: underline;
                }

        .blog-cate li p {
            font-size: 14px;
            font-weight: 500;
            width: 35px;
            height: 35px;
            line-height: 37px;
            text-align: center;
            border-radius: 50%;
            color: var(--primary);
            background: var(--white);
            text-shadow: -2px 3px 8px rgba(0, 0, 0, 0.1);
        }

.blog-tag li {
    display: inline-block;
    margin: 0px 0px 12px 8px;
}

    .blog-tag li a {
        color: var(--body);
        font-size: 14px;
        padding: 2px 15px;
        border-radius: 30px;
        text-transform: capitalize;
        border: 1px solid var(--border);
    }

        .blog-tag li a:hover {
            color: var(--white);
            background: var(--primary);
        }

.blog-icon li {
    display: inline-block;
    margin-left: 12px;
}

    .blog-icon li a i {
        width: 37px;
        height: 37px;
        font-size: 14px;
        line-height: 38px;
        text-align: center;
        border-radius: 50%;
        color: var(--primary);
        background: var(--white);
        text-shadow: -2px 3px 8px rgba(0, 0, 0, 0.1);
    }

        .blog-icon li a i:hover {
            color: var(--white);
            background: var(--primary);
        }

@media (max-width: 400px) {
    .suggest-meta {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .suggest-date {
        margin-bottom: 12px;
    }

    .blog-icon li {
        margin: 6px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .suggest-meta {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .suggest-date {
        margin-bottom: 12px;
    }

    .blog-icon li {
        margin: 6px;
    }
}

.single-banner {
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

    .single-banner::before {
        position: absolute;
        content: "";
        top: 0px;
        right: 0px;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, right top, right bottom, from(rgba(4, 53, 138, 0.65)), to(rgba(5, 44, 112, 0.65)));
        background: linear-gradient(rgba(4, 53, 138, 0.65), rgba(5, 44, 112, 0.65));
        z-index: -1;
    }

.single-content {
    text-align: center;
}

    .single-content h2 {
        color: var(--white);
        text-transform: uppercase;
        margin-bottom: 13px;
    }

    .single-content .breadcrumb {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

@media (max-width: 767px) {
    .single-banner {
        padding: 70px 0px;
    }
}

.blog-part {
    padding: 100px 0px 70px;
}

.blog-card {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .content-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media (max-width: 767px) {
    .blog-part {
        padding: 60px 0px 30px;
    }
}

@media (min-width: 370px) and (max-width: 575px) {
    .blog-card {
        width: 340px;
        margin: 0px auto 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-part {
        padding: 80px 0px 50px;
    }
}

/*منوی*/

.header {
    position: relative;
}
/* Topbar */
.topbar {
    background-color: #2e2751;
    padding: 13px 0;
}

.top-contact {
    padding-top: 0;
}

.topbar .single-contact {
    display: inline-block;
    margin-left: 25px;
    color: #ccc;
    cursor: pointer;
}

    .topbar .single-contact:last-child {
        margin-left: 0px;
    }

    .topbar .single-contact,
    .topbar .single-contact a {
        color: #ccc;
        font-weight: normal;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        font-size: 14px;
    }

        .topbar .single-contact i {
            color: #f3a712;
            margin-left: 10px;
            font-size: 18px;
            position: relative;
            top: 2px;
        }

        .topbar .single-contact:hover,
        .topbar .single-contact a:hover {
            color: #fff;
        }
/* Top right */
.topbar-right {
    position: relative;
    
}

    .topbar-right .button {
        float: right;
        left: 0;
    }

        .topbar-right .button .bizwheel-btn {
            height: auto;
            text-transform: initial;
            padding: 8px 15px;
            line-height: initial;
            background: #fff;
            font-size: 14px;
            color: #f3a712;
            border: 1px solid transparent;
        }

            .topbar-right .button .bizwheel-btn:hover {
                background: transparent;
                border-color: #fff;
                color: #fff;
            }
/* Social Icons */
.topbar .social-icons {
    float: left;
    margin-left: 115px;
    padding-top: 0;
}

    .topbar .social-icons li {
        display: inline-block;
        margin-left: 10px;
    }

        .topbar .social-icons li:last-child {
            margin: 0;
        }

        .topbar .social-icons li a {
            color: #ccc;
        }

            .topbar .social-icons li a:hover {
                color: #F3A712;
            }

/* Right Bar */
.right-bar {
    display: block ruby;
    position: absolute;
    left: 0;
    height: 50.5px;
    z-index: 3333;
    top: -13px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .right-bar .right-nav {
        z-index: 333;
        position: relative;
        line-height: initial;
        padding-top: 10px;
    }

    .right-bar:after {
        content: '';
        position: absolute;
        top: 0;
        right: -21px;
        width: 244px;
        height: 101%;
        transform: skew(26deg);
        background: #f3a712;
        z-index: -1;
    }

    .right-bar ul li {
        display: inline-block;
        margin-left: 1px;
    }

        .right-bar ul li:last-child {
            margin: 0;
        }

    .right-bar .right-nav li a {
        color: #fff;
        text-align: center;
        display: block;
        cursor: pointer;
        border: 1px solid #fff;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        border-radius: 100%;
    }

        .right-bar .right-nav li a:hover {
            color: #F3A712;
            border-color: transparent;
            background: #fff;
        }


/* Middle header */
.header-inner {
    padding: 20px 0;
    background: #333;
}

.middle-header {
    background: #fff;
    position: relative;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
/* Logo */
.header .logo {
    z-index: 33;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -moz-box-shadow: inherit;
}

.header .img-logo {
    margin-top: 22px;
}

.header .text-logo {
    margin-top: 30px;
}

    .header .text-logo a,
    .header .img-logo a {
        font-size: 26px;
        font-weight: 600;
        display: block;
        z-index: 9999;
        position: relative;
    }

.header .menu-area {
    position: relative;
}

.header .navbar {
    padding: 0;
}
/* Main Menu */
.header .nav-inner {
    float: right;
    margin-left: 160px;
    text-align: left;
}

.header .nav li {
    margin-left: 30px;
    position: relative;
    float: none;
    display: inline-block;
}

    .header .nav li:last-child {
        margin: 0;
    }

    .header .nav li a {
        text-transform: capitalize;
        position: relative;
        display: block;
        padding: 30px 0;
        color: #2E2751;
        font-weight: 600;
    }

    .header .nav li.active a,
    .header .nav li:hover a {
        color: #179E66;
    }

    .header .nav li a::before {
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
        background: #179E66;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .header .nav li.active a::before,
    .header .nav li:hover a::before {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
        width: 50%;
    }

.navbar-expand-lg .navbar-collapse {
    display: block !important;
}

.header .nav li a i {
    margin-right: 6px;
    font-size: 10px;
}

.header .nav li.icon-active a::after {
    content: "\f107";
    position: relative;
    font-family: 'Font Awesome 5 Free';
    padding-right: 6px;
}

.header .nav li .sub-menu a::after,
.header .nav li.icon-active .sub-menu li.icon-active .sub-menu a::after,
.header .nav li.icon-active .sub-menu li.icon-active .sub-menu li.icon-active .sub-menu a::after {
    display: none;
}
 
/* Dropdown Menu */
.header .nav li .sub-menu {
    background: #fff;
    width: 220px;
    text-align: right;
    position: absolute;
    top: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    padding: 20px;
    right: -32px;
    margin: 0;
    -webkit-box-shadow: -1px 4px 12px rgba(51, 51, 51, 0.25);
    -moz-box-shadow: -1px 4px 12px rgba(51, 51, 51, 0.25);
    box-shadow: -1px 4px 12px rgba(51, 51, 51, 0.25);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header .nav li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.header .nav li .sub-menu li {
    float: none;
    margin: 0;
    display: block;
}

    .header .nav li .sub-menu li:last-child {
        border: none;
    }

    .header .nav li .sub-menu li a {
        padding: 6px 15px;
        color: #666;
        display: block;
        font-size: 14px;
        font-weight: normal;
        text-transform: capitalize;
        background: transparent;
    }

        .header .nav li .sub-menu li a:before {
            display: none;
        }

    .header .nav li .sub-menu li:last-child a {
        border-bottom: 0px;
    }

    .header .nav li .sub-menu li:hover a {
        color: #fff;
        background: #179E66;
    }

    .header .nav li .sub-menu li a:hover {
        border-color: transparent;
    }

    .header .nav li .sub-menu li i {
        float: left;
        margin-top: 8px;
        font-size: 10px;
        z-index: 5;
    }

    .header .nav li .sub-menu li .sub-menu {
        top: 0;
        right: initial;
        left: -122%;
        -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 3px 5px #3333334d;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        opacity: 0;
        visibility: hidden;
        padding: 10px;
    }

    .header .nav li .sub-menu li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .header .nav li .sub-menu li .sub-menu li a {
        padding: 8px 15px;
        color: #666;
        display: block;
        font-weight: normal;
        text-transform: capitalize;
        background: transparent;
    }

    .header .nav li .sub-menu li:hover .sub-menu li a {
        background: transparent;
    }

    .header .nav li .sub-menu li .sub-menu li a:hover {
        color: #fff;
        background: #179E66;
    }

.header .nav li .sub-menu .sub-menu li:last-child a {
    border-bottom: 0px solid;
}

.header .nav li .sub-menu li .sub-menu .sub-menu {
    transform: scaleY(0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}

.header .nav li .sub-menu li .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.header .right-button {
    position: absolute;
    left: 0;
    top: 21px;
}

    .header .right-button .bizwheel-btn {
        background: transparent;
        border: 1px solid #ccc;
        color: #2E2751;
        padding: 8px 20px;
        font-size: 14px;
    }

        .header .right-button .bizwheel-btn:hover {
            background: #179E66;
            color: #fff;
            border-color: transparent;
        }
/* Header Search */
.search-top {
    position: absolute;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 51px;
    width: 350px;
    left: 0;
    line-height: initial;
}

    .search-top.active {
        opacity: 1;
        visibility: visible;
    }

    .search-top .search-form {
        position: relative;
        background: #fff;
        padding: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
    }

        .search-top .search-form input {
            height: 50px;
            line-height: 45px;
            padding: 0 20px 0 45px;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            border: none;
            background: #fff;
            color: #333;
            border-radius: 0px;
            width: 100%;
            font-size: 14px;
            border: 1px solid #ebebeb;
        }

        .search-top .search-form button {
            position: absolute;
            width: 45px;
            border: none;
            top: 15px;
            line-height: 50px;
            height: 50px;
            border-radius: 0px;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            left: 16px;
            background: #2E2751;
            color: #fff;
        }

            .search-top .search-form button:hover {
                color: #fff;
                background: #F3A712;
            }

    .search-top .search-top.active .search i:before {
        content: "\f00d";
    }

    /* Tablet Screen */
@media only screen and (min-width: 768px) and (max-width: 991px) {
body{
	font-size:14px;
}
p{
	font-size:14px;
}
.section-title {
    padding: 0;
}
.section-title.style2 {
	padding: 0;
}
.section-title.text-left{
	padding:0;
}
.breadcrumbs h2{
    font-size:34px;
}
.breadcrumbs .bread-title, 
.breadcrumbs .bread-menu {
	float: none;
}
.breadcrumbs .bread-menu{
	margin-top:0px;
}
.topbar {
    text-align: center;
}
.top-contact{
    padding:0;
}
.topbar .single-contact{
	margin-right:10px;
}
.topbar .single-contact:last-child{
	margin:0;
}
.topbar-right,.header .right-button {
    margin-top: 10px;
    float: none;
    text-align: center;
	display:none;
}
.topbar .social-icons {
    text-align: center;
    margin: 0;
    float: none;
    padding: 0;
}
.topbar-right .button{
	display:none;
}
.header .nav-inner {
	float: left;
	margin-right: 64px;
}
.right-bar .right-nav li a {
	color: #333;
	width: auto;
	height: auto;
}
.header .navbar {
    padding: 0;
    display: initial;
    flex-wrap: initial;
}
.header .navbar-nav {
    display: initial;
}
.header .nav li {
	margin-right: 15px;
}
.header .nav li a {
    font-size: 14px;
}
.header .nav li a:after{
	display:none;
}
.header.style2 .middle-header{
	top:83px;
}
.right-bar:after{
}
.right-bar ul li {
	margin-right: 8px;
}
.right-bar .right-nav li a:hover{
	color:#F3A712;
}
.hero-slider .hero-text h1 {
    font-size: 35px;
    line-height: 50px;
}
.hero-slider, .hero-slider .single-slider {
    height: 550px !important;
}
.hero-slider .welcome-text {
    margin: 109px 0 0;
}
.header .nav li .sub-menu{
	width:195px;
	padding:12px;
}
.about-content .section-top h1 {
	font-size: 22px;
	line-height: 30px;
}
/* Hero Agency */
.hero-agency .agency-inner {
	height: 700px !important;
}
.hero-agency .ageny-main {
	padding-top: 117px;
}
.hero-agency .hero-text h1 {
	font-size: 45px;
	line-height: 50px;
}
.hero-agency .a-feature {
	width: 165px;
	padding: 20px 5px;
	margin-right: 10px;
}
.hero-agency .a-feature p {
	line-height: 18px;
	font-size: 13px;
}
.hero-agency .a-feature h4 {
	font-size: 16px;
}
.service-sidebar {
	margin-top: 30px;
}
.side.overlay::before{
	display:none;
}
.img-feature span {
  font-size: 14px;
  padding: 8px 15px;
  margin-top: -20px;
}
.img-feature .video-play a {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 25px;
    top: 50%;
}
.img-feature .video-play {
    margin-left: -37.5px;
    margin-top: -37.5px;
}
.features-main .b-features {
	margin-top: 10px;
}
.features-main h2 {
	margin-bottom: 0;
	font-size: 21px;
	padding-top: 10px;
}
.features-main .single-list-feature h4 {
	font-size: 15px;
	margin-bottom: 5px;
}
.features-main .single-list-feature i,.features-main .title p{
	display:none;
}
.features-main .single-list-feature {
	padding: 0;
	margin-top: 10px;
}
.features-main .single-list-feature p{
	line-height:20px;
	font-size:13px;
}
.single-service p {
  font-size: 14px;
  margin:0;
}
.single-service h4 a {
  font-size: 18px;
  margin-bottom: ;
}
.single-service h4 {
  margin-bottom: 5px;
}
.single-service .service-content {
	padding: 30px 15px;
}
.single-service h4 a {
	color: #28243C;
	font-size: 18px;
}
.single-service .icon-bg {
	bottom: -30px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 22px;
}
.call-action .call-inner{
	text-align:center;
}
.call-action .call-inner h2 {
	font-size: 30px;
	margin-bottom: 10px;
}
.call-action .button {
	float: none;
	text-align: center;
	margin-top: 15px;
}
.single-team .team-arrow a {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
}
.header.style2 .logo {
	margin-top: 14px;
}
.header.style2 .nav-inner {
	margin-right: 92px;
	float: right;
}
.header.style2 .nav li {
	margin-right: 10px;
}
.header.style2 .nav li a {
	font-size: 13px;
}
.header.style2 .button {
	top: 10px;
}
.header.style2 .bizwheel-btn {
	padding: 10px 5px;
	font-size: 13px;
}
.blog-latest .single-news .news-head, .blog-latest .single-news .news-body {
    width: 100%;
    display: initial;
    background: transparent;
    vertical-align: initial;
	padding:0;
}
.blog-single .blog-detail .blog-title {
	font-size: 24px;
	line-height: 40px;
	margin: 8px 0;
}
.blog-latest .single-news .news-head span {
    width: 100%;
    position: relative;
    height: 200px;
    background-size: cover;
}
.blog-latest .single-news .bizwheel-btn {
    width: 122px;
    padding: 10px 00px;
}
.blog-latest .single-news .news-content {
    padding: 20px;
}
.blog-latest .single-news .news-text {
    margin-top: 10px;
}

.faq-title a{
	padding:12px;
	font-size:16px;
}
.faq-body{
	padding:15px 20px;
}
.pf-details .small-list-feature{
	margin-top:40px;
}
.error .error-inner h2 {
	font-size: 30px;
}
.error-inner h4 {
	font-size: 80px;
	lieft: ;
	line-height: 80px;
}
.error .error-inner h2{
	margin:10px 0;
}

.contact-form-area{
	padding:20px;
}

.map{
	height:350px !important;
}
.single-pricing .p-best p {
    font-size: 12px;
}	
.single-pricing .small-title span{
	font-size:13px;
}
.single-pricing .price-head {
    padding: 28px 0 20px;
}
.single-pricing .p-best {
    top: 4px;
    left: -48px;
}



}
/* Mobile Screen */
@media only screen and (max-width: 767px) {

	.blog-latest .single-news{
		overflow: hidden;
	}

	.blog-latest .single-news .cat .bizwheel-btn {
		top: -8px!important;
		padding: 8px 11px!important;
		right: -48px!important;
	}
.breadcrumbs{
    padding:50px 0;
}
.breadcrumbs .bread-title, 
.breadcrumbs .bread-menu {
	float: none;
}
.breadcrumbs .bread-menu{
	margin-top:0px;
}
.breadcrumbs .bread-menu span {
    font-size: 15px;
}
.breadcrumbs h2{
    font-size:26px;
}


.header .img-logo,.header.style2 .img-logo{
    margin: 0;
}
.header .text-logo,
.header.style2 .text-logo {
    margin-top: 0;
}
.mobile-nav {
    position: relative;
    margin-top: -24px;
    z-index: 5000;
}
.middle-header {
    padding: 20px 0 25px;
}
.header.style2 .middle-header {
    padding: 0;
    top: 112px;
}
.header.style2 .topbar-right{
	margin-top:5px;
}
.header.style2 .topbar {
    padding: 8px 0 22px;
}
.top-contact{
    padding:0;
}
.hero-slider .hero-text h4 {
	font-size: 13px;
	padding: 5px 20px;
}	
.section-title.style2 .section-top,.section-title.style2 .section-bottom {
	float: none;
	width: 100%;
}	
.section-title.style2 .text-style-two {
	margin-top: 20px;
	text-align: left;
}

.section-title h1 {
	font-size: 24px;
}	
.mobile-nav {
	position: relative;
	margin-top: -21px;
}	
.menu-area{
	display:none;
}
.topbar .top-contact{
	margin:0;
}
.slicknav_nav li {
	border-bottom: 1px solid #ebebeb;
	line-height: 30px;
}
.slicknav_nav li:last-child{
	border:none;
}
.slicknav_menu{
	display:block;
}
.slicknav_menu {
	display: block;
	background: transparent;
	padding: 0;
}
.slicknav_btn {
	background: transparent;
	padding: 0;
	margin: 0;
	margin-right: 10px;
}
.slicknav_menu .slicknav_icon-bar{
	box-shadow:none;
}
.slicknav_menu .slicknav_icon-bar {
	background: #2E2751 !important;
}
.skill-image{
	display:none;
}
.slicknav_nav {
	clear: both;
	color: #fff;
	margin: 0;
	background: transparent;
	padding-top: 15px;
}
.slicknav_nav li a{
	margin: 0;
	color: #333;
	background: transparent;
	overflow: hidden;
}
.slicknav_nav li a i{
	display:none;
}
.slicknav_nav li a:hover{
	color:#1A9F68;
	background:transparent;
}
.slicknav_nav li:hover{
	background:transparent;
}
.slicknav_nav li .dropdown li:hover{
	background:transparent;
}
.slicknav_nav li .dropdown li a{
	color:#555;
	background:transparent;
}
.slicknav_nav li .dropdown li a:hover{
	color:#1A9F68;
	background:transparent;
}
.slicknav_nav li .slicknav_item{
	background:transparent;
}
.slicknav_nav .slicknav_row, .slicknav_nav a {
	padding: 0;
	margin: 0;
	padding: 6px 0;
	font-weight: 500;
}
.slicknav_nav li:last-child a{
	padding-bottom:0px;
}
.slicknav_menu .slicknav_icon-bar {
	background-color: #1A9F68;
	box-shadow: none;
	text-shadow: none;
}
.slicknav_nav .slicknav_arrow{
	color:#666;
}
.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 25px;
	height: 3px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,.25);
	-moz-box-shadow: 0 1px 0 rgba(0,0,0,.25);
	box-shadow: 0 1px 0 rgba(0,0,0,.25);
}
.slicknav_nav li .slicknav_item:hover{
	background:transparent;;
}
.header.style2 .middle-header {
    padding: 0;
    top: 112px;
}
.header.style2 .slicknav_menu .slicknav_icon-bar{
	background:#fff !important;
}
.header.style2 .mobile-nav {
    margin-top: -20px;
}
.header.style2 .middle-inner {
    background: #2E2751;
    z-index: 2035;
    padding: 22px 20px;
}
.header.style2 .slicknav_nav {
    background: #fff;
    padding: 20px;
    margin-top: 35px;
}
.hero-agency .video-head .video {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 25px;
}
body{
	font-size:14px;
}
p{
	font-size:14px;
}
.section-title {
	padding: 0;
}
.section-title.style2 {
	padding: 0;
}
.section-title.text-left{
	padding:0;
}
.topbar {
    text-align: center;
}
.topbar .single-contact{
	margin-right:10px;
	display:block;
}
.topbar .single-contact:last-child{
	margin:0;
}
.topbar-right {
    text-align: center;
    margin-top: 10px;
	float:none;
	display:none;
}
.topbar .social-icons {
    text-align: center;
    margin: 0;
    padding: 0;
    float: none;
}
.topbar-right .button{
	display:none;
}
.header .nav-inner {
	float: right;
	margin-right: 64px;
}
.right-bar .right-nav li a {
	color: #333;
	width: auto;
	height: auto;
}
.breadcrumbs .bread-menu li a {
	font-size: 15px;
}
.breadcrumbs h2 {
	font-size: 26px;
	margin-top: 0px;
	padding: 0;
}
.header .navbar {
    padding: 0;
    display: initial;
    flex-wrap: initial;
}
.header .navbar-nav {
    display: initial;
}
.header .nav li {
	margin-right: 15px;
}
.header .nav li a {
    font-size: 14px;
}
.header .nav li a:after{
	display:none;
}
.header .logo{
	width:40%;
	z-index: 9999;
	float:left;
}
.right-bar:after{
}
.right-bar ul li {
	margin-right: 8px;
}
.right-bar .right-nav li a:hover{
	color:#F3A712;
}
.hero-slider .hero-text h4 {
	font-size: 13px;
}
.hero-slider .hero-text h1 {
	font-size: 25px;
	line-height: 32px;
}
.hero-slider, .hero-slider .single-slider {
	height: 450px !important;
}
.hero-slider .single-slider {
	/*background: #fff !important;*/
}
.hero-slider .hero-text .p-text {
	max-width: 100%;
}
.hero-slider .welcome-text {
	margin: 57px 0 0;
}
.hero-slider .hero-text .button .bizwheel-btn {
	padding: 10px 15px;
	font-size: 13px;
}
.hero-slider .hero-text .button {
	margin-top: 25px;
}
.testimonial-inner .single-slider{
	box-shadow:none;
}
/* Hero Agency */
.hero-agency .agency-inner {
    height: 1000px !important;
}
.hero-agency .ageny-main {
	padding-top: 88px;
}
.hero-agency .hero-text h4 {
    font-weight: 500;
    font-size: 18px;
}
.hero-agency .hero-text h1 {
    font-size: 28px;
    line-height: 30px;
}
.hero-agency .video-head {
    margin-top: 15px;
}
.hero-agency .agency-feature {
    margin-top: 0px;
}
.hero-agency .a-feature {
    padding: 20px 5px;
    margin-right: 0;
    margin-top: 10px;
    width: 100%;
}
.hero-agency .a-feature:last-child{
	margin-top:10px;
}
.hero-agency .a-feature p {
	line-height: 18px;
	font-size: 13px;
}
.hero-agency .a-feature h4 {
	font-size: 14px;
	margin:5px 0;
}
.hero-agency .a-feature p{
	font-size:13px;
}
.service-sidebar {
	margin-top: 30px;
}
.side.overlay::before{
	display:none;
}
.service-single .service-content h2 {
	font-size: 24px;
	margin: 18px 0;
	line-height: 32px;
}
.service-single .modern-img-feature,
.pf-details .modern-img-feature{
	margin-top:30px;
}
.img-feature span {
	font-size: 14px;
	padding: 8px 15px;
	margin: 0;
	top: 13px;
}
.img-feature .video-play a {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 25px;
  margin: ;
  margin-top: ;
  top: 50%;
}
.img-feature .video-play {
  margin-left: -35px;
  margin-top: -35px;
}
.features-main {
	margin-top: 30px;
}
.features-main .b-features {
	margin-top: 10px;
}
.features-main h2 {
	margin-bottom: 0;
	font-size: 21px;
	padding-top: 10px;
}
.features-main .single-list-feature h4 {
	font-size: 15px;
	margin-bottom: 5px;
}
.features-main .single-list-feature i, .features-main .title p {
	display: block;
	position: relative;
}
.features-main .single-list-feature {
	padding: 0;
	margin-top: 10px;
}
.features-main .single-list-feature p{
	line-height:20px;
	font-size:13px;
}
.single-service p {
  font-size: 14px;
  margin:0;
}
.single-service h4 a {
  font-size: 18px;
  margin-bottom: ;
}
.single-service h4 {
  margin-bottom: 5px;
}
.single-service .service-content {
	padding: 30px 15px;
}
.single-service h4 a {
	color: #28243C;
	font-size: 18px;
}
.single-service .icon-bg {
	bottom: -30px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 22px;
}
.blog-single .blog-detail .blog-title {
	font-size: 20px;
	line-height: 30px;
}
.call-action .call-inner{
	text-align:center;
}
.call-action .call-inner h2 {
	font-size: 23px;
	margin-bottom: 10px;
}
#portfolio-nav li {
	display: inline-block;
	float: initial;
}
.pf-details .single-content h1{
	font-size:22px;
}
.testimonial-inner .single-slider {
	padding: ;
	margin: 0;
}
.testimonial-inner .testimonial-slider {
	margin: 0;
}
.testimonial-inner .client-head {
    display: inline-block;
    float: none;
}
.testimonial-inner .t-left h2 {
    font-size: 16px;
    display: block;
}
.testimonial-slider .owl-controls .owl-dots {
    margin-top: 30px;
}
.single-pricing .p-best {
	top: 9px;
	left: -46px;
}
.call-action .button {
	float: none;
	text-align: center;
	margin-top: 15px;
}
.single-team .team-arrow a {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
}
.header.style2 .logo {
	margin-top: 0;
}
.header.style2 .nav-inner {
	margin-right: 92px;
	float: right;
}
.header.style2 .nav li {
	margin-right: 10px;
}
.header.style2 .nav li a {
	font-size: 13px;
}
.header.style2 .button {
	top: 10px;
}
.header.style2 .bizwheel-btn {
	padding: 10px 5px;
	font-size: 13px;
}
.blog-latest .single-news .news-head, .blog-latest .single-news .news-body {
    width: 100%;
    display: initial;
    background: transparent;
    vertical-align: initial;
	padding:0;
}
.blog-latest .single-news .news-head span {
    width: 100%;
    position: relative;
    height: 200px;
    background-size: cover;
}
.blog-latest .single-news .bizwheel-btn {
    width: 122px;
    padding: 10px 00px;
}
.blog-latest .single-news .news-content {
    padding:20px;
}
.blog-latest .single-news .news-text {
    margin-top: 10px;
}
.pf-details .small-list-feature{
	margin-top:40px;
}
.error {
	padding: 100px 0;
}
.error .error-inner {
	text-align: left;
	margin-bottom: 25px;
}
.error .error-inner h2 {
	font-size: 30px;
}
.error-inner h4 {
	font-size: 75px;
	line-height: 75px;
}
.error .error-inner h2{
	margin:10px 0;
}

.contact-form-area{
	padding:20px;
}
.map{
	height:300px !important;
}
.success .mail h2 {
	font-size: 25px;
	line-height: 30px;
}
}