@charset "UTF-8";
/*
Theme Name: Riyaqas
Theme URI: 
Author: 
Author URI: 
Description: Riyaqas is a Sass website template
Version: 1.0.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# guterberg
# Gutenberg	Default Style
# Block Color Palette Colors
# Sections
    ## Breadcrumb
    ## Comments
    ## Widgets
    ## Nav Bar
    ## Info Bar
    ## Header

# Elements
    ## Back Top
    ## Preloader
    ## Search Popup
    ## Video Popup
    ## Button
    ## Section Title
--------------------------------------------------------------*/

/*-----------------
    # Typography
-----------------*/

@import url("https://fonts.googleapis.com/css?family=Poppins:400,400i,500,600,700|Rubik:400,400i,500,500i,700,700i&display=swap");
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

:root {
    --main-color-one: #F9556D;
    --main-color-two: #F9556D;
    --secondary-color: #30373f;
    --heading-color: #272b2e;
    --paragraph-color: #5B6880;
    --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);
}

* {
    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);
}

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;
}

/*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);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# 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: 100px;
}

.pd-top-105 {
    padding-top: 105px;
}

.pd-top-110 {
    padding-top: 110px;
}

.pd-top-112 {
    padding-top: 10px;
}

.pd-top-115 {
    padding-top: 115px;
}

.pd-top-120 {
    padding-top: 120px;
}

.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: 100px;
}

.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 {
    margin-top: 75px;
}

.mg-top-80 {
    margin-top: 80px;
}

.mg-top-100 {
    margin-top: 100px;
}

.mg-top-105 {
    margin-top: 105px;
}

.mg-top-110 {
    margin-top: 110px;
}

.mg-top-120 {
    margin-top: 120px;
}

.mg-top-135 {
    margin-top: 135px;
}

.mg-top-170 {
    margin-top: 170px;
}

.mg-bottom-30 {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.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;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination {
    display: block;
    width: 100%;
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #e2e2e2;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/

.wp-link-pages a {
    margin: 0 5px;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

dl,
ol,
ul {
    padding-left: 15px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}

@media all and (max-width: 1500px) {
    :root {
        --body-font-size: 14px;
        --line-height30: 1.9;
    }
}

@media all and (min-width: 1500px) {
    .custom-gutters-60>.col,
    .custom-gutters-60>[class*=col-] {
        padding-right: 29px;
        padding-left: 29px;
    }
}

@media all and (min-width: 576px) {
    .custom-gutters-16>.col,
    .custom-gutters-16>[class*=col-] {
        padding-right: 8px;
        padding-left: 8px;
    }
    .custom-gutters-18>.col,
    .custom-gutters-18>[class*=col-] {
        padding-right: 9px;
        padding-left: 9px;
    }
    .custom-gutters-20>.col,
    .custom-gutters-20>[class*=col-] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .custom-gutters-28>.col,
    .custom-gutters-28>[class*=col-] {
        padding-right: 14px;
        padding-left: 14px;
    }
}

/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/

.single-post-details-item .entry-content>.alignwide {
    max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
    border-left: 4px solid #000;
    padding-left: 1em;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/

.has-strong-blue-color {
    color: #0073aa;
}

.has-strong-blue-background-color {
    background-color: #0073aa;
}

.has-lighter-blue-color {
    color: #229fd8;
}

.has-lighter-blue-background-color {
    background-color: #229fd8;
}

.has-very-light-gray-color {
    color: #eee;
}

.has-very-light-gray-background-color {
    background-color: #eee;
}

.has-very-dark-gray-color {
    color: #444;
}

.has-very-dark-gray-background-color {
    background-color: #444;
}

/*---------------------
    ## Breadcumb 
----------------------*/

.breadcrumb-area {
    background-image: url(../img/bg/breadcrumb-bg.jpg);
    text-align: center;
    padding: 194px 0 114px;
    background-size: cover;
}

.breadcrumb-area .page-title {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1.38px;
    color: #01358D;
    margin-bottom: 15px;
}

.breadcrumb-area .page-list {
    margin: 0;
    padding: 0;
}

.breadcrumb-area .page-list li {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.32px;
    color: #5B6880;
    list-style: none;
    display: inline-block;
    position: relative;
    padding-left: 10px;
}

.breadcrumb-area .page-list li:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "/";
    font-family: "fontawesome";
}

.breadcrumb-area .page-list li:first-child {
    padding-left: 0;
}

.breadcrumb-area .page-list li:first-child:after {
    display: none;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.comments-area {
    margin-top: 45px;
}

.comments-area .comments-title {
    font-size: 24px;
    line-height: 33px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #01358D;
}

.comments-area .comments-title span {
    font-size: 18px;
    line-height: 24px;
    color: #97A1B3;
}

.comments-area .comment-list .comment-respond {
    margin-bottom: 30px;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
    margin-bottom: 20px;
}

.comments-area .comment-list li {
    margin-bottom: 55px;
}

.comments-area .comment-list li:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.comments-area .comment-list li ul {
    list-style: none;
}

.comments-area .comment-list li ul.children li {
    margin-left: 50px;
    list-style-type: none;
    list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
    display: flex;
    align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
    margin-right: 35px;
    height: 75px;
    width: 75px;
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
    display: block;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0.14px;
    margin-bottom: 18px;
    color: #97A1B2;
}

.comments-area .comment-list li .single-comment-wrap .content {
    flex: 1;
    position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    letter-spacing: 0.22px;
    color: #01358D;
    margin-bottom: 6px;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
    max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    margin-bottom: 15px;
    color: #5B6880;
    word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #97A1B3;
    transition: 0.4s;
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
    color: #01358D;
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comments-area .form-submit {
    margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
    min-height: 160px;
    resize: none;
    line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
    outline: none;
    box-shadow: none;
}

.comment-form .form-group .form-control {
    height: 50px;
    line-height: 50px;
    border: 1px solid #e2e2e2;
}

.comment-form .submit-btn {
    height: 50px;
    width: auto;
    border-radius: 5px;
    font-weight: 400;
    background-color: var(--main-color-one);
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in;
    color: #fff;
}

.comment-form .submit-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.comment-respond {
    /*margin-top: 20px;*/
}

.comments-area .comment-list .children li:last-child {
    margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
    margin-top: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
    margin-right: 5px;
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/

.footer-widget .widget-title {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.22px;
    color: #01358D;
    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: 78px;
}

.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: #5B6880;
    font-weight: 400;
    margin: 0;
    transition: all 0.3s ease-in;
}

.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: #01358D;
}

/******* site bar widget ********/

.sidebar-area {
    border: 1px solid #E4E7EB;
    padding: 55px 68px 0 68px;
}

.sidebar-area .widget {
    margin-bottom: 65px;
}

.widget-title {
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.28;
    color: #01358D;
    font-weight: 500;
    position: relative;
    margin-bottom: 50px;
}

.widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #E4E7EB;
}

.shop-sidebar .widget-title {
    font-size: 24px;
    margin-bottom: 25px;
}

.shop-sidebar .widget-title:after {
    display: none;
}

.widget_search .search-form {
    position: relative;
    background: #F5F5F5;
    border-radius: 4px;
}

.widget_search .search-form input {
    letter-spacing: 0.3px;
    color: #5B6880;
    width: 100%;
    font-size: var(--body-font-size);
    font-weight: 400;
    border: 0;
    background: transparent;
    padding: 0 60px 0 24px;
    height: 52px;
    line-height: 52px;
}

.widget_search .search-form button {
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    padding: 0 23px;
    height: 52px;
    line-height: 52px;
    top: 0;
    right: 0;
}

.widget_search .search-form button i {
    color: #5B6880;
}

.widget_search .search-form button:active,
.widget_search .search-form button:focus {
    box-shadow: none;
    outline: 0;
}

.widget_search.style-two .search-form {
    border-radius: 35px;
}

.widget_search.style-two .search-form input {
    padding: 0 60px 0 28px;
}

.widget_search.style-two .search-form button {
    right: 4px;
}

.widget-recent-post ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-recent-post ul li .media {
    margin-bottom: 30px;
    align-items: center;
}

.widget-recent-post ul li .media .media-body {
    margin-left: 16px;
}

.widget-recent-post ul li .media .media-body .title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0;
    color: #01358D;
    margin-bottom: 5px;
}

.widget-recent-post ul li .media .media-body .post-date {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #97A1B2;
}

.widget-recent-post ul li:last-child .media {
    margin-bottom: 0;
}

.widget_categories ul li {
    list-style: none;
    position: relative;
    padding-left: 32px;
    margin-bottom: 19px;
}

.widget_categories ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    border: 2px solid #97A1B3;
    border-radius: 50%;
}

.widget_categories ul li a {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.96;
    color: #5B6880;
}

.widget_categories ul li:last-child {
    margin-bottom: 0;
}

.widget_categories.product_category ul {
    padding-left: 0;
}

.widget_categories.product_category ul li {
    padding-left: 0;
    margin-bottom: 10px;
}

.widget_categories.product_category ul li a {
    font-size: 15px;
    font-weight: 400;
}

.widget_categories.product_category ul li:before {
    display: none;
}

.widget_archive ul {
    list-style: none;
    margin: 0;
    padding: 0 14px;
}

.widget_archive ul li {
    border-bottom: 1px solid #E4E7EB;
    padding-bottom: 5.5px;
    margin-bottom: 12.5px;
    position: relative;
    padding-left: 34px;
}

.widget_archive ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px;
    font-family: FontAwesome;
    background-repeat: no-repeat;
    background-size: 100%;
}

.widget_archive ul li a {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.96px;
    color: #5B6880;
}

.widget_archive ul li:last-child {
    margin-bottom: 0;
}

.widget-gallery .thumb {
    margin-bottom: 16px;
    display: block;
}

.widget-newslatter .newsletter-subcribe {
    margin-top: 0px;
}

/********* shop sidebar *********/

.shop-sidebar {
    padding: 0 0 0 45px;
    border: 0;
}

.widget-product-sorting .slider-product-sorting {
    height: 3px;
    border-radius: 0;
    background: #E4E7EB;
    border: 0 !important;
    margin: 0 10px 25px 10px;
}

.widget-product-sorting .slider-product-sorting .ui-slider-range {
    background: var(--main-color-one);
}

.widget-product-sorting .slider-product-sorting .ui-slider-handle {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--main-color-one);
    border: 0 !important;
    top: -4px;
    cursor: pointer;
}

.widget-product-sorting label,
.widget-product-sorting input {
    font-size: 15px;
    letter-spacing: 0.15px;
    color: var(--main-color-one);
    border: 0;
    background: transparent;
    margin-bottom: 0;
    line-height: 36px;
}

.widget-product-sorting label:focus,
.widget-product-sorting input:focus {
    border: 0;
}

.widget-product-sorting button {
    height: 35px;
    line-height: 37px;
    padding: 0 25px;
    background: var(--main-color-one);
    font-size: 14px;
    letter-spacing: 0.42px;
    color: #fff;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
}

.widget-product-sorting button:focus {
    outline: 0;
}

.widget-product ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-product ul li .media {
    margin-bottom: 28px;
    align-items: center;
}

.widget-product ul li .media .media-body {
    margin-left: 25px;
}

.widget-product ul li .media .media-body .title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.4;
    color: #01358D;
    margin-bottom: 14px;
    font-weight: 400;
}

.widget-product ul li .media .media-body .product-price {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #97A1B3;
}

.widget-product ul li:last-child .media {
    margin-bottom: 0;
}

.widget_tag_cloud .tagcloud a {
    font-size: var(--body-font-size);
    font-style: italic;
    letter-spacing: 0.3px;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease-in;
}

.widget-newslatter .newsletter-subcribe .form-group .subcribe-submit {
    font-size: 15px;
}

/********* widget job details *********/

.widget-job-details {
    background: #fff;
    box-shadow: 0px 2px 50px #97A1B229;
    border-radius: 8px;
    padding: 70px 38px;
}

.widget-job-details .widget-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding-bottom: 15px;
    margin-bottom: 32px;
}

.widget-job-details .single-job-details {
    margin-bottom: 25px;
}

.widget-job-details .single-job-details img {
    margin-top: 2px;
}

.widget-job-details .single-job-details .media-body {
    margin-left: 25.25px;
}

.widget-job-details .single-job-details .media-body h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #535764;
    margin-bottom: 10px;
}

.widget-job-details .single-job-details .media-body span {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.3px;
    color: #97A1B3;
}

.tagcloud a {
    background: #2B71E8;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
    border-radius: 3px;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/

.navbar.navbar-area.white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
    display: none;
}

.navbar-area {
    padding: 0;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 8;
    transition: all 0.3s ease-in;
}

.navbar-area.nav-absolute {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0px;
    z-index: 1;
}

.navbar-area .nav-container {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 30px;
}

.navbar-area .nav-container .nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    margin: 0 15px;
    line-height: 80px;
    cursor: pointer;
    color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li .cart-icon i {
    font-size: 26px;
    font-weight: 500;
}

.navbar-area .nav-container .nav-right-content ul li i {
    color: #325CA3;
    transition: all 0.3s ease-in;
    font-weight: 700;
    font-size: 18px;
}

