/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
    ## Global
    ## Mixins
    ## Theme
    ## Variables
    ## Common

# Sections
    ## Nav Bar
    ## Banner
    ## Brand Area
    ## Footer
    ## Widgets

# Elements
    ## accordion
    ## filter
    ## apartment
    ## blog
    ## city
    ## feature
    ## gallery
    ## intro
    ## main-search
    ## pricing
    ## service
    ## team
    ## user-list

--------------------------------------------------------------*/


/*-----------------
    # Typography
-----------------*/

@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&family=Yantramanav:wght@300;400;500;700;900&display=swap");
:root {
    --main-color: #3aab37;
    --heading-color: #080C24;
    --paragraph-color: #565969;
    --body-font: "Public Sans", sans-serif;
    --heading-font: "Yantramanav", sans-serif;
    --body-font-size: 16px;
    --line-height30: 1.7;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    -webkit-box-sizing: border-box;
    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);
    line-height: var(--line-height30);
    font-size: var(--body-font-size);
}

h1 {
    font-size: 84px;
    line-height: 90px;
}

h2 {
    font-size: 40px;
    line-height: 1.3380952381;
}

h3 {
    font-size: 36px;
    line-height: 1.3833333333;
}

h4 {
    font-size: 30px;
    line-height: 1.3380952381;
}

h5 {
    font-size: 24px;
    line-height: 1.3380952381;
}

h6 {
    font-size: 20px;
    line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
    font-family: var(--heading-font);
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    color: var(--main-color);
}

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;
}

button:hover,
button:active,
button:focus {
    outline: 0;
}


/*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;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.no-gutter>[class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.no-gutter[class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.h-100vh {
    height: 100vh;
}

code {
    color: #faa603;
}

.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: "\f105";
    color: var(--main-color);
}

.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 {
    -webkit-transition: 0.3s ease-in;
    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);
}

.comment-list li {
    list-style: none;
}

.h-100vh {
    height: 100vh;
}

.position-relative {
    position: relative;
}


/*--------------------------------------------------------------
# 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;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    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: 15px;
    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;
}


/*--------------------------------------------------------------
# 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;
}


/*--------------------------------------------------------------
# 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;
}


/*----------------------------------------
    # Unit test
------------------------------------------*/

.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: 0.3s ease-in;
    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);
    color: #fff;
    border-color: var(--main-color);
}

.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);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    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 (min-width: 1200px) {
    .no-lg-gutters>.col,
    .no-lg-gutters>[class*=col-] {
        padding-right: 0;
        padding-left: 0;
    }
}


/*---------------------------------------
    ## Button
---------------------------------------*/

.btn {
    height: 60px;
    line-height: 58px;
    padding: 0 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 18px;
    font-family: var(--heading-font);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 500;
    border-radius: 0px;
    z-index: 0;
}

.btn:focus,
.btn:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn:hover {
    background: #4285F4;
}

.btn:hover:after {
    height: 100%;
    width: 135%;
}

.btn:after {
    content: "";
    background: #fff;
    position: absolute;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 0;
}

.btn-base {
    color: #fff;
    background: var(--main-color);
    line-height: 60px;
}

.btn-base:active,
.btn-base:focus,
.btn-base:hover {
    color: #fff;
    background: var(--main-color);
}

.btn-base:active:after,
.btn-base:focus:after,
.btn-base:hover:after {
    background: var(--main-color);
}

.btn-white {
    color: var(--heading-color);
    background: #fff;
    line-height: 60px;
}

.btn-white:active,
.btn-white:focus,
.btn-white:hover {
    color: #fff;
    background: var(--main-color);
}

.btn-white:active:after,
.btn-white:focus:after,
.btn-white:hover:after {
    background: var(--main-color);
}

.btn-border-white {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    line-height: 48px;
}

.btn-border-white:hover,
.btn-border-white:focus {
    color: #fff;
    background: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-border-black {
    color: var(--heading-color);
    border: 2px solid rgba(0, 33, 71, 0.2);
    line-height: 48px;
}

.btn-border-black:hover,
.btn-border-black:focus {
    color: #fff;
    border: 2px solid var(--main-color);
}

.read-more-text {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.read-more-text svg,
.read-more-text i {
    font-size: 14px;
}

.read-more-text:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    background: #098206;
    height: 1px;
    width: 0%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.read-more-text:hover {
    color: #098206;
}

.read-more-text:hover:after {
    width: 100%;
}

.add-to-cart-btn {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.add-to-cart-btn:hover,
.add-to-cart-btn.active,
.add-to-cart-btn:focus {
    color: #098206;
}

.add-to-cart-btn span {
    margin-right: 20px;
}

.shadow-none {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/*------------------------------------------------
    ## Back Top
------------------------------------------------*/

.back-to-top {
    position: fixed;
    left: 35px;
    bottom: 60px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--main-color);
    background-position: center;
    background-size: cover;
    text-align: center;
    line-height: 40px;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    display: none;
    -webkit-animation: backto-top-bounce 4s infinite ease-in-out;
    animation: backto-top-bounce 4s infinite ease-in-out;
}

@-webkit-keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
}

@keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
}


/*-----------------------------------------
    ## Owl carousel nav Css
-------------------------------------------*/

.owl-carousel .owl-nav button {
    height: 60px;
    width: 60px;
    line-height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.owl-carousel .owl-nav button img {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.owl-carousel .owl-nav button:hover {
    background: var(--main-color);
}

.owl-carousel .owl-nav button:hover img {
    -webkit-filter: brightness(99);
    filter: brightness(99);
}


/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/

.pre-wrap {
    position: fixed;
    content: "";
    -webkit-transform: translate(-100%, -240%);
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999999999;
    background-color: #030724;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.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);
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--heading-color);
    color: #fff;
}

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--main-color);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


/*-----------------------------------------
    ## video 
------------------------------------------*/

.video-thumb-wrap {
    position: relative;
}

.video-thumb-wrap img {
    width: 100%;
}

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

.video-play-btn {
    border-radius: 50%;
    background: var(--main-color);
    width: 60px;
    height: 60px;
    display: inline-block;
    line-height: 64px;
    position: relative;
    text-align: center;
    -webkit-animation: ripple-white3 2.5s linear infinite;
    animation: ripple-white3 2.5s linear infinite;
    z-index: 3;
}

.video-play-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--main-color);
    top: -10px;
    left: -10px;
}

.video-play-btn svg,
.video-play-btn i {
    color: #fff;
    margin-left: 4px;
    font-size: 20px;
}


/*-----------------------------------------
    ## Breadcumb 
------------------------------------------*/

.breadcrumb-area {
    padding: 296px 0 171px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.breadcrumb-area .breadcrumb-inner {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.breadcrumb-area .page-title {
    font-weight: 900;
    font-size: 64px;
    line-height: 83px;
    margin-bottom: 0px;
    color: #fff;
}

.breadcrumb-area .page-list {
    margin: 0;
    padding: 0;
    color: #fff;
    display: inline-block;
}

.breadcrumb-area .page-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    list-style: none;
    display: inline-block;
    position: relative;
    color: #fff;
}

.breadcrumb-area .page-list li+li {
    padding-left: 23px;
    margin-left: 5px;
}

.breadcrumb-area .page-list li a {
    color: #098206;
}

.breadcrumb-area .page-list li:after {
    position: absolute;
    left: 0;
    top: 1px;
    content: "\f061";
    color: #098206;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.breadcrumb-area .page-list li:first-child {
    padding-left: 0;
}

.breadcrumb-area .page-list li:first-child:after {
    display: none;
}


/********* social-media *********/

.social-media {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.social-media li {
    display: inline-block;
    margin: 0 4px;
}

.social-media li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
    color: #3F517E;
}

.social-media li a:hover {
    color: #fff;
    background: var(--main-color);
}

.social-media li:first-child {
    margin-left: 0;
}

.social-media li:last-child {
    margin-right: 0;
}

.social-media.style-border li a {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #fff;
}

.social-media.style-border li a i,
.social-media.style-border li a svg {
    margin-right: 0;
}

.social-media.style-border li a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}


/********* slider-control *********/

.slider-control-square .owl-nav button {
    height: 50px;
    width: 50px;
    line-height: 50px;
    margin: 0 8px;
    border-radius: 0;
    border: 1px solid var(--main-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-color);
    background: transparent;
    font-size: 20px;
    padding: 0;
    cursor: pointer;
}

.slider-control-square .owl-nav button:hover {
    background: var(--main-color);
    color: #fff;
}

.slider-control-square .owl-nav .owl-prev {
    margin-left: 0;
}

.slider-control-square .owl-nav .owl-next {
    margin-left: 0;
}


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/

.ratting-inner {
    color: #FFC107;
}

.bg-base {
    background: var(--main-color);
}

.bg-green {
    background: #1DC295;
}

.bg-blue {
    background: #2878EB;
}

.bg-red {
    background: #F14D5D;
}

.bg-gray {
    background: #1B1E26;
}

.bg-sky {
    background: #F9F9F9;
}

.bg-black {
    background: var(--heading-color);
}

.bg-light {
    background: #F7FAFC;
}

.bg-relative {
    position: relative;
}

.bg-cover {
    background-size: cover !important;
}

.bg-overlay {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0;
}

.bg-overlay:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(8, 12, 36, 0.9);
    z-index: -1;
}

.bg-overlay .container {
    position: relative;
    z-index: 2;
}

.bg-overlay .bg-z-index {
    position: relative;
    z-index: 2;
}

.bg-overlay-2 {
    position: relative;
    background-size: cover !important;
}

.bg-overlay-2:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(3, 0, 12, 0.5);
}

.bg-overlay-2 .container {
    position: relative;
    z-index: 2;
}

.bg-overlay-2 .bg-z-index {
    position: relative;
    z-index: 2;
}

.pd-top-45 {
    padding-top: 45px;
}

.pd-top-60 {
    padding-top: 60px;
}

.pd-top-75 {
    padding-top: 75px;
}

.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-115 {
    padding-top: 115px;
}

.pd-top-120 {
    padding-top: 120px;
}

.pd-top-240 {
    padding-top: 240px;
}

.mg-top-120 {
    margin-top: 120px;
}

.pd-bottom-45 {
    padding-bottom: 45px;
}

.pd-bottom-70 {
    padding-bottom: 70px;
}

.pd-bottom-80 {
    padding-bottom: 80px;
}

.pd-bottom-90 {
    padding-bottom: 90px;
}

.pd-bottom-100 {
    padding-bottom: 100px;
}

