@charset "UTF-8";

/*
Theme Name: Coffee Makers - Coffee Shop Responsive HTML Template
Theme URI: https://www.templatemonster.com/authors/iddrak/
Author: Iddrak
Author URI: https://www.templatemonster.com/authors/iddrak/
Description: IT Solution and Business Consulting HTML Template
Version: 1.0.0
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

=> Web Fonts
=> Normalize
=> Accessibility
=> Globals
=> Container width
=> Contact form success message
=> Banner section
=> Spacing
=> Alignments
=> Clearings
=> Button
=> Section Title
=> Back Top
=> Preloader Css
=> Media
=> Captions
=> Unit test
=> Gutenberg Default Style
=> Header top
=> Header Nav
    - Nav Style one
    - Nav Style two
    
=> Hero section
    - Hero one
    - Hero two
    - Hero three

=> About section
=> mission Section
=> Call to Section
=> gallery Section
    - gallery style two

=> gallery Single
=> Testimonial section
=> Value section
=> Blog section
    - Blog pagination

=> Blog Single
    - Blog sidebar
    - Comment area

=> Footer section
=> Testimonial Page
=> Customers review
=> Contact page
    - Bracnh area
    - contact form


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


/*-----------------
    Web Fonts
-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Poppins:wght@200;300;500;600;700&display=swap');

/*--------------------------------------------------------------
    Normalize
--------------------------------------------------------------*/

:root {
    --main-color-one: #2b3861;
    --main-color-two: #021B79;
    --secondary-color: #006aec;
    --heading-color: #111111;
    --paragraph-color: #5f7586;
    --heading-font: 'Marcellus SC', serif;
    --body-font: 'Poppins', sans-serif;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 300;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333;
    font-weight: 700;
}

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

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

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 0;
    line-height: 28px;
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--paragraph-color);
}

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

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}


/*input and button type focus outline disable*/

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

code {
    color: var(--main-color-one);
}


/*--------------------------------------------------------------
    Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


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


/* --------------------------------------
    Container width
-------------------------------------- */

#default-home .container {
    max-width: 1170px;
}

@media (max-width: 767px) {
    #hero-section .container {
        max-width: 500px;
    }
    #process-section .container,
    #quality-section .container,
    #call-to-section .container,
    #menu-section .container,
    #philosophy-section .container,
    #about-section .container,
    #testimonial-section .container,
    #offer-section .container,
    #blog-section .container,
    #footer-section .container,
    #gallery-section-one .container,
    #gallery-single-section .container,
    #customer-review .container,
    #mission-section .container,
    #contact-section .container,
    #branch-section .container {
        max-width: 400px;
    }
}

.card,
.card-body {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}


/* --------------------------------------
    Contact form success message
-------------------------------------- */

#form-messages {
    color: green;
}


/* --------------------------------------
    Banner section
-------------------------------------- */

.bg-prefix {
    background-position: 50% 0px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.overlay-01 {
    padding: 100px 0;
    background: rgba(0, 0, 0, .7);
}

.overlay-02 {
    padding: 200px 0;
    background: rgba(0, 0, 0, .7);
}

#banner-section {
    background: url(assets/images/banner-img.jpg);
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
}

.banner-overlay {
    padding: 100px 0;
}

.breadcrubms ul li {
    padding: 10px;
    font-size: 20px;
    color: #fff;
}

.breadcrubms ul li a.active {
    color: var(--main-color-one);
}

.breadcrubms .title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    #banner-section .overlay {
        padding: 100px 0;
        background: rgba(0, 0, 0, .5);
    }
    .breadcrubms ul li span {
        font-size: 32px;
    }
}


/* --------------------------------------
    Spacing
-------------------------------------- */