.navbar-area .nav-container .nav-right-content ul li li {
    line-height: normal;
    cursor: default;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
    margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li:hover i {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
    background-color: var(--secondary-color);
}

.navbar-area .nav-container .nav-right-content ul .notification a {
    position: relative;
}

.navbar-area .nav-container .nav-right-content ul .notification .notification-count {
    background-color: var(--main-color-two);
    height: 16px;
    width: 16px;
    line-height: 16px;
    font-size: 9px;
    display: inline-block;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -9px;
}

.navbar-area .nav-container .navbar-brand .site-title {
    font-weight: 700;
    font-size: 30px;
    font-family: var(--heading-font);
    line-height: 80px;
    color: var(--heading-color);
}

.navbar-area .nav-container .desktop-logo {
    margin-right: 100px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin: 0 23px;
    position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:before {
    position: absolute;
    left: auto;
    right: 0;
    top: 61%;
    content: "";
    background: var(--main-color-two);
    height: 1px;
    width: 0%;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    transition: 0.6s;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover:before {
    visibility: visible;
    opacity: 1;
    right: auto;
    left: 0;
    width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    position: absolute;
    left: 0;
    top: 61%;
    content: "";
    background: var(--main-color-one);
    height: 1px;
    width: 100%;
    visibility: visible;
    opacity: 1;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 205px;
    margin: 0;
    list-style: none;
    left: 0;
    top: 100%;
    box-shadow: 0px 6px 20px #84848442;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    background: #fff;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 24px;
    font-size: 16px;
    margin-right: 0;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
    display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 5px 17px;
    font-size: 15px;
    white-space: nowrap;
    line-height: inherit;
    color: #5B6880;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    padding-top: 13px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 13px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "";
    font-family: "fontawesome";
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children a:after {
    position: absolute;
    right: 23px;
    top: 20px;
    content: "";
    font-family: "fontawesome";
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
    box-shadow: 6px 6px 20px #84848442;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu a:after {
    display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    line-height: 80px;
    display: inline-block;
    color: #01358D;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-one);
}

.navbar-area-fixed {
    background: #fff;
    box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

.navbar-area-2 .nav-container .logo-wrapper .sticky-logo {
    display: none;
}

.navbar-area-2.navbar-area-fixed .nav-container .logo-wrapper .main-logo {
    display: none;
}

.navbar-area-2.navbar-area-fixed .nav-container .logo-wrapper .sticky-logo {
    display: block;
}

@media only screen and (min-width: 992px) {
    .navbar-area-2 .nav-container .navbar-collapse .navbar-nav>li>a {
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: #fff;
    }
    .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
        background: #fff;
    }
    .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li:before {
        background: #fff;
    }
    .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: #fff;
    }
    .navbar-area-2 .nav-container .nav-right-content ul li {
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area-2 .nav-container .nav-right-content ul li a {
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav>li>a {
        color: #01358D;
    }
    .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: var(--main-color-one);
    }
    .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
        background: var(--main-color-one);
    }
    .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:before {
        background: var(--main-color-one);
    }
    .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: var(--main-color-one);
    }
    .navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li {
        color: #6a7795;
    }
    .navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li a {
        color: #6a7795;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        padding-left: 6px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
        padding-left: 3px;
    }
    .navbar-area .nav-container .nav-right-content ul li a {
        color: #6a7795;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 80px;
    }
    .navbar-area .nav-container .navbar-brand {
        display: block;
    }
    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 1px solid #e2e2e2;
    }
    .navbar-area .nav-container .mobile-logo {
        padding-left: 15px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 20px;
        padding: 0 15px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 25px;
        right: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        visibility: visible;
        height: auto;
        opacity: 1;
        background-color: transparent;
        border-bottom: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        overflow-y: auto;
        transition: height 500ms;
        scrollbar-color: #f5576c #F5F5F5;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "";
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        top: 30px;
        color: #fff;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none;
    }
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(151, 161, 179, 0.1);
    border-radius: 30px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu::-webkit-scrollbar-thumb {
    background-color: #5B6880;
}

.responsive-mobile-menu .nav-right-content {
    display: none;
}

@media only screen and (max-width: 991px) {
    .mobile-logo {
        display: inline-block;
        line-height: 80px;
    }
    .desktop-logo {
        display: none !important;
    }
    .responsive-mobile-menu {
        display: contents;
        width: 100%;
    }
    .responsive-mobile-menu .navbar-toggler {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 28px;
        outline: 0;
    }
    .nav-right-content {
        display: none;
    }
    .responsive-mobile-menu .nav-right-content {
        display: inline-block;
        float: right;
        margin-right: 70px;
        padding-top: 4px;
    }
    .navbar-area .navbar-collapse .navbar-nav {
        background: #fff;
    }
    .navbar-area .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        display: none;
    }
    .navbar-area .navbar-collapse .navbar-nav li:before {
        display: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        border: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        line-height: 24px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
        margin-left: 0;
    }
    .navbar-area .nav-container {
        padding: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        margin-top: 0;
        border-top: 1px solid rgba(151, 161, 179, 0.1);
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        padding: 6px 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
        left: 0;
        top: 0;
        box-shadow: none;
        margin-left: 22px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 6px;
    }
    .navbar-area .navbar-toggle-icon .line {
        height: 2px;
        width: 21px;
        background: #325CA3;
        margin-bottom: 4px;
        display: block;
        transition: all 0.3s ease-in;
    }
    .navbar-area .navbar-toggle-icon .line:nth-child(3) {
        margin-bottom: 0;
    }
    .navbar-area button.navbar-toggler[aria-expanded=true] .line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .navbar-area button.navbar-toggler[aria-expanded=true] .line:nth-child(2) {
        opacity: 0;
    }
    .navbar-area button.navbar-toggler[aria-expanded=true] .line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media only screen and (max-width: 575px) {
    .navbar-area .nav-container {
        min-height: 70px;
    }
    .mobile-logo {
        display: inline-block;
        line-height: 70px;
    }
    .navbar-area .nav-container .nav-right-content ul li {
        line-height: 70px;
    }
    .responsive-mobile-menu .navbar-toggler {
        top: 26px;
    }
}

.navbar-area-2 .nav-container .nav-right-content ul li i {
    color: #fff;
}

.navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li i {
    color: #325CA3;
}

.navbar-area-2 .navbar-toggle-icon .line {
    background: #fff;
}

.navbar-area-2.navbar-area-fixed .navbar-toggle-icon .line {
    background: #325CA3;
}

.nav-style-02 {
    border-bottom: 1px solid rgba(225, 225, 225, 0.3);
}

/*----------------------------
    Info Bar
----------------------------*/

.info-bar-area.style-three .info-bar-inner {
    padding: 10px 0 18px 0;
}

.info-bar-area.style-three .info-bar-inner .social-icon {
    margin-top: 15px;
}

.info-bar-area.style-two .info-bar-inner {
    padding: 0;
}

.info-bar-area .social-icon .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--heading-color);
}

.info-bar-inner {
    padding: 32px 0 35px 0;
}

.info-bar-inner div {
    display: inline-block;
}

.info-bar-inner .logo-wrapper .logo {
    margin-top: 5px;
    display: block;
}

.info-bar-inner .logo-wrapper .site-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
}

.info-bar-inner .right-content {
    display: inline-block;
    float: right;
}

.info-bar-inner .right-content .request-quote {
    margin-left: 40px;
}