.pd-bottom-110 {
    padding-bottom: 110px;
}

.pd-bottom-115 {
    padding-bottom: 115px;
}

.pd-bottom-120 {
    padding-bottom: 120px;
}

.pd-bottom-240 {
    padding-bottom: 240px;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-120 {
    margin-bottom: 120px;
}

.mrt-120 {
    margin-top: -120px;
}

.after-none:after {
    display: none !important;
}


/************ animate style ************/

.top_image_bounce {
    -webkit-animation: top-image-bounce 3s infinite ease-in-out;
    animation: top-image-bounce 3s infinite ease-in-out;
}

.left_image_bounce {
    -webkit-animation: left-image-bounce 3s infinite ease-in-out;
    animation: left-image-bounce 3s infinite ease-in-out;
}

.right_image_bounce {
    -webkit-animation: right-image-bounce 3s infinite ease-in-out;
    animation: right-image-bounce 3s infinite ease-in-out;
}

.spin_image {
    -webkit-animation: spin 3s infinite ease-in-out;
    animation: spin 3s infinite ease-in-out;
}

@-webkit-keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes left-image-bounce {
    0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
}

@keyframes left-image-bounce {
    0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }
}

@-webkit-keyframes ripple-white3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple-white3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
    }
}


/*------------------------------------------------
    ## Section title
------------------------------------------------*/

.section-title {
    margin-bottom: 40px;
    position: relative;
}

.section-title .subtitle {
    font-weight: 600;
    font-size: 16px;
    color: var(--main-color);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(15.22%, rgba(58, 171, 55, 0)), color-stop(33.76%, rgba(58, 171, 55, 0.0833333)), color-stop(58.49%, rgba(58, 171, 55, 0.23)), color-stop(79.25%, rgba(58, 171, 55, 0.39383)), to(#3aab37));
    background: linear-gradient(180deg, rgba(58, 171, 55, 0) 15.22%, rgba(58, 171, 55, 0.0833333) 33.76%, rgba(58, 171, 55, 0.23) 58.49%, rgba(58, 171, 55, 0.39383) 79.25%, #3aab37 100%);
    height: 46px;
    line-height: 46px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    z-index: 0;
    padding: 0 30px;
    margin-bottom: 19px;
}

.section-title .subtitle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    background: #fff;
    border-radius: 0 0 20px 20px;
    z-index: -1;
    margin: 0 2px 2px;
}

.section-title .subtitle.style-2 {
    background: url(../img/bg-subtitle.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.section-title .subtitle.style-2:after {
    display: none;
}

.section-title .title {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 40px;
    font-weight: 900;
    position: relative;
    z-index: 0;
}

.section-title .content {
    margin-top: 17px;
    margin-bottom: 0;
}

.section-title .content.left-line {
    border-left: 5px solid var(--main-color);
    padding-left: 50px;
}

.section-title .small-title {
    margin-top: 18px;
    line-height: 36px;
}

.section-title .btn {
    margin-top: 30px;
}

.section-title.style-white .subtitle {
    color: #fff;
}

.section-title.style-white .title {
    color: #fff;
}

.section-title.style-white .content {
    color: #D6D6D6;
}

.section-title.style-white .small-title {
    color: #fff;
}


/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/

.navbar-top {
    background: transparent;
    position: relative;
    margin-bottom: 68px;
    padding: 16.5px 0;
}

.navbar-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 66.8%;
    background: url(../img/topbar-bg.png);
    background-position: 0 0px;
    background-size: 165% 100%;
    height: 100%;
    z-index: -1;
}

.navbar-top .nav-phone-wrap {
    background: url(../img/nav-contact-bg.png);
    background-position: -38px 0px;
    background-size: 112% 100%;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 90px;
    color: #fff;
    padding: 12.5px 135px 9.5px 115px;
    left: -70px;
    font-family: var(--heading-font);
    font-size: 14px;
}

.navbar-top .nav-phone-wrap i,
.navbar-top .nav-phone-wrap svg {
    margin-right: 5px;
}

.navbar-top .logo {
    position: absolute;
    left: -70px;
    top: 0;
    width: 530px;
}

.navbar-top .logo .main-logo {
    display: inline-block;
}

.navbar-top ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-top ul.topbar-left {
    margin-left: 369px;
}

.navbar-top ul.topbar-left li+li {
    margin-left: 11px;
}

.navbar-top ul.topbar-left li i,
.navbar-top ul.topbar-left li svg {
    margin-right: 7px;
    color: var(--main-color);
}

.navbar-top ul.topbar-right li+li {
    margin-left: 17px;
}

.navbar-top ul li {
    display: inline-block;
    color: #fff;
    font-size: 12px;
}

.navbar-top ul li a {
    color: #fff;
}

.navbar-top ul li a:hover {
    color: var(--main-color);
}

.navbar-area {
    z-index: 99;
    position: absolute;
    width: 100%;
}

.navbar-area .nav-container {
    background-color: transparent;
    padding: 17px 0px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.navbar-area .nav-container .btn-transparent {
    font-size: 13px;
    font-weight: 700;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: left;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-weight: 500;
    line-height: 50px;
    text-transform: capitalize;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 16px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: #098206;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 15px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 14px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:after {
    content: "";
    position: absolute;
    right: -1px;
    top: 26px;
    height: 2px;
    width: 10px;
    background: var(--heading-color);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: -1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    content: "";
    position: absolute;
    right: 3px;
    top: 50%;
    height: 10px;
    width: 2px;
    background: var(--heading-color);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-top: 1px;
    z-index: -1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
    opacity: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:after {
    background: var(--main-color);
}

.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: 210px;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 0;
    top: 100%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 9;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
    border-bottom: 0px !important;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 22px;
    font-size: 15px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-bottom: 1px solid #f5f5f5;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #050a30;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    background: #098206;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a:before {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
    border-bottom: 0;
}

.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>.sub-menu {
    left: 100%;
    top: 20px;
}

.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.menu-item-has-children .sub-menu .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 .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    margin-right: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav>li {
    margin-right: 10px;
}

.navbar-area-1 {
    padding: 0;
    top: 60px;
}

.navbar-area-1 .nav-container {
    padding: 7px 0px 27px;
}

.navbar-area-1 .nav-container .navbar-collapse .navbar-nav {
    padding-left: 368px;
}

.navbar-area-1:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/nav-bar.png);
    height: 100%;
    width: 74.5%;
    z-index: -1;
    background-size: 142% 80%;
    background-position: 4px 0px;
    background-repeat: no-repeat;
}

.navbar-area-1 .logo {
    display: none;
}

.navbar-area-1 .logo a {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.navbar-area-1 .logo a img {
    height: auto;
}

.navbar-area-2 {
    padding: 0;
    margin-top: 20px;
}

.navbar-area-2:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/shape/nav-bar-2.png);
    height: 100%;
    width: 70%;
    z-index: -1;
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.navbar-area-2 .logo {
    position: absolute;
    left: -70px;
    top: -40px;
}

.navbar-area-2 .logo .logo-2 {
    display: none;
}

.navbar-area-2 .nav-container {
    padding: 29px 0px 20px;
}

.navbar-area-2.sticky-active .nav-container .logo {
    position: initial;
}

.navbar-area-2.sticky-active .nav-container .logo .logo-1 {
    display: none;
}

.navbar-area-2.sticky-active .nav-container .logo .logo-2 {
    display: block;
}

.sticky-active {
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 10px 20px 0 rgba(46, 56, 220, 0.05);
    box-shadow: 0 10px 20px 0 rgba(46, 56, 220, 0.05);
    background: #fff;
    margin: 0;
}

.sticky-active .nav-container {
    padding: 12px 12px;
}

.sticky-active .nav-container .logo {
    display: block;
    width: 150px;
}

.sticky-active .nav-container .navbar-collapse .navbar-nav {
    padding-left: 0;
    text-align: end;
}

.sticky-active.navbar-area-2:after {
    display: none;
}

.navbar-nav {
    opacity: 0;
    margin-right: -30px;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu-open {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
}

.bar1 {
    width: 32px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 10px;
    right: -5px;
}

.bar2 {
    width: 24px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 17px;
    right: -5px;
}

.bar3 {
    width: 18px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 24px;
    right: -5px;
}

.responsive-mobile-menu button:focus {
    outline: none;
    border: none;
}


/**************** nav-right-part *************/

.nav-right-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-right-part .btn {
    color: #fff;
    padding: 0 27px;
}

.nav-right-part a {
    margin-left: 30px;
    color: var(--heading-color);
    display: inline-block;
}

.nav-right-part .cart-btn {
    position: relative;
}

.nav-right-part .cart-btn span {
    position: absolute;
    right: -10px;
    top: -5px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #098206;
    text-align: center;
    font-size: 13px;
    line-height: 22px;
}

.nav-right-part .menu-bar {
    background: #fff;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 42px;
}

.nav-right-part-mobile {
    display: none;
}


/**************** sidebar-menu *************/

.sidebar-menu {
    width: 0;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.sidebar-menu .sidebar-inner {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 50px 40px;
}

.sidebar-menu .sidebar-inner .thumb {
    margin-bottom: 15px;
}

.sidebar-menu .sidebar-inner p {
    margin-bottom: 28px;
}

.sidebar-menu .sidebar-inner .sidebar-address {
    margin-bottom: 35px;
}

.sidebar-menu .sidebar-inner .sidebar-address ul {
    margin: 0;
    padding: 0;
}

.sidebar-menu .sidebar-inner .sidebar-address ul li {
    list-style: none;
    margin-bottom: 4px;
}

.sidebar-menu .sidebar-inner .sidebar-address ul li:last-child {
    margin-bottom: 0;
}

.sidebar-menu .sidebar-inner .sidebar-address ul li i {
    margin-right: 6px;
    width: 25px;
}

.sidebar-menu .sidebar-inner .sidebar-subscribe {
    position: relative;
    margin-bottom: 40px;
}

.sidebar-menu .sidebar-inner .sidebar-subscribe input {
    width: 100%;
    border: 1px solid #d6dadf;
    height: 42px;
    padding: 0 45px 0 12px;
}

.sidebar-menu .sidebar-inner .sidebar-subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    height: 42px;
    width: 42px;
    background: #97b3d0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 0;
    color: var(--heading-color);
    cursor: pointer;
}

.sidebar-menu .sidebar-inner .sidebar-subscribe button:hover {
    background: var(--main-color);
    color: #fff;
}

.sidebar-menu .sidebar-inner .social-media li a {
    background: #ced4da;
}

.sidebar-menu .sidebar-inner .social-media li a:hover {
    background: var(--main-color);
    color: #fff;
}

.sidebar-menu .sidebar-menu-close {
    background-color: #043381;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    z-index: 999;
}

.sidebar-menu.active {
    width: 360px;
    opacity: 1;
    visibility: visible;
}

.sidebar-menu.active .sidebar-inner {
    top: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease-out 0.8s;
    transition: all 0.7s ease-out 0.8s;
}

@media only screen and (max-width: 991px) {
    .navbar-area .nav-container {
        padding: 15px;
    }
    .nav-right-part {
        margin-right: 50px;
    }
    .nav-right-part .btn .right {
        padding-left: 5px;
        font-size: 13px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav>li {
        margin-right: 0;
        padding-right: 0;
    }
    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
    }
    .navbar-area .nav-container .navbar-toggler {
        padding: 0px;
    }
    .navbar-area .nav-container .navbar-collapse {
        margin-top: 13px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        display: block;
    }
    .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: 26px;
        right: 3px !important;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        height: auto;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        background-color: transparent;
        border-radius: 10px;
        padding: 0px;
        border-bottom: none;
        display: none;
        -webkit-transition: none;
        transition: none;
        visibility: visible;
        opacity: 1;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "\f107";
    }
    .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;
    }
}