.pt-0 {
    padding-top: 0;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

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

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

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

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

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

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

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

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

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

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

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

.pb-75 {
    padding-bottom: 75px;
}

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

.pb-85 {
    padding-bottom: 85px;
}

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

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

.pb-105 {
    padding-bottom: 105px;
}

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

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

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

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.mt-0 {
    margin-top: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

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

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-0 {
    margin-bottom: 0!important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width:678px) and (max-width: 991px) {
    /* Margin Top */
    .md-mt-5 {
        margin-top: 5px;
    }
    .md-mt-10 {
        margin-top: 10px;
    }
    .md-mt-15 {
        margin-top: 15px;
    }
    .md-mt-20 {
        margin-top: 20px;
    }
    .md-mt-25 {
        margin-top: 25px;
    }
    .md-mt-30 {
        margin-top: 30px;
    }
    .md-mt-35 {
        margin-top: 35px;
    }
    .md-mt-40 {
        margin-top: 40px;
    }
    .md-mt-45 {
        margin-top: 45px;
    }
    .md-mt-50 {
        margin-top: 50px;
    }
    .md-mt-55 {
        margin-top: 55px;
    }
    .md-mt-60 {
        margin-top: 60px;
    }
    .md-mt-65 {
        margin-top: 65px;
    }
    .md-mt-70 {
        margin-top: 70px;
    }
    .md-mt-75 {
        margin-top: 75px;
    }
    .md-mt-80 {
        margin-top: 80px;
    }
    .md-mt-85 {
        margin-top: 85px;
    }
    .md-mt-90 {
        margin-top: 90px;
    }
    .md-mt-95 {
        margin-top: 95px;
    }
    .md-mt-100 {
        margin-top: 100px;
    }
    /* Margin bottom */
    .md-mb-5 {
        margin-bottom: 5px;
    }
    .md-mb-10 {
        margin-bottom: 10px;
    }
    .md-mb-15 {
        margin-bottom: 15px;
    }
    .md-mb-20 {
        margin-bottom: 20px;
    }
    .md-mb-25 {
        margin-bottom: 25px;
    }
    .md-mb-30 {
        margin-bottom: 30px;
    }
    .md-mb-35 {
        margin-bottom: 35px;
    }
    .md-mb-40 {
        margin-bottom: 40px;
    }
    .md-mb-45 {
        margin-bottom: 45px;
    }
    .md-mb-50 {
        margin-bottom: 50px;
    }
    .md-mb-55 {
        margin-bottom: 55px;
    }
    .md-mb-60 {
        margin-bottom: 60px;
    }
    .md-mb-65 {
        margin-bottom: 65px;
    }
    .md-mb-70 {
        margin-bottom: 70px;
    }
    .md-mb-75 {
        margin-bottom: 75px;
    }
    .md-mb-80 {
        margin-bottom: 80px;
    }
    .md-mb-85 {
        margin-bottom: 85px;
    }
    .md-mb-90 {
        margin-bottom: 90px;
    }
    .md-mb-95 {
        margin-bottom: 95px;
    }
    .xmdmb-100 {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    /* Margin Top */
    .xs-mt-0 {
        margin-top: 0;
    }
    .xs-mt-5 {
        margin-top: 5px;
    }
    .xs-mt-10 {
        margin-top: 10px;
    }
    .xs-mt-15 {
        margin-top: 15px;
    }
    .xs-mt-20 {
        margin-top: 20px;
    }
    .xs-mt-25 {
        margin-top: 25px;
    }
    .xs-mt-30 {
        margin-top: 30px;
    }
    .xs-mt-35 {
        margin-top: 35px;
    }
    .xs-mt-40 {
        margin-top: 40px;
    }
    .xs-mt-45 {
        margin-top: 45px;
    }
    .xs-mt-50 {
        margin-top: 50px;
    }
    .xs-mt-55 {
        margin-top: 55px;
    }
    .xs-mt-60 {
        margin-top: 60px;
    }
    .xs-mt-65 {
        margin-top: 65px;
    }
    .xs-mt-70 {
        margin-top: 70px;
    }
    .xs-mt-75 {
        margin-top: 75px;
    }
    .xs-mt-80 {
        margin-top: 80px;
    }
    .xs-mt-85 {
        margin-top: 85px;
    }
    .xs-mt-90 {
        margin-top: 90px;
    }
    .xs-mt-95 {
        margin-top: 95px;
    }
    .xs-mt-100 {
        margin-top: 100px;
    }
    /* Margin bottom */
    .xs-mb-0 {
        margin-bottom: 0;
    }
    .xs-mb-5 {
        margin-bottom: 5px;
    }
    .xs-mb-10 {
        margin-bottom: 10px;
    }
    .xs-mb-15 {
        margin-bottom: 15px;
    }
    .xs-mb-20 {
        margin-bottom: 20px;
    }
    .xs-mb-25 {
        margin-bottom: 25px;
    }
    .xs-mb-30 {
        margin-bottom: 30px;
    }
    .xs-mb-35 {
        margin-bottom: 35px;
    }
    .xs-mb-40 {
        margin-bottom: 40px;
    }
    .xs-mb-45 {
        margin-bottom: 45px;
    }
    .xs-mb-50 {
        margin-bottom: 50px;
    }
    .xs-mb-55 {
        margin-bottom: 55px;
    }
    .xs-mb-60 {
        margin-bottom: 60px;
    }
    .xs-mb-65 {
        margin-bottom: 65px;
    }
    .xs-mb-70 {
        margin-bottom: 70px;
    }
    .xs-mb-75 {
        margin-bottom: 75px;
    }
    .xs-mb-80 {
        margin-bottom: 80px;
    }
    .xs-mb-85 {
        margin-bottom: 85px;
    }
    .xs-mb-90 {
        margin-bottom: 90px;
    }
    .xs-mb-95 {
        margin-bottom: 95px;
    }
    .xs-mb-100 {
        margin-bottom: 100px;
    }
}


/* Font Size */

.font-sm {
    font-size: 13px;
}

.font-md {
    font-size: 16px;
}

.font-lg {
    font-size: 17px;
}

.font-xl {
    font-size: 21px;
}

.font-xxl {
    font-size: 30px;
}

.font-xxxl {
    font-size: 40px;
    line-height: 40px;
}

.line-h-sm {
    line-height: 13px;
}

.line-h-md {
    line-height: 16px;
}

.line-h-lg {
    line-height: 17px;
}

.line-h-xl {
    line-height: 21px;
}

.line-h-xxl {
    line-height: 30px;
}

.line-h-xxxl {
    line-height: 40px;
}

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

.min-height-600 {
    min-height: 600px;
}

.overflow-hidden {
    overflow: hidden;
}


/*--------------------------------------------------------------
    Alignments
--------------------------------------------------------------*/

.alignleft {
    float: left;
    clear: both;
}

.alignright {
    float: right;
    clear: both;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}


/*--------------------------------------------------------------
    Clearings
--------------------------------------------------------------*/

.clear {
    clear: both;
}

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


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

.btn {
    padding: 15px 25px;
    background: transparent;
    border-radius: 0;
}


/* btn primary */

.btn-primary {
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--main-color-one);
    border: 1px solid var(--main-color-one);
}


/* btn secondary */

.btn-secondary {
    border: 1px solid var(--main-color-one);
    color: var(--main-color-one);
}

.btn-secondary:hover {
    background-color: var(--main-color-one);
    border: 1px solid var(--main-color-one);
}


/*-------------------------
    Section Title
-------------------------*/

.section-title {
    position: relative;
}

.section-title span.subtitle {
    position: relative;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    font-family: var(--body-font);
    color: var(--main-color-one);
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title span.subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    border-bottom: 2px solid var(--main-color-one);
}

.section-title .title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--heading-font);
    margin: 0;
}

.section-title .title span {
    font-weight: 700 !important;
}

.section-title p {
    font-size: 16px;
    margin-top: 15px;
}

@media (max-width: 767px) {
    h2 {
        font-size: 28px;
    }
    .section-title span.subtitle {
        font-size: 14px;
    }
    .section-title .title {
        font-size: 28px;
        line-height: 36px;
    }
}

.section-title-two {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


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

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    display: none;
}


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

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

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-inner .center span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #262626;
    animation: animate 4s infinite forwards ease-in-out;
}

.preloader-inner .center span:nth-child(1) {
    background: var(--main-color-one);
    left: -24px;
    top: -24px;
    animation-delay: 0.5s;
}