.info-bar-inner .right-content .request-quote .rq-btn {
    padding: 15px 25px;
    background-color: var(--main-color-one);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    position: relative;
    top: -5px;
    transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank {
    background-color: #f1f1f1;
    border-radius: 0;
    top: 0;
    padding: 15px 40px;
    color: var(--heading-color);
}

.info-bar-inner .right-content .request-quote .rq-btn.blank i {
    color: var(--main-color-one);
    transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover i {
    color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn:hover {
    background-color: var(--secondary-color);
}

.info-items {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-items li {
    display: inline-block;
    margin: 0 30px;
}

.info-items li:hover .single-info-item .content .title {
    color: var(--main-color-one);
}

.info-items li:first-child {
    margin-left: 0;
}

.info-items li:last-child {
    margin-right: 0;
}

.info-items li .single-info-item {
    display: flex;
    align-self: flex-start;
}

.info-items li .single-info-item .icon {
    margin-right: 20px;
    font-size: 40px;
    line-height: 40px;
    color: var(--main-color-one);
}

.info-items li .single-info-item .content .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
    transition: all 0.3s ease-in;
}

.info-items li .single-info-item .content .details {
    font-size: 14px;
    line-height: 24px;
}

.info-items-two {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.info-items-two li {
    display: inline-block;
    margin: 0 30px;
}

.info-items-two li:hover .single-info-item .content .title {
    color: var(--main-color-one);
}

.info-items-two li:first-child {
    margin-left: 0;
}

.info-items-two li:last-child {
    margin-right: 0;
}

.info-items-two li .single-info-item {
    display: flex;
    align-self: flex-start;
}

.info-items-two li .single-info-item .icon {
    margin-right: 15px;
    font-size: 30px;
    line-height: 30px;
    color: var(--main-color-one);
}

.info-items-two li .single-info-item .content {
    margin-top: 3px;
}

.info-items-two li .single-info-item .content .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
    transition: all 0.3s ease-in;
}

.info-items-two li .single-info-item .content .details {
    margin-left: 5px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--paragraph-color);
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/

.header-area {
    padding: 0 0 98px;
    position: relative;
}

.header-area .banner-slider-item {
    height: 96vh;
}

.header-area .header-inner-details {
    height: 100vh;
    display: flex;
    align-items: center;
}

.header-area .banner-thumb-wrap {
    height: 100vh;
    display: flex;
    align-items: center;
}

.header-area .sub-title {
    font-size: 20px;
    line-height: 52px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 100;
    font-family: var(--poppins-font) !important;
}

.header-area .sub-title.style-two {
    color: var(--main-color-two);
}

.header-area .title {
    font-size: 65px;
    line-height: 74px;
    color: #01358D;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--poppins-font) !important;
}

.header-area .title span {
    color: var(--main-color-two);
}

.header-area .title span.typed {
    color: inherit;
}

.header-area .title span.typed-cursor {
    color: inherit;
}

.header-area p {
    font-size: 16px;
    line-height: 28px;
    color: #5B6880;
    margin-bottom: 35px !important;
    visibility: visible;
}

.header-area .btn-wrapper .btn {
    font-weight: 400;
    cursor: pointer;
}

.header-area .header-thumb {
    margin-top: 190px;
}

.banner-slider {
    height: 100vh;
}

.banner-slider .owl-prev {
    position: absolute;
    left: -106px;
    top: 50%;
    opacity: 0.3;
    transition: all 0.3s ease-in;
    font-size: 35px;
    color: #01358D;
}

.banner-slider .owl-prev:hover,
.banner-slider .owl-prev:active,
.banner-slider .owl-prev:focus {
    opacity: 1;
}

.banner-slider .owl-next {
    position: absolute;
    right: -106px;
    top: 50%;
    opacity: 0.3;
    transition: all 0.3s ease-in;
    font-size: 35px;
    color: #01358D;
}

.banner-slider .owl-next:hover,
.banner-slider .owl-next:active,
.banner-slider .owl-next:focus {
    opacity: 1;
}

.banner-slider .owl-dots {
    z-index: 2;
    text-align: center;
}

.banner-slider .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: #FFCCD4;
    display: inline-block;
    margin: 0 10px;
    border-radius: 50%;
    z-index: 2;
    text-align: center;
    position: relative;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.banner-slider .owl-dots .owl-dot:after {
    content: "";
    border: 0.5px solid #F9556D;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
}

.banner-slider .owl-dots .owl-dot.active {
    background: #F9556D;
}

.banner-slider .owl-dots .owl-dot.active:after {
    height: 14px;
    width: 14px;
    left: -3px;
    right: 3px;
    top: -3px;
    bottom: 3px;
    visibility: visible;
    opacity: 1;
}

.banner-slider .header-inner {
    padding-left: 10px;
}

.banner-slider .owl-item.active .s-animate-1 {
    animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-2 {
    animation: 1.5s 0.7s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-3 {
    animation: 1.5s 1s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-4 {
    animation: 1.5s 1.3s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-5 {
    animation: 1.5s 1.4s fadeInLeft both;
}

/********* banner one **********/

.banner-slider-one .banner-slider-item {
    margin-right: 30px;
}

.banner-slider-one .banner-thumb {
    position: relative;
}

.banner-slider-one .banner-thumb .banner-1-img2 {
    position: absolute;
    right: -30px;
    top: 0;
    width: auto !important;
    height: 58%;
}

.banner-slider-one .banner-thumb .banner-1-img3 {
    position: absolute;
    right: 50px;
    bottom: 35px;
    width: auto !important;
    z-index: -1;
    box-shadow: 0px 2px 69px #97A1B238;
}

.banner-slider-one .header-inner-img {
    width: auto !important;
    z-index: 2;
}

.banner-slider-one .owl-item.active .header-inner-img {
    animation: 1.5s 0.3s fadeInRight both;
}

.banner-slider-one .owl-item.active .banner-1-img2 {
    animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider-one .owl-item.active .banner-1-img3 {
    animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider-one .banner-thumb-wrap {
    float: right;
}

.banner-slider-one.style-two .banner-thumb-wrap .banner-thumb {
    height: 88vh;
    margin-top: 60px;
}

.banner-slider-one.style-two .banner-thumb-wrap .banner-thumb img {
    height: inherit;
}

.sba-header-area .btn-wrapper {
    margin-bottom: 35px;
}

.sba-header-area .hover a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 34px;
    padding-left: 2px;
    border: 2px solid var(--main-color-one);
    color: var(--main-color-one);
    background: #fff;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    margin-right: 22px;
}

.sba-header-area .hover a i {
    padding-left: 3px;
}

.sba-header-area .hover span {
    font-size: 16px;
    letter-spacing: 0.32px;
    color: #01358D;
    font-weight: 500;
}

.sba-header-area .banner-thumbnail {
    margin-top: 130px;
}

.header-bg {
    background-position: 0px -23px;
    background-size: cover;
    background-repeat: no-repeat;
}

/******** sbbs-header-area ********/

.sbbs-header-area {
    background-repeat: no-repeat;
    height: 104vh;
}

.sbbs-header-area .header-inner {
    padding-top: 130px;
}

.sbbs-header-area .header-inner .title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 42px;
    font-size: 56px;
    line-height: 1.4;
}

.sbbs-header-area .header-inner .btn-wrapper {
    margin-bottom: 64px;
}

.sbbs-header-area .header-inner .btn-wrapper .btn {
    margin: 0 11px;
}

.sbbs-header-area .banner-thumbnail {
    position: relative;
    max-width: inherit;
    margin: 0 auto;
}

.sbbs-header-area .banner-thumbnail .hover {
    position: absolute;
    left: 50%;
    margin-left: -45px;
    top: 50%;
    margin-top: -60px;
}

.sbbs-header-area .banner-thumbnail .hover a {
    width: 90px;
    height: 90px;
    background: transparent linear-gradient(180deg, #32E2A9 0%, #29C3A2 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 16px #00644B7A;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
}

.sbbs-header-area .banner-thumbnail .hover a img {
    margin-left: 6px;
}

/********* sbtc-header-area ***********/

.sbtc-header-area {
    background-repeat: no-repeat;
    background-position: 100% 100%;
    padding: 0 0 85px;
    height: 103vh;
    background-size: cover;
}

.sbtc-header-area .header-inner .title {
    color: #fff;
}

.sbtc-header-area .header-inner p {
    color: #fff;
}

.banner-animate-thumb {
    margin-top: 295px;
    position: relative;
}

.banner-animate-thumb .header-img-2 {
    position: absolute;
    top: -160px;
    left: 0;
}

.banner-animate-thumb .header-img-3 {
    position: absolute;
    top: 81px;
    left: 30%;
}

.banner-animate-thumb .header-img-4 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.banner-animate-thumb .header-img-5 {
    position: absolute;
    left: 19px;
    bottom: 129px;
    width: 178px;
}

/********** header 6 style **********/

.sbtl-header-area {
    background: transparent radial-gradient(closest-side at 67% 50%, #01358D 0%, #002970 100%) 0% 0% no-repeat padding-box;
    padding: 0 0 60px;
}

.sbtl-header-area .banner-slider-item {
    padding-bottom: 0;
}

.sbtl-header-area .banner-slider-item .title,
.sbtl-header-area .banner-slider-item p {
    color: #fff;
}

.sbtl-header-area .banner-slider .owl-prev {
    opacity: 1;
}

.sbtl-header-area .banner-slider .owl-prev:hover {
    color: #fff;
}

.sbtl-header-area .banner-slider .owl-next {
    opacity: 1;
}

.sbtl-header-area .banner-slider .owl-next:hover {
    color: #fff;
}

.sbtl-header-area .banner-slider .owl-dots .owl-dot {
    background: #fff;
}

.sbtl-header-area .banner-slider .owl-dots .owl-dot.active {
    background: #F9556D;
}

/********** header 7 style **********/

.sbmc-header-area {
    padding: 0 0 60px;
}

.sbmc-header-area .banner-slider-item {
    padding-bottom: 0;
}

.shape1 {
    animation: MoveUpDown 20s linear infinite;
    position: absolute;
    left: 500px;
    opacity: 0.3;
}

@keyframes MoveUpDown {
    0%,
    100% {
        top: 35%;
    }
    50% {
        top: 80%;
    }
}

.shape2 {
    animation: MoveLeftRight 80s linear infinite;
    position: absolute;
    bottom: 10px;
    opacity: 0.3;
}

@keyframes MoveLeftRight {
    0%,
    100% {
        right: 25%;
    }
    50% {
        right: 75%;
    }
}

/**** home 8 ********/

.h8-banner-area {
    padding: 0 0 25px;
}

.h8-banner-area .banner-animate-thumb-2 {
    margin-top: 40px !important;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.h8-banner-area .banner-animate-thumb .header-img-2 {
    position: absolute;
    top: auto !important;
    left: auto;
}

.h8-banner-area.style-two {
    background-size: cover;
}

.h8-banner-area.style-two .title {
    font-size: 46px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.h8-banner-area.style-two .sub-title {
    line-height: 1.3;
}

.sbh-main-search {
    margin-top: 48px;
}

.sbh-main-search input {
    height: 50px;
    border: 0;
    width: 100%;
    padding: 0 24px;
    border-radius: 36px 0 0 36px;
}

.sbh-main-search input::placeholder {
    color: #97A1B2;
}

.sbh-main-search .search-input {
    width: 60%;
}

.sbh-main-search .single-select {
    height: 50px;
    line-height: 50px;
    width: 100px;
    border: 0;
    border-radius: 0;
    background: var(--main-color-one);
    color: #fff;
}

.sbh-main-search .single-select:after {
    border-color: #fff;
    right: 16px;
}

.sbh-main-search .single-select .list {
    width: 100%;
}

.sbh-main-search .single-select .list li {
    color: #97A1B3;
}

.sbh-main-search button {
    height: 50px;
    line-height: 50px;
    padding: 0 30px 0 20px;
    border: 0;
    cursor: pointer;
    background: var(--main-color-one);
    color: #fff;
    border-left: 1px solid #e24f65;
    border-radius: 0 36px 36px 0;
}

.sbh-main-search button:focus {
    outline: 0;
}

.domain-price {
    padding-left: 0;
    margin-top: 30px;
}

.domain-price li {
    display: inline-block;
    letter-spacing: 0.36px;
    color: #fff;
    font-family: var(--poppins-font);
    margin-right: 25px;
}

.domain-price li span {
    color: var(--main-color-two);
    margin-left: 2px;
}

/****** about header ********/

.about-header {
    background: transparent linear-gradient(180deg, #F7F9FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

/*-----------------------
    Error 404 Page
-----------------------*/

.error-area {
    height: 100vh;
    display: flex;
    align-items: center;
}

.error-page-left-img .top-image {
    animation: top-image-bounce 3s infinite ease-in-out;
    margin-bottom: 40px;
}

.error-page-left-img .top-image span {
    font-size: 66px;
    font-weight: 300;
    color: var(--main-color-one);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -20px;
}

@keyframes top-image-bounce {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-5px);
    }
}

.error-back-to-home a {
    background: #01358D;
    box-shadow: 0px 7px 19px #01358D7D;
    border-radius: 4px;
    font-size: var(--body-font-size);
    display: inline-block;
    padding: 0 80px;
    color: #fff;
    margin-top: 55px;
}

/*----------------------------------------
    shop style
----------------------------------------*/

.navbar-area .nav-container .nav-right-content ul li.cart {
    position: relative;
}

.navbar-area .nav-container .nav-right-content ul li.cart:hover .widget_shopping_cart_content {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}

.navbar-area .nav-container .nav-right-content ul li.cart .cart-icon {
    transform: rotateY(-180deg);
}

.widget_shopping_cart_content {
    position: absolute;
    right: -13px;
    top: 100%;
    margin-top: 30px;
    z-index: 99;
    width: 400px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0px 4px 26px #01358D17;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
}

.widget_shopping_cart_content:after {
    content: "";
    position: absolute;
    right: 5px;
    top: -2px;
    background: #fff;
    height: 30px;
    width: 30px;
    transform: rotate(45deg);
    border-radius: 1px;
}

.widget_shopping_cart_content ul {
    margin-left: 0 !important;
    padding: 40px 25px !important;
}

.widget_shopping_cart_content ul li {
    margin: 0 0 25px !important;
    padding: 0;
    width: 100%;
    position: relative;
}

.widget_shopping_cart_content ul li .media {
    align-items: center;
}

.widget_shopping_cart_content ul li .media .media-left {
    margin-right: 18px;
}

.widget_shopping_cart_content ul li .media .title {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.16px;
    color: #5B6880;
}

.widget_shopping_cart_content ul li .media p {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.14px;
    color: #97A1B3;
    margin-bottom: 0;
}

.widget_shopping_cart_content ul li .media .price {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.28px;
    color: #5B6880;
}

.widget_shopping_cart_content ul li .remove-product {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 12px;
}

.widget_shopping_cart_content ul li:last-child {
    margin: 0 !important;
}

.widget_shopping_cart_content .total {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.96px;
    color: #5B6880;
    font-weight: 500;
    border-top: 1px solid #E4E7EB;
    border-bottom: 1px solid #E4E7EB;
    padding: 18px 25px;
}

.widget_shopping_cart_content .total strong {
    text-align: left;
}

.widget_shopping_cart_content .total .amount {
    float: right;
}

.widget_shopping_cart_content .buttons {
    text-align: center;
    padding: 38px 0 50px 0;
}

.widget_shopping_cart_content .buttons .button {
    height: 48px;
    line-height: 48px;
    background: #F0F0F0;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #5B6880 !important;
    display: inline-block;
    padding: 0 25px;
}

.widget_shopping_cart_content .buttons .button:hover {
    background: #EF4060;
    color: #fff !important;
    box-shadow: 0px 12px 18px #F9556D4D;
}

.riyaqas-pagination ul {
    padding-left: 0;
    margin-bottom: 0;
}

.riyaqas-pagination ul li {
    display: inline-block;
}

.riyaqas-pagination ul li .page-numbers {
    width: 36px;
    height: 36px;
    border: 1px solid #97A1B3;
    border-radius: 50%;
    line-height: 37px;
    text-align: center;
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0.51;
    color: #97A1B3;
    transition: all 0.3s ease-in;
    cursor: pointer;
    margin: 0 3px;
}

.riyaqas-pagination ul li .page-numbers.prev,
.riyaqas-pagination ul li .page-numbers.next {
    border: none;
}

.riyaqas-pagination ul li .page-numbers:hover,
.riyaqas-pagination ul li .page-numbers.current {
    background: #01358D;
    color: #fff;
    border: 1px solid #01358D;
}

.riyaqas-pagination ul li .page-numbers.prev:hover,
.riyaqas-pagination ul li .page-numbers.next:hover {
    background: none;
    color: #01358D;
    border: none;
}

.woocommerce-result-count {
    font-size: 14px;
    line-height: 48px;
    letter-spacing: 0.28;
    color: #97A1B2;
}

.woocommerce-sorting-select {
    height: 42px;
    line-height: 44px;
    padding: 0 28px;
    background: #F7F7F7;
    border-radius: 35px;
    border: 0;
    font-size: 14px;
    letter-spacing: 0.28;
    color: #97A1B2;
}

.woocommerce-sorting-select span.current {
    width: 180px;
    display: block;
}

.woocommerce-sorting-select:after {
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    height: 7px;
    right: 28px;
    width: 7px;
}

.woocommerce-sorting-select .list {
    width: 100%;
}

.woocommerce-sorting-select .list li {
    font-size: 14px !important;
    letter-spacing: 0.28 !important;
    color: #97A1B2 !important;
    font-weight: 400 !important;
    transition: 0.4s !important;
}

.woocommerce-sorting-select .list li:hover,
.woocommerce-sorting-select .list li:focus,
.woocommerce-sorting-select .list li.selected {
    color: #01358D !important;
}

.woocommerce-sorting-select:hover,
.woocommerce-sorting-select:focus {
    border: 0;
    outline: 0;
}

.single-shop {
    text-align: center;
    margin-bottom: 50px;
}

.single-shop .thumb {
    overflow: hidden;
    position: relative;
}

.single-shop .thumb img {
    transform: scale(1);
    transition: 0.8s;
}

.single-shop .thumb .cart-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    align-items: center;
    display: inline-grid;
    transition: all 0.6s ease;
    visibility: hidden;
    opacity: 0;
}

.single-shop .thumb .cart-btn a {
    box-shadow: 0px 14px 18px #80001369;
    border-radius: 26px;
    height: 46px;
    line-height: 46px;
    padding: 0 35px;
    display: inline-block;
}

.single-shop .thumb .cart-btn a i {
    margin-left: 10px;
}

.single-shop .thumb .product-badge {
    position: absolute;
    left: 0;
    top: 18px;
    height: 32px;
    line-height: 33px;
    padding: 0 14px 0 13px;
    font-size: var(--body-font-size);
    border-radius: 0px 16px 16px 0px;
    cursor: pointer;
    z-index: 3;
    transition: 0.4s;
    display: inline-block;
}

.single-shop .thumb:before {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 53, 141, 0.15);
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.single-shop .thumb:after {
    content: "";
    position: absolute;
    right: -50%;
    bottom: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 53, 141, 0.15);
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.single-shop:hover .thumb img {
    transform: rotate(6deg) scale(1.2);
}

.single-shop:hover .thumb:before {
    left: 0;
    top: 0;
    opacity: 1;
}

.single-shop:hover .thumb:after {
    right: 0;
    bottom: 0;
    opacity: 1;
}

.single-shop:hover .thumb .cart-btn {
    visibility: visible;
    opacity: 1;
}

.single-shop .content {
    padding-top: 22px;
}

.single-shop .content .rating {
    color: #FF9100;
    margin-bottom: 10px;
}

.single-shop .content a {
    line-height: 1.2;
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 0.54px;
    color: #01358D;
    font-weight: 600;
    display: block;
    transition: 0.4s;
    font-family: var(--heading-font);
}

.single-shop .content a:hover {
    color: var(--main-color-one);
}

.single-shop .content .price {
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #97A1B3;
}

.single-shop .content .price del {
    color: #C7CDD6;
    margin-left: 12px;
}

.single-shop.style-two {
    box-shadow: 0px 3px 18px #5B688029;
    background: #EDF3F5;
    border-radius: 5px;
    margin-bottom: 30px;
    border: 2px solid #fff;
}

.single-shop.style-two .thumb {
    padding: 20px 0;
}

.single-shop.style-two .thumb:before,
.single-shop.style-two .thumb:after {
    border-radius: 5px 5px 0 0;
}

.single-shop.style-two .content {
    padding-bottom: 20px;
    background: #fff;
    border-radius: 0 0 5px 5px;
}

/******* single product page ********/

.product-thumbnail-wrapper .product-thumbnail-carousel .single-thumbnail-item {
    margin-bottom: 16px;
    border: 0 !important;
}

.product-thumbnail-wrapper .product-thumbnail-carousel .slick-list {
    height: auto !important;
}

.product-description {
    padding: 20px 0 0;
}

.product-description .customer-review {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28px;
    color: #97A1B3;
    margin-bottom: 20px;
    display: block;
}

.product-description .customer-review span {
    margin-left: 10px;
}

.product-description .customer-review i {
    color: #FF9100;
    margin-right: 8px;
}

.product-description .title {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.6px;
    font-weight: 500;
    color: #01358D;
    margin-bottom: 20px;
}

.product-description .price {
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-bottom: 30px;
}

.product-description .price del {
    color: #C7CDD6;
    margin-left: 12px;
}

.product-description .content {
    font-size: var(--body-font-size);
    line-height: 27px;
    letter-spacing: 0.28px;
    color: #5B6880;
    margin-bottom: 55px;
}

.product-description .check-box-area {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.26px;
    color: #8A8A8A;
    margin-top: 50px;
    margin-bottom: 19px;
}

.product-description .check-box-area input {
    float: left;
    margin-right: 6px;
    margin-top: 1px;
}

.product-description .category {
    margin-top: 70px;
    margin-bottom: 20px;
}

.product-description .category span {
    font-size: var(--body-font-size);
    color: #01358D;
    font-weight: 500;
    margin-right: 4px;
    letter-spacing: 0.3px;
}

.product-description .category a {
    font-size: var(--body-font-size);
    color: #5B6880;
    letter-spacing: 0.3px;
}

.product-description .tags span {
    font-size: var(--body-font-size);
    color: #01358D;
    font-weight: 500;
    margin-right: 4px;
    letter-spacing: 0.3px;
}

.product-description .tags a {
    font-size: var(--body-font-size);
    color: #5B6880;
    letter-spacing: 0.3px;
}

.quantity {
    position: relative;
    display: inline-block;
}

.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;
}

.quantity .qty-button {
    height: 52px;
    width: 50px;
    border: 0;
    background: #F0F0F0;
    font-size: 33px;
    letter-spacing: 0.2px;
    color: #5B6880;
    font-family: var(--raleway-font);
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.quantity .qty-button.inc {
    position: absolute;
    right: 0;
    border-radius: 0 6px 6px 0;
    line-height: 53px;
}

.quantity .qty-button.dec {
    position: absolute;
    left: 0;
    border-radius: 6px 0 0 6px;
    line-height: 50px;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    display: none;
}

.product-information {
    padding-top: 64px;
}

.product-information ul.nav-tabs {
    border-bottom: 1px solid #E4E7EB;
    padding-bottom: 20px;
    margin-bottom: 31px;
}

.product-information ul.nav-tabs li a {
    height: 52px;
    line-height: 52px;
    background: #F0F0F0;
    border-radius: 6px;
    padding: 0 60px;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #97A1B3;
    border: 0;
    transition: all 0.3s ease-in;
    margin-right: 25px;
}

.product-information ul.nav-tabs li a.active,
.product-information ul.nav-tabs li a:hover,
.product-information ul.nav-tabs li a:focus {
    background: #F9556D;
    color: #fff;
}

.product-information .tab-content .description-tab-content p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    color: #5B6880;
}

.review-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.18px;
    color: #5B6880;
    font-weight: 500;
    margin-bottom: 40px;
}

.single-review {
    margin-bottom: 60px;
}

.single-review .media {
    align-items: center;
    margin-bottom: 15px;
}

.single-review .media img {
    margin-right: 30px;
    box-shadow: 0px 3px 26px -8px #97A1B3;
    border-radius: 50%;
    height: 70px;
    width: 70px;
}

.single-review .media span {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.18px;
    color: #5B6880;
    margin-bottom: 10px;
    display: block;
}

.single-review .media p {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.12px;
    color: #97A1B3;
    margin-bottom: 0;
}

.single-review p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    color: #5B6880;
}

/****** checkout page ******/

.checkout-form-wrap {
    padding-right: 65px;
    position: relative;
}

.checkout-form-wrap:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background: #E4E7EB;
    right: -14px;
    top: 0;
}

.checkout-form-product {
    padding-left: 60px;
}

.checkout-form-product .single-cart-product .media-body p {
    font-size: 14px;
}

.checkout-title {
    border-bottom: 1px solid #D9DDE4;
    margin-bottom: 35px;
}

.checkout-title h6 {
    letter-spacing: 0.22px;
    color: #5B6880;
    font-weight: 400;
}

.checkout-title span {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-right: 8px;
}

.checkout-title a {
    font-size: var(--body-font-size);
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #01358D;
    font-weight: 500;
}

.payment-method ul li {
    font-size: var(--body-font-size);
    line-height: 18px;
    letter-spacing: 0.15px;
    color: #97A1B3;
    list-style: none;
    position: relative;
    padding-left: 32px;
    margin-bottom: 13px;
}

.payment-method ul li img {
    margin-right: 14px;
}

.payment-method ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: 1px solid #97A1B3;
}

.payment-method.style-two {
    box-shadow: 0px 24px 50px #4A4A4A1F;
    display: inline-block;
    padding: 20px;
    border-radius: 4px;
}

.payment-method.style-two ul,
.payment-method.style-two ul li {
    margin-bottom: 0;
    padding: 0;
}

.payment-method.style-two ul:before,
.payment-method.style-two ul li:before {
    display: none;
}

.single-cart-product {
    align-items: center;
}

.single-cart-product .media-left {
    margin-right: 25px;
}

.single-cart-product .media-body span {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.16px;
    color: #5B6880;
    margin-bottom: 9px;
    display: block;
}

.single-cart-product .media-body p {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.16px;
    color: #97A1B3;
    margin-bottom: 0;
}

.cart-close {
    cursor: pointer;
}

.cart-product-price {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.32px;
    color: #5B6880;
}

.table-responsive tr td {
    vertical-align: middle;
    padding: 0.75rem 0;
    border-top: 0 !important;
    border-bottom: 1px solid #dee2e6;
}

.total-shapping-area {
    width: 300px;
    float: right;
}

.total-shapping-area .charge {
    padding-top: 25px;
}

.total-shapping-area .charge span {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
}

.total-shapping-area .total-amount {
    border-bottom: 1px solid #dee2e6;
    padding-top: 30px;
    padding-bottom: 10px;
}

.total-shapping-area .total-amount span {
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #5B6880;
    font-weight: 500;
}

.total-shapping-area .total-amount span.amount {
    font-weight: 400;
}

.single-shop-related-product .section-title {
    margin-bottom: 57px;
}

/**job-position-area **/

.single-job-list {
    background: #fff;
    box-shadow: 0px 4px 20px #9398A11A;
    border-radius: 8px;
    padding: 22px 35px 22px 26px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    align-items: center;
}

.single-job-list:hover {
    box-shadow: 0px 7px 30px #9398A11C;
}

.single-job-list img {
    width: 66px;
    height: 66px;
}

.single-job-list .media-body {
    border-left: 1px solid #EEEBF7;
    margin-left: 26.5px;
    padding-left: 25.5px;
}

.single-job-list .media-body h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.18px;
    color: #5B6880;
    display: inline-block;
    margin-bottom: 12px;
}

.single-job-list .media-body span {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #5B6880;
    display: block;
}

.job-apply-btn {
    background: #FFFFFF;
    border: 1px solid #D6DAE1;
    border-radius: 4px;
    font-size: var(--body-font-size);
    letter-spacing: 0.3px;
    color: #97A1B3;
    height: 44px;
    line-height: 44px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 30px;
    display: inline-block;
}

.job-apply-btn:hover {
    box-shadow: 0px 7px 16px #01358D6B;
    background: #01358D;
    color: #fff;
    border: 1px solid #01358D;
}

.job-apply-btn:focus,
.job-apply-btn:active {
    box-shadow: none;
    outline: 0;
}

/**job-details-area**/

.job-details-area .section-title .title {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.72px;
    border-bottom: 1px solid #01358D;
    padding: 0;
    display: inline-block;
}
.job-details-area .section-title .titlep {
    font-size: 20px !important;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.72px;
    border-bottom: 1px solid #01358D;
    padding: 0;
    display: inline-block;
}

.job-details-area h6.title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.24px;
    color: #01358D;
    margin-bottom: 10px;
}

.job-details-area span {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.36px;
    color: #5B6880;
}

.job-details-area .sub-title {
    margin-top: 26px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #01358D;
    margin-bottom: 10px;
}

.job-details-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-details-area ul li {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    position: relative;
    padding-left: 18px;
}

.job-details-area ul li:after {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    left: 0;
    top: 13px;
    border-radius: 50%;
    background: #5B6880;
}

.job-details-area .job-apply-btn {
    margin-top: 69px;
    border: 0;
    box-shadow: 0px 7px 16px #01358D6B;
    background: #01358D;
    color: #fff;
}

.job-details-area .job-apply-btn:hover {
    opacity: 0.9;
}

.single-blog-content {
    border: 0;
    margin-bottom: 40px;
}

.single-blog-content .thumb {
    margin-bottom: 30px;
}

.single-blog-content .single-blog-details .post-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-blog-content .single-blog-details .post-meta li {
    font-size: var(--body-font-size);
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #97A1B3;
    margin-right: 3px;
    margin-bottom: 9px;
    display: inline-block;
}

.single-blog-content .single-blog-details .post-meta li i {
    margin-right: 5px;
    float: left;
    margin-top: 5px;
}

.single-blog-content .single-blog-details .post-meta li.admin {
    letter-spacing: 0.45px;
    color: #DFE5EF;
    background: #01358D;
    border-radius: 2px;
    height: 23px;
    line-height: 24px;
    padding: 0 15px;
    margin-right: 17px;
}

.single-blog-content .single-blog-details h5 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.72px;
    color: #01358D;
    margin-bottom: 21px;
    display: block;
}

.single-blog-content .single-blog-details h5 {
    margin-top: 12px;
}

.single-blog-content .single-blog-details h5 a {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.72px;
    color: #01358D;
    display: block;
}

.single-blog-content .single-blog-details p {
    font-size: var(--body-font-size);
    line-height: 27px;
    color: #5B6880;
    margin-bottom: 16px;
}

.single-blog-content .single-blog-details a {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #01358D;
    transition: all 0.3s ease;
}

.single-blog-content .single-blog-details a span {
    transition: all 0.3s ease;
    position: relative;
}

.single-blog-content .single-blog-details a:hover {
    color: var(--main-color-one);
}

.single-blog-content .single-blog-details a:hover span {
    margin-left: 3px;
}

.single-blog-content .single-blog-details a i {
    font-size: 22px;
    position: absolute;
    bottom: -3px;
    right: -28px;
}

.single-blog-content.style-two .thumb img {
    width: 100%;
}

.single-blog-content.style-two .single-blog-details h5 a {
    font-size: 26px;
    line-height: 32px;
}

.single-blog-content .audio-player iframe {
    width: 100%;
    border: 0;
}

/******* blog details style *******/

.post-share-area {
    border-top: 1px solid #E4E7EB;
    border-bottom: 1px solid #E4E7EB;
    padding: 40px 0;
}

.post-share-area .sb-inner-title {
    font-size: 24px;
    line-height: auto;
    font-weight: 500;
    letter-spacing: 0.28px;
    color: #01358D;
    margin-bottom: 0;
    margin-right: 30px;
}

.post-share-area .social-icon li:first-child {
    margin-left: 0;
}

.rq-blockquote {
    padding: 40px 30px 35px 30px;
    position: relative;
    margin: 13px 0 20px 0;
    background: #F1F2F6;
}

.rq-blockquote p {
    font-weight: 500;
    font-size: 18px !important;
    font-style: Italic;
    color: #515D73;
    font-family: var(--body-font);
}

/*--------------------------------------------------------------
	## content
--------------------------------------------------------------*/

/********** home 1 content **********/

.header-inner {
    padding-top: 40px;
}

.service-area {
    position: relative;
}

.service-area:after {
    content: "";
    position: absolute;
    background-image: url("../../assets/img/service/bg.png");
    background-repeat: no-repeat;
    right: 0;
    top: 50%;
    background-size: auto;
    left: 94%;
    bottom: 0;
    margin-top: -150px;
    z-index: -1;
}

.sbs-what-riyaqas {
    background-repeat: no-repeat;
    background-size: 48% 100%;
}

.sbs-testimonial-section {
    margin-top: 90px;
}

.sbs-business-tool {
    background-repeat: no-repeat;
    background-size: 52% 100%;
    padding-top: 70px;
}

/********** home 2 content **********/

.sba-featute-area {
    margin-bottom: 70px;
}

.sba-header-area {
    position: relative;
    padding: 0px 0 104px;
}

.sba-header-area:before {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/app/banner/bg1.png);
    background-repeat: no-repeat;
    left: 0;
    top: 50px;
    background-size: 17%;
    right: 0;
    bottom: 0;
}

.sba-header-area:after {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/app/banner/bg2.png);
    background-repeat: no-repeat;
    left: 0;
    top: -20px;
    background-size: 51%;
    right: 0;
    bottom: 0;
    background-position: right;
    z-index: -1;
}