.sopen {
    display: block;
}

.toggle-btn {
    left: auto;
    right: -10px;
    position: absolute;
    top: 10px;
    width: 40px;
    height: 40px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    border: 0;
    background: transparent;
}

.toggle-btn .icon-left {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 11px;
    top: 18px;
    background-color: #fff;
    left: 7px;
}

.toggle-btn .icon-left:before {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: -7px;
    left: 0;
}

.toggle-btn .icon-left:after {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: 7px;
    left: 0;
}

.toggle-btn .icon-left:hover {
    cursor: pointer;
}

.toggle-btn .icon-right {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 11px;
    top: 18px;
    background-color: #fff;
    left: 18px;
}

.toggle-btn .icon-right:before {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: -7px;
    left: 0;
}

.toggle-btn .icon-right:after {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: 7px;
    left: 0;
}

.toggle-btn .icon-right:hover {
    cursor: pointer;
}

.toggle-btn.open .icon-left {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: transparent;
}

.toggle-btn.open .icon-left:before {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}

.toggle-btn.open .icon-left:after {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}

.toggle-btn.open .icon-right {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: transparent;
}

.toggle-btn.open .icon-right:before {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}

.toggle-btn.open .icon-right:after {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}

.toggle-btn:hover {
    cursor: pointer;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 16px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 5px;
    }
    .navbar-nav li {
        padding-right: 12px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 14px;
    }
    .navbar-area .nav-container .navbar-collapse.sopen {
        display: block;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .margin-xlt-80 {
        margin-top: 0px;
    }
    .contact-widget .contact_info_list li.single-info-item .details {
        padding-left: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-area .logo {
        padding-top: 0px !important;
    }
    .widget ul {
        text-align: left;
    }
    .navbar-collapse {
        background: #fff;
        margin-top: 0px;
        width: 100%;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        right: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        margin-bottom: 20px;
    }
    .navbar-area {
        padding-bottom: 0px;
    }
    .bar1,
    .bar2,
    .bar3 {
        background: #fff;
    }
    .party-box-wrapper {
        padding: 50px 0px;
    }
    .party-box-wrapper .party-box-content h4 {
        font-size: 30px;
        line-height: 45px;
    }
    .footer-area .copyright-area-inner {
        padding: 20px;
    }
    .navbar-expand-lg .navbar-collapse {
        margin-top: 0px;
    }
    .contact-widget .contact_info_list li.single-info-item .details {
        padding-left: 25px;
    }
    .footer-area .footer-top .widget.widget_nav_menu ul li a {
        font-size: 14px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        padding: 0 0 0 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        padding: 12px 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child a {
        padding-bottom: 3px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover i {
        opacity: 0;
        margin-right: -18px;
    }
    .nav-right-part-mobile {
        display: block;
    }
    .nav-right-part-desktop {
        display: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
        background: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        color: #333333;
    }
}


/* Tablet Layout wide: 767px. */

@media only screen and (max-width: 767px) {
    .logo-wrapper.mobile-logo {
        display: block;
        width: 100%;
    }
    .responsive-mobile-menu {
        display: block;
        width: 100%;
        position: relative;
    }
    .responsive-mobile-menu .navbar-toggler {
        position: absolute;
        left: calc(100% - 130px);
        top: 10px;
    }
    .table-responsive {
        display: block !important;
    }
    .btn-custom-default,
    .btn-custom-white {
        font-size: 14PX;
        line-height: 33px;
        padding: 6px 20px;
    }
    .navbar-area .logo {
        padding-top: 0px !important;
    }
}


/* medium tablet layout 599px */

@media only screen and (max-width: 575px) {
    .navbar-area .logo {
        padding-top: 10px;
    }
    .widget.footer-widget .subscribe-form.subscribe-form-style2 .form-control {
        padding: 15px 20px;
    }
    .widget.footer-widget .subscribe-form.subscribe-form-style2 .btn {
        padding: 15px 20px;
    }
    .search-popup .search-form {
        min-width: 350px;
    }
}

@media only screen and (max-width: 375px) {
    .btn-custom-default,
    .btn-custom-white {
        padding: 5px 18px;
    }
    .search-popup .search-form .form-group .form-control,
    .search-popup .search-form .submit-btn {
        height: 45px;
    }
    .search-popup .search-form {
        min-width: 300px;
    }
}

@media only screen and (max-width: 320px) {
    .search-popup .search-form {
        min-width: 265px;
    }
    .responsive-mobile-menu .navbar-toggler {
        left: calc(100% - 95px);
    }
}


/*----------------------------------------
  ## Search Popup
----------------------------------------*/

.td-search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
    width: 40%;
}

.td-search-popup .search-form {
    width: 35%;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 999;
}

.td-search-popup .search-form .form-group .form-control {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 54px;
    padding: 0 75px 0 25px;
    background: #f7f9fb;
}

.td-search-popup .search-form .form-group .form-control:hover,
.td-search-popup .search-form .form-group .form-control:focus,
.td-search-popup .search-form .form-group .form-control:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.td-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;
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0;
    text-align: center;
    cursor: pointer;
    background: var(--main-color);
}

.td-search-popup .search-form .submit-btn:hover,
.td-search-popup .search-form .submit-btn:focus,
.td-search-popup .search-form .submit-btn:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.97;
}

.mfp-zoom-in .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mfp-zoom-in.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}


/************ single-inpur-inner ************/

.single-input-inner {
    margin-bottom: 24px;
    position: relative;
}

.single-input-inner label {
    font-weight: 400;
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    left: 20px;
    height: 60px;
    line-height: 60px;
}

.single-input-inner input {
    width: 100%;
    height: 60px;
    border: 0;
    border-radius: 0px;
    padding: 0 40px;
    font-size: 14px;
    background: rgba(8, 12, 36, 0.06);
    color: var(--paragraph-color);
}

.single-input-inner input::-webkit-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner input::-moz-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner input:-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner input::-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner input::placeholder {
    color: var(--paragraph-color);
}

.single-input-inner input:active,
.single-input-inner input:focus,
.single-input-inner input:hover {
    border: 0;
}

.single-input-inner textarea {
    width: 100%;
    border: 0;
    height: 160px;
    border-radius: 0px;
    padding: 17px 40px;
    background: rgba(8, 12, 36, 0.06);
    color: var(--paragraph-color);
    margin-bottom: -8px;
}

.single-input-inner textarea::-webkit-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner textarea::-moz-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner textarea:-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner textarea::-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner textarea::placeholder {
    color: var(--paragraph-color);
}

.single-input-inner.style-border input {
    border: 1px solid #D6D6D6 !important;
    background: transparent;
    height: 55px;
    padding: 0 20px;
}

.single-input-inner.style-border input::-webkit-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner.style-border input::-moz-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner.style-border input:-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner.style-border input::-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-input-inner.style-border input::placeholder {
    color: var(--paragraph-color);
}

.single-input-inner.style-border textarea {
    border: 1px solid rgba(234, 225, 214, 0.6) !important;
}

.single-input-inner.style-border textarea::-webkit-input-placeholder {
    color: #bbbbbb;
}

.single-input-inner.style-border textarea::-moz-placeholder {
    color: #bbbbbb;
}

.single-input-inner.style-border textarea:-ms-input-placeholder {
    color: #bbbbbb;
}

.single-input-inner.style-border textarea::-ms-input-placeholder {
    color: #bbbbbb;
}

.single-input-inner.style-border textarea::placeholder {
    color: #bbbbbb;
}

.single-input-inner.style-bg input {
    background: #F5F6F6;
}

.single-input-inner.style-bg input::-webkit-input-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg input::-moz-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg input:-ms-input-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg input::-ms-input-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg input::placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg textarea {
    background: #F5F6F6;
}

.single-input-inner.style-bg textarea::-webkit-input-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg textarea::-moz-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg textarea:-ms-input-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg textarea::-ms-input-placeholder {
    color: #3F517E;
}

.single-input-inner.style-bg textarea::placeholder {
    color: #3F517E;
}

.single-select-inner {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.single-select-inner label {
    font-weight: 400;
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    left: 20px;
    height: 60px;
    line-height: 60px;
}

.single-select-inner .single-select {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 0 !important;
    border-radius: 0px;
    font-size: 14px;
    color: var(--paragraph-color);
    background: rgba(8, 12, 36, 0.06);
    padding: 0 30px 0 40px;
}

.single-select-inner .single-select::-webkit-input-placeholder {
    color: var(--paragraph-color);
}

.single-select-inner .single-select::-moz-placeholder {
    color: var(--paragraph-color);
}

.single-select-inner .single-select:-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-select-inner .single-select::-ms-input-placeholder {
    color: var(--paragraph-color);
}

.single-select-inner .single-select::placeholder {
    color: var(--paragraph-color);
}

.single-select-inner .single-select:after {
    right: 20px;
    height: 7px;
    width: 7px;
    border-color: var(--paragraph-color);
}

.single-select-inner .single-select .list {
    width: 100%;
}

.single-select-inner.style-border .single-select {
    border: 1px solid #D6D6D6 !important;
    background: transparent;
    height: 55px;
    line-height: 55px;
    padding: 0 20px;
}

.single-select-inner.style-bg .single-select {
    background: #F7FAFC;
}

.single-select-inner.style-bg .single-select::-webkit-input-placeholder {
    color: #3F517E;
}

.single-select-inner.style-bg .single-select::-moz-placeholder {
    color: #3F517E;
}

.single-select-inner.style-bg .single-select:-ms-input-placeholder {
    color: #3F517E;
}

.single-select-inner.style-bg .single-select::-ms-input-placeholder {
    color: #3F517E;
}

.single-select-inner.style-bg .single-select::placeholder {
    color: #3F517E;
}

.single-check-wrap {
    font-size: 14px;
    margin: 0;
    line-height: 26px;
}

.single-check-wrap .form-check-input {
    border-radius: 0;
    border: 1px solid #D6D6D6;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    height: 20px;
    width: 20px;
}

.single-check-wrap .form-check-input:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    height: 8px;
    width: 8px;
    background: var(--main-color);
    opacity: 0;
    z-index: 1;
}