.preloader-inner .center span:nth-child(2) {
    background: var(--main-color-two);
    left: 0px;
    top: -24px;
    animation-delay: 1s;
}

.preloader-inner .center span:nth-child(3) {
    background: var(--main-color-one);
    left: 0px;
    top: 0px;
    animation-delay: 2s;
}

.preloader-inner .center span:nth-child(4) {
    background: var(--main-color-two);
    left: -24px;
    top: 0px;
    animation-delay: 1.5s;
}

@keyframes animate {
    0% {
        transform: rotateY(0deg);
    }
    20% {
        transform: rotateY(360deg);
    }
    40% {
        transform: rotateX(180deg);
    }
    60% {
        transform: rotateX(0deg);
    }
    80% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.preloader-inner .cancel-preloader a {
    background-color: var(--main-color-one);
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    transition: all 0.3s ease-in;
}

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


/*--------------------------------------------------------------
    Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}


/*--------------------------------------------------------------
    Media
--------------------------------------------------------------*/


/* 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;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}


/*--------------------------------------------------------------
    Gutenberg	Default Style
--------------------------------------------------------------*/

.single-post-details-item .entry-content>.alignwide {
    max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
    border-left: 4px solid #000;
    padding-left: 1em;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
}


/*----------------------------
    Header top 
----------------------------*/


/* Nav Style one */

.header-area.style-01 .header-top {
    padding: 10px 0;
    background: #724320;
}

.header-area.style-01 .header-top .header-top-left ul li {
    padding-right: 30px;
}

.header-area.style-01 .header-top .header-top-left ul li span {
    text-transform: uppercase;
    font-size: 12px;
}

.header-area.style-01 .header-top .header-top-left ul li p i {
    font-size: 14px;
    margin-right: 5px;
}

.header-area.style-01 .header-top .header-top-left ul li p {
    font-size: 14px;
    color: #fff;
}

.header-area.style-01 .header-top .header-top-right ul li a {
    padding: 0 10px;
}

.header-area.style-01 .header-top .header-top-right ul li a i {
    color: #fff;
}

.header-area.style-01 .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li a {
    color: #111;
}

.header-area.style-01 .navbar-area {
    padding: 5px;
    border-bottom: 1px solid aliceblue;
    box-shadow: 0 10px 50px -12px rgba(171, 171, 171, 0.05);
}


/* Nav Style two */

.header-area.style-02 {
    position: absolute;
    z-index: 999999;
    width: 100%;
}

.header-area.style-02 .header-top .header-top-left ul li {
    margin-right: 30px;
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li a {
    color: #fff;
}

.header-area.style-02 .header-top .header-top-left ul li p {
    color: #fff;
}

.header-area.style-02 .header-top ul li span {
    color: var(--main-color-one);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    font-size: 12px;
}

.header-btn {
    margin-left: 20px;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .header-btn .btn {
        padding: 10px 15px;
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
    }
}

@media (max-width:991px) {
    .header-area.style-02 .header-btn {
        display: none;
    }
}


/*----------------------------
    Header Nav
----------------------------*/

.navbar.navbar-area.white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area.nav-style-01 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler {
    padding: 10px;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
}

.mobile-logo {
    display: none;
}

@media only screen and (max-width: 991px) {
    .mobile-logo {
        display: block;
    }
    .desktop-logo {
        display: none !important;
    }
}

.navbar-area {
    padding: 5px;
}

.navbar-area.nav-absolute {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0px;
    z-index: 1;
}

.navbar-area.nav-style-default.has-topbar {
    top: 50px;
}

.navbar-area.nav-style-default.has-topbar-02 {
    top: 122px;
}

.navbar-area.nav-style-default.has-topbar-03 {
    top: 70px;
}

.navbar-area.nav-style-default .nav-container {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.navbar-area.nav-style-default .nav-container .logo-wrapper {
    max-width: 200px;
}

.navbar-area.nav-style-default .nav-container .nav-right-content {
    display: flex;
    align-items: center;
}

.navbar-area.nav-style-default .nav-container .nav-right-content ul li {
    color: #fff;
}

.navbar-area.nav-style-default .nav-container .nav-right-content ul li+li {
    margin-left: 5px;
}

.navbar-area.nav-style-default .nav-container .nav-right-content ul li a {
    color: #fff;
}

.navbar-area.nav-style-default .nav-container.political-02 .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one)
}

.navbar-area.nav-style-default .nav-container.political-02 .navbar-collapse .navbar-nav li.current-menu-item:before {
    color: #fff;
}

.navbar-area.nav-style-default .nav-container.political-02 .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: #fff;
}

.navbar-area.nav-style-default .nav-container.political-02 .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav {
    text-align: right;
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
    padding-right: 15px;
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: #fff;
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--paragraph-color);
}

.navbar-area.nav-style-default .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-style-default .nav-container .navbar-collapse .navbar-nav li a {
    transition: all 0.3s ease-in;
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content .btn-wrapper {
    margin-left: 40px;
}

.navbar-area .nav-container .nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    margin: 0 15px;
    color: #6a7795;
}

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

.navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
    color: var(--secondary-color);
}

.navbar-area .nav-container .nav-right-content ul li.search {
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li.search:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-brand .site-title {
    font-weight: 700;
    font-size: 30px;
    font-family: var(--heading-font);
    line-height: 90px;
    color: var(--heading-color);
}

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

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 16px;
    font-family: var(--body-font);
    text-transform: inherit;
    font-weight: 600;
    line-height: 70px;
}

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

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
    border: 0;
}

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

.menu-item-has-children i {
    font-size: 16px;
}

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

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 24px;
    font-size: 14px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 6px 0;
    background-color: #fff;
    white-space: nowrap;
    color: var(--paragraph-color);
    transition: all 0.3s ease-in;
}

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

.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: 0px;
}

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

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-one);
}