.sba-manage-data-area {
    padding-top: 42px;
}

/******** home 3 centent *********/

/********* home 4 content **********/

.sbst-banner-area:before {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/bg/8h1.png);
    background-repeat: no-repeat;
    left: 0;
    top: 50px;
    background-size: contain;
    right: 0;
    bottom: 0;
}

.sbst-provide-security {
    background-repeat: no-repeat;
    background-size: 65% 100%;
    background-position: right;
    padding: 100px 0 70px 0;
}

.sbst-team-area-wrpper {
    margin-top: 92px;
}

.team-area-wrpper {
    padding: 112px 0 50px;
    position: relative;
}

.team-area-wrpper:after {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/startup/team/4.png);
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

/********* home 5 content *********/

.sbtc-goal-counter-area {
    position: relative;
}

.sbtc-goal-counter-area .thumb {
    position: relative;
}

.sbtc-goal-counter-area .goal-counter {
    background: #01358D;
    padding: 78px 76px 110px;
    position: absolute;
    right: -37%;
    top: 18%;
    z-index: 1;
    width: 674px;
    max-height: 454px;
}

.sbtc-goal-counter-area .goal-counter .section-title .title {
    color: #fff;
}
.sbtc-goal-counter-area .goal-counter .section-title .titlep {
    color: #fff;
}