.single-check-wrap .form-check-input:checked[type=checkbox] {
    background: transparent;
}

.single-check-wrap .form-check-input:checked[type=checkbox]::after {
    opacity: 1;
}

.single-check-wrap label {
    margin-left: 10px;
}

.booking-form {
    margin-top: -120px;
    z-index: 2;
    position: relative;
}

.booking-form-inner {
    padding: 45px 50px 30px;
    border-radius: 7px;
    background-size: cover;
}

.booking-form-inner h3 {
    color: #fff;
    margin-bottom: 2px;
}

.booking-form-inner p {
    color: #fff;
    margin-bottom: 30px;
}


/*----------------------------------------------
    ## Banner
----------------------------------------------*/

.banner-inner {
    position: relative;
    z-index: 2;
}

.banner-inner .title {
    font-weight: 900;
}

.banner-inner .content {
    margin-top: 11px;
    margin-bottom: 0;
}

.banner-inner .btn-wrap {
    margin-top: 35px;
}

.banner-inner.style-white .title {
    color: #fff;
}

.banner-inner.style-white .content {
    color: #fff;
}

.banner-area-1 .item {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1;
}

.banner-area-1 .item:after {
    content: "";
    background: -webkit-gradient(linear, left top, right top, color-stop(14.27%, #080C24), color-stop(29.06%, rgba(8, 12, 36, 0.96789)), color-stop(41.25%, rgba(8, 12, 36, 0.905506)), color-stop(51.56%, rgba(8, 12, 36, 0.832149)), color-stop(57.4%, rgba(8, 12, 36, 0.711263)), color-stop(82.4%, rgba(8, 12, 36, 0)));
    background: linear-gradient(90deg, #080C24 14.27%, rgba(8, 12, 36, 0.96789) 29.06%, rgba(8, 12, 36, 0.905506) 41.25%, rgba(8, 12, 36, 0.832149) 51.56%, rgba(8, 12, 36, 0.711263) 57.4%, rgba(8, 12, 36, 0) 82.4%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.banner-area-1 {
    overflow: hidden;
}

.banner-area-1 .banner-inner {
    padding: 350px 0 277px;
    position: relative;
}

.banner-area-1 .banner-inner:after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translate(-100%, -40%);
    transform: translate(-100%, -40%);
    background: rgba(255, 255, 255, 0.07);
    height: 432px;
    width: 432px;
    border-radius: 50%;
    z-index: 1;
}

.banner-area-1 .banner-inner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translate(-100%, -40%);
    transform: translate(-100%, -40%);
    background: rgba(255, 255, 255, 0.07);
    height: 432px;
    width: 432px;
    border-radius: 50%;
    margin-top: 30px;
    z-index: 2;
}

.banner-area-1 .banner-inner .btn-wrap .btn-base {
    margin-right: 28px;
}

.banner-area-1 .banner-slider .owl-nav {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 9;
}

.banner-area-1 .banner-slider .owl-nav button {
    display: block;
}

.banner-area-1 .banner-slider .owl-nav button.owl-prev {
    margin-bottom: 10px;
}

.banner-area-2 .banner-inner {
    padding: 343px 0 365px;
    position: relative;
}

.banner-area-2 .banner-inner .btn-wrap .btn-base {
    margin-right: 28px;
}

.banner-area-2 .banner-slider .owl-nav {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 9;
}

.banner-area-2 .banner-slider .owl-nav button {
    display: block;
}

.banner-area-2 .banner-slider .owl-nav button.owl-prev {
    margin-bottom: 10px;
}

.banner-slider .owl-item.active .b-animate-1 {
    -webkit-animation: 1.5s 0.2s fadeInLeft both;
    animation: 1.5s 0.2s fadeInLeft both;
}

.banner-slider .owl-item.active .b-animate-2 {
    -webkit-animation: 1.5s 0.4s fadeInLeft both;
    animation: 1.5s 0.4s fadeInLeft both;
}

.banner-slider .owl-item.active .b-animate-3 {
    -webkit-animation: 1.5s 0.6s fadeInLeft both;
    animation: 1.5s 0.6s fadeInLeft both;
}

.banner-slider .owl-item.active .b-animate-4 {
    -webkit-animation: 1.5s 0.8s fadeInLeft both;
    animation: 1.5s 0.8s fadeInLeft both;
}

.banner-slider .owl-item.active .b-animate-5 {
    -webkit-animation: 1.5s 0.9s fadeInLeft both;
    animation: 1.5s 0.9s fadeInLeft both;
}


/************** feature-wrap ***************/

.feature-area {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 35, 90, 0.1);
    box-shadow: 0px 4px 50px rgba(0, 35, 90, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    top: -60px;
    z-index: 2;
}

.feature-wrap {
    padding: 30px 40px 35px;
    border-radius: 10px;
}

.feature-wrap.bg-pink {
    background: rgba(58, 171, 55, 0.1);
}

.feature-wrap.bg-ash {
    background: rgba(8, 12, 36, 0.1);
}

.feature-wrap.bg-sky {
    background: rgba(0, 133, 239, 0.1);
}

.feature-wrap .icon {
    background: var(--main-color);
    height: 60px;
    width: 60px;
    line-height: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 50%;
    position: relative;
    margin: 5px 0 22px 5px;
}

.feature-wrap .icon:after {
    position: absolute;
    content: "";
    left: -5px;
    top: -5px;
    background: var(--heading-color);
    height: 60px;
    border-radius: 50%;
    width: 60px;
    z-index: -1;
}

.feature-wrap .icon img {
    margin: auto;
    width: auto;
}

.feature-wrap p {
    margin-top: 12px;
    margin-bottom: 0;
}

.feature-slider .owl-nav {
    position: absolute;
    right: 0;
    top: -128px;
}

.feature-slider .owl-nav .owl-prev {
    margin-right: 10px;
}


/************** about-thumb-wrap ***************/

.about-area-2 .about-inner-wrap {
    margin-right: 64px;
}

.about-area-2 .about-thumb-wrap .img-1 {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
}

.about-area-2 .about-thumb-wrap .img-2 {
    margin-left: -58px;
}

.about-area-2 .about-thumb-wrap .img-3 {
    margin-left: -168px;
    margin-bottom: -73px;
}

.about-area-2 .about-thumb-wrap .exprience-wrap {
    right: auto;
    top: auto;
    bottom: -88px;
    left: -56px;
}

.about-thumb-wrap {
    position: relative;
}

.about-thumb-wrap .img-1 {
    position: absolute;
    left: -39px;
    bottom: -53px;
    z-index: -1;
}

.about-thumb-wrap .img-3 {
    margin-left: -215px;
    margin-bottom: -63px;
    vertical-align: bottom;
}

.about-thumb-wrap .exprience-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    right: -20px;
    top: 17px;
}

.about-thumb-wrap .exprience-wrap img {
    margin-bottom: -15px;
}

.about-thumb-wrap .exprience-wrap .details {
    background: url(../img/shape-2.png);
    background-size: cover;
    padding: 45px 30px;
    background-position: center;
}

.about-thumb-wrap .exprience-wrap .details h1 {
    font-size: 64px;
    font-weight: 900;
    color: var(--main-color);
    margin-bottom: 0;
    line-height: 83px;
}

.about-thumb-wrap .exprience-wrap .details p {
    font-weight: 600;
    color: var(--heading-color);
    line-height: 19px;
}

.about-inner-wrap {
    margin-left: 58px;
}

.about-inner-wrap .section-title .content {
    margin-top: 10px;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 30px;
    margin-bottom: 20px;
}

.about-inner-wrap .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #D9D9D9;
    margin-top: 25px;
    padding-top: 30px;
}

.about-inner-wrap .btn-wrap .btn {
    margin-top: 0;
}

.about-inner-wrap .btn-wrap .author-wrap {
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-inner-wrap .btn-wrap .author-wrap img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 20px;
}

.about-inner-wrap .btn-wrap .author-wrap p {
    margin-bottom: 0;
    border-top: 1px solid #E4E4E4;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #4D5765;
}

.about-inner-wrap .btn-wrap .video-wrap {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--heading-color);
    margin-left: 100px;
}

.about-inner-wrap .btn-wrap .video-wrap span {
    margin-left: 10px;
    text-decoration: underline;
}

.about-inner-wrap .btn-wrap .video-wrap .video-play-btn {
    height: 45px;
    width: 45px;
    line-height: 45px;
}

.about-inner-wrap .btn-wrap .video-wrap .video-play-btn:after {
    height: 55px;
    width: 55px;
    top: -5px;
    left: -5px;
    border: 0;
    background: rgba(58, 171, 55, 0.3);
}

.about-inner-wrap .btn-wrap .video-wrap .video-play-btn i,
.about-inner-wrap .btn-wrap .video-wrap .video-play-btn svg {
    font-size: 14px;
    margin-left: 2px;
}

.single-about-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 9px;
}

.single-about-wrap .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 15px;
}

.single-about-wrap h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.list-inner-wrap {
    margin: 0;
    padding: 0;
}

.list-inner-wrap li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--heading-color);
    font-weight: 500;
}

.list-inner-wrap li+li {
    margin-top: 14px;
}

.list-inner-wrap li img,
.list-inner-wrap li i,
.list-inner-wrap li svg {
    margin-right: 8px;
}


/*******why-choose-us-area********/

.wcu-area {
    padding: 330px 0 227px;
}

.wcu-area .img-1 {
    position: absolute;
    top: 69px;
    left: 37px;
}

.wcu-area .img-2 {
    position: absolute;
    bottom: -28px;
    right: 0;
}