@media only screen and (max-width: 991px) {
    .navbar-area.nav-style-default .nav-container .navbar-toggler {
        background-color: #fff;
    }
    .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav {
        background-color: #111111;
        padding: 0 20px;
    }
    .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area.nav-style-01 .nav-container {
        padding: 20px 0px;
    }
    .navbar-area.nav-style-01 .nav-container .responsive-mobile-menu .navbar-toggler {
        background-image: none;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
        text-align: left;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
        line-height: 30px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
        z-index: initial;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: 1px solid #e2e2e2;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: var(--paragraph-color);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
        background-color: var(--main-color-one);
        color: #fff;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
        color: #656565;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
        transition: all 0.3s ease-in;
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: var(--main-color-one);
    }
    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 80px;
    }
    .navbar-area .nav-container .responsive-mobile-menu {
        display: block;
        position: relative;
        width: 100%;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
        position: absolute;
        right: 0;
        top: 50%;
        /* IE 9 */
        /* Chrome, Safari, Opera */
        transform: translateY(-50%);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
    .navbar-area .nav-container .navbar-brand {
        display: block;
    }
    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 1px solid #e2e2e2;
    }
    .navbar-area .nav-container .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(255, 255, 255, 0.2);
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 25px;
        right: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        visibility: visible;
        height: auto;
        opacity: 1;
        background-color: transparent;
        border-bottom: none;
        padding-top: 10px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        transition: height 500ms;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "";
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        color: #fff;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 991px) {
    .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li a {
        color: #fff;
    }
    .header-top .header-top-left ul li p {
        font-size: 12px !important;
    }
    .header-area.style-01 .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li a {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 60px;
    }
    .header-area.style-02 {
        background: #fff;
    }
    .header-top {
        padding: 25px 0;
    }
    .header-top .header-top-left ul li {
        padding: 5px 0;
        text-align: center;
    }
    .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        color: #fff !important;
    }
}

@media only screen and (max-width: 575px) {
    .navbar-area .nav-container {
        margin: 0;
    }
}

.navbar-collapse .navbar-nav li.menu-item-has-children:before {
    position: absolute;
    right: 0;
    top: 50%;
    content: '\f107';
    font-family: "FontAwesome";
    font-weight: 700;
    font-size: 16px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in;
    color: #111 !important;
}

.header-area.style-02 .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    color: #fff !important;
}

.header-area.style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    color: var(--paragraph-color) !important;
}

.header-area.style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: #fff !important;
}

.header-area.style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
    color: var(--main-color-one) !important;
}

.header-area.style-02 .navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover,
.header-area.style-02 .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    color: var(--main-color-one) !important;
}


/*--------------------------------------------------------------
    Hero section
--------------------------------------------------------------*/


/* Hero One 
--------------------- */

.hero-bg-01.style-01 {
    position: relative;
    padding: 100px 0;
}

.hero-content.style-01 {
    max-width: 600px;
}

.hero-content.style-01 .subtitle {
    color: #111;
    margin-bottom: 20px;
}

.hero-content.style-01 h2 {
    font-weight: 600;
    font-size: 60px;
}

.hero-content.style-01 .title {
    color: var(--main-color-one);
    font-size: 120px;
    display: block;
    margin-bottom: 35px;
}

.hero-content.style-01 .hero-btn .btn-primary {
    margin-right: 10px;
}

.hero-img.style-01 {
    padding-left: 50px;
}


/* Hero Responsive */

@media only screen and (min-width:992px) and (max-width:1199px) {
    .request-form {
        padding: 0 !important;
    }
    .hero-bg-01.style-01 .hero-content h2 {
        font-size: 48px;
    }
    .hero-bg-01.style-01 .hero-content .title {
        font-size: 100px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-bg-01.style-01 .hero-content h2 {
        font-weight: 600;
        line-height: 1.2;
        font-size: 40px;
    }
    .hero-bg-01.style-01 .hero-content .title {
        font-size: 70px;
    }
}

@media (max-width:767px) {
    .hero-bg-01.style-01 .hero-content h2 {
        font-size: 30px;
    }
    .hero-bg-01.style-01 .hero-content .title {
        font-size: 60px;
        margin: 13px 0 30px;
    }
    .hero-bg-01.style-01 .hero-img {
        padding-left: 0;
    }
    .hero-bg-01.style-01 .hero-img-shape-two {
        top: 0;
    }
    .btn {
        padding: 15px 20px !important;
    }
    .hero-content.style-01 .hero-btn .btn-primary {
        margin-right: 0;
    }
}


/* Hero Two 
--------------------- */


/* Slider animation */

.hero-slider-two.style-02 .owl-item.active .icon {
    animation: fadeInDown 2s .5s both;
}

.hero-slider-two.style-02 .owl-item.active .title {
    animation: fadeInDown 2s 1s both;
}

.hero-slider-two.style-02 .owl-item.active p {
    animation: fadeInUp 1.6s 1.5s both;
}

.hero-slider-two.style-02 .owl-item.active .author-sign {
    animation: fadeInUp 2s 2s both;
}

.hero-slider-two.style-02 .owl-item.active .hero-btn .btn-primary {
    animation: fadeInUp 2s 1.5s both;
}

.hero-slider-two.style-02 .owl-item.active .hero-btn .btn-secondary {
    animation: fadeInUp 2.5s 2s both;
}


/* Owl navigations */

.hero-slider-two:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.hero-slider-two .owl-nav div {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-in;
    font-size: 40px;
}

.hero-slider-two .owl-nav div:hover {
    color: var(--main-color-one);
}

.hero-slider-two .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}


/* Content */