/********** home 6 ********/

.riyaqas-check-bg {
    position: absolute;
    z-index: -1;
    margin-top: -80px;
    width: 121%;
    margin-left: -150px;
}

.riyaqas-check-bg2 {
    position: absolute;
    z-index: -1;
    margin-top: -199px;
    width: 100%;
    margin-left: -150px;
}

.marketing-area .section-title {
    padding: 85px 80px 80px;
}

.marketing-area .section-title .title {
    color: #fff;
}

.marketing-area .section-title p {
    color: #fff;
    margin-top: 25px;
}

/*********** home 7 ***********/

.sbdm-image-gurd {
    position: relative;
}

.sbdm-image-gurd .sbdm-image-2 {
    position: absolute;
    left: 0;
    top: 90px;
}

.sbdm-image-gurd .sbdm-image-3 {
    position: absolute;
    bottom: 0;
    left: 200px;
    width: 80%;
}

.sbdm-image-gurd2 {
    position: relative;
}

.sbdm-image-gurd2 .sbdm-image-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.sbdm-image-gurd2 .sbdm-image-3 {
    position: absolute;
    left: -40px;
    bottom: 0;
}

/******** home 8 *******/

.sb-animate-img {
    position: relative;
}

.sb-animate-img .thumb-2 {
    position: absolute;
    top: 0;
}

.h8-banner-area-bg {
    position: relative;
}

.h8-banner-area-bg:before {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/bg/8h1.png);
    background-repeat: no-repeat;
    left: 0;
    top: 50px;
    background-size: contain;
    right: 0;
    bottom: 0;
}

.comment-form-area .single-input-wrap .single-input.textarea {
    margin-bottom: 10px;
}

.comment-form-area .riyaqas-form-wrap .btn {
    padding: 0 30px;
}

.sbtc-success-section.sbst-provide-security {
    background-size: 48% 100%;
}

.accordion-h-five {
    border-top: 1px dashed #8F98A8;
    border-bottom: 1px dashed #8F98A8;
    padding-top: 70px;
    padding-bottom: 56px;
}

.about-area.sbst-provide-security {
    background-size: 50%;
}

.bg-img-right-area {
    background-position: 100%;
    background-repeat: no-repeat;
    padding: 150px 0;
    background-size: 41% 100%;
}

/*----------------------------------
    Footer Area
----------------------------------*/

.newsletter-subcribe .form-group {
    position: relative;
    margin-bottom: 0;
}

.newsletter-subcribe .form-group input {
    height: 60px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #97A1B2;
    border-radius: 30px;
    padding: 0 182px 0 38px;
    font-size: var(--body-font-size);
    letter-spacing: 0.45px;
    color: #97A1B2;
}

.newsletter-subcribe .form-group input::placeholder {
    font-size: var(--body-font-size);
    letter-spacing: 0.45px;
    color: #97A1B2;
    opacity: 0.51;
}

.newsletter-subcribe .form-group .subcribe-submit {
    position: absolute;
    right: 3px;
    top: 3px;
    height: 54px;
    line-height: 56px !important;
    padding: 0 39px;
    font-size: 17px;
    letter-spacing: 1.02px;
    color: #fff;
    text-transform: uppercase;
    line-height: 24px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease-in;
    border: 0 !important;
}

.newsletter-subcribe .form-group .subcribe-submit:hover,
.newsletter-subcribe .form-group .subcribe-submit:focus {
    opacity: 0.8;
    outline: 0;
}

.footer-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.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);
}

.copyright-inner {
    padding-bottom: 20px;
}

.copyright-inner .copyright-text {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.28px;
    color: #ACB4C1;
    line-height: 44px;
}

.copyright-inner .copyright-text a {
    font-size: 14px;
    letter-spacing: 0.42px;
    font-weight: 500;
    display: inline-block;
    color: #ACB4C1;
}

.copyright-inner .copyright-text a i {
    color: var(--main-color-one);
    padding: 0 3px 0 5px;
}

.copyright-inner .copyright-text a span {
    position: relative;
    color: #01358D;
}

.copyright-inner .copyright-text a span:before {
    position: absolute;
    left: auto;
    right: 0;
    top: 100%;
    content: "";
    background: #01358D;
    height: 1px;
    width: 0%;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    transition: 0.6s;
}

.copyright-inner .copyright-text a span:hover:before {
    visibility: visible;
    opacity: 1;
    right: auto;
    left: 0;
    width: 100%;
}

.social-icon {
    margin-bottom: 0;
    padding-left: 0;
}

.social-icon li {
    display: inline-block;
    margin: 0 5px;
}

.social-icon li a {
    height: 42px;
    width: 42px;
    display: inline-block;
    box-shadow: 0px 3px 14px #666c752e;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    color: #5B6880;
    transition: all 0.3s ease-in;
    background: #fff;
    font-size: 16px;
}

.social-icon li .dribbble:hover {
    color: #ea4c89;
}

.social-icon li .facebook:hover {
    color: #3b5999;
}

.social-icon li .twitter:hover {
    color: #55acee;
}

.social-icon li .linkedin:hover {
    color: #0077B5;
}

.social-icon li .pinterest:hover {
    color: #c8232c;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: none;
}

/*-------------------------
    ## Preloader Css
---------------------------*/

.pre-wrap {
    position: fixed;
    content: "";
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: rgba(2, 48, 71, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.preloader-inner .cancel-preloader a {
    background-color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--main-color-one);
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    transition: all 0.3s ease-in;
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--main-color-one);
    border-radius: 100%;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/

.search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
}

.search-popup .search-form {
    min-width: 600px;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
    z-index: 9;
}

.search-popup .search-form .form-group .form-control {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 54px;
    padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 54px;
    border: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--main-color-two);
    color: #fff;
    transition: all 0.3s ease-in;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

.search-popup .search-form .submit-btn:hover {
    background-color: #5B6880;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(2, 48, 71, 0.8);
    z-index: 9;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.8;
}

/******** cart popup **********/

.cart-popup.active .order-table {
    visibility: visible;
    opacity: 1;
}

.cart-popup .order-table {
    width: 57%;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
    max-height: calc(100% - 15%);
    overflow-y: auto;
    background: #FFFFFF;
    box-shadow: 0px 3px 26px #01358D0D;
    border-radius: 8px;
    z-index: 99;
    padding: 60px 44px;
}

.cart-popup .order-table .table {
    margin-bottom: 0;
}

.cart-popup .order-table .checkout-title h6 {
    color: #01358D;
    font-weight: 500;
    margin-bottom: 30px;
}

.login-register-popup.active {
    visibility: visible;
    opacity: 1;
}

.login-register-popup {
    background: #fff;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 56%;
    transition: 0.5s ease;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
    max-height: calc(100% - 15%);
    overflow-y: auto;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    box-shadow: 0px 2px 69px #97A1B238;
}

.login-register-popup .riyaqas-form-wrap {
    display: block;
    width: 100%;
    padding: 0 55px;
}

.login-register-popup .riyaqas-form-wrap .single-input-wrap label {
    line-height: unset;
}

.login-register-popup .riyaqas-form-wrap .widget-title {
    font-size: 20px;
}

.login-register-popup .riyaqas-form-wrap span,
.login-register-popup .riyaqas-form-wrap label {
    font-size: 12px;
    color: #97A1B3;
    letter-spacing: 0.24px;
}

.login-register-popup .riyaqas-form-wrap .check-box-area {
    overflow: hidden;
}

.login-register-popup .riyaqas-form-wrap .check-box-area input {
    margin-right: 5px;
    float: left;
}

.login-register-popup .riyaqas-form-wrap .check-box-area label {
    margin-bottom: 0;
    margin-top: -3px;
    float: left;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap {
    line-height: 41px;
    margin-top: 30px;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap .btn {
    height: 40px;
    line-height: 41px;
    padding: 0 30px;
    border-radius: 0;
    margin-top: 0;
    margin-right: 15px;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap a.signup {
    color: #01358D;
    font-size: 12px;
    border-bottom: 1px solid #01358D;
    margin-left: 5px;
}

/*---------------------------------------
    ## 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: #5B6880;
}

.btn-white:hover,
.btn-white:focus {
    color: #fff;
    background: transparent;
}

.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-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: 65px;
}

.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: #01358D;
    opacity: 1;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--poppins-font);
}
.section-title .titlep {
    font-size: 20px !important;
    letter-spacing: 0.92px;
    color: #01358D;
    opacity: 1;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--poppins-font);
}

.section-title .title span {
    color: var(--main-color-one);
}

.section-title .title-2 {
    font-size: 36px;
    line-height: 44px;
}

.section-title p {
    letter-spacing: 0.32px;
    color: #5B6880;
    opacity: 1;
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    margin-top: 18px;
    margin-bottom: 0;
    font-weight: 400;
}

.section-title a {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    font-weight: 500;
    letter-spacing: 0.45px;
    color: #97A1B3;
    transition: all 0.3s ease-in;
    margin-top: 24px;
    display: inline-block;
    position: relative;
}

.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: var(--main-color-one);
}

.section-title.style-two {
    margin-bottom: 44px;
}

.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;
}

/*-----------------------------------------
    Accordion Item
-----------------------------------------*/

/********* single accordion *********/

.single-accordion {
    border: 1px solid #F5F9FF;
    border-radius: 3px;
    margin-bottom: 14px;
}

.single-accordion .card-header {
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;
}

.single-accordion .card-header h2 button {
    font-size: 18px;
    letter-spacing: 0.32px;
    color: #01358D;
    width: 100%;
    text-align: left;
    position: relative;
    background: #F5F9FF;
    border-radius: 3px;
    border: 0;
    padding: 19px 60px 19px 34px;
    height: auto;
    line-height: 34px;
    float: left;
    font-weight: 500;
    white-space: normal;
}

.single-accordion .card-header h2 button:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 12px;
    background: #01358D;
    top: 50%;
    right: 30px;
}

.single-accordion .card-header h2 button:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 12px;
    background: #01358D;
    top: 50%;
    transition: all 0.3s ease;
    right: 30px;
}

.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 71px 23px 37px;
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #97A1B3;
}

.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: 14px 35px 14px 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;
}

/*----------------------------------------
  ## list
----------------------------------------*/

.riyaqas-check-list {
    margin-bottom: 20px;
}

.riyaqas-check-list img {
    margin-right: 17px;
}

.riyaqas-check-list span {
    letter-spacing: 0.34px;
    color: #5B6880;
    font-size: var(--body-font-size);
    line-height: 24px;
}

.riyaqas-check-list.style-two {
    margin-bottom: 3px;
    list-style: none;
    position: relative;
}