.wcu-area-2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 168px;
}

.single-wcu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 22px;
}

.single-wcu-wrap .icon {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 5px 0 0 5px;
    z-index: 0;
    margin-right: 15px;
}

.single-wcu-wrap .icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    height: 50px;
    width: 50px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    z-index: -1;
}

.single-wcu-wrap .details h6 {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}

.single-wcu-wrap .details p {
    color: #D6D6D6;
    line-height: 26px;
    margin-bottom: 0;
}

.single-wcu-wrap.style-2 .icon {
    height: 50px;
    width: 50px;
    background: var(--main-color);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    z-index: 1;
    padding: 0;
    margin-top: 10px;
}

.single-wcu-wrap.style-2 .icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    z-index: -1;
    border: 0;
    border-radius: 50%;
}

.single-wcu-wrap.style-2 .icon:after {
    background: #fff;
    z-index: -2;
    top: -5px;
    left: -5px;
    border: 0;
}


/*****fact-counter-area******/

.fact-area .fact-counter-area {
    -webkit-transform: translate(0px, -120px);
    transform: translate(0px, -120px);
    margin-bottom: -120px;
}

.fact-counter-area {
    border-top: 5px solid var(--main-color);
    padding: 39px 45px 11px;
    -webkit-transform: translate(0px, -114px);
    transform: translate(0px, -114px);
    margin-bottom: -114px;
}

.single-fact-wrap {
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
}

.single-fact-wrap:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    height: 140px;
    width: 4px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: var(--main-color);
}

.single-fact-wrap h2 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 44px;
    line-height: 57px;
    margin-bottom: 8px;
}

.single-fact-wrap h5 {
    line-height: 31px;
    color: #fff;
    margin-bottom: 10px;
}

.single-fact-wrap p {
    line-height: 26px;
    color: #D6D6D6;
    margin-bottom: 0;
}


/********team-slider********/

.single-team-wrap {
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 10px 30px rgba(7, 36, 95, 0.06);
    box-shadow: 0px 10px 30px rgba(7, 36, 95, 0.06);
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-team-wrap .thumb {
    position: relative;
}

.single-team-wrap .thumb:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--heading-color);
    mix-blend-mode: soft-light;
    opacity: 0.6;
    border-radius: 10px 10px 0px 0px;
}

.single-team-wrap:hover {
    background: var(--main-color);
}

.single-team-wrap:hover .details p,
.single-team-wrap:hover .details h5 {
    color: #fff;
}

.single-team-wrap:hover .details .hover-icon {
    background: #fff;
    color: var(--main-color);
}

.single-team-wrap:hover .details .hover-icon:before {
    background: rgba(255, 255, 255, 0.5);
}

.single-team-wrap .details {
    padding: 27px 30px 28px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: relative;
}

.single-team-wrap .details h5 {
    line-height: 35px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-bottom: -2px;
}

.single-team-wrap .details p {
    line-height: 24px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-bottom: 0;
}

.single-team-wrap .details .hover-icon {
    background: var(--main-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    color: #fff;
    position: absolute;
    right: 30px;
    top: -50%;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    margin-top: 15px;
    cursor: pointer;
}

.single-team-wrap .details .hover-icon:before {
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    background: rgba(58, 171, 55, 0.4);
    border-radius: 50%;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    z-index: -1;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-team-wrap .details .hover-icon i,
.single-team-wrap .details .hover-icon svg {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-team-wrap .details .hover-icon:hover .fa-plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--main-color);
}

.single-team-wrap .details .hover-icon:hover .social-area {
    opacity: 1;
}

.single-team-wrap .details .social-area {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: absolute;
    right: 50%;
    top: 0;
    -webkit-transform: translate(50%, -100%);
    transform: translate(50%, -100%);
    transition: all 0.3s ease-in;
    margin-bottom: 0;
    padding: 0;
    margin-top: -20px;
    opacity: 0;
}

.single-team-wrap .details .social-area li {
    display: block;
    margin: 0;
}

.single-team-wrap .details .social-area li+li {
    margin-top: 10px;
}

.single-team-wrap .details .social-area li a {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 15px rgba(7, 36, 95, 0.15);
    box-shadow: 0px 4px 15px rgba(7, 36, 95, 0.15);
    width: 40px;
    line-height: 42px;
    height: 40px;
    color: var(--paragraph-color);
    border-radius: 50%;
    display: block;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-team-wrap .details .social-area li a i,
.single-team-wrap .details .social-area li a svg {
    -webkit-transition: none;
    transition: none;
}

.single-team-wrap .details .social-area li a:hover {
    background: var(--main-color);
    -webkit-box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
    color: #fff;
}

.team-slider .owl-nav button {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    position: absolute;
}

.team-slider .owl-nav .owl-prev {
    left: -90px;
}

.team-slider .owl-nav .owl-next {
    position: absolute;
    right: -90px;
}


/*******call-to-contact-area********/

.call-to-contact-area {
    margin-top: -50px;
    position: relative;
    z-index: 0;
}

.call-to-contact-area img {
    position: absolute;
    width: 73.5%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.call-to-contact-area .section-title .subtitle {
    background-size: 98% 100%;
}

.cta-inner-wrap {
    background: url(../img/bg4.png);
    padding: 40px 50px;
}

.single-cta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 41px;
    margin-left: 14px;
}

.single-cta-wrap .icon {
    width: 50px;
    height: 50px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background: var(--main-color);
    line-height: 52px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
    z-index: 0;
}

.single-cta-wrap .icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #3aab37;
    opacity: 0.3;
    height: 76px;
    width: 76px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.single-cta-wrap .details {
    margin-left: 33px;
}

.single-cta-wrap .details h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    margin-bottom: 5px;
}

.single-cta-wrap .details h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: var(--main-color);
    margin-bottom: 0;
}


/*********testimonial-area**********/

.testimonial-area {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-area.style-2 {
    margin-left: 50px;
    margin-right: 50px;
}

.testimonial-area.style-2 .testimonial-slider .owl-nav button {
    right: 0;
    left: auto;
    top: -90px;
}

.testimonial-area.style-2 .testimonial-slider .owl-nav button.owl-prev {
    right: 70px;
}

.testimonial-slider .owl-nav button {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    position: absolute;
}

.testimonial-slider .owl-nav .owl-prev {
    left: -90px;
}

.testimonial-slider .owl-nav .owl-next {
    position: absolute;
    right: -90px;
}

.single-testimonial-wrap {
    background: rgba(8, 12, 36, 0.05);
    border-radius: 5px;
    padding: 0 34px 40px 40px;
    margin-top: 60px;
}

.single-testimonial-wrap .icon {
    -webkit-transform: translate(0px, -39px);
    transform: translate(0px, -39px);
    margin-bottom: -9px;
}

.single-testimonial-wrap .icon img {
    width: auto;
}

.single-testimonial-wrap p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4D5765;
    border-left: 3px solid var(--main-color);
    padding-left: 7px;
    margin-bottom: 0;
}

.single-testimonial-wrap .client-wrap {
    margin-top: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-testimonial-wrap .client-wrap .thumb {
    margin-right: 10px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.single-testimonial-wrap .client-wrap .thumb img {
    width: auto;
}

.single-testimonial-wrap .client-wrap .details h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 3px;
}

.single-testimonial-wrap .client-wrap .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #4D5765;
    padding-left: 0;
    border: 0;
}


/***********portfolio area**********/

.portfolio-area {
    background-position: center !important;
    background-size: cover !important;
}

.portfolio-area .section-title {
    margin-bottom: 50px;
}

.swiper-container {
    margin: -305px -93px 253px;
    -webkit-transform: translate(0px, 134px);
    transform: translate(0px, 134px);
    padding-top: 172px;
}

.swiper-container .button {
    height: 55px;
    width: 55px;
    line-height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-align: center;
    position: absolute;
    top: 22px;
    left: auto;
}