.hero-slider-two.style-02 .hero-bg-02 {
    padding: 170px 0 130px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero-content.style-02 {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.hero-content.style-02 .title {
    line-height: 1.1;
    font-size: 100px;
    margin: 0px 0 20px;
    font-weight: 800;
    color: #fff;
}

.hero-content.style-02 .text {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}

.hero-content .btn-primary {
    padding: 18px 30px;
    background: var(--main-color-one);
    color: #fff;
    border: 1px solid var(--main-color-one);
}

.hero-content .btn-primary:hover {
    background: transparent;
    border: 1px solid var(--main-color-one);
    color: var(--main-color-one);
}

.hero-content .btn-secondary {
    padding: 18px 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-content.style-02 .hero-bg-02 {
        padding: 150px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-content.style-02 .hero-bg-02 {
        padding: 100px 0;
    }
    .hero-content.style-02 {
        max-width: 550px;
        margin-top: 65px;
    }
    .hero-content.style-02 .subtitle {
        font-size: 30px;
    }
    .hero-content.style-02 .title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .hero-slider-two.style-02 .hero-bg-02 {
        padding: 170px 0 100px;
    }
    .hero-content.style-02 .icon i {
        font-size: 80px;
    }
    .hero-content.style-02 .title {
        font-size: 42px;
        margin: 20px 0;
    }
}


/* Hero Three 
--------------------- */

.hero-area-03 .hero-bg-03 {
    position: relative;
    padding: 150px 0;
    background: rgba(0, 0, 0, .6);
}

.hero-content.style-03 {
    max-width: 700px;
}

.hero-content.style-03 .icon i {
    font-size: 70px;
    color: var(--main-color-one);
    line-height: 1;
    background: #fff;
    height: 100px;
    width: 100px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    display: block;
}

.hero-content.style-03 .subtitle {
    margin-top: 40px;
    color: var(--main-color-one);
    background: #fff;
    max-width: 270px;
    padding: 5px;
    text-align: center;
}

.hero-content.style-03 .title {
    color: #fff;
    font-weight: bold;
    font-size: 70px;
    margin: 30px 0 20px;
}

.hero-content.style-03 .text {
    font-size: 20px;
    color: #fff;
    line-height: 32px;
    font-weight: 500;
}

.hero-content.style-03 .btn-primary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 18px 30px;
}

.hero-content.style-03 .btn-primary:hover {
    background: #fff;
    color: var(--main-color-one);
    border: 1px solid #fff;
}

@media (max-width:767px) {
    .hero-area-03 .hero-bg-03 {
        padding: 100px 0;
    }
    .hero-content.style-03 .title {
        font-size: 48px;
    }
    .hero-content.style-03 .text {
        font-size: 16px;
        font-weight: 400;
    }
    .hero-content.style-03 .icon i {
        font-size: 50px;
        height: 90px;
        width: 90px;
        line-height: 100px;
    }
}


/*---------------------------
    Quality section
---------------------------*/

.quality-area,
.quality-area-02 {
    position: relative;
}

.quality-area:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url(assets/images/testimonial/pattern.jpg);
    opacity: .1;
    background-size: cover;
    background-position: left;
}

.quality-area-02:before {
    background: none;
}

@media (max-width:767px) {
    .quality-area:before {
        display: none;
    }
}


/*---------------------------
    Process section
---------------------------*/

.process-area-02 {
    background: #2b3861;
    padding: 60px 0 100px 0;
}

.process-content {
    padding: 0 15px;
}

.process-content .icon {
    position: relative;
}

.process-content .icon i {
    font-size: 60px;
    line-height: 0;
}

.process-content .icon span {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    box-shadow: 0 10px 50px -12px rgba(0, 0, 0, .4);
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    color: var(--main-color-two);
    background: #ddd;
}

.process-content .title {
    margin: 20px 0;
}


/*---------------------------
    About section
---------------------------*/

.about-section-title .subtitle {
    color: #111;
}

.about-content blockquote {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #0d2235;
    font-style: italic;
}

.about-img {
    position: relative;
    padding-left: 70px;
}

.about-img:before {
    position: absolute;
    content: "";
    left: 35px;
    top: 20px;
    width: 10%;
    height: 10px;
    background: var(--main-color-one);
}

.about-img:after {
    position: absolute;
    content: "";
    left: 35px;
    top: 90px;
    width: 10%;
    height: 10px;
    background: var(--main-color-two);
}

.about-img .icon i {
    width: 120px;
    height: 120px;
    line-height: 140px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 61px;
    bottom: 100px;
    left: 10px;
    margin: 0 auto;
    position: absolute;
    display: inline-block;
    background: rgb(0, 92, 234);
    background: linear-gradient(90deg, rgba(168, 104, 57, .8) 50%, rgba(2, 27, 121, 1) 100%);
}

.about-img .icon .spinning-circle {
    position: absolute;
    left: 0;
    bottom: 89px;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    z-index: 99;
    border: 2px dashed #ffffff;
    animation: animate 15s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .about-content .title span {
        display: block;
    }
    .about-img {
        padding-left: 50px;
    }
    .about-img:before {
        left: 35px;
        top: 20px;
    }
    .about-img:after {
        left: 35px;
        top: 60px;
    }
    .about-img .icon i {
        width: 80px;
        height: 80px;
        line-height: 90px;
        font-size: 42px;
        bottom: 60px;
        left: 10px;
    }
    .about-img .icon .spinning-circle {
        left: 0;
        bottom: 50px;
        width: 100px;
        height: 100px;
    }
}


/*----------------------------
    Philosophy Section
----------------------------*/

.philosophy-title span {
    display: block;
}


/*----------------------------
    Offer Section
----------------------------*/

.offer-title {
    margin-left: auto;
    margin-right: auto;
}

.offer-content .icon i {
    font-size: 60px;
    color: rgba(168, 104, 57, .8);
}


/*----------------------------
    mission Section
----------------------------*/

.mission-area .item {
    box-shadow: 0 10px 50px -12px rgba(171, 171, 171, .4);
    padding: 50px;
}

.mission-area .item.item-one {
    background: var(--main-color-two);
}

.mission-area .item.item-two {
    background: var(--main-color-one);
}

.mission-area .item.item-three {
    background: var(--secondary-color);
}

.mission-area .item i {
    font-size: 42px;
    color: #fff;
}

.mission-area .item .title {
    margin: 15px 0 20px;
    color: #fff;
}

.mission-area .item .text {
    color: #fff;
}


/*----------------------------
    Call to Section
-----------------------------*/

.call-to-area {
    position: relative;
    overflow: hidden;
}

.call-to-area .overlay-01 {
    background: rgba(0, 0, 0, .7);
}

.call-to-content-area {
    position: relative;
    z-index: 1;
}

.call-to-content-area:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px dotted #ddd;
    height: 630px;
    width: 630px;
    border-radius: 50%;
    opacity: .2;
    z-index: -1
}