.riyaqas-check-list.style-two:after {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: -15px;
    top: 9px;
    border: 1px solid var(--main-color-one);
}

.talented-pepole-list ul {
    margin-bottom: 0;
    padding-left: 0;
}

.talented-pepole-list ul li {
    display: inline-block;
    text-align: center;
    position: relative;
    padding: 0 34px;
}

.talented-pepole-list ul li h3 {
    font-size: 32px;
    letter-spacing: 0.64px;
    color: #01358D;
    line-height: 24px;
    font-weight: 400;
}

.talented-pepole-list ul li span {
    font-size: var(--body-font-size);
    letter-spacing: 0.3px;
    color: #97A1B3;
    line-height: 24px;
}

.talented-pepole-list ul li:after {
    content: "";
    position: absolute;
    height: 50px;
    width: 1px;
    top: 0;
    right: 0;
    background: #97A1B3;
    opacity: 0.46;
}

.talented-pepole-list ul li:first-child {
    padding: 0 34 0 0px;
    padding-left: 0 !important;
}

.talented-pepole-list ul li:last-child:after {
    display: none;
}

.riyaqas-list-2 {
    padding-left: 0 !important;
}

.riyaqas-list-2 li {
    box-shadow: 0px 5px 22px #01358D2E;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 25px;
    background: #fff;
    transition: all 0.3s ease-in;
}

.riyaqas-list-2 li img {
    transition: 0.8s;
}

.riyaqas-list-2 li:first-child {
    margin-left: 0;
}

.riyaqas-list-2 li:last-child {
    margin-right: 0;
}

.riyaqas-list-2 li:hover {
    box-shadow: 0px 10px 22px #01358D2E;
}

.riyaqas-list-2 li:hover img {
    transform: rotateY(180deg);
}

.riyaqas-list-3 {
    padding-left: 0 !important;
}

.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: #5B6880;
    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: 1px solid #01358D;
    background: #fff;
}

.riyaqas-check-list-wrap .riyaqas-check-list {
    margin-bottom: 10px;
}

.riyaqas-check-list-wrap .riyaqas-check-list img {
    margin-top: 6px;
}

.single-hosting-content {
    padding-left: 50px;
}

.single-hosting-content p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
}

/******** image shape *********/

.shape-bg-image {
    padding-bottom: 30px;
}

.shape-bg-image .thumb {
    position: relative;
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("../../assets/img/startup/skill/2.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    overflow: hidden;
}

.shape-bg-image .thumb img {
    width: 100%;
    height: 100%;
}

.shape-bg-image:after {
    content: "";
    position: absolute;
    background-image: url("../../assets/img/startup/skill/3.png");
    background-repeat: no-repeat;
    left: 25px;
    top: 30px;
    background-size: 98%;
    right: 0;
    bottom: 0;
    background-position: right;
    z-index: -1;
}

.mask-bg-wrap {
    position: relative;
    padding-bottom: 30px;
}

.mask-bg-wrap .thumb {
    position: relative;
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    overflow: hidden;
}

.mask-bg-wrap .thumb img {
    width: 100%;
    height: 100%;
}

.mask-bg-wrap:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    background-size: 100%;
    right: 0;
    bottom: 0;
    background-position: right;
    z-index: -1;
}

.mask-bg-wrap.mask-bg-img-1 .thumb {
    -webkit-mask-image: url("../../assets/img/bg/8h4.png");
}

.mask-bg-wrap.mask-bg-img-1:after {
    background-image: url("../../assets/img/bg/8h4.png");
}

.mask-bg-wrap.mask-bg-img-2 .thumb {
    -webkit-mask-image: url("../../assets/img/bg/8h5.png");
}

.mask-bg-wrap.mask-bg-img-2:after {
    background-image: url("../../assets/img/bg/8h5.png");
    bottom: -20px;
    right: -15px;
}

.mask-bg-wrap.mask-bg-img-3 .thumb {
    -webkit-mask-image: url("../../assets/img/bg/1.png");
}

.mask-bg-wrap.mask-bg-img-3:after {
    background-image: url("../../assets/img/bg/1.png");
    bottom: -20px;
    right: -15px;
}

.riyaqas-stab .nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
}

.riyaqas-stab .nav-tabs .nav-link {
    border: 0 !important;
    background: transparent;
    font-size: 18px;
    position: relative;
    transition: 0.3s;
    padding: 0 0 10px 0;
    margin: 0 50px 0 10px;
}

.riyaqas-stab .nav-tabs .nav-link:hover,
.riyaqas-stab .nav-tabs .nav-link.active {
    color: var(--main-color-one);
}

.riyaqas-stab .nav-tabs .nav-link:hover:after,
.riyaqas-stab .nav-tabs .nav-link.active:after {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.riyaqas-stab .nav-tabs .nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--main-color-one);
    height: 1px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.riyaqas-stab .riyaqas-stab-content {
    padding: 35px 0;
}

/*----------------------------------------
	## ui elements
----------------------------------------*/

.bs-popover-right {
    top: 85px !important;
    margin-left: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #424344 !important;
    box-shadow: 0px 15px 18px #00000029;
}

.bs-popover-right .arrow {
    display: none !important;
}

.bs-popover-right .popover-body {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.42px;
    color: #F6F6F6;
    padding: 30px;
}

.navbar-area-ui-element {
    position: inherit !important;
}

.single-alert {
    max-width: 536px;
    box-shadow: 0px 12px 50px #97A1B238;
    border-radius: 6px;
    padding: 70px 0 62px;
}

.single-alert .thumb {
    margin-bottom: 25px;
}

.single-alert p {
    font-size: 18px;
    letter-spacing: 0;
    color: #97A1B2;
    margin-bottom: 0;
}

.single-alert-mail-check {
    max-width: 536px;
    box-shadow: 0px 12px 50px #97A1B238;
    border-radius: 6px;
    padding: 100px 0;
    position: relative;
}

.single-alert-mail-check p {
    margin-bottom: 0;
}

.single-alert-mail-check .mail-alert-close {
    position: absolute;
    right: -22px;
    top: -20px;
    cursor: pointer;
}

.login-register-basic {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(0);
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

/*--------------------------------
    ## All map 
----------------------------------*/

.worldmap-wrap {
    overflow: hidden;
    height: 360px;
}

.worldmap-wrap .world-map {
    height: 360px;
}

.worldmap-wrap .water {
    fill: none;
}

.worldmap-wrap .land {
    fill: #D9E3F1;
    stroke: #ffffff;
    stroke-width: 0.7px;
    width: 100% !important;
    margin: 0 auto;
}

/***** google map *****/

.map-area-wrap {
    box-shadow: 0px 25px 70px #01358D1A;
    border-radius: 6px;
    overflow: hidden;
}

#map {
    height: 610px;
}

.map-area-wrap .desktop-center-item {
    display: grid;
}

.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;
}

.more-question-area .single-service {
    padding: 96px 40px 78px 40px;
}

.more-question-area .single-service img {
    margin-bottom: 35px;
}

.more-question-area .single-service h6 {
    margin-bottom: 16px;
}

/*--------------------------------
    ## Video popup
----------------------------------*/

.img-with-video {
    background-position: center -2px;
    background-size: 83%;
    background-repeat: no-repeat;
}

.img-with-video .img-wrap {
    position: relative;
}

.img-with-video .img-wrap .hover {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -33px;
    margin-top: -52px;
}

.img-with-video .img-wrap .hover img {
    width: 76px;
    height: 76px;
}

.img-with-video .img-wrap .hover a {
    position: relative;
    display: inline-block;
}

.img-with-video .img-wrap .hover a i {
    font-size: 75px;
    color: var(--main-color-one);
}

.img-with-video-2 {
    padding-top: 0;
    padding-bottom: 0;
}

/****** Vider Magnific-popup ***/

.mfp-zoom-in .mfp-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.mfp-zoom-in {
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-in;
    transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-in;
}

.mfp-zoom-in.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
    transform: scale(0.7);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/*----------------------------------------
	## All slider
----------------------------------------*/

.sbs-testimonial-slider {
    height: 300px;
    margin-left: -90px;
    position: relative;
    width: 838px;
}

.sbs-testimonial-slider .sbs-arrowleft {
    position: absolute;
    right: 0;
    bottom: 53px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    line-height: 42px;
    text-align: center;
    display: inline-block;
    border: 1px solid #EFEFEF;
    background: #fff;
    color: #5B6880;
    z-index: 2;
}

.sbs-testimonial-slider .sbs-arrowleft i {
    transition: all 0.3s ease-in;
}

.sbs-testimonial-slider .sbs-arrowleft a {
    display: block;
}

.sbs-testimonial-slider .sbs-arrowleft:hover i {
    opacity: 0.7;
}

.sbs-testimonial-slider .sbs-arrowright {
    position: absolute;
    right: 0;
    bottom: 4px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    line-height: 42px;
    text-align: center;
    display: inline-block;
    border: 1px solid #EFEFEF;
    background: #fff;
    color: #5B6880;
    z-index: 2;
}

.sbs-testimonial-slider .sbs-arrowright i {
    transition: all 0.3s ease-in;
}

.sbs-testimonial-slider .sbs-arrowright a {
    display: block;
}

.sbs-testimonial-slider .sbs-arrowright:hover i {
    opacity: 0.7;
}

/********* home 1 client slider **********/

.choose_slider_items {
    position: relative;
}

.choose_slider_items ul {
    position: relative;
}

.choose_slider_items ul li {
    width: 500px;
    background: #ffffff;
    box-shadow: 0px 12px 36px #97A1B224;
    border-radius: 6px;
    padding: 67px 30px 55px 75px;
}

.choose_slider_items ul li img {
    height: 74px;
    width: 74px;
    border-radius: 50%;
    background: #efefef;
    margin-right: 33px;
}

.choose_slider_items ul li .media {
    margin-bottom: 25px;
}

.choose_slider_items ul li .media-body h6 {
    font-size: 21px;
    letter-spacing: 0.21px;
    color: #01358D;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 0;
}

.choose_slider_items ul li .media-body .designation {
    font-size: var(--body-font-size);
    letter-spacing: 0.45px;
    color: #97A1B3;
    line-height: 25px;
    margin-bottom: 0;
}

.choose_slider_items ul li .media-body span i {
    color: #FFC82A;
    font-size: 12px;
}

.choose_slider_items ul li p {
    font-size: var(--body-font-size);
    letter-spacing: 0.3px;
    color: #5B6880;
}

.choose_slider_items .previous_item {
    top: 0;
    transform: scale(0.9, 0.9);
    left: 150px;
    padding: 67px 30px 55px 60px;
    z-index: 1;
}

.choose_slider_items .previous_item_2 {
    top: 0;
    padding: 67px 30px 55px 60px;
    transform: scale(0.7, 0.7);
    left: 32px;
}

.choose_slider_items .previous_hidden {
    top: 0;
    transform: scale(0.7, 0.7);
    padding: 67px 30px 55px 60px;
}

.choose_slider_items .current_item {
    transition: all 0.5s ease-in-out;
}

/********* home 2 client slider **********/

.client-slider {
    margin-top: -10px;
}

.client-slider .owl-item.active.center .client-slider-item {
    box-shadow: 0px 10px 40px #97A1B238;
    transition: all 0.3s ease-in;
}

.client-slider .client-slider-item {
    padding: 20px 45px 37px 45px;
    box-shadow: 0px 2px 12px #97A1B21A;
    border-radius: 6px;
    margin: 30px 10px 45px 10px;
    transition: all 0.3s ease-in;
}

.client-slider .client-slider-item .media .media-left {
    position: relative;
    padding-top: 22px;
    padding-left: 14px;
    margin-right: 34px;
    margin-left: 12px;
    display: inline-block;
}

.client-slider .client-slider-item .media .media-left:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    height: 155px;
    width: 155px;
    top: -22px;
    left: -35px;
    z-index: -1;
    background-size: 100%;
}

.client-slider .client-slider-item .media .media-left.media-left-one:after {
    background-image: url("../img/client/1.svg");
}

.client-slider .client-slider-item .media .media-left.media-left-two:after {
    background-image: url("../img/client/2.svg");
}

.client-slider .client-slider-item .media .media-left.media-left-three:after {
    background-image: url("../img/client/3.svg");
}

.client-slider .client-slider-item .media img {
    padding-right: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #fff;
}

.client-slider .client-slider-item .media .media-body {
    margin-top: 25px;
}

.client-slider .client-slider-item .media .media-body h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #01358D;
}

.client-slider .client-slider-item .media .media-body p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.42px;
    color: #5B6880;
}

.client-slider .client-slider-item .client-content {
    font-size: var(--body-font-size);
    line-height: 26px;
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-left: 20px;
}

.client-slider .owl-dots {
    text-align: center;
    line-height: initial;
}

.client-slider .owl-dots .owl-dot {
    width: 16px;
    height: 8px;
    background: #97A1B3;
    display: inline-block;
    margin: 0 4px;
    border-radius: 7px;
    transition: all 0.3s ease-in;
}

.client-slider .owl-dots .owl-dot.active {
    width: 60px;
    height: 8px;
    background: #01358D;
}

/***** screenshot-slider ******/

.screenshot-slider {
    position: relative;
}

.screenshot-slider .thumb {
    box-shadow: 0px 2px 18px -7px #01358D2E;
    margin: 15px 10px;
    transition: all 0.3s ease-in;
}