.swiper-container .button img {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.swiper-container .button:hover {
    background: var(--main-color);
    color: #fff;
    -webkit-box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
}

.swiper-container .button:hover img {
    -webkit-filter: brightness(99);
    filter: brightness(99);
}

.swiper-container .swiper-button-prev {
    right: 158px;
}

.swiper-container .swiper-button-next {
    right: 93px;
}

.swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-slide.swiper-slide-active .single-portfolio-wrap {
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
}

.swiper-slide.swiper-slide-active .single-portfolio-wrap .portfolio-details {
    opacity: 1;
}

.swiper-slide.swiper-slide-next {
    z-index: -1;
}

.single-portfolio-wrap {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin: 84px 0;
    position: relative;
}

.single-portfolio-wrap .portfolio-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: -webkit-fill-available;
    background: #fff;
    border-radius: 5px;
    margin: 20px;
    padding: 20px 23px 16px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-portfolio-wrap .portfolio-details .details p {
    font-weight: 500;
    font-size: 10px;
    line-height: initial;
    color: var(--main-color);
    margin-bottom: 9px;
}

.single-portfolio-wrap .portfolio-details .details h4 {
    font-size: 17px;
    margin-bottom: 0;
}

.single-portfolio-wrap .portfolio-details .icon {
    height: 28px;
    width: 28px;
    background: var(--main-color);
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: auto;
    font-size: 12px;
}


/********partner area*********/

.partner-area-2 {
    background-size: 100% 100% !important;
    background-position: 0px 0px !important;
    background-repeat: no-repeat !important;
    position: relative;
    top: -109px;
    z-index: 1;
    margin-bottom: -109px;
}

.partner-slider .thumb {
    cursor: pointer;
}

.partner-slider .thumb:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.partner-slider .thumb img {
    width: auto;
    margin: auto;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.partner-slider .owl-nav {
    display: none;
}


/********skill area*********/

.skill-area .section-title {
    margin-bottom: 19px;
}

.skill-area .section-title .subtitle.style-2 {
    background-size: 95% 100%;
}

.skill-area .thumb {
    position: relative;
}

.skill-area .thumb.img-2 {
    margin-top: 90px;
}

.single-progressbar .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7px;
}

.single-progressbar .title h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

.single-progressbar .title .progress-count-wrap {
    margin-left: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.progress-item {
    margin-bottom: 28px;
}

.progress-item .progress-count-wrap {
    position: absolute;
    top: -35px;
    right: 16px;
}

.progress-item .progress-count.counting {
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.progress-item.add-progress-start .progress-count-wrap {
    position: absolute;
    top: -35px;
    right: -5px;
}

.progress-item.add-progress-full .progress-count-wrap {
    position: absolute;
    top: -35px;
    right: 11px;
}

.progress-item .progress-bg {
    position: relative;
    height: 6px;
    border-radius: 3px;
    background: #E0E0E0;
}

.progress-item .progress-bg .progress-rate {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 3px;
    background: var(--main-color);
    -webkit-transition: 2.5s;
    transition: 2.5s;
}


/***********video-area***********/

.video-area {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.video-area .video-thumb-wrap {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80%;
}

.video-area .video-thumb-wrap img {
    height: 100%;
}

.video-area .video-thumb-wrap .video-play-btn {
    position: absolute;
    top: 50%;
    left: 68.5%;
    -webkit-animation: none;
    animation: none;
}

.video-area .video-thumb-wrap .video-play-btn:after {
    height: 100px;
    width: 100px;
    background: var(--main-color);
    opacity: 0.3;
    border: 0;
    left: -20px;
    top: -20px;
}

.video-area .cta-inner-wrap {
    position: relative;
}

.video-area .cta-inner-wrap .section-title .subtitle.style-2 {
    background: url(../img/shape/bg-subtitle.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.video-area .cta-inner-wrap .single-cta-wrap .icon {
    background: #fff;
    color: var(--main-color);
}

.video-area .cta-inner-wrap .single-cta-wrap .icon:after {
    background: #fff;
}

.video-area .cta-inner-wrap .single-cta-wrap .details h3 {
    color: #fff;
}

.video-area .cta-inner-wrap .btn {
    color: var(--main-color);
}

.video-area .cta-inner-wrap .btn:after {
    background: var(--main-color);
}

.video-area .cta-inner-wrap .btn:hover {
    background: #fff;
}

.video-area .cta-inner-wrap .btn:hover:after {
    background: #fff;
}


/******contact area*******/

.contact-area {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 10px 50px rgba(8, 12, 36, 0.08);
    box-shadow: 0px 10px 50px rgba(8, 12, 36, 0.08);
}

.contact-area .contact-form {
    padding: 29px 40px 40px;
}

.contact-area .contact-form h3 {
    border-bottom: 2px solid var(--main-color);
    margin-bottom: 40px;
    padding-bottom: 4px;
}

.contact-information-wrap {
    background: var(--main-color);
    padding: 29px 40px 40px;
}

.contact-information-wrap h3 {
    border-bottom: 2px solid #fff;
    margin-bottom: 40px;
    padding-bottom: 4px;
    color: #fff;
}

.contact-information-wrap .single-contact-info-wrap {
    background: #fff;
    border-radius: 5px;
    padding: 23px 30px 27px;
    margin-bottom: 24px;
}

.contact-information-wrap .single-contact-info-wrap h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 9px;
}

.contact-information-wrap .single-contact-info-wrap .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-information-wrap .single-contact-info-wrap .media .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: var(--main-color);
    border-radius: 5px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.contact-information-wrap .single-contact-info-wrap .media p {
    line-height: 26px;
    margin-bottom: 0;
}

.contact-g-map {
    margin-bottom: -11px;
}

.contact-g-map iframe {
    line-height: 1 !important;
    border: 0;
    width: 100%;
    height: 600px;
}

.request-quote-inner {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 10px 50px rgba(8, 12, 36, 0.1);
    box-shadow: 0px 10px 50px rgba(8, 12, 36, 0.1);
    position: relative;
    top: -168px;
    margin-bottom: -168px;
}

.request-quote-inner .nav-pills {
    background: #161922;
}

.request-quote-inner .nav-pills .nav-item {
    width: 50%;
}

.request-quote-inner .nav-pills .nav-item .nav-link {
    width: 100%;
    height: 80px;
    padding: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.request-quote-inner .nav-pills .nav-item .nav-link.active {
    background: var(--main-color);
}

.request-quote-inner .nav-pills .nav-item .nav-link img {
    margin-right: 15px;
}

.request-quote-inner .tab-content .tab-pane {
    padding: 46px 50px 50px;
}

.request-quote-inner .tab-content .tab-pane .subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 14px;
}

.request-quote-inner .tab-content .tab-pane .single-check-list {
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
}

.request-quote-inner .tab-content .tab-pane .single-check-list li {
    display: inline-block;
}

.request-quote-inner .tab-content .tab-pane .single-check-list li+li {
    margin-left: 30px;
}

.request-quote-inner .tab-content .tab-pane .btn {
    height: 55px;
    line-height: 55px;
    font-size: 14px;
}

.quote-wrap {
    padding: 31px 40px 40px;
    margin-left: 26px;
}

.quote-wrap h4 {
    color: #fff;
    line-height: 40px;
    margin-bottom: 17px;
}

.quote-wrap p {
    color: #fff;
    line-height: 26px;
    margin-bottom: 48px;
}

.quote-wrap .btn {
    height: 55px;
    line-height: 55px;
    color: var(--main-color);
    font-size: 14px;
}

.quote-wrap .btn:hover {
    background: var(--heading-color);
    color: #fff;
}

.quote-wrap .btn:hover:after {
    background: var(--heading-color);
}


/************single-pricing-wrap************/

.single-pricing-inner {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 6px 30px rgba(0, 15, 87, 0.08);
    box-shadow: 0px 6px 30px rgba(0, 15, 87, 0.08);
    padding: 44px 60px 50px;
    margin-bottom: 30px;
}

.single-pricing-inner .header {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 4px;
    margin-bottom: 26px;
}

.single-pricing-inner .header h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    display: inline-block;
    position: relative;
    margin-bottom: 17px;
}

.single-pricing-inner .header h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background: var(--main-color);
}

.single-pricing-inner .header .price h2 {
    font-weight: 900;
    font-size: 64px;
    line-height: 83px;
    color: var(--main-color);
}

.single-pricing-inner .header .price sup {
    font-weight: 700;
    font-size: 36px;
    line-height: 47px;
    color: var(--main-color);
    font-family: var(--heading-font);
}

.single-pricing-inner .header .price span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--heading-color);
    margin-left: -26px;
    position: relative;
    bottom: -5px;
}

.single-pricing-inner .single-list-inner {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 38px;
}

.single-pricing-inner .single-list-inner li {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.single-pricing-inner .single-list-inner li+li {
    margin-top: 18px;
}

.single-pricing-inner .single-list-inner li i,
.single-pricing-inner .single-list-inner li svg {
    color: var(--main-color);
    margin-right: 10px;
}

.single-pricing-inner .single-list-inner li.unavailable {
    color: #D6D6D6;
}

.single-pricing-inner .single-list-inner li.unavailable i,
.single-pricing-inner .single-list-inner li.unavailable svg {
    color: #D6D6D6;
}

.single-pricing-inner .btn {
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    background: var(--heading-color);
}


/*******faq-accordion*******/

.faq-accordion .single-accordion-inner {
    border: 0;
    margin-bottom: 30px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 20px rgba(8, 12, 36, 0.08);
    box-shadow: 0px 4px 20px rgba(8, 12, 36, 0.08);
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--heading-color);
    background: #FFFFFF;
    border: 0;
    padding: 10px 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed) {
    background: var(--main-color);
    color: #fff;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed) span {
    color: #fff;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed):after {
    background: #fff;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed):before {
    display: none;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button span {
    color: var(--main-color);
    margin-right: 7px;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:after {
    background: var(--main-color);
    height: 2px;
    width: 12px;
    background: var(--main-color);
    -webkit-transform: none;
    transform: none;
}

.faq-accordion .single-accordion-inner .accordion-header .accordion-button:before {
    content: "";
    background: var(--main-color);
    height: 12px;
    width: 2px;
    position: absolute;
    right: 35px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.faq-accordion .single-accordion-inner .accordion-body {
    padding: 24px 30px;
}

.service-area .section-title .subtitle.style-2 {
    background-size: 95% 100%;
}

.service-area.style-2 .single-service-wrap {
    margin-top: 0;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 40px;
}

.service-area.style-2 .single-service-wrap .details {
    padding: 40px 29px 30px;
}

.single-service-wrap {
    -webkit-transform: translate(0px, 50%);
    transform: translate(0px, 50%);
    margin-top: -210px;
    z-index: 1;
    position: relative;
}

.single-service-wrap:hover .thumb:before,
.single-service-wrap:hover .thumb:after {
    border-color: transparent transparent transparent var(--main-color);
}

.single-service-wrap:hover .details {
    background: var(--main-color);
}

.single-service-wrap:hover .details p,
.single-service-wrap:hover .details h5 {
    color: #fff;
}

.single-service-wrap:hover .details p {
    border-bottom-color: #fff;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text {
    color: #fff;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
    background: #fff;
    color: var(--main-color);
}

.single-service-wrap .thumb {
    margin: 0 30px;
    position: relative;
    z-index: 0;
}

.single-service-wrap .thumb:after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 40px 0 0 39px;
    border-color: transparent transparent transparent #fff;
    bottom: 68px;
    left: -30px;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-service-wrap .thumb:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 40px 0 0 39px;
    border-color: transparent transparent transparent #fff;
    bottom: 68px;
    right: -30px;
    -webkit-transform: translate(0px, -175%);
    transform: rotate(270deg);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: -1;
}

.single-service-wrap .thumb img {
    width: 100%;
}

.single-service-wrap .thumb .icon {
    height: 70px;
    width: 70px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    line-height: 68px;
    position: relative;
    right: 20px;
    margin-left: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-bottom: -70px;
}

.single-service-wrap .thumb .icon img {
    width: auto;
}

.single-service-wrap .details {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 6px 30px rgba(0, 35, 90, 0.08);
    box-shadow: 0px 6px 30px rgba(0, 35, 90, 0.08);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 32px 29px 30px;
}

.single-service-wrap .details h5 {
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    line-height: 31px;
}

.single-service-wrap .details p {
    line-height: 26px;
    border-bottom: 1px solid rgba(8, 12, 36, 0.15);
    padding-bottom: 17px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-bottom: 20px;
}

.single-service-wrap .details .btn-wrap .read-more-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--heading-color);
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
    display: none;
}

.single-service-wrap .details .btn-wrap .read-more-text span {
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
    background: var(--main-color);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: #fff;
}

.service-details-wrap .thumb .icon {
    height: 70px;
    width: 70px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    line-height: 68px;
    position: relative;
    right: 50px;
    margin-left: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-bottom: -70px;
}

.service-details-wrap .thumb .icon img {
    width: auto;
}

.service-details-wrap h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    margin-top: 28px;
    margin-bottom: 9px;
}