.call-to-content-area:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px dotted #ddd;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    opacity: .2;
    z-index: -1
}

.call-to-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px dotted #ddd;
    height: 370px;
    width: 370px;
    border-radius: 50%;
    opacity: .2;
    background: none;
}

.call-to-content .title,
.call-to-content .subtitle,
.call-to-content .text,
.call-to-icon i {
    color: #fff;
}

.call-to-content .subtitle {
    font-style: italic;
    font-size: 32px;
    font-weight: 400;
    margin: 0px 0 30px !important;
}

.call-to-content .title {
    font-size: 52px;
    line-height: 60px;
}

.call-to-icon i {
    font-size: 70px;
}

.call-to-content .text {
    margin: 20px 0;
}


/*----------------------------
    Gallery Section
-----------------------------*/

.gallery-area.style-01 .gallery-title {
    margin-left: auto;
    margin-right: auto;
}

.gallery-area.style-01 .gallery-carousel-area {
    padding: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: all linear .37s;
}

.gallery-item:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
    transition: all linear .3s;
}

.gallery-item:hover:before {
    left: -100%;
}

.gallery-content {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 100%;
    padding: 30px;
    z-index: 1;
    transition: all linear .7s;
}

.gallery-item:hover .gallery-content {
    right: -100%;
    opacity: 0;
    visibility: hidden;
}

.gallery-content .title {
    color: #fff;
    margin: 10px 0;
    display: block;
}

.gallery-content .gallery-btn-text {
    position: relative;
    width: 120px;
    display: block;
}

.gallery-content .gallery-btn-text a {
    color: var(--main-color-one);
}

.gallery-content .gallery-btn-text i {
    position: absolute;
    right: 0;
    top: 4px;
}

.gallery-btn {
    position: absolute;
    bottom: -100%;
    right: 20px;
    transition: all linear .7s;
}

.gallery-btn i {
    height: 40px;
    width: 40px;
    line-height: 44px;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    border-radius: 50%;
}

.gallery-btn i:hover {
    background: #fff;
    color: var(--main-color-one);
}

.gallery-item:hover .gallery-btn {
    bottom: 20px;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .gallery-content {
        padding: 30px;
    }
    .gallery-content .icon {
        margin-top: 15px;
    }
    .gallery-content .subtitle {
        margin: 10px 0 15px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .gallery-content {
        padding: 30px;
    }
    .gallery-content .text span {
        display: none;
    }
    .gallery-content .icon {
        margin-top: 15px;
    }
    .gallery-content .subtitle {
        margin: 10px 0 15px;
    }
}

@media (max-width:767px) {
    .gallery-area.style-01 .gallery-item-cmn {
        width: 100%;
    }
}


/* Owl navigations */

.gallery-carousel-area:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.gallery-carousel-area .owl-nav div {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: #c6a151;
    border-color: #c6a151;
    border-radius: 50%;
    transition: all 0.3s ease-in;
    visibility: hidden;
    opacity: 0;
}

.gallery-carousel-area .owl-nav div:hover {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
}

.gallery-carousel-area .owl-nav div.owl-next {
    left: auto;
    right: 10px;
}


/*Owl dots*/

.gallery-carousel-area .owl-carousel .owl-controls {
    margin-top: 30px;
}

.gallery-carousel-area .owl-carousel .owl-controls .owl-dots {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.gallery-carousel-area .owl-carousel .owl-controls .owl-dot {
    display: inline-block;
    margin: 0 2px;
    font-size: 24px;
    background: #eee;
    height: 15px;
    width: 15px;
    border-radius: 50%;
}

.gallery-carousel-area .owl-dots .owl-dot.active {
    background: var(--main-color-one);
    width: 40px;
    border-radius: 25px;
}

@media (max-width:767px) {
    .gallery-item-cmn {
        width: 100%;
    }
    .gallery-content {
        padding: 20px;
    }
}


/*------------------------------
    Menu section
-----------------------------*/

.menu-title {
    margin: auto;
    margin-bottom: 10px;
}

.menu-content-area {
    position: relative;
    padding: 0 25px;
}

.menu-content-area .img-box {
    position: relative;
    width: 150px;
    padding-right: 20px;
    border-radius: 50%;
}

.menu-content-area .img-box img {
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
}

.menu-content-area .img-box:before {
    position: absolute;
    content: "";
    left: -20px;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--main-color-one);
    z-index: -1;
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
}

.menu-content-area .menu-content {
    width: 100%;
    position: relative;
}

.menu-content-area .content:before {
    position: absolute;
    content: "";
    left: 20px;
    top: 3px;
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.02);
}

.menu-content-area .menu-content .text {
    color: var(--main-color-one);
}

.menu-content-area .menu-content .menu-price span {
    color: var(--main-color-two);
}


/*----------------------------
    Value section
-----------------------------*/

.values-content .subtitle {
    color: #fff;
    font-size: 42px;
    font-weight: 400;
}

.values-content .title {
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.values-content .text {
    font-size: 24px;
    color: #fff;
}

@media (max-width:767px) {
    .values-content .title {
        font-size: 48px;
    }
    .values-content .subtitle {
        font-size: 32px;
    }
}


/*----------------------------
    Blog section
-----------------------------*/

.blog-title {
    margin-left: auto;
    margin-right: auto;
}

.blog-post-item {
    position: relative;
    transition: all linear .3s;
}

.blog-post-item .post-category a.separator {
    margin: 0 10px;
    height: 2px;
    width: 10px;
    background: var(--main-color-one);
}

.blog-post-item .content {
    padding: 30px 0 0;
}

.blog-post-item .content .title {
    transition: all linear .3s;
    margin-bottom: 0;
    font-size: 24px;
}

.blog-post-item .content .title:hover {
    color: var(--main-color-one);
}

.post-meta li {
    display: inline-block;
    font-size: 13px;
    color: var(--main-color-one);
    font-weight: 400;
    font-style: italic;
}

.post-meta .separator {
    margin: 0 10px;
}

.post-meta li i {
    margin-right: 5px;
}

.blog-post-item .blog-btn a {
    box-shadow: 0 10px 50px -12px rgba(0, 0, 0, .6);
    background: #fff;
    transition: ease-in .3s;
    position: relative;
}

.blog-post-item:hover .blog-btn a {
    color: var(--main-color-one);
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .blog-post-item .content {
        padding: 30px 15px 0;
    }
}

@media (max-width: 350px) {}


/* -------------------------------------
		Blog pagination
------------------------------------- */

.pgn {
    margin-top: 50px;
    text-align: center;
}

.pgn ul {
    display: inline-block;
    list-style: none;
    margin-left: 0;
    position: relative;
    padding: 0 50px;
}

.pgn ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
}