.screenshot-slider .thumb img {
    width: auto !important;
    max-height: 563px;
    width: 100% !important;
    transition: all 0.3s ease-in;
}

.screenshot-slider:after {
    content: "";
    background-image: url(../../assets/img/screenshot/mockup.png);
    height: 100%;
    width: 311px;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    top: 0;
    margin-left: -155px;
    background-size: 100%;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb {
    border-radius: 30px;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb img {
    border-radius: 30px;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb {
    border-radius: 0 !important;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb img {
    border-radius: 0;
}

.screenshot-slider .owl-prev {
    position: absolute;
    left: 50%;
    margin-left: -55px;
    z-index: 2;
    margin-top: 25px;
}

.screenshot-slider .owl-next {
    position: absolute;
    left: 50%;
    margin-left: 15px;
    z-index: 2;
    margin-top: 25px;
}

/***** testimonial-slider-2- ******/

.testimonial-slider2-bg {
    position: relative;
}

.testimonial-slider2-bg:after {
    content: "";
    position: absolute;
    background-image: url("../../assets/img/business/testimonial/5.png");
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 81% 0;
    width: 100%;
    right: 0;
    bottom: 0;
    top: 30px;
    z-index: -1;
}

.testimonial-slider-2 .media {
    margin: 60px;
}

.testimonial-slider-2 .media .media-left {
    margin-left: 65px;
}

.testimonial-slider-2 .media .media-left:before {
    content: "";
    position: absolute;
    left: 0;
    top: -56px;
    bottom: 0;
    width: 100%;
    background-size: 48%;
    background-image: url("../../assets/img/business/testimonial/1.png");
    background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-left img {
    height: 370px;
    width: 370px;
    border-radius: 50%;
}

.testimonial-slider-2 .media .media-body {
    background: #FCFCFC;
    box-shadow: 0px 10px 34px #0000001C;
    border-radius: 6px;
    padding: 60px 65px 55px 65px;
    z-index: 1;
    margin-top: 85px;
}

.testimonial-slider-2 .media .media-body p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
    color: #5B6880;
    padding: 0 22px;
    position: relative;
}

.testimonial-slider-2 .media .media-body p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-image: url("../../assets/img/business/testimonial/left.png");
    background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-body p:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 20px;
    width: 20px;
    background-image: url("../../assets/img/business/testimonial/right.png");
    background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-body h6 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.24px;
    color: #01358D;
    position: relative;
    display: inline-block;
}

.testimonial-slider-2 .media .media-body h6:after {
    content: "";
    background: #01358D;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    opacity: 0.5;
}

.testimonial-slider-2 .media .media-body span {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #97A1B3;
    display: block;
}

.testimonial-slider-2 .owl-dots {
    text-align: center;
    margin-left: 36%;
    margin-top: -50px;
    background: transparent;
}

.testimonial-slider-2 .owl-dots .owl-dot {
    width: 16px;
    height: 8px;
    background: #97A1B3;
    display: inline-block;
    margin: 0 4px;
    border-radius: 7px;
    transition: all 0.3s ease-in;
    position: relative;
}

.testimonial-slider-2 .owl-dots .owl-dot.active {
    width: 60px;
    height: 8px;
    background: #01358D;
}

/***** client-slider-2 *****/

.client-slider-2 {
    box-shadow: 0px 10px 46px #97A1B212;
    border-radius: 10px;
    padding: 28px 0;
    background: #f8f9fa;
}

.client-slider-2 .client-slider-2-item {
    text-align: center;
}

.client-slider-2 .thumb img {
    width: auto;
    filter: grayscale(10);
    opacity: 0.4;
    display: inherit;
    transition: all 0.3s ease-in;
}

.client-slider-2 .thumb:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.client-slider-2.style-two {
    box-shadow: none;
}

/***** team slider *****/

.team-slider .team-slider-item {
    display: flex;
    align-items: center;
}

.team-slider .team-slider-item .row {
    align-items: center;
}

.team-slider .team-slider-item .team-member-details {
    margin-right: 100px;
}

.team-slider .team-slider-item .team-member-details h3 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #01358D;
}

.team-slider .team-slider-item .team-member-details h3 span {
    color: var(--main-color-one);
}

.team-slider .team-slider-item .team-member-details p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-bottom: 25px;
}

.team-slider .team-slider-item .team-member-details .name {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #01358D;
}

.team-slider .team-slider-item .team-member-details .designation {
    font-size: 13px;
    line-height: 28px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.52px;
    color: #97A1B3;
    margin-bottom: 43px;
}

.team-slider .team-slider-item .team-member-details .social-media-title {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.03px;
    color: #97A1B3;
    float: left;
    margin-right: 100px;
    position: relative;
}

.team-slider .team-slider-item .team-member-details .social-media-title:after {
    content: "";
    position: absolute;
    right: -44px;
    top: 16px;
    height: 1px;
    width: 34px;
    background: #97A1B2;
}

.team-slider .team-slider-item .team-member-details ul {
    padding-left: 0;
    margin-bottom: 0;
    display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li {
    display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li a {
    margin: 0 7px;
    display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li a img {
    width: auto !important;
}

.team-slider .team-slider-item .team-member-img {
    position: relative;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 132px;
}

.team-slider .team-slider-item .team-member-img .thumb {
    max-width: 460px;
    height: auto;
    border-radius: 20px;
}

.team-slider .team-slider-item .team-member-img .thumb img {
    width: 100%;
    border-radius: 20px;
}

.team-slider .team-slider-item .team-member-img .team-shape1 {
    width: 200px;
    height: 60%;
    background: #FFD8DE;
    border-radius: 20px;
    position: absolute;
    margin-left: -70px;
}

.team-slider .team-slider-item .team-member-img .team-shape2 {
    width: 88%;
    height: 100%;
    background: #01358D;
    border-radius: 20px;
    position: absolute;
    margin-right: -20px;
    bottom: 0;
    z-index: -1;
}

.team-slider .owl-item.active .team-member-img .team-shape1 {
    animation: 1.5s 0.3s fadeInRight both;
}

.team-slider .owl-item.active .team-member-img .team-shape2 {
    animation: 1.5s 0.3s fadeUpLeft both;
}

.team-slider .owl-prev {
    position: absolute;
    left: 35%;
    margin-top: -120px;
}

.team-slider .owl-next {
    position: absolute;
    right: -60px;
    margin-top: -120px;
}

.team-slider .owl-dots {
    text-align: center;
    padding-left: 492px;
    margin-top: 43px;
    line-height: normal;
}

.team-slider .owl-dots .owl-dot {
    width: 16px;
    height: 8px;
    background: #97A1B3;
    display: inline-block;
    margin: 0 4px;
    border-radius: 7px;
    transition: all 0.3s ease-in;
}

.team-slider .owl-dots .owl-dot.active {
    width: 60px;
    height: 8px;
    background: #01358D;
}

.marketing-slider .owl-stage {
    right: 125px;
}

.marketing-slider .marketing-slider-details {
    overflow: hidden;
    position: relative;
}

.marketing-slider .marketing-slider-details .thumb {
    overflow: hidden;
}

.marketing-slider .marketing-slider-details .thumb img {
    transform: scale(1);
    transition: 0.8s;
}

.marketing-slider .marketing-slider-details:before {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 53, 141, 0.4);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.marketing-slider .marketing-slider-details:after {
    content: "";
    position: absolute;
    right: -50%;
    bottom: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 53, 141, 0.4);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.marketing-slider .marketing-slider-details .marketing-slider-content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    padding: 20px 30px;
    z-index: 2;
}

.marketing-slider .marketing-slider-details .marketing-slider-content a {
    width: 106px;
    height: 106px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    line-height: 106px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -35px;
    margin-left: -53px;
    transition: 0.4s;
    opacity: 0;
}

.marketing-slider .marketing-slider-details .marketing-slider-content a img {
    width: auto !important;
    display: inline-block;
}

.marketing-slider .marketing-slider-details .marketing-slider-content p {
    position: absolute;
    bottom: 5px;
    color: #fff;
    opacity: 0;
    transition: 0.6s;
}

.marketing-slider .marketing-slider-details:hover:before {
    left: 0;
    top: 0;
    opacity: 1;
}

.marketing-slider .marketing-slider-details:hover:after {
    right: 0;
    bottom: 0;
    opacity: 1;
}

.marketing-slider .marketing-slider-details:hover .thumb img {
    transform: rotate(3deg) scale(1.1);
}

.marketing-slider .marketing-slider-details:hover .marketing-slider-content a {
    margin-top: -53px;
    opacity: 1;
}

.marketing-slider .marketing-slider-details:hover .marketing-slider-content p {
    bottom: 15px;
    opacity: 1;
}

.marketing-slider .owl-prev {
    position: absolute;
    bottom: -52px;
}

.marketing-slider .owl-next {
    position: absolute;
    left: 76px;
    bottom: -52px;
}

/***** blog-gallery-slider *******/

.blog-gallery-slider .owl-prev,
.blog-gallery-slider .owl-next {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #FFFFFF;
    width: 54px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    transition: 0.3s;
    color: #fff;
}

.blog-gallery-slider .owl-prev:hover,
.blog-gallery-slider .owl-next:hover {
    background: black;
}

.blog-gallery-slider .owl-prev {
    left: 0;
}

.blog-gallery-slider .owl-next {
    right: 0;
}

/*--------------------------------------------------------------
	## service section
--------------------------------------------------------------*/

.single-service {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 34px #97A1B21F;
    padding: 96px 40px 35px 40px;
    margin-bottom: 16px;
    transition: all 0.3s ease-in;
}

.single-service img {
    margin-bottom: 42px;
    width: auto !important;
}

.single-service h6 {
    margin-bottom: 26px;
    font-weight: 600;
    letter-spacing: 0.22px;
    color: #01358D;
}

.single-service h6 a {
    color: #01358D;
}

.single-service p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
}

.single-service .read-more {
    margin-top: 35px;
    position: relative;
    text-align: right;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
}

.single-service .read-more img {
    margin-bottom: 0;
    width: auto !important;
}

.single-service .read-more a {
    margin-right: 10px;
    transition: all 0.3s ease-in;
}

.single-service .read-more:before {
    content: "";
    position: absolute;
    height: 32px;
    width: 2px;
    left: -29px;
    top: -4px;
    background: #32E2A9;
    transition: all 0.3s ease-in;
}

.single-service:hover {
    box-shadow: 0px 18px 34px #97a1b24f;
}

.single-service:hover .read-more {
    visibility: visible;
    opacity: 1;
}

.single-service:hover .read-more a {
    margin-right: 0;
}

.single-service:hover .read-more:before {
    left: -39px;
}

.service-carousel .owl-item {
    padding: 50px 7px;
}

/******* single-service-left *******/

.single-service-left {
    margin: 0 10px;
    background: #fff;
    padding: 57px 44px 60px;
    box-shadow: 0px 12px 34px #97A1B221;
    border-radius: 6px;
    transition: all 0.3s ease-in;
    margin-bottom: 20px;
}

.single-service-left:hover {
    box-shadow: 0px 15px 40px #97A1B247;
}

.single-service-left .media .thumb {
    height: 130px;
    width: 130px;
    border-radius: 50%;
}

.single-service-left .media .thumb img {
    width: 100%;
}

.single-service-left .media .media-body {
    margin-left: 38px;
}

.single-service-left .media .media-body h6 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.24px;
    color: #01358D;
    margin-bottom: 25px;
}

.single-service-left .media .media-body p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.03px;
    color: #5B6880;
    margin-bottom: 20px;
}

.single-service-left .media .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 .media .media-body a img {
    margin-left: 9px;
    transition: all 0.3s ease-in;
}

.single-service-left .media .media-body a i {
    font-size: 26px;
    position: absolute;
    right: -33px;
    bottom: -4px;
}

.single-service-left .media .media-body a:hover {
    color: var(--main-color-one);
}

.single-service-left .media .media-body a:hover img {
    margin-left: 13px;
}

/** single-service-area-2 **/

.single-service-2 {
    padding: 57px 44px 48px;
    box-shadow: 0px 3px 44px #97A1B238;
    border-radius: 8px;
    transition: all 0.3s ease-in;
    margin-bottom: 20px;
}

.single-service-2:hover {
    box-shadow: 0px 18px 69px #97A1B245;
}

.single-service-2 .thumb {
    margin-bottom: 30px;
}

.single-service-2 h6 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.48px;
    color: #01358D;
    margin-bottom: 20px;
}

.single-service-2 p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    line-height: 30px;
    letter-spacing: 0.3px;
    color: #5B6880;
}

.single-service-2.style-two {
    box-shadow: none;
}

.single-service-2.style-two.active,
.single-service-2.style-two:hover {
    box-shadow: 0px 2px 69px #97A1B245;
    background: #fff;
}

.single-service-2.style-three {
    padding: 42px 40px 42px;
}

.single-service-2.style-three .thumb {
    margin-bottom: 14px;
}

.single-service-2.style-three h6 {
    margin-bottom: 18px;
}

.single-service-2.style-three a.arrow {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    position: relative;
    padding-right: 25px;
    transition: all 0.3s ease-in;
}

.single-service-2.style-three a.arrow i {
    margin-left: 2px;
    transition: all 0.3s ease-in;
    position: absolute;
    right: -2px;
    top: 2px;
}