.service-details-wrap p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 18px;
}

.service-details-wrap p.last-para {
    margin-bottom: -8px;
}

.service-details-wrap .subtitle {
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 16px;
    margin-bottom: 21px;
    line-height: 39px;
}

.service-details-wrap .list-inner-wrap li {
    position: relative;
    padding-left: 29px;
    line-height: 26px;
}

.service-details-wrap .list-inner-wrap li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    background: #fff;
    border: 4px solid var(--main-color);
    height: 14px;
    width: 14px;
}

.service-details-wrap .video-thumb-wrap .video-play-btn {
    -webkit-animation: none;
    animation: none;
}

.service-details-wrap .video-thumb-wrap .video-play-btn:after {
    height: 100px;
    width: 100px;
    background: var(--main-color);
    opacity: 0.3;
    border: 0;
    left: -20px;
    top: -20px;
}

.single-service-wrap-2 {
    position: relative;
    z-index: 0;
    border-radius: 6px;
    padding: 40px 40px;
    background-size: cover !important;
    -webkit-box-shadow: 0px 4px 30px rgba(8, 12, 36, 0.1);
    box-shadow: 0px 4px 30px rgba(8, 12, 36, 0.1);
}

.single-service-wrap-2:hover:after {
    opacity: 0;
}

.single-service-wrap-2:hover .details h5 {
    color: #fff;
}

.single-service-wrap-2:hover .details p {
    color: #fff;
}

.single-service-wrap-2:hover .details .btn-wrap .read-more-text {
    color: #fff;
}

.single-service-wrap-2:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-service-wrap-2:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 4px;
    width: 70%;
    background: var(--main-color);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.single-service-wrap-2 .icon {
    margin-bottom: 36px;
}

.single-service-wrap-2 .icon img {
    width: auto;
}

.single-service-wrap-2 .icon .img-2 {
    position: absolute;
    right: 0;
    top: 0;
}

.single-service-wrap-2 .details h5 {
    font-weight: 900;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 14px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-service-wrap-2 .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 25px;
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-service-wrap-2 .details .btn-wrap .read-more-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--main-color);
}

.single-service-wrap-2 .details .btn-wrap .read-more-text:after {
    display: none;
}

.single-service-wrap-2 .details .btn-wrap .read-more-text span {
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
    background: var(--main-color);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: #fff;
}

.service-slider .owl-nav button {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    position: absolute;
}

.service-slider .owl-nav .owl-prev {
    left: -90px;
}

.service-slider .owl-nav .owl-next {
    position: absolute;
    right: -90px;
}


/*---------------------------------------------------
	widget styles
----------------------------------------------------*/

.sidebar-area .widget {
    margin-bottom: 40px;
    border-radius: 0px;
    background: rgba(8, 12, 36, 0.1);
    padding: 40px;
}

.sidebar-area .widget .widget-title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    position: relative;
    display: inline-block;
}

.sidebar-area .widget .widget-title:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: -16px;
    left: 0;
    background: #098206;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.sidebar-area .widget .widget-title span {
    position: absolute;
    height: 3px;
    width: 3px;
    background: var(--heading-color);
    bottom: -14.5px;
    left: 65px;
}

.sidebar-area .widget .widget-title span:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    bottom: 0px;
    left: 8px;
    background: var(--heading-color);
}

.sidebar-area .widget .widget-title.style-white {
    color: #fff;
}

.sidebar-area .widget .widget-title.style-white:after {
    background: #fff;
}

.sidebar-area .widget .widget-title.style-white span {
    background: #fff;
}

.sidebar-area .widget .widget-title.style-white span:after {
    background: #fff;
}


/**********widget-search**********/

.widget_search .search-form {
    position: relative;
    background: #fff;
    border-radius: 0px;
    height: 55px;
    line-height: 55px;
    overflow: hidden;
}

.widget_search .search-form .form-group {
    margin-bottom: 0;
}

.widget_search .search-form input {
    width: 100%;
    border: 0;
    height: 55px;
    background: #fff;
    padding: 0 48px 0 20px;
}

.widget_search .search-form input:focus {
    border: 0;
    outline: 0;
}

.widget_search .search-form button {
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0 20px;
    top: 0;
    color: var(--main-color);
    height: 55px;
}

.widget_search .search-form button:active,
.widget_search .search-form button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.widget-recent-post ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-recent-post ul li {
    border: 0;
    padding: 0px;
    margin: 0px;
}

.widget-recent-post ul li:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget-recent-post ul li:last-child .single-recent-post {
    margin-bottom: 0;
}

.single-recent-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.single-recent-post .thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 15px;
}

.single-recent-post .details h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: -10px;
}

.single-recent-post .details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
}

.single-recent-post .details p i,
.single-recent-post .details p svg {
    color: var(--main-color);
    margin-right: 10px;
}

.widget_support,
.widget_download,
.widget_catagory {
    padding: 34px 40px 40px !important;
}

.widget_support ul,
.widget_download ul,
.widget_catagory ul {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0px;
    margin-top: 0px;
}

.widget_download ul li,
.widget_catagory ul li {
    list-style: none;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    margin-bottom: 10px;
    margin-top: 0px;
}

.widget_download ul li:last-child,
.widget_catagory ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget_catagory ul li a {
    position: relative;
    color: var(--paragraph-color);
    padding: 18px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    border-radius: 0px;
    background: rgba(8, 12, 36, 0.1);
}

.widget_catagory ul li a span {
    display: inline-block;
    margin-left: auto;
}

.widget_download ul li a:hover,
.widget_catagory ul li a:hover {
    background: var(--main-color);
    color: #fff;
}

.widget_catagory ul li a i {
    padding-right: 5px;
}

.widget_catagory ul li:last-child {
    margin-bottom: 0;
}


/******widget-download*******/

.widget_download ul li a {
    position: relative;
    color: var(--paragraph-color);
    padding: 20.5px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    border-radius: 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(8, 12, 36, 0.1);
}

.widget_download ul li a i,
.widget_download ul li a svg {
    margin-right: 6px;
    color: var(--main-color);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget_download ul li a:hover i,
.widget_download ul li a:hover svg {
    color: #fff;
}


/******widget-support*******/

.widget_support {
    padding-bottom: 34px !important;
}

.widget_support .widget-title:after {
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
}

.widget_support .widget-title span {
    left: 151px !important;
}

.widget_support p {
    color: #fff;
    margin-bottom: 28px;
}

.widget_support p.contact {
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 26px;
}

.widget_support p.contact i,
.widget_support p.contact svg {
    margin-right: 10px;
}


/******widget_author******/

.widget_author .thumb {
    margin-bottom: 23px;
}

.widget_author h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 21px;
}

.widget_author p {
    line-height: 26px;
    margin-bottom: 24px;
}

.widget_author .social-media li {
    margin: 0 -4px 0 0;
}

.widget_author .social-media li a {
    background: transparent;
    width: auto;
    height: auto;
    margin: 0 15px;
    color: #565969;
}

.widget_author .social-media li a:hover {
    color: var(--main-color);
}

.widget_author .social-media li+li {
    border-left: 1px solid rgba(86, 89, 105, 0.2);
}

.widget_tags .tagcloud a {
    height: 40px;
    line-height: 39px;
    padding: 0 20px;
    border-radius: 0px;
    display: inline-block;
    margin: 0 7px 10px 0;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #080C24;
    -webkit-box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.05);
    box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.05);
}

.widget_tags .tagcloud a:hover {
    background: var(--main-color);
    color: #fff;
}


/*********** widget_checkbox_list ************/

.widget_checkbox_list .single-checkbox:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.single-checkbox {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 7px;
    padding-bottom: 7px;
    cursor: pointer;
    font-size: 16px;
    color: var(--heading-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #E3E3E3;
}

.single-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.single-checkbox input:checked~.checkmark {
    background-color: var(--main-color);
}

.single-checkbox input:checked~.checkmark:after {
    display: block;
}

.single-checkbox .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #EAE1D6;
}

.single-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/******** widget-video-inner *********/

.widget-video-inner {
    border-radius: 5px;
}

.widget-video-inner .thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.widget-video-inner .thumb:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.widget-video-inner .thumb .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 52px;
    z-index: 1;
}

.widget-video-inner .thumb .video-btn i {
    font-size: 18px;
}

.widget-video-inner .thumb .video-btn:after {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.widget-video-inner .details {
    margin-top: 10px;
}

.widget-video-inner .details ul {
    padding: 0;
    margin: 0;
}

.widget-video-inner .details ul li {
    list-style: none;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    border-bottom: 1px dashed #E3E3E3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.widget-video-inner .details ul li:last-child {
    border-bottom: 0;
}

.widget-video-inner .details ul li i {
    color: var(--main-color);
    margin-right: 7px;
}

.widget-video-inner .details ul li span {
    margin-right: auto;
    font-weight: 500;
    color: var(--heading-color);
}


/******** widget-contact *********/

.widget_contact .details {
    padding: 0;
}

.widget_contact .details li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.widget_contact .details li i {
    margin-right: 14px;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--main-color);
}

.widget_contact .details li:last-child {
    margin-bottom: 0;
}

.widget_contact .details li .time {
    font-size: 12px;
    margin-top: 3px;
}

.widget_contact .social-media li a {
    color: var(--main-color);
}

.widget_contact .social-media li a:hover {
    background: var(--main-color);
    color: #fff;
}

.widget_contact .single-contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
}

.widget_contact .single-contact-inner .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 30px;
    width: 30px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 32px;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 6px;
}

.widget_contact .single-contact-inner p {
    color: #D6D6D6;
    line-height: 28px;
    margin-bottom: 0;
}

.widget_subscribe p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 23px;
}

.widget_subscribe .single-subscribe-inner {
    height: 60px;
    line-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget_subscribe .single-subscribe-inner input {
    height: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    border: 0;
    padding: 0 20px;
    width: 100%;
}

.widget_subscribe .single-subscribe-inner .btn {
    padding: 0 21px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.widget_subscribe .single-subscribe-inner .btn:after {
    left: -56%;
}


/*------------------------------------------------
    blog style
------------------------------------------------*/

.single-blog-inner {
    margin-bottom: 30px;
}

.single-blog-inner.style-2 {
    margin-bottom: 40px;
}

.single-blog-inner.style-2 .details {
    padding: 37px 40px 40px;
}

.single-blog-inner.style-2 .details h2 {
    margin-bottom: 15px;
    line-height: 50px;
}

.single-blog-inner.style-2 .details p {
    margin-bottom: 25px;
}

.single-blog-inner.style-2 .blog-meta {
    border-bottom: 0;
    padding-bottom: 0;
    margin: 0 0 1px 0;
}

.single-blog-inner .thumb {
    position: relative;
    overflow: hidden;
}

.single-blog-inner .thumb img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: 0.9s;
    transition: 0.9s;
    width: 100%;
}

.single-blog-inner .thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.single-blog-inner .blog-meta {
    margin: 0;
    padding: 0;
    margin-bottom: 21px;
    border-bottom: 1px solid #D6D6D6;
    margin-top: 16px;
    padding-bottom: 22px;
}

.single-blog-inner .blog-meta li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 26px;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: var(--paragraph-color);
}