.pgn__num {
    font-family: "metropolis-bold", sans-serif;
    color: #151515;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 45px;
    width: 45px;
    line-height: 45px;
    display: block;
    background: #f5f5f5;
}

.pgn__num:hover {
    background: #c4c4c4;
    color: #151515;
}

.pgn .current,
.pgn .current:hover {
    background-color: var(--main-color-one);
    color: #FFFFFF;
}

.pgn .inactive,
.pgn .inactive:hover {
    color: #888888;
    cursor: default;
}

.pgn__prev,
.pgn__next {
    display: block;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: 18px 12px;
    background-position: center;
    height: 45px;
    width: 45px;
    line-height: 45px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pgn__prev:hover,
.pgn__next:hover {
    background-color: var(--main-color-one);
    color: #FFFFFF;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
}

.pgn__prev {
    background-image: url("../images/icons/icon-arrow-left.svg");
    left: 0;
}

.pgn__prev:hover {
    background-image: url("../images/icons/icon-arrow-left-w.svg");
}

.pgn__next {
    background-image: url("../images/icons/icon-arrow-right.svg");
    right: 0;
}

.pgn__next:hover {
    background-image: url("../images/icons/icon-arrow-right-w.svg");
}

.pgn__prev.inactive,
.pgn__next.inactive {
    background-color: #ffffff;
    opacity: 0.5;
    cursor: default;
}

.pgn__prev.inactive:hover {
    background-image: url("../images/icons/icon-arrow-left.svg");
}

.pgn__next.inactive:hover {
    background-image: url("../images/icons/icon-arrow-right.svg");
}


/*----------------------------
    Blog Single
-----------------------------*/

.blog-post-item .content h3.title {
    line-height: 1.5;
}

.blog-post-item .content .post-quote {
    background: rgba(255, 196, 0, .2);
    padding: 30px;
}

.blog-post-item .content .post-quote i {
    font-size: 24px;
}

.blog-post-item .content .post-quote p {
    font-size: 18px;
    font-style: italic;
    margin-top: 0;
    color: #111;
}

.blog-post-item .content .post-quote small {
    margin-top: 15px;
    display: block;
    color: #111;
}

.blog-post-item .content .post-inner-list li {
    padding: 10px 0;
}

.blog-post-item .content .post-inner-list li i {
    font-size: 11px;
    margin-right: 10px;
    color: var(--main-color-one);
}


/*Blog sidebar*/

.blog-sidebar {
    padding: 0 0 0 30px;
}

.widget-search {
    position: relative;
}

.widget-search input.form-control {
    padding: 17px;
    border-radius: 0;
    font-size: 14px;
    border-bottom: 1px solid #ced4da;
}

.widget-search button {
    position: absolute;
    top: 0;
    right: 0;
    height: 57px;
    line-height: 62px;
    width: 50px;
    font-size: 20px;
    border: 0;
    color: var(--main-color-one);
    background: transparent;
    cursor: pointer;
}

.widget-archive.categories li a {
    padding: 7px 0;
    display: block;
}

.widget-archive.categories i {
    color: var(--main-color-one);
    margin-right: 10px;
    font-size: 14px;
}

ul.widget-archive.categories span {
    float: right;
}

.recent-post-item .thumb {
    padding-right: 20px;
}

.recent-post-item .title {
    font-size: 16px;
    transition: .3s;
}

.recent-post-item .title:hover {
    color: var(--main-color-one);
}

.recent-post-item span {
    font-size: 13px;
    color: var(--main-color-one);
}

.widget-tag-cloud {
    overflow: hidden;
}

.tagcloud li {
    float: left;
}

.tagcloud li a {
    padding: 5px 15px;
    background: #2b3861;
    margin: 5px 2px;
    border-radius: 50px;
    font-size: 13px;
    display: block;
    transition: .3s;
}

.tagcloud li a:hover,
.tagcloud li a.active {
    background: var(--main-color-one);
    color: #fff;
}

@media (max-width:767px) {
    .blog-sidebar {
        padding-left: 0;
    }
}


/*Comment area*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.comments-area .comments-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 38px;
}

.comments-area .comment-list .comment-respond {
    margin-bottom: 30px;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
    margin-bottom: 20px;
}

.comments-area .comment-list li {
    margin-bottom: 30px;
}

.comments-area .comment-list li:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.comments-area .comment-list li ul {
    list-style: none;
}

.comments-area .comment-list li ul.children li {
    margin-left: 50px;
    list-style-type: none;
    list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
    display: flex;
    align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
    margin-right: 20px;
    min-width: 80px;
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
    margin-bottom: 10px;
    border-radius: 50%;
    width: 100px;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.comments-area .comment-list li .single-comment-wrap .content {
    flex: 1;
    position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
    max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
    font-size: 14px;
    line-height: 24px;
    word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
    color: var(--main-color-one);
    font-size: 12px;
    transition: .3s;
}

.comments-area .comment-list li .single-comment-wrap .content .reply i {
    font-size: 10px;
    margin-right: 5px;
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
    color: var(--main-color-two);
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
}

.comments-area .form-submit {
    margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
    resize: none;
}

.comment-form .form-group.textarea .form-control:focus {
    outline: none;
    box-shadow: none;
}

.comment-form .form-group .form-control {
    padding: 15px;
    border-radius: 0;
    border: none;
    border: 1px solid #ddd;
}

.comment-form .submit-btn {
    height: 50px;
    width: auto;
    border-radius: 5px;
    font-weight: 400;
    background-color: var(--main-color-one);
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in;
    color: #fff;
}

.comment-form .submit-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.comments-area .comment-list .children li:last-child {
    margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
    margin-top: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
    margin-right: 5px;
}


/*----------------------------
    Footer section
-----------------------------*/

.footer-area .overlay-01 {
    background: rgba(0, 0, 0, .9);
}

.open-time-item span {
    font-size: 12px;
}

.open-time-item .open-time-day,
.open-time-item .open-time-closed {
    color: #fff;
}

.open-time-item .open-time-day {
    padding-right: 5px;
    width: 90px;
    text-transform: uppercase;
    font-weight: 600;
}

.open-time-item .open-time-hours {
    width: 250px;
}

.open-time-item .open-time-closed {
    padding-left: 5px;
    float: right;
}

.open-time-item .open-time-line {
    height: 1px;
    display: table-cell;
    width: 95%;
    z-index: 1;
    padding: 0 5px;
    position: relative;
    margin-top: 15px
}

.open-time-item .open-time-line .open-time-line-inner {
    display: block;
    border-bottom: 1px solid #555;
}

.footer-widget .widget-title {
    color: #fff;
}

.footer-widget .widget-title span {
    color: var(--main-color-one);
}

.footer-widget p {
    color: #ddd;
}

.footer-widget-social ul li a {
    padding-right: 20px;
}

.footer-widget.footer-links ul li a {
    padding: 5px 0;
    display: block;
    color: #ddd;
    transition: ease-in .3s;
}

.footer-widget.footer-links ul li a:hover {
    color: var(--main-color-one);
}

.footer_recent_post .card {
    border-bottom: 1px solid #384350;
    padding-bottom: 10px;
}

.footer_recent_post .card:last-child {
    border: none;
}

.footer_recent_post .title {
    color: #ddd;
    font-weight: 600;
    transition: all linear .3s;
}

.footer_recent_post .title:hover {
    color: var(--main-color-one);
}

.footer_recent_post .meta {
    margin-bottom: 5px;
}

.footer_recent_post .meta span {
    color: var(--main-color-one);
    font-size: 12px;
    font-weight: 600;
}

.footer-contact p {
    padding: 5px 0;
}

.newsletter .title {
    color: #ddd;
    margin-bottom: 30px;
}

.newsletter input {
    background: transparent;
    border: 1px solid #fff;
    padding: 20px;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
    width: 100%;
}

.newsletter input::placeholder {
    color: #fff;
}

.newsletter button {
    margin-top: 15px;
    padding: 18px;
    border: 1px solid var(--main-color-one);
    background: var(--main-color-one);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all linear .3s;
    width: 100%;
}

.newsletter button:hover {
    background: transparent;
    border: 1px solid var(--main-color-one);
    color: var(--main-color-one);
}

.copyright-area {
    background: #000;
    padding: 25px 0;
}

.copyright-area p {
    font-weight: 500;
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .open-time-item .open-time-line {
        width: 50%;
    }
}


/*----------------------------
    Testimonial section
-----------------------------*/

.testimonial-area {
    position: relative;
    padding-bottom: 120px;
}

.testimonial-area:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url(assets/images/testimonial/pattern.jpg);
    opacity: .1;
    background-size: cover;
    background-position: left;
}