.single-service-2.style-three a.arrow:hover {
    color: var(--main-color-one);
}

.single-service-2.style-three a.arrow:hover i {
    right: -6px;
}

/** single-offer  **/

.single-offer {
    background: #fff;
    padding: 52px 46px 51px;
    box-shadow: 0px 2px 69px #97A1B238;
    border-radius: 18px;
    transition: all 0.3s ease-in;
    margin-bottom: 30px;
}

.single-offer .media .media-body {
    margin-left: 44px;
    display: flex;
    align-items: center;
}

.single-offer .media .media-body h6 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.22px;
    color: #01358D;
    margin-bottom: 0;
}

.single-work-processing {
    margin-bottom: 80px;
}

.work-processing-details .section-title {
    margin-bottom: 0;
}

/********* single-software-store style *********/

.bg-after {
    position: relative;
}

.bg-after:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #01358D;
    opacity: 0.7;
    z-index: 0;
}

.software-store-wrap {
    margin: 0;
    padding: 0;
}

.software-store-wrap li {
    width: 20%;
    display: inline-block;
    float: left;
    padding: 0 15px;
}

.single-software-store {
    background: #fff;
    padding: 50px 20px 37px 20px;
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in;
}

.single-software-store:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
    z-index: 0;
}

.single-software-store .thumb {
    margin-bottom: 17px;
    position: relative;
    z-index: 1;
}

.single-software-store .thumb img {
    width: 90px;
    height: 90px;
}

.single-software-store h4 {
    color: #5B6880;
    position: relative;
    z-index: 1;
}

.single-software-store:hover {
    box-shadow: 0px 10px 30px #00000029;
}

.single-software-store:hover .thumb {
    animation: top-image-bounce 3s infinite ease-in-out;
}

.single-software-store:hover:after {
    visibility: visible;
    opacity: 0.06;
}

/*----------------------------------------------
	## Feature
-----------------------------------------------*/

.single-feature {
    margin-bottom: 52px;
}

.single-feature .media {
    background: #fff;
    box-shadow: 0px 12px 50px #AFAFAF38;
    border-radius: 0px 100px 0px 0px;
    padding: 62px 57px 52px 52px;
}

.single-feature .media .media-left {
    margin-right: 26px;
}

.single-feature .media .media-body h6 {
    letter-spacing: 0.22px;
    color: #01358D;
    margin-bottom: 12px;
    font-weight: 600;
}

.single-feature .media .media-body p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
}

.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;
}

.single-pricing .title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    color: #5B6880;
    margin-bottom: 40px;
}

.single-pricing .thumb {
    margin-bottom: 40px;
}

.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: var(--main-color-one);
}

.single-pricing .price {
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
    letter-spacing: 0.72px;
    color: #01358D;
    margin-bottom: 18px;
}

.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-bottom: 40px;
    padding-left: 0;
    transition: 0.4s ease-in-out;
}

.single-pricing ul li {
    font-size: var(--body-font-size);
    line-height: 40px;
    letter-spacing: 0.3px;
    color: #5B6880;
    list-style: none;
}

.single-pricing .btn {
    border-color: #97A1B2;
}

.single-pricing.style-two .title {
    margin-bottom: 30px;
}

.single-pricing.style-two .thumb {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background: #FFF7F8;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.single-pricing-active {
    background: #0041AF !important;
    box-shadow: 0px 12px 20px #01358D57;
}

.single-pricing-active .title {
    color: #fff;
}

.single-pricing-active .thumb {
    margin-bottom: 40px;
}

.single-pricing-active .amount del {
    color: #fff;
}

.single-pricing-active .price {
    color: #fff;
}

.single-pricing-active .price span {
    color: #fff;
}

.single-pricing-active ul li {
    color: #fff;
}

.single-pricing-active .btn {
    border-color: #fff;
}

.sb-pricing-tabs {
    display: inline-block;
    border-bottom: 0;
    margin-bottom: 70px;
}

.sb-pricing-tabs .nav-item {
    display: inline-block;
}

.sb-pricing-tabs .nav-item a {
    border: 1px solid #F1E7E8;
    font-size: 14px;
    border-radius: 0;
    height: 46px;
    padding: 0 20px;
    line-height: 46px;
    margin: 0 2px;
    position: relative;
}

.sb-pricing-tabs .nav-item a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    background: var(--main-color-one);
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    margin-left: -5px;
    visibility: hidden;
    opacity: 0;
}

.sb-pricing-tabs .nav-item a.active {
    border: 1px solid var(--main-color-one);
    background: var(--main-color-one);
    color: #fff;
}

.sb-pricing-tabs .nav-item a.active:after {
    visibility: visible;
    opacity: 1;
}

.sb-hosting-tabs {
    border-bottom: 0;
}

.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: 10px 20px;
    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 var(--main-color-one);
    background: var(--main-color-one);
    color: #fff;
}

.sb-hosting-tabs .nav-item a.active img {
    filter: brightness(200);
}

.sb-hosting-tabs .nav-item:last-child {
    margin-bottom: 0;
}

/********* progress bar style **********/

.progress-item {
    padding-top: 5px;
    padding-bottom: 18px;
}

.progress-item .progress-heading {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.18px;
    color: #01358D;
}

.progress-item .progress-count {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.84px;
    color: #01358D;
    float: right;
}

.progress-item .progress-bg {
    position: relative;
    height: 10px;
    border-radius: 5px;
    background: rgba(249, 85, 109, 0.2);
    margin-top: 12px;
}

.progress-item .progress-bg .progress-rate {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #F9556D;
    transition: 2.5s;
    border-radius: 5px;
}

/******* team style ********/

.single-team {
    padding: 0 30px;
    margin-bottom: 65px;
}

.single-team .thumb {
    max-height: 220px;
    max-width: 220px;
    margin: 0 auto;
}

.single-team .thumb:after {
    content: "";
    position: absolute;
    background-image: url("../img/startup/team/bg.svg");
    background-repeat: no-repeat;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: -1;
}

.single-team .thumb img {
    border-radius: 50%;
    border: 12px solid #175198;
}

.single-team h6 {
    margin: 58px 0 5px;
}

.single-team h6 a {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.48px;
    color: #01358D;
}

.single-team span {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 28px;
    letter-spacing: 1.02px;
    color: #97A1B3;
    font-family: var(--raleway-font);
    font-style: italic;
}

.single-team p {
    font-size: var(--body-font-size);
    line-height: 26px;
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-top: 18px;
    margin-bottom: 0;
}

/********* songle blog post **********/

.single-case-studies {
    box-shadow: 0px 10px 34px #97A1B21F;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in;
}

.single-case-studies .thumb {
    overflow: hidden;
}

.single-case-studies .thumb img {
    transform: scale(1);
    transition: 0.6s;
}

.single-case-studies .details {
    padding: 34px 28px 38px;
}

.single-case-studies .details h6 {
    margin-bottom: 0;
}

.single-case-studies .details h6 a {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    color: #01358D;
    line-height: 1.2;
}

.single-case-studies .details p {
    margin-top: 15px;
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    margin-bottom: 0;
}

.single-case-studies .details .read-more {
    color: #97A1B2;
    margin-top: 15px;
    display: inline-block;
    position: relative;
}

.single-case-studies .details .read-more i {
    position: absolute;
    bottom: 0px;
    right: -28px;
    transition: 0.3s;
    font-size: 22px;
}

.single-case-studies .details .read-more:hover {
    color: var(--main-color-one);
}

.single-case-studies .details .read-more:hover i {
    right: -33px;
}

.single-case-studies .details .admin {
    margin-top: 20px;
}

.single-case-studies .details .admin img {
    width: 30px;
    height: 30px;
    border: 1px solid #97A1B3;
    border-radius: 50%;
    margin-right: 5px;
}

.single-case-studies .details .admin span {
    color: #97A1B3;
}

.single-case-studies:hover {
    box-shadow: 0px 16px 42px #97A1B230;
}

.single-case-studies:hover .thumb img {
    transform: scale(1.1) rotate(2deg);
}

.single-case-studies.style-two {
    box-shadow: none;
}

.single-case-studies.style-two .details {
    padding: 28px 0 0 0;
}

.single-case-studies.style-two .details .admin {
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 13px;
}

.single-post {
    margin-bottom: 50px;
}

.single-post .thumb {
    overflow: hidden;
}

.single-post .thumb img {
    transform: scale(1);
    transition: 0.6s;
}

.single-post:hover .thumb img {
    transform: scale(1.1) rotate(2deg);
}

.single-post h6 {
    margin: 17px 0 12px;
}

.single-post h6 a {
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
    color: #01358D;
}

.single-post p {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #5B6880;
    margin-bottom: 16px;
}

.single-post a {
    font-size: var(--body-font-size);
    line-height: var(--line-height30);
    letter-spacing: 0.3px;
    color: #97A1B2;
    transition: all 0.3s ease-in;
}

.single-post a span {
    transition: all 0.3s ease-in;
}

.single-post a:hover {
    color: #01358D;
}

.single-post a:hover span {
    padding-left: 3px;
    color: #01358D;
}

/*---------------------------------------
    ## Counter area
---------------------------------------*/

.single-counter .counting {
    font-size: 45px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 1.04px;
    color: #fff;
}

.single-counter h6 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--raleway-font);
    letter-spacing: 0.36px;
    color: #fff;
    margin: 5px 0 0;
}

/******* comming soon count down ********/

.comming-soon-area {
    height: 100vh;
    display: flex;
    align-items: center;
}

.comming-soon-area .comming-soon-title {
    margin-bottom: 50px;
}

.comming-soon-area .newsletter-subcribe {
    margin-top: 200px;
}

.comming-soon-area .newsletter-subcribe p {
    font-size: 20px;
    color: #01358D;
    margin-bottom: 35px;
}

.comming-soon-title {
    font-size: 100px;
    font-weight: 300;
    letter-spacing: 0;
    color: #01358D;
}

.countdown-item {
    height: 160px;
    width: 160px;
    padding-top: 44px;
    margin-right: 40px;
    display: inline-block;
    border: 1px solid var(--main-color-one);
    border-radius: 50%;
    text-align: center;
}

.countdown-item h2 {
    margin: 0;
    line-height: 1.3;
    color: #5B6880;
    font-weight: 300;
    font-size: 36px;
}

.countdown-item span {
    margin: 0;
    line-height: 1.2;
    color: #5B6880;
    font-size: 18px;
    font-weight: 300;
}

.countdown-item:last-child {
    margin-right: 0;
}

/*----------------------------------------
    ## All form
------------------------------------------*/

.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;
}

.single-input-wrap {
    position: relative;
}

.single-input-wrap .single-input {
    width: 100%;
    height: 52px;
    background: transparent;
    border: 1px solid #D9DDE4;
    border-radius: 4px;
    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;
    color: #999;
    cursor: text;
    transition: all 0.15s ease-in-out 0s;
    z-index: -1;
    font-size: var(--body-font-size);
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: #97A1B2;
}

.single-input-wrap label.active {
    top: -6px;
    left: 17px;
    font-size: 11px;
    color: inherit;
    cursor: pointer;
    color: #97A1B2;
    background: #fff;
    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;
}

/*------------------------------------------
    gallery Item
------------------------------------------*/

.gallery-menu {
    margin-bottom: 60px;
    padding-left: 0 !important;
}

.gallery-menu li {
    display: inline-block;
    font-size: 16px;
    color: #5B6880;
    margin: 0 27px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.gallery-menu li:before {
    position: absolute;
    left: auto;
    right: 0;
    top: 100%;
    content: "";
    background: var(--main-color-one);
    height: 1px;
    width: 0%;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    transition: 0.9s;
}

.gallery-menu li.active:before,
.gallery-menu li:hover:before {
    visibility: visible;
    opacity: 1;
    right: auto;
    left: 0;
    width: 100%;
}

.gallery-menu li.active,
.gallery-menu li:hover {
    color: var(--main-color-one);
}

.single-work-item {
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
}

.single-work-item .thumb {
    overflow: hidden;
}

.single-work-item .thumb img {
    transform: scale(1);
    transition: 0.8s;
}

.single-work-item .thumb:before {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 24, 64, 0.3);
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.single-work-item .thumb:after {
    content: "";
    position: absolute;
    right: -50%;
    bottom: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 24, 64, 0.3);
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.single-work-item .content-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    align-items: center;
    display: inline-grid;
    transition: all 0.6s ease;
    visibility: hidden;
    opacity: 0;
}

.single-work-item .content-wrap .cats {
    font-size: 16px;
    color: #F9556D;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.single-work-item .content-wrap .title {
    font-size: 24px;
    color: #fff;
    padding: 0 35px;
    display: inline-block;
    letter-spacing: 0.48px;
    font-weight: 500;
    display: block;
}

.single-work-item:hover .thumb img {
    transform: scale(1.1) rotate(3deg);
}

.single-work-item:hover .thumb:before {
    left: 0;
    top: 0;
    opacity: 1;
}

.single-work-item:hover .thumb:after {
    right: 0;
    bottom: 0;
    opacity: 1;
}

.single-work-item:hover .content-wrap {
    visibility: visible;
    opacity: 1;
}

.mfp-bg {
    background-color: rgba(2, 48, 71, 0.8);
}

.mfp-zoom-out-cur {
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer !important;
}