.single-blog-inner .blog-meta li i,
.single-blog-inner .blog-meta li svg {
    margin-right: 10px;
    color: var(--main-color);
}

.single-blog-inner .blog-meta li:last-child {
    margin-right: 0;
}

.single-blog-inner .details {
    padding: 32px 30px;
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
}

.single-blog-inner .details h4 {
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
}

.single-blog-inner .details h4:hover a {
    color: #098206;
}

.single-blog-inner .details .read-more-text {
    font-weight: 600;
    font-size: 14px;
}

.single-blog-inner .details p {
    font-size: 16px;
}

.single-blog-inner:hover .thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-thumb-slider {
    position: relative;
}

.blog-thumb-slider .owl-nav button {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin-top: -30px;
}

.blog-thumb-slider .owl-nav button.owl-prev {
    left: 0;
}

.blog-thumb-slider .owl-nav button.owl-next {
    right: 0;
}


/************ page navigation ************/

.pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 20px 0 0 0;
}

.pagination .pagination-arrow a {
    border: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.pagination .pagination-arrow a:hover {
    border: 0;
}

.pagination li a {
    height: 40px;
    width: 40px;
    margin-right: 0px;
    border: 0;
    border-radius: 5px !important;
    background-color: rgba(0, 15, 87, 0.1);
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--heading-font);
}

.pagination li a:active,
.pagination li a:focus,
.pagination li a:hover {
    background: var(--main-color);
    color: #fff;
    -webkit-box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
}

.pagination li a.active {
    background: var(--main-color);
    color: #FFF;
    -webkit-box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
    box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
}

.pagination li a.page-next {
    width: auto;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    color: var(--main-color);
    margin-left: 10px;
}

.pagination li a.page-next:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--heading-color);
}

.pagination li+li {
    margin-left: 10px;
}

.pagination li:first-child a {
    border-radius: 2px 0 0 2px;
}

.pagination li:last-child a {
    border-radius: 0 2px 2px 0;
}


/******** blog-details-page-content ***********/

blockquote {
    background: rgba(8, 12, 36, 0.06);
    margin: 30px 0px;
    padding: 31px 50px 38px;
    position: relative;
    border-left: 5px solid var(--main-color);
}

blockquote span {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    font-family: var(--heading-font);
    color: var(--heading-color);
    position: relative;
    padding-left: 69px;
}

blockquote span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    background: var(--main-color);
    height: 4px;
    width: 59px;
}

blockquote p {
    font-weight: 600;
    font-size: 18px;
    font-style: italic;
    line-height: 30px;
    color: var(--heading-color);
    margin-bottom: 3px !important;
}

blockquote .d-flex {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

blockquote .icon {
    margin-left: auto;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.blog-details-area .video-thumb-wrap .video-play-btn {
    -webkit-animation: none;
    animation: none;
}

.blog-details-area .video-thumb-wrap .video-play-btn:after {
    height: 100px;
    width: 100px;
    background: var(--main-color);
    opacity: 0.3;
    border: 0;
    left: -20px;
    top: -20px;
}


/*********** tag-and-share ************/

.tag-and-share {
    padding-top: 30px;
    margin-top: 25px;
    border-top: 1px solid #D6D6D6;
}

.tag-and-share strong {
    margin-bottom: 0px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.tag-and-share .tags a {
    display: inline-block;
    background: rgba(8, 12, 36, 0.06);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    margin: 0 0 0 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--heading-color);
}

.tag-and-share .tags a:hover {
    background: var(--main-color);
    color: #fff;
}

.tag-and-share .social-media {
    display: inline-block;
    margin-left: 14px;
}

.tag-and-share .social-media li {
    margin: 0 0px;
}

.tag-and-share .social-media li a {
    background: rgba(8, 12, 36, 0.08);
    font-size: 14px;
    color: var(--paragraph-color);
}

.tag-and-share .social-media li a:hover {
    background: var(--main-color);
    color: #fff;
}

.singla-blog-share-wrap {
    text-align: center;
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.singla-blog-share-wrap.style-facebook {
    background: #3B5998;
}

.singla-blog-share-wrap.style-twitter {
    background: #1AA9F3;
}

.singla-blog-share-wrap.style-pinterest {
    background: #AC1E30;
}

.singla-blog-share-wrap:hover {
    background: #fff !important;
    color: #03000C;
}


/******* blog-comment *******/

.blog-comment {
    margin-top: 40px;
    padding: 33px 40px 31px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 6px 50px rgba(8, 12, 36, 0.08);
    box-shadow: 0px 6px 50px rgba(8, 12, 36, 0.08);
    margin-bottom: 40px;
}

.blog-comment h4 {
    margin-bottom: 23px;
    line-height: 39px;
}

.blog-comment .media {
    margin-bottom: 30px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    border-bottom: 1px solid #D6D6D6;
}

.blog-comment .media.media-nesting {
    padding-left: 120px;
}

.blog-comment .media a {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.blog-comment .media a img {
    border-radius: 50%;
}

.blog-comment .media .media-body {
    margin-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 21px;
}

.blog-comment .media .media-body h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.blog-comment .media .media-body .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    font-style: italic;
    color: var(--paragraph-color);
    display: block;
}

.blog-comment .media .media-body p {
    margin-top: 13px;
    line-height: 26px;
    margin-bottom: 11px;
}

.blog-comment .media .media-body a {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: var(--main-color);
}

.blog-comment .media .media-body a i,
.blog-comment .media .media-body a svg {
    margin-right: 6px;
}

.blog-comment-form {
    margin-top: 40px;
    padding: 33px 40px 40px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 6px 50px rgba(8, 12, 36, 0.08);
    box-shadow: 0px 6px 50px rgba(8, 12, 36, 0.08);
}

.blog-comment-form h4 {
    margin-bottom: 12px;
    line-height: 39px;
}

.blog-comment-form p {
    margin-bottom: 26px;
    line-height: 26px;
}

.blog-comment-form .btn {
    height: 55px;
    line-height: 55px;
}


/*--------------------------------------------------
    ##Footer
---------------------------------------------------*/

.footer-area {
    position: relative;
    background-color: #080C24;
    padding-bottom: 50px;
}

.footer-area.style-2 .footer-top {
    padding: 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-area .footer-top {
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 37px 0 0px;
    margin-bottom: 120px;
}

.footer-area .footer-top .single-footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 33px;
}

.footer-area .footer-top .single-footer-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: -38px;
    height: 160px;
    width: 61px;
    background: url(../img/footer/rectangle.png);
}

.footer-area .footer-top .single-footer-top .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 80px;
    width: 80px;
    border-radius: 5px;
    background: var(--main-color);
    line-height: 80px;
    text-align: center;
    position: relative;
    margin: 6px 20px 0 6px;
}

.footer-area .footer-top .single-footer-top .icon:after {
    content: "";
    position: absolute;
    background: #3aab37;
    opacity: 0.3;
    height: 80px;
    width: 80px;
    border-radius: 5px;
    left: -6px;
    top: -6px;
}

.footer-area .footer-top .single-footer-top .details h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 4px;
}

.footer-area .footer-top .single-footer-top .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #D6D6D6;
    margin-bottom: 0;
}

.footer-area .widget {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.footer-area .widget-title {
    padding-bottom: 13px;
    margin-bottom: 26px;
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: #F8F8F8;
}

.footer-area .widget-title:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: 0px;
    left: 0;
    background: linear-gradient(90.09deg, #3aab37 -7.63%, rgba(58, 171, 55, 0) 99.84%);
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    z-index: -1;
}

.footer-area .widget_about .thumb {
    margin-bottom: 13px;
}

.footer-area .widget_about .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-area .widget_nav_menu ul {
    margin: 0;
    padding: 0;
}

.footer-area .widget_nav_menu ul li {
    list-style: none;
    position: relative;
    color: #D6D6D6;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
}

.footer-area .widget_nav_menu ul li i,
.footer-area .widget_nav_menu ul li svg {
    margin-right: 3px;
}

.footer-area .widget_nav_menu ul li+li {
    margin-top: 16px;
}

.footer-area .widget_nav_menu ul li:hover:after {
    background: var(--main-color);
}

.footer-bottom-area {
    background: #161922;
    padding: 21.5px 0;
}

.footer-bottom-area p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom-area p a {
    color: var(--main-color);
}

.footer-bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom-area ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    display: inline-block;
}

.footer-bottom-area ul li+li {
    border-left: 1px solid #fff;
    padding-left: 9px;
    margin-left: 6px;
}

.footer-top-subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-top-subscribe h3 {
    color: #fff;
    margin-bottom: 0;
    padding: 50px 0 47px;
}

.footer-top-subscribe .media-left {
    margin-left: 78px;
    padding-left: 80px;
    padding-right: 58px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-subscribe .thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.footer-top-subscribe .single-subscribe-inner {
    min-width: 360px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}


.main-agile {
    margin: 0;
    background: rgb(0 0 0 / 93%);
    padding: 40px;
    position: fixed;
    z-index: 999999;
    text-align: center;
    width: 100%;
    height: 100%;
}

.alert-close {
    background: url('../images/into.png') no-repeat 0px 0px;
    cursor: pointer;
    height: 22px;
    width: 22px;
    position: absolute;
    right: 7px;
    top: 25px;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    z-index: 999;
}

.content-wthree {
    border: 1px solid #fff;
    padding: 30px 0;
    text-align: center;
    width: 40%;
    display: inline-block;
    margin: 170px 0 50px 0;
    background: #fff;
}

.main-agile h1 {
    color: #fff;
    font-size: 40px;
    text-align: center;
}

.content-wthree .fa {
    color: #fff;
    font-size: 35px;
    margin: 30px 0;
}

.content-wthree p {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: #363636;
    line-height: 27px;
    letter-spacing: 1px;
}