.testimonial-img img {
    border-radius: 5px;
}

.testimonial-content {
    padding-left: 50px;
}

.testimonial-content .subtitle i {
    color: var(--main-color-one);
    font-size: 20px;
    margin-right: 10px;
}

.testimonial-content .title {
    margin: 10px 0 30px;
}

.client-info h6 {
    margin-right: 10px;
}

.client-info .designation {
    line-height: 21px;
    font-size: 13px;
    color: var(--body-font);
}

.clients-rating ul li i {
    color: var(--main-color-one);
    margin-right: 5px;
}

@media (max-width:767px) {
    .testimonial-content {
        padding-left: 0;
    }
    .testimonial-content .title {
        font-size: 26px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .testimonial-img img {
        border-radius: 5px;
        width: 350px;
        padding-left: 50px;
        margin-bottom: 50px;
    }
}


/*----------------------------
    Testimonial two
-----------------------------*/

.customer-review-title {
    margin: 0 auto;
}

.customer-review-item {
    position: relative;
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    padding: 30px;
}

.customer-review-item .customer-name {
    font-size: 16px;
    color: var(--main-color-one);
}

.customer-review-item .designation {
    font-size: 14px;
}

.customer-review-item .customer-rating ul li {
    margin-right: 3px;
    color: var(--main-color-one);
}

.customer-review-item .icon {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 42px;
    opacity: .2;
    color: var(--main-color-one);
}


/*----------------------------
    Contact page
-----------------------------*/

.section-title.contact-section-title {
    padding-left: 50px;
}

.section-title.contact-section-title .title {
    margin: 10px 0 30px 0;
}

.contact-social {
    padding-left: 50px;
}

.contact-social ul li i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: ease-in .3s;
}

.contact-social ul li i:hover {
    background: var(--main-color-one);
    border: 1px solid var(--main-color-one);
    color: #fff;
}


/*contact form*/

.contact-form-detl h3 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 10px;
}


/* Bracnh area */

.branch-content {
    background: var(--main-color-two);
    padding: 30px;
}

.branch-content .title,
.branch-content span {
    color: #fff;
}

.branch-img-box img {
    width: 100%;
}

.branch-description {
    box-shadow: 0 10px 50px -12px rgba(171, 171, 171, .4);
    padding: 30px;
}

.branch-description p {
    padding: 5px 0;
}

.branch-description p i {
    margin-right: 20px;
    color: var(--main-color-one);
}

@media (max-width: 991px) {
    .contact-form-detl {
        margin-top: 50px;
    }
    .section-title.contact-section-title,
    .contact-social {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .section-title.contact-section-title,
    .contact-social {
        padding-left: 0;
    }
}