/*---------------------------
      Table of Contents
    --------------------
    
    01- Global Styles
    02- Helper Classes
    03- Background & Colors
    04- Typography
    05- page title 
    06- Buttons
    07- Forms
    08- Tabs
    09- Icons
    10- Breadcrumb
    11- Pagination
    12- Lists
    13- Alerts
    14- Header & Navbar 
    15- Accordions
    16- Banners
    17- Dividers
    18- Footer
    19- Blockquote
    20- Carousel
    21- Slider
    22- Skills
    23- Video
    24- Features
    25- Fancybox
    26- Projects
    27- Team
    28- Testimonials
    29- Call To Action
    30- Clients
    31- Blog
    32- Contact
    33- Pricing
    34- Counters
    35- process
    36- Pie Charts
    37- Timeline
    38- Newsletter
    39- Shop
    40- Sidebar
    41- Countdown
    42- Utilities Pages
    
----------------------------*/

/*--------------------------
      Global Styles
---------------------------*/
html,
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #343434;
}
::selection {
    background-color: #f9a03f;
    color: #ffffff;
}

a {
    color: #f9a03f;
    transition: color 0.3s linear;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
}

a:hover {
    color: #b07a18;
    text-decoration: none;
}

textarea {
    resize: none;
}

section {
    position: relative;
    padding: 70px 0;
}

img {
    max-width: 100%;
}

.wrapper-boxed {
    padding: 0 50px 50px 50px;
}

/* Import Droid Serif Font*/
@font-face {
    font-family: "Droidserif italic";
    src: url("../fonts/DroidSerif-Italic.ttf");
}

/*-------------------------
    RESET Default Styles
--------------------------*/
*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

*,
:active,
:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
}

button,
button:focus,
.btn.focus,
.btn:focus,
.form-control,
.form-control:focus {
    outline: none;
    /* background-color: transparent; */
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

textarea {
    resize: none;
}

select {
    background-color: transparent;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
    .wrapper-boxed {
        padding: 0 10px 10px 10px;
    }
}

/*----------------------------
      Helper Classes
----------------------------*/
.col-padding-0 > .row {
    margin: 0;
}

.col-padding-0,
.col-padding-0 > .row > [class*="col-"] {
    padding: 0;
}

.inner-padding {
    padding: 70px;
}

.lh-1 {
    line-height: 1 !important;
}

@media (min-width: 992px) {
    .col-lg-5th {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Margin  */
.m-0 {
    margin: 0 !important;
}

/*  margin Top */
.mt-0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

/* Margin Right */
.mr-0 {
    margin-right: 0 !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

/* Margin Left */
.ml-0 {
    margin-left: 0 !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

/*  padding  */
.p-0 {
    padding: 0 !important;
}

/* padding Top */
.pt-0 {
    padding-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*  Padding Bottom */
.pb-0 {
    padding-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* padding Right */
.pr-0 {
    padding-right: 0 !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

/* padding Left */
.pl-0 {
    padding-left: 0 !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.vh-100 {
    height: 100vh !important;
}

.h-70 {
    height: 70px;
}

.h-100 {
    height: 100px !important;
}

.list-inline > li {
    display: inline-block;
}

.align-v {
    display: flex;
    align-items: center;
}

.align-v-h {
    display: flex;
    justify-content: center;
    align-items: center;
}

.font-secondary {
    font-family: "Droidserif italic";
}

/* Mobile Phones */
@media only screen and (max-width: 575px) {
    .justify-content-xs-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .text-center-xs {
        text-align: center !important;
    }

    .text-left-xs {
        text-align: left !important;
    }

    .text-right-xs {
        text-align: right !important;
    }

    .pull-none-xs {
        float: none !important;
    }

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

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

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

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

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

/* Tablets */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .text-center-sm {
        text-align: center !important;
    }

    .text-left-sm {
        text-align: left !important;
    }

    .text-right-sm {
        text-align: right !important;
    }

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

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

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

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

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

    .p-0-sm {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .pb-15-sm {
        padding-bottom: 15px !important;
    }

    .pb-20-sm {
        padding-bottom: 20px !important;
    }

    .pb-30-sm {
        padding-bottom: 30px !important;
    }

    .pb-50-sm {
        padding-bottom: 50px !important;
    }

    .pb-60-sm {
        padding-bottom: 60px !important;
    }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .text-center-xs-sm {
        text-align: center !important;
    }

    .inner-padding {
        padding: 50px 30px !important;
    }
}

/* Medium Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .inner-padding {
        padding: 100px 50px !important;
    }
    .navbar a.navbar-brand {
        display: block !important;
    }
}

/*-------------------------
   Background & Colors
--------------------------*/
/* Colors */
.color-white {
    color: #ffffff !important;
}

.color-gray {
    color: #f7f0f5 !important;
}

.color-dark {
    color: #282828 !important;
}

.color-theme {
    color: #f9a03f !important;
}

.color-heading {
    color: #222222 !important;
}

.color-body {
    color: #9b9b9b !important;
}

/* backgrounds */
.bg-white {
    background-color: #ffffff !important;
}

.bg-gray {
    background-color: #f9f9f9 !important;
}

.bg-dark {
    background-color: #282828 !important;
}

.bg-heading {
    background-color: #222222 !important;
}

.bg-theme {
    background-color: #f9a03f !important;
}

.bg-img {
    position: relative;
    z-index: 1;
}

.bg-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(27, 26, 26, 0.05);
}

.bg-overlay-2:before {
    background-color: rgba(27, 26, 26, 0.25);
}

.bg-overlay-3:before {
    background-color: rgba(27, 26, 26, 0.75);
}

.bg-overlay-4:before {
    background-color: rgba(27, 26, 26, 0.55);
}

.bg-overlay-5:before {
    background-color: rgba(27, 26, 26, 0.15);
}

.bg-parallax {
    background-attachment: fixed;
}

/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-bottom: 23px;
    line-height: 1.1;
    text-transform: capitalize;
}

p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 38px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

.heading__subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #f9a03f;
    display: inline-block;
    margin-bottom: 15px;
}

.heading__title {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 30px;
}

.heading__desc {
    font-size: 17px;
    line-height: 27px;
    color: #5a5a5a;
    margin-bottom: 0;
}

.divider__line + .heading__desc {
    margin-top: 27px;
    margin-bottom: 27px;
}

.heading-2 .heading__desc {
    margin-bottom: 44px;
}

.heading-3 .heading__title {
    margin-bottom: 13px;
}

.heading-3 .heading__desc {
    margin-bottom: 24px;
}

.heading-4 .heading__title {
    margin-bottom: 21px;
}

.heading-4 .divider__line + .heading__desc {
    margin-top: 23px;
}

.heading-8 .heading__desc {
    padding-top: 35px;
}

.heading-9 .heading__title {
    margin-bottom: 22px;
}

.heading-9 .heading__desc {
    margin-bottom: 43px;
}

.heading-10 .heading__title {
    font-size: 48px;
    line-height: 52px;
}

.heading__shape {
    display: inline-block;
    width: 70px;
    height: 48px;
    background-image: url(../images/shapes/plantshape.png);
    margin-bottom: 27px;
}

.heading__shape-white {
    background-image: url(../images/shapes/plantshape-white.png);
}

/*-------------------------
    page title 
-------------------------*/
.header-transparent + .page-title {
    margin-top: -100px;
}

.pagetitle__subheading {
    font-family: "Droidserif italic";
    font-size: 17px;
    line-height: 1;
    color: #f9f9f9;
    display: block;
    margin-bottom: 24px;
}

.pagetitle__heading {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 0;
}

.pagetitle__desc {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 0;
}

/* .page-title {
  padding: 424px 0 97px;
} */

.page-title .breadcrumb {
    margin-top: 27px;
    margin-bottom: 0;
    font-size: 18px;
}

.page-title .breadcrumb-item a,
.page-title .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

.page-title .breadcrumb-item a:hover {
    color: #f9a03f;
}

.page-title .breadcrumb-item.active {
    color: #f4f4f4;
}

.page-title-layout2 {
    padding: 210px 0 168px;
}

.page-title-layout2 .breadcrumb {
    margin-top: 26px;
}

.page-title-layout4 {
    padding: 276px 0 29px;
}

.page-title-layout4 .pagetitle__heading {
    margin-bottom: 7px;
}

.page-title-layout4 .breadcrumb {
    margin-top: 140px;
}

.page-title-layout5 {
    padding: 249px 0 156px;
}

.page-title-layout5 .breadcrumb {
    margin-top: 24px;
}

.page-title-layout6 {
    padding: 246px 0 29px;
}

.page-title-layout6 .pagetitle__heading {
    margin-bottom: 20px;
}

.page-title-layout6 .breadcrumb {
    margin-top: 107px;
}

.page-title-layout7 {
    padding: 276px 0 184px;
}

.page-title-layout7 .pagetitle__heading {
    margin-bottom: 7px;
}

.page-title-8 {
    padding: 275px 0 169px;
}

.page-title-layout9 {
    padding: 312px 0 29px;
}

.page-title-layout9 .breadcrumb {
    margin-top: 165px;
}

.page-title-layout10 {
    padding: 312px 0 209px;
}

.page-title-layout12 {
    padding: 220px 0 127px;
}

.page-title-layout13 {
    padding: 425px 0 96px;
}

.page-title-layout14 {
    padding: 230px 0 137px;
}

.page-title-layout15 {
    padding: 259px 0 29px;
}

.page-title-layout15 .breadcrumb {
    margin-top: 116px;
}

.page-title-layout16 {
    padding: 234px 0 126px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .page-title {
        padding: 100px 0 50px;
    }

    .pagetitle__desc {
        font-size: 15px;
        font-weight: 400;
        line-height: 25px;
    }

    .pagetitle__heading {
        font-size: 32px;
    }

    .page-title .breadcrumb {
        margin-top: 20px;
    }
}

/*-----------------------
    Buttons
----------------------*/
.btn {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    width: 200px;
    height: 50px;
    line-height: 48px;
    border-radius: 0;
    text-align: center;
    padding: 0;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

.btn__block {
    width: 100%;
}

.btn__primary {
    background-color: #f9a03f;
    color: #ffffff;
    border: 2px solid #f9a03f;
}

.btn__primary:active,
.btn__primary:focus,
.btn__primary:hover {
    background-color: transparent;
    color: #f9a03f;
}

.btn__primary.btn__hover2:active,
.btn__primary.btn__hover2:focus,
.btn__primary.btn__hover2:hover {
    background-color: #ffffff;
    color: #f9a03f;
    border-color: #ffffff;
}

.btn__primary.btn__hover3:active,
.btn__primary.btn__hover3:focus,
.btn__primary.btn__hover3:hover {
    background-color: #222222;
    color: #ffffff;
    border-color: #222222;
}

.btn__secondary {
    background-color: #282828;
    color: #ffffff;
    border: 2px solid #282828;
}

.btn__secondary:active,
.btn__secondary:focus,
.btn__secondary:hover {
    background-color: #f9a03f;
    color: #ffffff;
    border-color: #f9a03f;
}

.btn__secondary.btn__hover2:active,
.btn__secondary.btn__hover2:focus,
.btn__secondary.btn__hover2:hover {
    background-color: #ffffff;
    color: #282828;
    border-color: #ffffff;
}

.btn__white {
    background-color: #ffffff;
    color: #222222;
    border: 2px solid #ffffff;
}

.btn__white:active,
.btn__white:focus,
.btn__white:hover {
    background-color: #f9a03f;
    color: #ffffff;
    border-color: #f9a03f;
}

.btn__white.btn__hover2:active,
.btn__white.btn__hover2:focus,
.btn__white.btn__hover2:hover {
    background-color: #222222;
    color: #ffffff;
    border-color: #222222;
}

.btn__rounded {
    border-radius: 50px;
}

.btn__link {
    background-color: transparent;
    border-color: transparent;
}

.btn__link.btn__primary {
    color: #f9a03f;
}

.btn__link.btn__primary:active,
.btn__link.btn__primary:focus,
.btn__link.btn__primary:hover {
    color: #282828;
    background-color: transparent;
    border-color: transparent;
}

.btn__link.btn__secondary {
    color: #282828;
}

.btn__link.btn__secondary:active,
.btn__link.btn__secondary:focus,
.btn__link.btn__secondary:hover {
    color: #f9a03f;
    background-color: transparent;
    border-color: transparent;
}

.btn__bordered {
    background-color: transparent;
}

.btn__bordered.btn__primary {
    color: #f9a03f;
    border-color: #f9a03f;
}

.btn__bordered.btn__primary:active,
.btn__bordered.btn__primary:focus,
.btn__bordered.btn__primary:hover {
    color: #ffffff;
    background-color: #f9a03f;
    border-color: #f9a03f;
}

.btn__bordered.btn__secondary {
    color: #000;
    border-color: #000;
}

.btn__bordered.btn__secondary:active,
.btn__bordered.btn__secondary:focus,
.btn__bordered.btn__secondary:hover {
    color: #ffffff;
    background-color: #000;
    border-color: #000;
}

.btn__bordered.btn__white {
    color: #ffffff;
    border-color: #ffffff;
}

.btn__bordered.btn__white:active,
.btn__bordered.btn__white:focus,
.btn__bordered.btn__white:hover {
    color: #f7f0f5;
    background-color: #000;
    border-color: #000;
}

.btn__white.btn__secondary {
    color: #282828;
    border-color: #ffffff;
    background-color: #ffffff;
}

.btn__white.btn__secondary:active,
.btn__white.btn__secondary:focus,
.btn__white.btn__secondary:hover {
    color: #ffffff;
    background-color: #f9a03f;
    border-color: #f9a03f;
}

.btn__video.popup-video {
    padding-left: 50px;
    color: #ffffff;
}

.btn__video.popup-video .video__player {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.btn__video.popup-video .video__player img {
    width: auto;
    display: inline-block;
    text-align: center;
}

.btn__video.popup-video:hover {
    color: #282828;
}

.btn i {
    margin-right: 9px;
}

/*----------------------
        Forms
----------------------*/
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    line-height: 50px;
    border: none;
    border-bottom: 2px solid #e6e6e6;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    padding-left: 10px;
}

.form-control:focus {
    border-color: #282828;
}

textarea.form-control {
    height: 122px;
}

.form-control::-webkit-input-placeholder {
    color: #9b9b9b;
}

.form-control:-moz-placeholder {
    color: #9b9b9b;
}

.form-control::-moz-placeholder {
    color: #9b9b9b;
}

.form-control:-ms-input-placeholder {
    color: #9b9b9b;
}

/*--------------------
    Tabs
--------------------*/
.nav-tabs {
    border-bottom: 2px solid #e6e6e6;
}

.nav-tabs .nav__link {
    display: block;
    padding: 10px;
    margin-right: 20px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #282828;
    margin-bottom: -2px;
}

.nav-tabs .nav__link:last-of-type {
    margin-right: 0;
}

.nav-tabs .nav__link.active {
    border-bottom: 2px solid #f9a03f;
    color: #f9a03f;
}

.tab-content {
    padding-top: 36px;
}

.tabs-2 .nav-tabs .nav__link {
    margin-bottom: 0;
}

.tabs-2 .nav-tabs .nav__link.active {
    border: none;
    background-color: #f9a03f;
    color: #ffffff;
}

.nav-split {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    z-index: 120;
}

.nav-split li a {
    width: 9px;
    height: 9px;
    background-color: #222222;
    border-radius: 50%;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.nav-split li:last-child a {
    margin-bottom: 0;
}

.nav-split li.active a {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid #222222;
    margin-left: -1px;
}

.nav-split li.active a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #222222;
    transform: translate(-50%, -50%);
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .nav-split {
        right: 10px;
    }
}

/*------------------- 
    Icons
------------------*/
.social__icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.social__icons a {
    font-size: 18px;
    margin-right: 10px;
    color: #222222;
}

.social__icons a:hover {
    color: #f9a03f;
}

.social__icons a:last-of-type {
    margin-right: 0;
}

/*-------------------------
    Breadcrumb
--------------------------*/
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item {
    line-height: 1;
}

/*----------------------
    Pagination
-----------------------*/
.pagination li {
    margin-right: 10px;
}

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

.pagination li a {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #f9f9f9;
    color: #333333;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.pagination li a i {
    font-weight: 700;
}

.pagination li a:hover,
.pagination li a.current {
    background-color: #f9a03f;
    color: #ffffff;
}

/*-------------------
    lists
-------------------*/
.icon-list {
    margin-bottom: 30px;
}

.icon-list li {
    position: relative;
    padding-left: 25px;
    color: #7f7f7f;
    line-height: 30px;
}

.icon-list li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    font-family: ElegantIcons;
    font-size: 15px;
    color: #222222;
}

.icon-list.layout1 li:before {
    content: "I";
}

.icon-list.layout2 li:before {
    content: "R";
}

.icon-list.layout3 li:before {
    content: "5";
}

.icon-list.layout4 li:before {
    content: "";
}

.icon-list.layout5 li:before {
    content: "";
}

.icon-list.layout6 li:before {
    content: "E";
}

.icon-list.layout7 li:before {
    font-family: "FontAwesome";
    content: "";
    font-size: 7px;
    left: 5px;
}

.icon-list.layout8 {
    counter-reset: numbers;
}

.icon-list.layout8 li:before {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    counter-increment: numbers;
    content: counter(numbers) ".";
}

.contact__list li {
    font-size: 14px;
    line-height: 24px;
}

.contact__list li i {
    font-size: 16px;
    margin-right: 9px;
    color: #f9a03f;
}

/*-----------------------
    Alert
-----------------------*/
.alert-panel {
    position: relative;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
}

.alert__icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background-color: #f9a03f;
    color: #ffffff;
    font-size: 15px;
    margin-right: 22px;
    min-width: 46px;
}

.alert__title {
    font-size: 15px;
    color: #f9a03f;
    margin-bottom: 6px;
}

.alert__desc {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

/*----------------------------
      Navbar & Header
-----------------------------*/
.header {
    position: relative;
    z-index: 1010;
}

/* Navbar */
.navbar {
    padding: 0;
    height: 85px;
    max-height: 85px;
    background-color: #ffffff;
    /*  dropdown-menu  */
}

.navbar > .container,
.navbar > .container-fluid {
    position: relative;
    height: 100px;
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 100px;
}

.navbar .logo-light {
    display: none;
}

.navbar .navbar-toggler {
    padding: 0;
    border: none;
    border-radius: 0;
    width: 23px;
    position: relative;
}

.navbar .navbar-toggler .menu-lines {
    display: inline-block;
}

.navbar .navbar-toggler .menu-lines:before,
.navbar .navbar-toggler .menu-lines:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 23px;
    height: 2px;
    display: inline-block;
    background-color: #333333;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.navbar .navbar-toggler .menu-lines:after {
    top: 10px;
}

.navbar .navbar-toggler .menu-lines span {
    position: absolute;
    top: 0;
    left: 0;
    width: 23px;
    height: 2px;
    background-color: #333333;
}

.navbar .navbar-toggler.actived .menu-lines > span {
    opacity: 0;
}

.navbar .navbar-toggler.actived .menu-lines:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar .navbar-toggler.actived .menu-lines:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar .nav__item {
    position: relative;
    margin-right: 26px;
}

.navbar .nav__item:last-child {
    margin-right: 0;
}

.navbar .nav__item .nav__item-link {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    position: relative;
    color: #fff;
    line-height: 80px;
    letter-spacing: 0.4px;
}

.navbar .nav__item .nav__item-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    margin: auto;
    display: block;
    background-color: #333333;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.navbar .nav__item .nav__item-link.active:before,
.navbar .nav__item .nav__item-link:hover:before {
    width: 100%;
}

.navbar .dropdown-toggle:after {
    content: "";
    font-family: fontAwesome;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar .dropdown-menu {
    border-radius: 0;
    border: none;
    margin: 0;
    background-color: #ffffff;
}

.navbar .dropdown-menu .nav__item {
    padding: 0 40px;
    margin-right: 0;
}

.navbar .dropdown-menu .nav__item .nav__item-link {
    color: #7f7f7f;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 40px;
    white-space: nowrap;
    border-bottom: 1px solid #f2f2f2;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover {
    color: #f9a03f;
}

.navbar .dropdown-menu .nav__item:last-child > .nav__item-link {
    border-bottom: none;
}

.navbar .dropdown-menu .dropdown-toggle:after {
    right: 0;
}

/* header topbar */
.header__topbar {
    height: 85px;
    max-height: 85px;
    /* border-bottom: 1px solid #ededed; */
    line-height: 70px;
}

.header__topbar .contact__list {
    display: flex;
    flex-wrap: wrap;
}

.header__topbar .contact__list li {
    line-height: 45px;
    margin-right: 20px;
}

.header__topbar .contact__list li i {
    color: #f9a03f;
    margin-right: 10px;
}

.header__topbar .contact__list li:last-child {
    margin-right: 0;
}

.header__topbar .social__icons a {
    line-height: 95px;
    margin-right: 20px;
}

.header__topbar .social__icons a:last-child {
    margin-right: 0;
}

.header__topbar .social__icons span {
    margin-right: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .header__topbar {
        display: block;
    }
    .social__icons {
        justify-content: flex-start;
    }
    .logo-none {
        display: none;
    }
}

.header__topbar-dark {
    background-color: #131313;
    border-bottom: 0;
}

.header__topbar-dark .social__icons a {
    color: #fff;
}

.header__topbar-dark .social__icons a:hover {
    color: #f9a03f;
}
.header__topbar-dark .social__icons .btn__border:hover {
    color: #000;
}

/* navbar-transparent */
.header-transparent .navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
}

.header-transparent .navbar .navbar-toggler .menu-lines:before,
.header-transparent .navbar .navbar-toggler .menu-lines:after,
.header-transparent .navbar .navbar-toggler .menu-lines span {
    background-color: #ffffff;
}

.header-transparent .navbar .nav__item .nav__item-link:before {
    background-color: #ffffff;
}

.header-transparent .logo-light {
    display: inline-block;
}

.header-transparent .logo-dark {
    display: none;
}

.header-transparent .module__btn,
.header-transparent .nav__item .nav__item-link {
    color: #ffffff;
}

.header-transparent .module__btn-contact {
    border-color: #ffffff;
    color: #ffffff;
}

.header-transparent .module__btn-contact:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #222222;
}

.header-transparent .navbar.fixed-navbar .nav__item .nav__item-link:before {
    background-color: #333333;
}

.header-6 .module__btn-contact {
    border-radius: 0;
}

.header-7 {
    background-color: transparent;
}

.header-7 .header__topbar {
    border-bottom: 0;
    background-color: transparent;
}

.header-7 .header__topbar .container {
    padding: 0 30px;
}

.header-7 .header__topbar .contact__list li,
.header-7 .header__topbar .contact__list li i {
    color: #f9f9f9;
}

.header-7 .header__topbar .social__icons a {
    color: #f9f9f9;
}

.header-7 .header__topbar .social__icons a:hover {
    color: #ffffff;
}

.header-7 .navbar {
    background-color: transparent;
    border-bottom: 0;
}

.header-7 .navbar > .container {
    background-color: #fff;
}

.header-7 + .page-title {
    margin-top: -145px;
}

.header-8 .module__btn-contact {
    background-color: #f9a03f !important;
    border-color: #f9a03f !important;
    color: #ffffff !important;
}

.header-8 .module__btn-contact:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.header-9 .navbar,
.header-11 .navbar {
    border-bottom: 0;
}

/* fixed-navbar */
.fixed-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    border-bottom: 0 !important;
    background-color: #ffffff !important;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
    -webkit-animation: translateHeader 0.8s;
    -moz-animation: translateHeader 0.8s;
    -ms-animation: translateHeader 0.8s;
    -o-animation: translateHeader 0.8s;
    animation: translateHeader 0.8s;
}

.fixed-navbar .nav__item .nav__item-link {
    color: #333333;
}

.fixed-navbar .logo-light {
    display: none;
}

.fixed-navbar .logo-dark {
    display: inline-block;
}

.fixed-navbar .module__btn {
    color: #333333;
}

.fixed-navbar .module__btn-contact {
    border-color: #333333;
    color: #333333;
}

.fixed-navbar .module__btn-contact:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
}

/* Header Animation */
@-webkit-keyframes translateHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes translateHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes translateHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes translateHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes translateHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* navbar-modules */
.module__btn {
    position: relative;
    margin-right: 20px;
    color: #333333;
}

.module__btn:hover {
    color: #f9a03f;
}

.module__btn:last-child {
    margin-right: 0;
}

.module__btn-contact {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    width: 98px;
    height: 30px;
    line-height: 26px;
    font-size: 13px;
    border: 2px solid #333333;
    color: #333333;
    text-align: center;
    border-radius: 30px;
    transition: 0.3s ease;
}

.module__btn-contact:hover {
    background-color: #333333;
    color: #ffffff;
}

.cart__label {
    position: absolute;
    top: -7px;
    right: -9px;
    width: 16px;
    height: 16px;
    line-height: 18px;
    border-radius: 50%;
    text-align: center;
    background-color: #f9a03f;
    color: #ffffff;
    font-weight: 600;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
}

/* module-search  */
.module__search-container,
.module__sidenav-container {
    position: fixed;
    z-index: 2300;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(27, 26, 26, 0.98);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.module__search-container .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

.module__search-container .module__search-form {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 550px;
    margin: -40px auto 0;
    -webkit-transform: translateY(-50%) scaleX(0);
    -moz-transform: translateY(-50%) scaleX(0);
    -ms-transform: translateY(-50%) scaleX(0);
    -o-transform: translateY(-50%) scaleX(0);
    transform: translateY(-50%) scaleX(0);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    transition-delay: 0.5s;
}

.module__search-container .module__search-btn {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 80px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s ease;
    color: #ffffff;
}

.module__search-container .module__search-btn:hover {
    color: #f9a03f;
}

.module__search-container .search__input {
    z-index: 1;
    height: 80px;
    padding: 0 40px 0 0;
    background: transparent;
    border: none;
    width: 100%;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.module__search-container .search__input::-webkit-input-placeholder {
    color: #ffffff;
}

.module__search-container .search__input:-moz-placeholder {
    color: #ffffff;
}

.module__search-container .search__input::-moz-placeholder {
    color: #ffffff;
}

.module__search-container .search__input:-ms-input-placeholder {
    color: #ffffff;
}

.module__search-container .search__input::placeholder {
    color: #ffffff;
}

.module__search-container.active,
.module__sidenav-container.active {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.module__search-container.inActive,
.module__sidenav-container.inActive {
    opacity: 0;
    transition-delay: 0.5s;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.module__search-container.active .module__search-form {
    -webkit-transform: translateY(-50%) scaleX(1);
    -moz-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    -o-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
}

.module__search-container.inActive .module__search-form {
    transition-delay: 0ms;
    -webkit-transform: translateY(-50%) scaleX(0);
    -moz-transform: translateY(-50%) scaleX(0);
    -ms-transform: translateY(-50%) scaleX(0);
    -o-transform: translateY(-50%) scaleX(0);
    transform: translateY(-50%) scaleX(0);
}

/* Module sidenav */
.sidenav__menu {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    width: 370px;
    height: 100%;
    padding: 100px 50px 0;
    opacity: 0;
    transition-delay: 0.6s;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.sidenav__menu .close-sidenav {
    position: absolute;
    top: 50px;
    right: 50px;
    line-height: 1;
    cursor: pointer;
}

.sidenav__menu .close-sidenav:hover {
    color: #222222;
}

.module__sidenav-container.active .sidenav__menu {
    opacity: 1;
}

/* Module Cart */
.module__cart-container {
    background-color: #ffffff;
    width: 310px;
    padding: 40px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1055;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.module__cart-container .cart-item {
    position: relative;
    display: flex;
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.module__cart-container .cart-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.module__cart-container .cart-item .cart__item-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 2px;
    margin-right: 15px;
}

.module__cart-container .cart-item .cart__item-content {
    flex: 1;
    padding-right: 22px;
}

.module__cart-container .cart-item .cart__item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 4px;
}

.module__cart-container .cart-item .cart__item-detail {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.module__cart-container .cart-item .cart__item-detail span:first-child {
    padding-right: 4px;
}

.module__cart-container .cart-item .cart__item-delete {
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.module__cart-container .cart-item .cart__item-delete:hover {
    background-color: #f9a03f;
}

.module__cart-container .cart-subtotal {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #f4f4f4;
    border-bottom: 2px solid #f4f4f4;
    padding: 18px 0;
    margin-bottom: 20px;
}

.module__cart-container .cart-subtotal span {
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    font-weight: 700;
}

.module__cart-container .cart-action .btn {
    height: 42px;
    line-height: 40px;
}

.module__cart-container.active,
.module__popupMenu-container.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.module__popupMenu-container {
    position: fixed;
    z-index: 2300;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    text-align: center;
    background-color: rgba(27, 26, 26, 0.98);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.popupMenu__header {
    padding: 20px 100px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popupMenu__header .close-popupMenu {
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
}

.popupMenu__header .close-popupMenu:hover {
    color: #f9a03f;
}

.popupMenu__list {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.popupMenu__list li a {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 64px;
    display: inline-block;
}

.popupMenu__list li a:hover {
    color: #f9a03f;
}

.popupMenu__copyright {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 1;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
    .sidenav__menu {
        width: 270px;
        padding: 40px 20px 0;
    }

    .sidenav__menu .close-sidenav {
        top: 30px;
        right: 30px;
    }

    .sidenav__menu .instagram__images li {
        width: 60px;
        height: 60px;
    }

    .module__search-container .module__search-form {
        max-width: 90%;
    }

    .module__search-container .search__input {
        font-size: 20px;
        font-weight: 600;
    }
}

/* Mobile and Tablets */
@media only screen and (max-width: 992px) {
    .navbar .navbar-toggler {
        position: absolute;
        right: 15px;
        height: 13px;
    }

    .navbar .collapse:not(.show) {
        display: block;
    }

    .navbar .navbar-nav {
        margin: 0 !important;
    }

    .navbar .nav__item {
        margin-right: 0;
    }

    .navbar .nav__item .nav__item-link {
        color: #282828;
        line-height: 35px;
        padding-left: 15px;
    }

    .navbar .nav__item .nav__item-link:hover {
        color: #f9a03f;
    }

    .navbar .nav__item .nav__item-link:before {
        display: none;
    }

    .navbar .navbar-collapse {
        background-color: white;
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
        z-index: 50;
        padding: 15px 0;
        position: absolute;
        left: 0;
        width: 100%;
        top: 88%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
    }

    .navbar .navbar-collapse .navbar-modules {
        padding: 0 15px;
    }

    .navbar .menu-opened.navbar-collapse {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .navbar .dropdown-toggle:after {
        right: 15px;
        content: "";
        content: "L";
        font-family: ElegantIcons;
    }

    .navbar .nav__item.opened > .dropdown-toggle:after,
    .navbar .nav__item.show > .dropdown-toggle:after {
        content: "K";
    }

    .navbar .dropdown-menu {
        background-color: white;
    }

    .navbar .dropdown-menu .nav__item {
        padding: 0 15px 0 30px;
    }

    .navbar .dropdown-menu .nav__item .nav__item-link {
        padding-left: 0;
    }

    .navbar .nav__item.dropdown-submenu > .dropdown-menu.show {
        padding-left: 10px;
    }

    .navbar .dropdown-submenu .dropdown-menu .nav__item {
        padding: 0 0 0 15px;
    }

    .navbar .navbar-nav .dropdown-menu.show {
        padding: 0;
    }

    .navbar .mega-dropdown-menu .container {
        max-width: none;
    }

    .navbar .mega-dropdown-menu > .nav__item {
        padding: 0 10px;
    }

    .navbar .mega-dropdown-menu .nav__item {
        padding: 0;
    }

    .fixed-navbar {
        position: fixed;
    }

    .modules__wrapper {
        position: absolute;
        top: 50%;
        right: 38px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .module__btn-contact {
        display: none;
    }

    .header-transparent + .page-title {
        margin-top: 0;
    }

    .header .navbar,
    .header-transparent .navbar {
        background-color: #ffffff;
    }

    .header .logo-dark,
    .header-transparent .logo-dark {
        display: inline-block;
    }

    .header .module__btn,
    .header-transparent .module__btn {
        color: #333333;
    }

    .header .navbar .navbar-toggler .menu-lines:before,
    .header .navbar .navbar-toggler .menu-lines:after,
    .header .navbar .navbar-toggler .menu-lines span,
    .header-transparent .navbar .navbar-toggler .menu-lines:before,
    .header-transparent .navbar .navbar-toggler .menu-lines:after,
    .header-transparent .navbar .navbar-toggler .menu-lines span {
        background-color: #333333;
    }

    .header .navbar-expand-lg > .container,
    .header .navbar-expand-lg > .container-fluid,
    .header-transparent .navbar-expand-lg > .container,
    .header-transparent .navbar-expand-lg > .container-fluid {
        width: 100%;
        max-width: none;
    }

    .header .navbar,
    .header .navbar > .container,
    .header .navbar > .container-fluid,
    .header-transparent .navbar,
    .header-transparent .navbar > .container,
    .header-transparent .navbar > .container-fluid {
        height: 80px;
    }

    .header .navbar-brand,
    .header-transparent .navbar-brand {
        margin-left: 15px;
        line-height: 80px;
    }

    .module__cart-container {
        right: 15px;
    }

    .header__topbar > .container {
        max-width: none;
    }

    .module__btn-popupMenu {
        margin-right: 15px !important;
    }

    .popupMenu__header {
        padding: 20px 40px;
    }

    .popupMenu__list li a {
        font-size: 14px;
        line-height: 30px;
    }

    .popupMenu__copyright {
        bottom: 20px;
    }

    .module__btn-sidenav {
        display: none;
    }
}

/* Medium and large Screens */
@media only screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        width: auto;
        min-width: 235px;
        box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
        padding: 25px 0 23px;
    }

    .navbar .dropdown-menu .nav__item .nav__item-link:before {
        display: none;
    }

    .navbar .dropdown-menu.mega-dropdown-menu {
        padding: 30px;
    }

    .navbar .nav__item.with-dropdown > .dropdown-menu,
    .navbar .nav__item.dropdown-submenu > .mega-menu,
    .navbar .nav__item.with-dropdown > .mega-menu,
    .navbar
        .nav__item.with-dropdown
        > .dropdown-menu
        > .nav__item.dropdown-submenu
        > .dropdown-menu {
        display: block;
        position: absolute;
        left: 0;
        right: auto;
        z-index: 1050;
        opacity: 0;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0 0;
        -moz-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        -o-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
    }

    .navbar
        .nav__item.with-dropdown
        > .dropdown-menu
        > .nav__item.dropdown-submenu
        > .dropdown-menu,
    .navbar
        .nav__item.dropdown-submenu
        > .dropdown-menu
        > .nav__item.with-dropdown
        > .dropdown-menu {
        top: 0;
        left: 100%;
    }

    .navbar .nav__item.with-dropdown:hover > .dropdown-menu,
    .navbar .nav__item.dropdown-submenu:hover > .mega-menu,
    .navbar .nav__item.with-dropdown:hover > .mega-menu,
    .navbar
        .nav__item.with-dropdown
        > .dropdown-menu
        > .nav__item.dropdown-submenu:hover
        > .dropdown-menu {
        opacity: 1;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }

    .navbar .nav__item.with-dropdown.mega-dropdown {
        position: static;
    }

    .navbar .nav__item.with-dropdown .mega-dropdown-menu {
        width: 100%;
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav__item {
        padding: 0;
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link {
        overflow: hidden;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:after {
        font-family: "FontAwesome";
        content: "";
        position: absolute;
        top: auto;
        left: -7px;
        font-size: 7px;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        opacity: 0;
        color: #f9a03f;
    }

    .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:hover {
        padding-left: 15px;
    }

    .navbar
        .dropdown-menu.mega-dropdown-menu
        .nav__item
        .nav__item-link:hover:after {
        opacity: 1;
        left: 4px;
    }

    .navbar-nav > .nav__item > .dropdown-toggle:after {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .dropdown-menu.mega-dropdown-menu > .nav__item {
        padding: 0 15px;
    }

    .dropdown-menu.mega-dropdown-menu .nav__item:last-child > .nav__item-link {
        border-bottom: 1px solid #f2f2f2;
    }

    .dropdown-menu.mega-dropdown-menu
        [class^="col-"]:last-child
        .nav__item:last-child
        > .nav__item-link {
        border-bottom: none;
    }
}

/*----------------------
    Accordions
------------------------*/
.accordion-item {
    border: 1px solid #ededed;
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 30px 30px 24px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item .accordion__item-title {
    font-family: "Montserrat", sans-serif;
    color: #282828;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: block;
    position: relative;
}

.accordion-item .accordion__item-title:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    font-family: fontawesome;
    background-color: #222222;
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.accordion-item .accordion__item-header.opened .accordion__item-title {
    color: #f9a03f;
}

.accordion-item .accordion__item-header.opened .accordion__item-title:after {
    background-color: #f9a03f;
    content: "";
}

.accordion-item .accordion__item-body {
    padding-top: 25px;
}

.accordion-item .accordion__item-body p {
    margin-bottom: 0;
}

/*-----------------------
    banner
------------------------*/
.banner__img {
    height: 720px;
}

.banner-3 .inner-padding {
    padding-bottom: 20px;
}

.banner-3 .fancybox-item {
    padding-top: 10px;
}

.banner-3 .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.banner-4 .piechart-item-data .percentage {
    background-color: #ffffff;
    box-shadow: 0 0 0 7px #ffffff;
}

.banner-4 .inner-padding {
    padding-bottom: 50px;
}

.banner-5 .inner-padding {
    padding-bottom: 0;
}

.banner-5 .fancybox-item {
    margin-bottom: 46px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .banner__img {
        height: 400px;
    }

    .banner-3 .inner-padding {
        padding-bottom: 30px;
    }

    .banner-5 .fancybox-item {
        margin-bottom: 30px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-3 .inner-padding {
        padding-bottom: 50px;
    }
}

/*----------------------
     Dividers 
------------------------*/
.divider__line {
    position: relative;
    height: 6px;
}

.divider__line:before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 10px);
    width: 40px;
    height: 2px;
    background-color: #f9a03f;
}

.divider__line:after {
    content: "";
    position: absolute;
    top: 4px;
    right: calc(50% - 15px);
    width: 40px;
    height: 2px;
    background-color: #f9a03f;
}
.left.divider__line:before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(0% + 15px);
    width: 40px;
    height: 2px;
    background-color: #f9a03f;
}

.left.divider__line:after {
    content: "";
    position: absolute;
    top: 4px;
    right: calc(100% - 40px);
    width: 40px;
    height: 2px;
    background-color: #f9a03f;
}

.divider__left:before {
    left: 10px;
}

.divider__left:after {
    right: calc(100% - 20px);
}

.divider__white:before {
    background-color: #ffffff;
}

.divider__white:after {
    background-color: #ffffff;
}

.divider__theme:before {
    background-color: #f9a03f;
}

.divider__theme:after {
    background-color: #f9a03f;
}

.dotted__line {
    position: relative;
    width: 16px;
    height: 3px;
    display: inline-block;
    line-height: 1;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.dotted__line span {
    width: 4px;
    height: 3px;
    background-color: #dedede;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.dotted__line span:before,
.dotted__line span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 6px;
    width: 4px;
    height: 3px;
    background-color: #dedede;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.dotted__line span:after {
    left: 12px;
}

.dotted__white span {
    background-color: #ffffff;
}

.dotted__white span:before,
.dotted__white span:after {
    background-color: #ffffff;
}

/*-------------------------
    Footer
--------------------------*/
.footer-top {
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-top .footer__widget-title {
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 40px;
}

.footer-top .footer__logo {
    margin-bottom: 27px;
}

.footer-top p {
    font-size: 15px;
    line-height: 22px;
}

.footer-top .post-item {
    margin-bottom: 20px;
}

.footer-top .post-item:last-of-type {
    margin-bottom: 0;
}

.footer-top .post-item .post__title {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.footer-top .post-item .post__title a {
    color: #cecece;
}

.footer-top .post-item .post__title a:hover {
    color: #f9a03f;
}

.footer-top .post-item .post__date {
    display: inline-block;
    color: #616161;
    line-height: 1;
    margin-bottom: 11px;
}

.footer-top .footer__widget-newsletter .widget__newsletter-form {
    margin-bottom: 23px;
}

.footer-top .footer__widget-newsletter .widget__newsletter-form .form-control {
    border: 1px solid #1d1d1d;
    background-color: #1d1d1d;
    font-size: 14px;
    color: #ffffff;
    height: 42px;
    padding-left: 17px;
}

.footer-top
    .footer__widget-newsletter
    .widget__newsletter-form
    .form-control::-webkit-input-placeholder {
    color: #474747;
    font-style: italic;
}

.footer-top
    .footer__widget-newsletter
    .widget__newsletter-form
    .form-control:-moz-placeholder {
    color: #474747;
    font-style: italic;
}

.footer-top
    .footer__widget-newsletter
    .widget__newsletter-form
    .form-control::-moz-placeholder {
    color: #474747;
    font-style: italic;
}

.footer-top
    .footer__widget-newsletter
    .widget__newsletter-form
    .form-control:-ms-input-placeholder {
    color: #474747;
    font-style: italic;
}

.footer-top .footer__widget-newsletter .widget__newsletter-form .form__submit {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f9a03f;
    color: #ffffff;
    width: 42px;
    height: 42px;
    transition: 0.3s ease;
}

.footer-top
    .footer__widget-newsletter
    .widget__newsletter-form
    .form__submit:hover {
    background-color: #ffffff;
    color: #f9a03f;
}

.footer-top .footer__widget-newsletter p {
    margin-bottom: 21px;
}

.footer-top .social__icons a {
    color: #646464;
    margin-right: 24px;
}

.footer-top .social__icons a:hover {
    color: #ffffff;
}

.footer-top .social__icons a:last-of-type {
    margin-right: 0;
}

.instagram__images {
    display: flex;
    flex-wrap: wrap;
}

.instagram__images li {
    position: relative;
    padding: 1px;
    width: 80px;
    height: 80px;
}

.instagram__images li .img__overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: #f9a03f;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0);
}

.instagram__images li .img__overlay a {
    display: block;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.instagram__images li .img__overlay a .dotted__line {
    margin: auto;
}

.instagram__images li:hover .img__overlay {
    opacity: 1;
    transform: scale(1);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #8b8b8b9d;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .footer__widget {
        margin-bottom: 30px;
    }

    .footer-top .footer__widget-title {
        margin-bottom: 20px;
    }
}

/* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    right: 10px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    opacity: 0;
    z-index: 1000;
    font-size: 20px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #282828;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
    background-color: #f9a03f;
}

#scrollTopBtn.actived {
    right: 30px;
    opacity: 1;
}

/*-----------------------
    Blockquote
 ------------------------*/
.blockquote {
    position: relative;
    font-family: "Droidserif italic";
    font-size: 20px;
    line-height: 28px;
    padding: 26px 37px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.blockquote .quote__author {
    font-family: "Montserrat", sans-serif;
    color: #222222;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    margin-top: 16px;
    display: block;
}

.blockquote-1 {
    border-left: 6px solid #222222;
    border-radius: 0;
}

.blockquote-2 {
    background-color: #f4f4f4;
    color: #f9a03f;
}

.blockquote-3:before,
.blockquote-3:after {
    position: absolute;
    font-family: fontawesome;
    font-size: 16px;
    color: #222222;
    font-style: normal;
    line-height: 1;
}

.blockquote-3:before {
    content: "";
    top: 0;
    left: 0;
}

.blockquote-3:after {
    content: "";
    bottom: 0;
    right: 0;
}

.blockquote-4 {
    background-color: #222222;
    color: #ffffff;
}

.blockquote-4 .quote__author {
    color: #ffffff;
}

/*----------------------
    Carousel
-----------------------*/
[data-nav="false"] .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-item img {
    width: 100%;
}

.carousel-dots .owl-dots .owl-dot {
    margin: 0 3px;
}

.carousel-dots .owl-dots .owl-dot span {
    position: relative;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: #f9a03f;
    border: 2px solid #f9a03f;
    margin: 0;
    display: inline-block;
}

.carousel-dots .owl-dots .owl-dot.active span {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border-color: #f9a03f;
}

.carousel-dots .owl-dots .owl-dot.active span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #f9a03f;
    transform: translate(-50%, -50%);
}

.carousel-dots-white .owl-dots .owl-dot span {
    background-color: #ffffff;
    border-color: #ffffff;
}

.carousel-dots-white .owl-dots .owl-dot.active span {
    border-color: #ffffff;
}

.carousel-dots-white .owl-dots .owl-dot.active span:before {
    background-color: #ffffff;
}

.carousel-arrows .owl-nav .owl-prev,
.carousel-arrows .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #999999;
    font-size: 0;
    font-weight: 400;
    text-align: center;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transform: translateY(-50%);
}

.carousel-arrows .owl-nav .owl-prev:hover,
.carousel-arrows .owl-nav .owl-next:hover {
    color: #f9a03f;
    background-color: transparent;
}

.carousel-arrows .owl-nav .owl-prev:after,
.carousel-arrows .owl-nav .owl-next:after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #f9a03f;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.7s ease;
    -webkit-transition: opacity 0.7s ease;
    -moz-transition: opacity 0.7s ease;
    -ms-transition: opacity 0.7s ease;
    -o-transition: opacity 0.7s ease;
}

.carousel-arrows .owl-nav .owl-prev:hover:after,
.carousel-arrows .owl-nav .owl-next:hover:after {
    opacity: 1;
}

.carousel-arrows .owl-nav .owl-prev {
    left: 0;
}

.carousel-arrows .owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "\f053";
    font-size: 20px;
}

.carousel-arrows .owl-nav .owl-next {
    right: 0;
}

.carousel-arrows .owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "\f054";
    font-size: 20px;
}

.carousel-arrows .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    line-height: 1;
}

/*------------------------
    Slider 
--------------------------*/
.header-transparent + .slider {
    margin-top: -100px;
}

.header-transparent + .slider .slide__content {
    padding-top: 100px;
}

.slider {
    padding: 0;
}

.slider .heading__shape {
    margin-bottom: 18px;
}

.slider .slide-item {
    height: 100vh;
}

.slider .slide__subtitle {
    display: inline-block;
    font-family: "Droidserif italic";
    font-size: 17px;
    line-height: 1;
    color: #f9f9f9;
    margin-bottom: 25px;
}

.slider .slide__title {
    font-size: 70px;
    color: #ffffff;
    margin-bottom: 37px;
}

.slider .slide__desc {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 33px;
}

.slider .carousel-arrows .owl-nav .owl-prev,
.slider .carousel-arrows .owl-nav .owl-next {
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    line-height: 46px;
    opacity: 0;
    transform: scale(0.8);
    transition: border 0.3s linear, opacity 0.5s ease, transform 0.4s ease;
}

.slider:hover .carousel-arrows .owl-nav .owl-prev,
.slider:hover .carousel-arrows .owl-nav .owl-next {
    transform: scale(1);
    opacity: 1;
}

.slider:hover .carousel-arrows .owl-nav .owl-prev:hover,
.slider:hover .carousel-arrows .owl-nav .owl-next:hover {
    border-color: #f9a03f;
    color: #f9a03f;
}

.slider .carousel-arrows .owl-nav .owl-next:before,
.slider .carousel-arrows .owl-nav .owl-prev:before {
    font-family: eleganticons;
    font-size: 20px;
    transition: 0.4s ease;
}

.slider .carousel-arrows .owl-nav .owl-next:before {
    content: "5";
}

.slider .carousel-arrows .owl-nav .owl-prev:before {
    content: "4";
}

.slider .carousel-arrows .owl-nav .owl-prev {
    left: 30px;
}

.slider .carousel-arrows .owl-nav .owl-next {
    right: 30px;
}

.slider .carousel-arrows .owl-nav .owl-prev:after,
.slider .carousel-arrows .owl-nav .owl-next:after {
    display: none;
}

.slider .carousel-arrows .owl-dots {
    bottom: 30px;
    text-align: center;
}

.slider .carousel-dots .owl-dots .owl-dot span {
    background-color: transparent;
    border-color: #f9a03f;
    color: #f9a03f;
}

.slider .carousel-dots .owl-dots .owl-dot.active span {
    background-color: transparent;
    border-color: #f9a03f;
    color: #f9a03f;
}

.slider .carousel-dots .owl-dots .owl-dot.active span:before {
    background-color: #f9a03f;
}

.slider-2 .slide__title,
.slider-3 .slide__title,
.slider-4 .slide__title {
    margin-bottom: 22px;
}

.slider-5 .slide__title {
    margin-bottom: 24px;
}

.slider-5 .slide__desc {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
}

.slider-6 .slide__subtitle {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
}

.slider-6 .slide__title {
    margin-bottom: 27px;
}

.header-7 + .slider {
    margin-top: -145px;
}

.header-7 + .slider .slide__content {
    padding-top: 145px;
}

.slider-7 .slide__title {
    margin-bottom: 22px;
}

.slider-8 .slide__title {
    margin-bottom: 20px;
}

.slider-8 .carousel-arrows .owl-nav .owl-prev,
.slider-8 .carousel-arrows .owl-nav .owl-next {
    display: none;
}

.slider-8 .slide-item,
.slider-9 .slide-item {
    height: 540px;
}

.slider-9 .slide__title {
    margin-bottom: 11px;
}

.slider-9 .slide__desc {
    margin-bottom: 23px;
}

.slider-10 .slide__title {
    margin-bottom: 22px;
}

.slider-10 .slide__desc {
    margin-bottom: 36px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .header-transparent + .slider {
        margin-top: 0;
    }

    .slider .slide-item {
        height: calc(100vh - 80px);
    }

    .header-transparent + .slider .slide__content {
        padding-top: 0;
    }

    .slider .carousel-arrows .owl-nav .owl-prev,
    .slider .carousel-arrows .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .slider .carousel-arrows .owl-nav .owl-next:before,
    .slider .carousel-arrows .owl-nav .owl-prev:before {
        font-size: 15px;
    }

    .slider-9 .container {
        max-width: none;
        padding: 0;
    }

    .slider-9 .slide__content {
        padding: 0 50px;
    }
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
    .slider .slide__subtitle {
        margin-bottom: 15px;
    }

    .slider .slide__title {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .slider .slide__desc {
        font-size: 15px;
        font-weight: 400;
    }

    .slider .carousel-arrows .owl-nav .owl-prev,
    .slider .carousel-arrows .owl-nav .owl-next {
        display: none;
    }

    .slider-9 .slide__content {
        padding: 0 20px;
    }
}

/* tablets */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider .slide__title {
        font-size: 40px;
        margin-bottom: 17px;
    }

    .slider .carousel-arrows .owl-nav .owl-prev {
        left: 10px;
    }

    .slider .carousel-arrows .owl-nav .owl-next {
        right: 10px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider .carousel-arrows .owl-nav .owl-next {
        right: 0;
    }

    .slider .carousel-arrows .owl-nav .owl-prev {
        left: 0;
    }

    .slide__title {
        font-size: 50px;
    }

    .slider-9 .container {
        max-width: none;
        padding: 0;
    }

    .slider-9 .slide__content {
        padding: 0 50px;
    }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider .carousel-arrows .owl-nav .owl-next {
        right: 10px;
    }

    .slider .carousel-arrows .owl-nav .owl-prev {
        left: 10px;
    }

    .slider-9 .container {
        max-width: none;
        padding: 0;
    }
}

/*-----------------------
    Skills
------------------------*/
.skills .progress-item {
    margin-bottom: 32px;
    overflow: hidden;
}

.skills .progress-item:last-of-type {
    margin-bottom: 0;
}

.skills .progress {
    background-color: #ebebeb;
    border-radius: 9px;
    width: 100%;
    height: 9px;
    overflow: visible;
    position: relative;
}

.skills .progress-bar {
    position: relative;
    border-radius: 9px;
    height: 9px;
    width: 0;
    -webkit-transition: width 2s ease;
    -moz-transition: width 2s ease;
    -ms-transition: width 2s ease;
    -o-transition: width 2s ease;
    transition: width 2s ease;
    background-image: -webkit-linear-gradient(0deg, #f4bb52 0%, #f9a03f 100%);
    background-image: -moz-linear-gradient(0deg, #f4bb52 0%, #f9a03f 100%);
    background-image: -ms-linear-gradient(0deg, #f4bb52 0%, #f9a03f 100%);
    background-image: linear-gradient(0deg, #f4bb52 0%, #f9a03f 100%);
}

.progress__title {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 7px;
}

.progress__percentage {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    position: absolute;
    top: -18px;
    right: 0;
    color: #9b9b9b;
}

.skills-3 .inner-padding {
    padding: 120px 80px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .skills-3 .inner-padding {
        padding: 60px 40px;
    }
}

/*--------------------------
      Video
--------------------------*/
.video__btn {
    position: relative;
}

.popup-video {
    text-align: center;
    display: inline-block;
    position: relative;
}

.popup-video .video__player {
    font-size: 18px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #222222;
    position: relative;
    display: inline-block;
}

.popup-video .video__player-animation {
    position: relative;
    width: 66px;
    height: 66px;
}

.popup-video .video__player-animation:before {
    content: "";
    position: absolute;
    left: -3px;
    top: -24px;
    width: 66px;
    height: 66px;
    opacity: 1;
    border: 2px solid #ffffff;
    border-radius: 50%;
    -webkit-animation: pulsing 1s infinite linear;
    -moz-animation: pulsing 1s infinite linear;
    -ms-animation: pulsing 1s infinite linear;
    -o-animation: pulsing 1s infinite linear;
    animation: pulsing 1s infinite linear;
}

.popup-video .video__player-title {
    text-transform: uppercase;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding-top: 20px;
    margin-bottom: 0;
    line-height: 1;
}

.popup-video:hover .video__player-animation:before {
    opacity: 0;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none;
}

/* video #1 */
.video-1 {
    padding: 0;
}

.video-1 .video__btn {
    height: 720px;
}

.video-1 .inner-padding {
    padding: 178px 80px 180px;
}

.video-2 {
    padding-top: 190px;
    padding-bottom: 200px;
}

.video-2 .heading__title {
    font-size: 38px;
    line-height: 48px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .video-1 .video__btn {
        height: 400px;
    }

    .video-1 .inner-padding {
        padding: 50px 30px;
    }
}

@-webkit-keyframes pulsing {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes pulsing {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes pulsing {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes pulsing {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulsing {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

/*-----------------------
    Features
------------------------*/
.feature-item {
    position: relative;
}

.feature-item .feature__img {
    margin-bottom: 24px;
    position: relative;
}

.feature-item .feature__img:before,
.feature-item .feature__img:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
    background: #ffffff;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.feature-item .feature__img:after {
    opacity: 0.6;
}

.feature-item .feature__img:before,
.feature-item .feature__img:hover:before {
    right: 0;
    top: 0;
}

.feature-item .feature__img:after,
.feature-item .feature__img:hover:after {
    left: 0;
    bottom: 0;
}

.feature-item .feature__img:hover:before,
.feature-item .feature__img:hover:after {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.feature-item .feature__subtitle {
    font-family: "Droidserif italic";
    font-size: 14px;
    display: inline-block;
    margin-bottom: 6px;
}

.feature-item .feature__title {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    line-height: 1;
    margin-bottom: 29px;
}

.feature-item .feature__desc {
    margin-bottom: 0;
}

.feature-item .btn__link {
    line-height: 1;
    border: none;
    width: auto;
    height: auto;
    margin-top: 21px;
}

.feature-item:hover .btn__link {
    color: #f9a03f;
}

.features-2 .feature-item .feature__title {
    margin-bottom: 23px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .feature-item {
        margin-bottom: 30px;
    }
}

/*-----------------------
     fancybox 
------------------------*/
.fancybox-item {
    position: relative;
}

.fancybox-item .fancybox__icon {
    font-size: 64px;
    line-height: 1;
    color: #f9a03f;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.fancybox-item:hover .fancybox__icon {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.fancybox-item:hover .fancybox__title {
    color: #f9a03f;
}

.fancybox-item .fancybox__title {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 14px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fancybox-item .fancybox__desc {
    margin-bottom: 0;
}

.fancybox-item .fancybox__desc + .dotted__line {
    margin-top: 21px;
}

.fancybox-layout1 .fancybox-item {
    padding: 0 20px;
}

.fancybox-layout3 .fancybox__icon {
    position: absolute;
    top: 40px;
    left: 0;
    margin-bottom: 0;
}

.fancybox-layout3 .fancybox__content {
    padding-left: 100px;
}

.fancybox-layout3 .fancybox-item:hover .fancybox__icon {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.fancybox-layout4 .fancybox-item {
    padding: 64px 25px 52px;
}

.fancybox-layout4 .fancybox-item .fancybox__icon {
    margin-bottom: 25px;
}

.fancybox-layout4 .fancybox-item .fancybox__title {
    margin-bottom: 20px;
}

.fancybox-layout4 .fancybox-item .fancybox__icon,
.fancybox-layout4 .fancybox-item .fancybox__title,
.fancybox-layout4 .fancybox-item .fancybox__desc {
    color: #ffffff;
}

.fancybox-bordered .fancybox-item {
    padding: 8px 25px 35px;
}

.fancybox-bordered .fancybox-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ededed;
}

.fancybox-bordered .fancybox-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #ededed;
}

.fancybox-bordered .fancybox-item:last-child:before {
    display: none;
}

.fancybox-bordered .fancybox-row:last-of-type .fancybox-item {
    /* padding-top: 15px; */
    padding-bottom: 0;
}

.fancybox-bordered .fancybox-row:last-of-type .fancybox-item:after {
    display: none;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .fancybox-item {
        margin-bottom: 30px;
    }

    .fancybox-item .fancybox__icon {
        font-size: 40px;
    }

    .fancybox-layout4 .fancybox-item {
        padding: 30px 15px;
    }

    .fancybox-bordered .fancybox-item:before,
    .fancybox-bordered .fancybox-item:after {
        display: none;
    }

    .fancybox-bordered .fancybox-row:last-of-type .fancybox-item {
        padding: 20px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fancybox-item {
        margin-bottom: 30px;
    }

    .fancybox-bordered .fancybox-item,
    .fancybox-bordered .fancybox-row:last-of-type .fancybox-item {
        padding-right: 15px;
        padding-left: 15px;
    }

    .fancybox-layout1 .fancybox-item {
        padding: 0;
    }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .fancybox-layout4 .fancybox-item {
        padding: 63px 15px 52px;
    }
}

/*-----------------------
    projects
------------------------*/
.project-item {
    position: relative;
    margin-bottom: 30px;
}

.project-item .project__img {
    position: relative;
}

.project-item .project__img img {
    width: 100%;
}

.project-item .project__hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0px;
}

.project-item .hover__content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 30px;
    background-color: #ffffff;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.project-item .hover__content-inner {
    position: absolute;
    bottom: 30px;
}

.project-item:hover .hover__content {
    opacity: 0.65;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.project-item .project__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.project-item .project__title a {
    color: #222222;
}

.project-item .project__title a:hover {
    color: #f9a03f;
}

.project-item .project__cat {
    line-height: 1;
}

.project-item .project__cat a {
    position: relative;
    font-family: "Droidserif italic";
    font-size: 13px;
    font-style: italic;
    color: #333333;
    padding-right: 7px;
}

.project-item .project__cat a:hover {
    color: #f9a03f;
}

.project-item .project__cat a::after {
    content: ",";
    position: absolute;
    top: 2px;
    right: 2px;
}

.project-item .project__cat a:last-child:after {
    display: none;
}

.project-item .project__desc {
    margin-bottom: 0;
}

.project-item .project__link {
    color: #222222;
    line-height: 1;
}

.project-item .zoom__icon {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}

.project-item .zoom__icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #333333;
}

.project-item .zoom__icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #333333;
}

.projects-gallery .project-item {
    margin-bottom: 0;
}

.projects-filter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.projects-filter li {
    margin-right: 20px;
}

.projects-filter li:last-child {
    margin-right: 0;
}

.projects-filter li a {
    font-family: "Montserrat", sans-serif;
    color: #222222;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
}

.projects-filter li a:hover,
.projects-filter li a.active {
    color: #f9a03f;
}

/* projects Standard */
.project__info {
    padding: 30px 20px 28px;
}

.projects-standard .project-item .hover__content-inner,
.projects-gallery-link .project-item .hover__content-inner {
    top: 40%;
    left: 50%;
    bottom: auto;
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.projects-standard .project-item .hover__content-inner a,
.projects-gallery-link .project-item .hover__content-inner a {
    display: block;
}

.projects-standard .project-item .hover__content-inner .dotted__line span,
.projects-standard
    .project-item
    .hover__content-inner
    .dotted__line
    span:before,
.projects-standard .project-item .hover__content-inner .dotted__line span:after,
.projects-gallery-link .project-item .hover__content-inner .dotted__line span,
.projects-gallery-link
    .project-item
    .hover__content-inner
    .dotted__line
    span:before,
.projects-gallery-link
    .project-item
    .hover__content-inner
    .dotted__line
    span:after {
    background-color: #222222;
}

.projects-gallery-link .project-item .hover__content-inner {
    top: 30%;
}

.projects-standard .project-item:hover .hover__content-inner,
.projects-gallery-link .project-item:hover .hover__content-inner {
    opacity: 1;
    top: 50%;
}

/* project single */
.projects-single .project__single-title {
    font-size: 30px;
    font-weight: 600;
}

.projects-single .divider__line {
    margin-bottom: 21px;
}

.projects-single .project__single-desc {
    margin-bottom: 40px;
}

.projects-single .project__single-desc p {
    margin-bottom: 27px;
}

.projects-single .project__single-desc p:last-of-type {
    margin-bottom: 0;
}

.project__meta-list {
    background-color: #f9f9f9;
    margin-bottom: 30px;
    padding: 30px;
}

.project__meta-list li {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #9e9e9e;
    line-height: 29px;
}

.project__meta-list li span {
    color: #222222;
    padding-right: 3px;
    margin-right: 2px;
    display: inline-block;
    position: relative;
}

.project__meta-list li span:after {
    content: ":";
    position: absolute;
    top: 0;
    right: 0;
}

.project__share {
    background-color: #f9f9f9;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
}

.project__share .project__share-title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #222222;
    line-height: 1;
}

.project__share .social__icons {
    display: inline-flex;
}

.project__share .social__icons a {
    line-height: 1;
    margin-right: 20px;
    color: #5d5d5d;
}

.project__share .social__icons a:last-child {
    margin-right: 0;
}

.project__share .social__icons a:hover {
    color: #f9a03f;
}

.projects__nav {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #f5f5f5;
    padding-top: 50px;
}

.projects__nav .projects__prev,
.projects__nav .projects__next {
    position: relative;
}

.projects__nav .projects__prev .projects__nav-icon,
.projects__nav .projects__next .projects__nav-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.projects__nav .projects__prev:hover h6,
.projects__nav .projects__next:hover h6 {
    color: #f9a03f;
}

.projects__nav .projects__next {
    text-align: right;
}

.projects__nav .projects__next .projects__nav-icon {
    right: 0;
    left: auto;
}

.projects__nav .projects__nav-icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333333;
}

.projects__nav .projects__nav-icon:hover {
    background-color: #f9a03f;
    color: #ffffff;
}

.projects__nav .projects__nav-content span {
    font-family: "Droidserif italic";
    font-size: 13px;
    color: #b8b8b8;
    display: block;
    margin-bottom: 3px;
}

.projects__nav .projects__nav-content h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.projects__nav .projects__next .projects__nav-content {
    padding-right: 63px;
}

.projects__nav .projects__prev .projects__nav-content {
    padding-left: 63px;
}

.projects__nav .projects__nav-all {
    font-size: 23px;
    line-height: 50px;
    color: #616161;
    display: block;
    text-align: center;
}

.projects__nav .projects__nav-all:hover {
    color: #f9a03f;
}

/* portfolio single images */
.projects-single-images .project__img img {
    margin-bottom: 30px;
}

/* portfolio single slider */
.projects-single-slider .project__img img {
    margin-bottom: 0;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev,
.projects-single-slider .carousel-arrows .owl-nav .owl-next {
    background-color: #ffffff;
    border-color: transparent;
    color: #333333;
    border-radius: 50%;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev:hover,
.projects-single-slider .carousel-arrows .owl-nav .owl-next:hover {
    background-color: #333333;
    color: #ffffff;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev:after,
.projects-single-slider .carousel-arrows .owl-nav .owl-next:after {
    display: none;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev {
    left: 30px;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev:before {
    content: "";
}

.projects-single-slider .carousel-arrows .owl-nav .owl-next {
    right: 30px;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-next:before {
    content: "";
}

/* projects-masonry */
.projects-masonry .project__img,
.projects-pinterest .project__img {
    margin-bottom: 30px;
}

/* custom-grid */
.custom-grid-2col {
    column-count: 2;
    column-gap: 30px;
}

.custom-grid-3col {
    column-count: 3;
    column-gap: 30px;
}

.mix {
    display: none;
}

#filtered-items-wrap .project-hidden > .project-item {
    display: none;
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
    .projects-gallery .project-item,
    .project-item {
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .project__share .social__icons a {
        margin-right: 15px;
    }

    .projects-single-slider .carousel-arrows .owl-nav .owl-prev {
        left: 15px;
    }

    .projects-single-slider .carousel-arrows .owl-nav .owl-next {
        right: 15px;
    }

    .projects-filter li {
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .projects-masonry .project-item,
    .projects-masonry .project__img {
        max-width: 370px;
        margin: 0 auto 30px;
    }

    .projects-masonry .project-item img,
    .projects-masonry .project__img img {
        width: 100%;
    }

    .custom-grid-2col,
    .custom-grid-3col {
        column-count: 1;
    }

    .projects-pinterest .project__img {
        max-width: 370px;
        margin: 0 auto 30px;
    }
}

/* tablets */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .projects-grid .container {
        max-width: none;
    }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .projects-single .project__title {
        font-size: 24px;
    }

    .projects__nav {
        display: block;
    }

    .projects__nav .projects__nav-content h6 {
        font-size: 14px;
        line-height: 24px;
    }

    .custom-grid-3col {
        column-gap: 15px;
    }

    .custom-grid-3col .project__img {
        margin-bottom: 15px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .projects__nav .projects__nav-content h6 {
        font-size: 14px;
        line-height: 24px;
    }

    .custom-grid-3col {
        column-gap: 15px;
    }

    .custom-grid-3col .project__img {
        margin-bottom: 15px;
    }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .project__share .social__icons a {
        margin-right: 15px;
    }
}

/*--------------------
     Team
---------------------*/
.member {
    position: relative;
    margin-bottom: 30px;
}

.member .member__img {
    position: relative;
    overflow: hidden;
}

.member .member__img img {
    width: 100%;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.member .member__info {
    padding-top: 29px;
}

.member .member__info .member__name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.member .member__info .member__desc {
    font-family: "Droidserif italic";
    font-size: 13px;
    margin-bottom: 7px;
}

.team-1 .member:hover .member__img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-2 .member .member__info .member__desc {
    margin-bottom: 0;
}

.team-2 .member .member__hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
}

.team-2 .member .member__content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 30px;
    background-color: #ffffff;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.team-2 .member .member__content .member__content-inner {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
}

.team-2 .member:hover .member__content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.team-3 .member {
    margin-bottom: 0;
}

.team-4 .member .member__info .member__desc {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 15px;
    font-style: normal;
    margin-bottom: 21px;
}

.team-4 .member .member__img:before,
.team-4 .member .member__img:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
    background: #ffffff;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.team-4 .member .member__img:after {
    opacity: 0.6;
}

.team-4 .member .member__img:before,
.team-4 .member:hover .member__img:before {
    right: 0;
    top: 0;
}

.team-4 .member .member__img:after,
.team-4 .member:hover .member__img:after {
    left: 0;
    bottom: 0;
}

.team-4 .member:hover .member__img:before,
.team-4 .member:hover .member__img:after {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.team-5 .member .member__content .member__content-inner {
    bottom: auto;
    top: 30%;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.team-5 .member:hover .member__content .member__content-inner {
    top: 50%;
    opacity: 1;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .member {
        max-width: 400px;
        margin: 0 auto 30px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-3 .member .member__hover {
        padding: 15px;
    }

    .team-3 .member .member__info .member__name {
        font-size: 16px;
    }
}

/*----------------------
     Testimonials
----------------------*/
.testimonial-item {
    position: relative;
}

.testimonial-item .testimonial__thumb {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 29px;
}

.testimonial-item .testimonial__thumb img {
    max-width: 100%;
}

.testimonial-item .testimonial__icon {
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-bottom: 25px;
}

.testimonial-item .testimonial__icon:before {
    font-family: "york";
    content: "";
    font-size: 30px;
    color: #f9a03f;
    display: inline-block;
}

.testimonial-item .testimonial__content {
    position: relative;
}

.testimonial-item .testimonial__desc {
    font-size: 23px;
    line-height: 35px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item .testimonial__meta {
    position: relative;
}

.testimonial-item .testimonial__meta .testimonial__meta-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.testimonial-item .testimonial__meta .testimonial__meta-desc {
    font-family: "Droidserif italic";
    font-size: 13px;
    font-style: italic;
    color: #616161;
    margin-bottom: 0;
}

.testimonial-1 .testimonial-item .testimonial__content {
    padding: 0 80px;
}

.testimonial-2 .testimonial-item {
    background-color: #f9f9f9;
    padding: 40px 35px;
    border-radius: 2px;
}

.testimonial-2 .testimonial-item .testimonial__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.testimonial-2 .testimonial-item .testimonial__icon {
    margin-bottom: 0;
}

.testimonial-2 .testimonial-item .testimonial__meta-desc {
    margin-bottom: 17px;
}

.testimonial-2 .owl-dots {
    margin-top: 48px;
}

.testimonial-white-text {
    color: #ffffff;
}

.testimonial-white-text .heading .heading__title,
.testimonial-white-text .testimonial-item .testimonial__desc,
.testimonial-white-text
    .testimonial-item
    .testimonial__meta
    .testimonial__meta-title {
    color: #ffffff;
}

.testimonial-white-text
    .testimonial-item
    .testimonial__meta
    .testimonial__meta-desc {
    color: #f9f9f9;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .testimonial-1 .testimonial-item .testimonial__content {
        padding: 0 30px;
    }

    .testimonial-1 .testimonial-item .testimonial__desc {
        font-size: 17px;
        line-height: 27px;
    }
}

/*-------------------------
    Cta
---------------------------*/
.cta__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 30px;
}

.cta__desc {
    font-size: 20px;
    color: #616161;
    line-height: 1;
    margin-bottom: 0;
}

.cta-4 {
    padding: 75px 0;
}

.cta-4 .cta__title {
    font-size: 40px;
    color: #ffffff;
}

.cta-4 .cta__desc {
    font-style: normal;
    color: #ffffff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
    margin-bottom: 36px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .cta__desc {
        margin-bottom: 25px;
    }

    .cta-4 .cta__title {
        font-size: 24px;
    }
}

/*------------------------------------*\
    #Client
\*------------------------------------*/
.clients .client {
    position: relative;
    text-align: center;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.clients .client img {
    display: inline-block;
    width: auto !important;
    max-width: 100%;
}

.clients-3 .clients-row .client {
    padding: 25px 0;
}

.clients-3 .clients-row .client:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 30px);
    background-color: rgba(206, 206, 206, 0.3);
}

.clients-3 .clients-row .client:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    height: 1px;
    background-color: rgba(206, 206, 206, 0.3);
}

.clients-3 .clients-row .client:last-child:before {
    display: none;
}

.clients-3 .clients-row:last-child .client {
    margin-bottom: 0;
}

.clients-3 .clients-row:last-child .client:after {
    display: none;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .clients-3 .clients-row .client:before,
    .clients-3 .clients-row .client:after {
        display: none;
    }
}

/*--------------------
     Blog
-------------------*/
.blog-item {
    position: relative;
    margin-bottom: 30px;
}

.blog-item .blog__img {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-item .blog__img:before,
.blog-item .blog__img:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
    background: #ffffff;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.blog-item .blog__img:after {
    opacity: 0.6;
}

.blog-item .blog__img:before,
.blog-item .blog__img:hover:before {
    right: 0;
    top: 0;
}

.blog-item .blog__img:after,
.blog-item .blog__img:hover:after {
    left: 0;
    bottom: 0;
}

.blog-item .blog__img:hover:before,
.blog-item .blog__img:hover:after {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.blog-item .blog__meta .blog__meta-cat {
    display: inline-block;
    background-color: #f9a03f;
    padding: 0 7px;
    margin-right: 6px;
    margin-bottom: 7px;
}

.blog-item .blog__meta .blog__meta-cat a {
    position: relative;
    color: #ffffff;
    line-height: 19px;
    padding-right: 5px;
}

.blog-item .blog__meta .blog__meta-cat a:hover {
    color: #222222;
}

.blog-item .blog__meta .blog__meta-cat a:after {
    content: ",";
    position: absolute;
    top: 0;
    right: 0;
    color: #ffffff;
}

.blog-item .blog__meta .blog__meta-cat a:last-child {
    padding: 0;
}

.blog-item .blog__meta .blog__meta-cat a:last-child:after {
    display: none;
}

.blog-item .blog__meta .blog__meta-date {
    font-size: 13px;
    line-height: 1;
    display: inline-block;
    color: #616161;
    font-weight: 600;
}

.blog-item .blog__title {
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-item .blog__title a {
    color: #222222;
}
/* 
.blog-item .blog__title a:hover {
  color: #F9A03F;
} */

.blog-item .btn__link {
    line-height: 1;
    width: auto;
    height: auto;
    border: none;
}

/* Blog Standard */
.blog-standard .blog-item .blog__title {
    font-size: 22px;
    line-height: 27px;
    font-weight: 700;
}

.blog-standard .blog-item .blog__desc {
    margin-bottom: 22px;
}

/* Blog Single */
.blog-single-item .blog__title {
    font-size: 22px;
    font-weight: 700;
}

.blog-single-item .blog__desc {
    margin-bottom: 32px;
}

.blog-single-item .blog__desc p {
    line-height: 23px;
    margin-bottom: 20px;
}

.blog-widget {
    padding-top: 50px;
    margin-bottom: 50px;
    border-top: 2px solid #f5f5f5;
}

.blog__widget-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
}

.related-posts {
    margin-bottom: 8px;
}

.blog-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 50px;
}

.blog-share .blog__share-title {
    font-size: 13px;
    line-height: 1;
    margin-bottom: 0;
}

.blog-share .social__icons a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background-color: #282828;
    color: #ffffff;
    border-radius: 50%;
    transition: 0.3s linear;
}

.blog-share .social__icons a:hover {
    background-color: #f9a03f;
    color: #ffffff;
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #f5f5f5;
    padding-top: 50px;
}

.blog-nav .blog__prev,
.blog-nav .blog__next {
    position: relative;
    min-height: 66px;
}

.blog-nav .blog__prev .blog__nav-img,
.blog-nav .blog__next .blog__nav-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 66px;
}

.blog-nav .blog__prev:hover h6,
.blog-nav .blog__next:hover h6 {
    color: #f9a03f;
}

.blog-nav .blog__next {
    text-align: right;
}

.blog-nav .blog__next .blog__nav-img {
    right: 0;
    left: auto;
}

.blog-nav .blog__nav-img {
    width: 100px;
    height: 66px;
}

.blog-nav .blog__nav-img img {
    width: 100%;
    height: 100%;
}

.blog-nav .blog__nav-content span {
    font-family: "Droidserif italic";
    font-size: 13px;
    color: #b8b8b8;
    display: block;
    margin-bottom: 1px;
}

.blog-nav .blog__nav-content h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-nav .blog__next .blog__nav-content {
    padding-right: 120px;
}

.blog-nav .blog__prev .blog__nav-content {
    padding-left: 120px;
}

.blog-author {
    display: flex;
}

.blog-author .blog__author-avatar {
    width: 90px;
    height: 90px;
    min-width: 90px;
    margin-right: 30px;
}

.blog-author .blog__author-name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 22px;
}

.blog-author .blog__author-bio {
    line-height: 23px;
    margin-bottom: 20px;
}

.blog-author .social__icons a {
    font-size: 15px;
    margin-right: 27px;
    color: #5d5d5d;
}

.blog-author .social__icons a:hover {
    color: #282828;
}

.blog-author .social__icons a:last-child {
    margin-right: 0;
}

.comments-list .comment__item {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
    margin-bottom: 30px;
}

.comments-list .comment__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comments-list .comment__item .comment__avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.comments-list .comment__item .comment__content {
    padding-left: 90px;
}

.comments-list .comment__item .comment__content .comment__author {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 11px;
}

.comments-list .comment__item .comment__content .comment__date {
    font-family: "Droidserif italic";
    color: #616161;
    font-size: 12px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.comments-list .comment__item .comment__content .comment__desc {
    margin-bottom: 6px;
}

.comments-list .comment__item .comment__content .comment__reply {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #f9a03f;
    display: inline-block;
}

.comments-list .comment__item .comment__content .comment__reply:hover {
    color: #222222;
}

.comments-list .comment__item .nested__comment {
    border-top: 2px solid #f5f5f5;
    padding: 30px 0 0 0;
    margin: 30px 0 0 90px;
}

.blog-comments-form .form-group {
    margin-bottom: 30px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .blog-item .blog__title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .blog-share {
        padding: 15px;
    }

    .blog-share .social__icons a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
    }

    .comments-list .comment__item .comment__avatar {
        width: 40px;
        height: 40px;
    }

    .comments-list .comment__item .comment__content {
        padding-left: 60px;
    }

    .blog-nav {
        display: block;
    }

    .blog-nav .blog__prev {
        margin-bottom: 20px;
    }
}

/*----------------------------
    Contact
----------------------------*/
.contact .inner-padding {
    padding: 100px 110px 110px;
}

.contact .contact__banner {
    height: 638px;
}

.contact .contact__banner .heading__shape {
    margin-bottom: 37px;
}

.contact-panel {
    margin-bottom: 30px;
}

.contact-panel .contact__panel-title {
    font-size: 22px;
    line-height: 1;
}

.contact-panel .contact__panel-desc {
    line-height: 22px;
    margin-bottom: 21px;
}

.contact-panel .btn__link {
    width: auto;
    height: auto;
    line-height: 1;
    color: #f9a03f;
    margin-top: 18px;
}

.contact-panel .btn__link:hover {
    color: #222222;
}

/* Mobile Phones*/
@media only screen and (min-width: 320px) and (max-width: 575px) {
    .contact .inner-padding {
        padding: 50px 30px;
    }

    .contact .contact__banner .heading .heading__title {
        font-size: 22px;
        line-height: 32px;
    }

    .contact .contact__banner .heading .heading__shape {
        margin-bottom: 20px;
    }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .contact .inner-padding {
        padding: 50px 30px;
    }

    .contact .contact__banner {
        height: 400px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact .inner-padding {
        padding: 100px 30px 110px;
    }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .contact .inner-padding {
        padding: 100px 40px 110px;
    }
}

/*--------------------------
        pricing
--------------------------*/
.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 614px;
}

.pricing-item {
    position: relative;
    padding: 70px 50px 50px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
}

.pricing-item:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
}

.pricing-item .pricing__header {
    margin-bottom: 66px;
}

.pricing-item .pricing__title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    color: #f9a03f;
    line-height: 1;
    margin-bottom: 28px;
}

.pricing-item .pricing__price {
    font-family: "Montserrat", sans-serif;
    font-size: 70px;
    color: #222222;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.pricing-item .pricing__currency {
    font-size: 28px;
}

.pricing-item .pricing__time {
    font-size: 13px;
}

.pricing-item .pricing__desc {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0;
}

.pricing-item .pricing__list {
    padding: 25px 0;
    border-top: 2px solid #f5f5f5;
}

.pricing-item .pricing__list li {
    position: relative;
    line-height: 40px;
    text-transform: capitalize;
}

.pricing-item .pricing__list li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    display: inline-block;
    background-color: #e5e4e4;
}

.pricing-item .pricing__list li:last-child:after {
    display: none;
}

.pricing-item .pricing__label {
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #222222;
    color: #ffffff;
    line-height: 23px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 8px;
}

.pricing-item .btn {
    width: 190px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .pricing-item {
        margin-bottom: 30px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-item {
        padding: 50px 10px 30px;
    }

    .pricing-item .pricing__header {
        margin-bottom: 30px;
    }

    .pricing-item .pricing__title {
        margin-bottom: 15px;
    }

    .pricing-item .pricing__price {
        font-size: 50px;
    }

    .pricing-item .pricing__label {
        top: 15px;
        left: 15px;
    }
}

/*---------------------------
    Counters
--------------------------*/
.counters {
    padding: 60px 0;
}

.counter-item {
    text-align: center;
}

.counter-item .counter {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-item .counter__divider {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #4e4e4e;
    margin-bottom: 10px;
}

.counter-item .counter__desc {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.counters-2 .counter,
.counters-2 .counter__desc {
    color: #ffffff;
}

.counters-2 .counter-item .counter__divider {
    background-color: #ffffff;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .counter-item {
        margin-bottom: 30px;
    }
}

/*-----------------------
    process 
--------------------------*/
.process-item {
    padding: 100px 55px;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/* .process-item:hover {
  background-color: #F9A03F !important;
} */

/* .process-item:hover .process__number,
.process-item:hover .process__title,
.process-item:hover .process__desc {
  color: #ffffff;
} */

.process-item:hover .dotted__line span {
    background-color: #ffffff;
}

.process-item:hover .dotted__line span:before,
.process-item:hover .dotted__line span:after {
    background-color: #ffffff;
}

.process-item .process__number {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    line-height: 1;
    color: #222222;
    margin-bottom: 27px;
    transition: 0.3s ease;
}

.process-item .process__title {
    font-size: 24px;
    font-weight: 600;
}

.process-item .process__desc {
    margin-bottom: 27px;
}

.process-item:hover .process__number {
    transform: translateY(-4px);
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .process-item {
        padding: 50px 30px;
    }
}

/*-----------------------
    Pie Charts
------------------------*/
.piechart-item {
    text-align: center;
    margin-bottom: 30px;
}

.piechart-item-data .percentage {
    display: inline-block;
    position: absolute;
    width: 144px;
    height: 144px;
    line-height: 144px;
    text-align: center;
    border-radius: 50%;
    border: 3px solid #ebebeb;
    margin: 11px;
}

.piechart-item-data .percentage i {
    font-size: 64px;
    color: #f9a03f;
    line-height: 144px;
}

.piechart-item-data span {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: #f9a03f;
    font-weight: 600;
}

.piechart__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-top: 22px;
    margin-bottom: 0;
}

/*-------------------------
    Timeline
-------------------------*/
.timeline-wrap {
    position: relative;
}

.timeline-wrap:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 85px;
    width: 2px;
    height: 100%;
    background-color: #cecece;
}

.timeline-wrap:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 85px;
    width: 2px;
    height: 20px;
    background-color: #cecece;
}

.timeline__item {
    position: relative;
    margin-bottom: 61px;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__item .timeline__item-date {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #f9a03f;
}

.timeline__item .timeline__item-content {
    padding-left: 121px;
}

.timeline__item .timeline__item-title {
    position: relative;
    color: #282828;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
}

.timeline__item .timeline__item-title:before {
    position: absolute;
    top: 0;
    left: -42px;
    font-family: fontawesome;
    content: "";
    font-size: 16px;
    font-weight: 400;
    width: 30px;
    height: 25px;
    line-height: 25px;
    color: #282828;
    background: #ffffff;
}

.timeline__item .timeline__item-desc {
    line-height: 23px;
    margin-bottom: 0;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 575px) {
    .timeline__item {
        margin-bottom: 40px;
    }

    .timeline__item .timeline__item-title {
        font-size: 16px;
    }

    .timeline__item .timeline__item-desc {
        font-size: 14px;
    }
}

/*---------------------
    Newsletter
---------------------*/
.newsletter {
    padding: 125px 0;
}

.newsletter .newsletter__title {
    font-size: 70px;
    color: #ffffff;
}

.newsletter .newsletter__desc {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 36px;
}

.newsletter__form {
    justify-content: center;
}

.newsletter__form .form-control {
    width: 370px;
    height: 50px;
    border: 2px solid #ffffff;
    padding-left: 20px;
    color: #ffffff;
    margin-right: 30px;
}

.newsletter__form .form-control:focus {
    border-color: #f9a03f;
}

.newsletter__form .form-control::-webkit-input-placeholder {
    color: #ffffff;
}

.newsletter__form .form-control:-moz-placeholder {
    color: #ffffff;
}

.newsletter__form .form-control::-moz-placeholder {
    color: #ffffff;
}

.newsletter__form .form-control:-ms-input-placeholder {
    color: #ffffff;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .newsletter .newsletter__title {
        font-size: 30px;
    }

    .newsletter__form .form-control {
        margin: 0 auto 30px;
    }
}

/*------------------------
    Shop
--------------------------*/
.product-item {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.product-item .product__img {
    overflow: hidden;
    position: relative;
}

.product-item .product__img img {
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.product-item .product__content {
    padding: 35px 10px 40px;
}

.product-item .product__action {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.product-item .product__action .btn {
    width: 100%;
}

.product-item:hover .product__action {
    bottom: 0;
}

.product-item:hover .product__img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.product__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10px;
}

.product__title a {
    color: #282828;
}

.product__title a:hover {
    color: #f9a03f;
}

.product__price {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #f9a03f;
}

.list-view {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.list-view .product-item {
    display: flex;
    border: 1px solid #eee;
}

.list-view .product-item .product__img {
    position: static;
    flex-basis: 50%;
}

.list-view .product-item .product__content {
    padding: 20px;
    text-align: left;
}

.list-view .product-item .product__action {
    bottom: 20px;
    left: calc(50% + 20px);
    width: auto;
}

.list-view .product-item .product__action .btn {
    width: 170px;
}

/* Shop Single */
.shop-single .product__single-img {
    margin-bottom: 45px;
}

.shop-single .product__title {
    font-weight: 700;
}

.shop-single .product__rating {
    margin-right: 37px;
}

.shop-single .product__rating i {
    font-size: 15px;
}

.shop-single .product__rating i.active {
    color: #f9a03f;
}

.product__meta {
    display: flex;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 24px;
}

.product__meta-review {
    font-size: 14px;
}

.product__meta-review a {
    position: relative;
    color: #9b9b9b;
    padding-left: 10px;
}

.product__meta-review a:hover {
    color: #f9a03f;
}

.product__meta-review a:before {
    content: "/";
    position: absolute;
    top: 0;
    left: 0;
}

.product__desc {
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.product__desc p {
    line-height: 22px;
}

.product__details {
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.product__details li {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #959595;
    line-height: 26px;
}

.product__details li span {
    color: #f9a03f;
    padding-right: 4px;
}

.product__details-title,
.product__quantity-title,
.product__share-title,
.related__products-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product__form-wrap {
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 22px;
    margin-bottom: 30px;
}

.product__form-wrap form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__quantity-title {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 10px;
}

.quantity__input-wrap {
    display: inline-flex;
}

.quantity__input-wrap i {
    width: 25px;
    height: 25px;
    border: 1px solid #eeeeee;
    text-align: center;
    color: #222222;
    display: inline-block;
    cursor: pointer;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.qty-input {
    background-color: transparent;
    width: 30px;
    height: 25px;
    border: 1px solid #eeeeee;
    text-align: center;
    color: #222222;
    font-size: 14px;
    padding: 0;
    margin: 0 5px;
    border-radius: 2px;
    text-align: center;
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.product__action-btns .btn {
    margin-right: 17px;
}

.product__action-btns .btn:last-child {
    margin-right: 0;
}

.product__share {
    margin-bottom: 70px;
}

.product__share a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: #f9a03f;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.product__share a:hover {
    background-color: #282828;
    color: #ffffff;
}

.product__tabs {
    border: 1px solid #eeeeee;
    margin-bottom: 50px;
}

.product__tabs .tab-content {
    padding: 18px 20px;
}

.product__tabs .tab-content p {
    line-height: 22px;
}

.product__tabs .tab-content p :last-child {
    margin-bottom: 0;
}

.product__tabs .nav-tabs {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eeeeee;
}

.product__tabs .nav-tabs .nav__link {
    padding: 20px 16px;
    margin-right: 0;
    border-right: 1px solid #eeeeee;
    margin-bottom: -1px;
}

.product__tabs .nav-tabs .nav__link:last-of-type {
    border-right: 0;
}

.product__tabs .nav-tabs .nav__link.active {
    background-color: #ffffff;
    border-bottom-color: white;
}

.product__tabs .reviews__form .form-control {
    border: 1px solid #e6e6e6;
    height: 40px;
    padding: 0 10px;
}

.product__tabs .reviews__form .form-control:focus {
    border-color: #f9a03f;
}

.product__tabs .reviews__form label {
    font-weight: 700;
}

.product__tabs .reviews__form textarea.form-control {
    min-height: 100px;
}

/* Shop Filtering */
.filtering-options {
    display: flex;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 1px;
    margin-bottom: 30px;
}

.filtering-options .select-box {
    position: relative;
    display: inline-block;
}

.filtering-options .select-box:before {
    content: "";
    font-family: fontAwesome;
    position: absolute;
    top: 5px;
    right: 10px;
}

.filtering-options .select-box select {
    padding: 0 20px 0 10px;
    height: 30px;
    border: 1px solid #eeeeee;
    min-width: 128px;
    color: #9b9b9b;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.filtering-options .sort-box {
    margin-right: 30px;
}

.filtering-options .sort-box:last-of-type {
    margin-right: 0;
}

.filter-option-sorting {
    display: flex;
    align-items: center;
}

.filter-option-view span,
.sort-box span {
    font-family: "Montserrat", sans-serif;
    color: #222222;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-right: 8px;
}

.filter-option-view a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #eeeeee;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #9b9b9b;
    margin-right: 8px;
}

.filter-option-view a:last-child {
    margin-right: 0;
}

.filter-option-view a.active,
.filter-option-view a:hover {
    color: #f9a03f;
}

/* shop-categories */
.shop__cat-item {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
    margin-bottom: 30px;
}

.shop__cat-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(27, 26, 26, 0.25);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.shop__cat-item .btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.shop__cat-item img {
    width: 100%;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.shop__cat-item:hover:before {
    background-color: rgba(27, 26, 26, 0.75);
}

.shop__cat-item:hover .btn {
    background-color: #f9a03f;
    border-color: #f9a03f;
    color: #ffffff;
}

.shop__cat-item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
    .product-item {
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .product-item img {
        width: 100%;
    }

    .product-item .product__content {
        padding: 15px 10px;
    }

    .list-view .product-item {
        max-width: none;
    }

    .list-view .product-item .product__action {
        left: calc(50% + 10px);
        bottom: 10px;
    }

    .list-view .product-item .product__action .btn {
        width: 140px;
        font-size: 11px;
        height: 35px;
        line-height: 33px;
        overflow: hidden;
    }

    .list-view .product-item .product__content {
        padding: 10px 15px;
    }

    .list-view .product-item .product__title {
        font-size: 15px;
        line-height: 1.1;
    }

    .shop__cat-item .btn {
        bottom: 20px;
        left: 20px;
        width: 130px;
        height: 40px;
        line-height: 38px;
    }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .filtering-options {
        justify-content: center;
    }

    .filtering-options .sort-box,
    .filter-option-sorting {
        margin-right: 15px;
    }

    .filter-option-view span,
    .sort-box span {
        display: block;
        margin-bottom: 5px;
    }

    .product__form-wrap form {
        display: block;
    }

    .product__action-btns .btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .product__quantity-title {
        margin-bottom: 14px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .filtering-options {
        display: block;
        text-align: center;
        padding: 15px;
    }

    .filtering-options .sort-box {
        margin-right: 15px;
    }

    .filtering-options .select-box {
        margin-left: 0;
    }

    .filter-option-sorting {
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .product__form-wrap form {
        display: block;
    }

    .product__action-btns .btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .product__quantity-title {
        margin-bottom: 14px;
    }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .product__form-wrap form {
        display: block;
    }

    .product__action-btns .btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .product__quantity-title {
        margin-bottom: 10px;
    }

    .shop__cat-item .btn {
        bottom: 20px;
        left: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 440px) {
    .filtering-options {
        display: block;
    }

    .filtering-options .sort-box,
    .filter-option-sorting {
        margin: 0 0 10px 0;
        display: block;
    }

    .filtering-options .select-box {
        display: block;
    }

    .filtering-options .select-box select {
        width: 100%;
        height: 35px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 350px) {
    .list-view .product-item .product__action .btn {
        width: 40px;
        font-size: 17px;
        padding: 0 11px;
    }
}

/*--------------------
    Sidebar
----------------------*/
.sidebar-wide {
    padding: 50px 50px 40px;
    background-color: #f9f9f9;
    border-radius: 1px;
}

.widget {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 2px solid #f5f5f5;
}

.widget:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.widget .widget__title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 30px;
}

.widget-search {
    padding-bottom: 0;
    border-bottom: 0;
}

.widget-search .widget__form-search {
    position: relative;
}

.widget-search .widget__form-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    color: #f9a03f;
}

.widget-about img {
    margin-bottom: 26px;
}

.widget-about p {
    margin-bottom: 11px;
}

.widget-about .btn__link {
    line-height: 1;
    width: auto;
    height: auto;
    border: none;
    color: #f9a03f;
}

.widget-about .btn__link:hover {
    color: #282828;
}

.widget-categories li a {
    display: block;
    color: #7f7f7f;
    line-height: 31px;
}

.widget-categories li a:hover {
    color: #f9a03f;
}

.widget-tags ul {
    display: flex;
    flex-wrap: wrap;
}

.widget-tags ul li a {
    display: block;
    font-size: 14px;
    color: #9b9b9b;
    line-height: 1;
    text-transform: capitalize;
    padding: 7px 9px;
    border: 1px solid #ededed;
    margin: 0 10px 10px 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.widget-tags ul li a:hover {
    background-color: #f9a03f;
    border-color: #f9a03f;
    color: #ffffff;
}

/*widget products*/
.widget-poducts .widget-product-item {
    display: flex;
    margin-bottom: 30px;
}

.widget-poducts .widget-product-item:last-of-type {
    margin-bottom: 0;
}

.widget-poducts .widget-product-item .widget__product-title {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 0;
    padding-top: 6px;
}

.widget-poducts .widget-product-item .widget__product-title a {
    color: #282828;
}

.widget-poducts .widget-product-item:hover .widget__product-title a {
    color: #f9a03f;
}

.widget-poducts .widget-product-item .widget__product-img {
    margin-right: 20px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
}

.widget-poducts .widget-product-item .widget__product-img img {
    width: 100%;
    height: 100%;
}

.widget-poducts .widget-product-item .widget__product-price {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

/*widget posts*/
.widget-posts .widget-post-item {
    display: flex;
    margin-bottom: 28px;
}

.widget-posts .widget-post-item:last-of-type {
    margin-bottom: 0;
}

.widget-posts .widget-post-item .widget__post-title {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.widget-posts .widget-post-item .widget__post-title a {
    color: #282828;
}

.widget-posts .widget-post-item:hover .widget__post-title a {
    color: #f9a03f;
}

.widget-posts .widget-post-item .widget__post-img {
    margin-right: 20px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
}

.widget-posts .widget-post-item .widget__post-img img {
    width: 100%;
    height: 100%;
}

.widget-posts .widget-post-item .widget__post-date {
    line-height: 1;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 6px;
}

/* Widget Filter */
.ui-slider {
    position: relative;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-widget.ui-widget-content {
    border: none;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 10px;
    height: 10px;
    background-color: #222222;
    border-radius: 50%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.widget-filter .ui-slider {
    background-color: rgba(34, 34, 34, 0.06);
    border-radius: 0;
    height: 4px;
    margin-bottom: 18px;
}

.widget-filter .ui-slider-range {
    height: 4px;
    background-color: #f9a03f;
}

.widget-filter .price-output {
    line-height: 1;
    margin-bottom: 26px;
}

.widget-filter label {
    color: #9b9b9b;
    font-size: 15px;
    margin-bottom: 0;
}

.widget-filter input {
    background-color: transparent;
    color: #f9a03f;
    font-size: 15px;
    border: none;
}

.widget-filter .btn {
    width: 128px;
    height: 42px;
    line-height: 40px;
    font-weight: 700;
    color: #222222;
}

/*----------------------
    Countdown
-----------------------*/
.countdown-row {
    display: flex;
}

.countdown-section {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.countdown-section:last-of-type {
    display: none;
}

.countdown-amount {
    font-family: "Montserrat", sans-serif;
    color: #222222;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    display: block;
    padding-bottom: 14px;
    margin-bottom: 19px;
}

.countdown-amount:after {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    width: 20px;
    height: 2px;
    transform: translateX(-50%);
    background-color: #222222;
}

.countdown-period {
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .countdown-section {
        padding: 0 5px;
    }

    .countdown-amount {
        font-size: 30px;
        padding-bottom: 5px;
    }

    .countdown-amount:after {
        top: 40px;
    }
}

/*----------------------
    Page 404
-----------------------*/
.page-404 {
    padding: 170px 0;
}

.page-404 .divider__line {
    margin-bottom: 28px;
}

.page-404 .heading__title {
    font-size: 150px;
    line-height: 1;
    margin-bottom: 20px;
}

.page-404 .heading__desc {
    line-height: 24px;
    margin-bottom: 43px;
}

/*----------------------
    Page maintenance
-----------------------*/
.page-maintenance {
    padding: 170px 0 150px;
}

.page-maintenance .divider__line {
    margin-bottom: 38px;
}

.page-maintenance .heading__title {
    font-size: 100px;
    line-height: 1;
    margin-bottom: 30px;
}

.page-maintenance .heading__desc {
    line-height: 24px;
    margin-bottom: 35px;
}

.page-maintenance.skills .progress__heading .progress__title {
    margin-bottom: 0;
    text-transform: capitalize;
}

/*----------------------
    Page Soon
-----------------------*/
.page-soon {
    padding: 170px 0;
}

.page-soon .divider__line {
    margin-bottom: 38px;
}

.page-soon .heading__title {
    font-size: 100px;
    line-height: 1;
    margin-bottom: 30px;
}

.page-soon .heading__desc {
    line-height: 24px;
    margin-bottom: 35px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .page-404 {
        padding: 100px 0;
    }

    .page-404 .divider__line {
        margin-bottom: 18px;
    }

    .page-404 .heading__title {
        font-size: 100px;
        margin-bottom: 10px;
    }

    .page-404 .heading__desc {
        font-size: 15px;
        margin-bottom: 33px;
    }

    .page-maintenance,
    .page-soon {
        padding: 100px 0;
    }

    .page-maintenance .divider__line,
    .page-soon .divider__line {
        margin-bottom: 28px;
    }

    .page-maintenance .heading__title,
    .page-soon .heading__title {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .page-maintenance .heading__desc,
    .page-soon .heading__desc {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-soon .heading__title,
    .page-maintenance .heading__title {
        font-size: 70px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 400px) {
    .page-soon .heading__title,
    .page-maintenance .heading__title {
        font-size: 30px;
    }
}

/*--------------------------
      Landing
--------------------------*/
.landing-wrapper .header-transparent .module__btn-contact {
    width: 152px;
    height: 40px;
    line-height: 38px;
}

.landing-wrapper .navbar .nav__item .nav__item-link:before {
    display: none;
}

.header-transparent + .landing-hero {
    margin-top: -100px;
}

.landing-wrapper > section {
    position: relative;
    z-index: 2;
}

/* landing Hero */
.landing-hero {
    padding: 223px 0;
}

.landing-hero .heading__shape {
    margin-bottom: 14px;
}

.landing__hero-title {
    font-size: 70px;
    color: #ffffff;
    margin-bottom: 26px;
}

.landing__hero-desc {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
}

.landing-portfolio .portfolio-item {
    margin-bottom: 50px;
}

.landing-portfolio .portfolio__item-img {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
    margin-bottom: 24px;
}

.landing-portfolio .portfolio__item-img img {
    width: 100%;
}

.landing-portfolio .portfolio-item:hover .portfolio__item-img {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.landing-portfolio .portfolio-item .portfolio__item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio__item-title {
    color: #f9a03f;
}

.landing-wrapper .fancybox-item {
    margin-bottom: 30px;
    padding-top: 10px;
}

.landing-wrapper .carousel-arrows .owl-dots {
    bottom: 0;
}

/*  landing carousel */
.landing-carousel .owl-item {
    padding: 30px;
}

.landing-carousel .owl-item .slide-item {
    box-shadow: 0px 1px 23px 0px rgba(40, 40, 40, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.landing-carousel .carousel-arrows .owl-nav .owl-prev {
    left: 23%;
}

.landing-carousel .carousel-arrows .owl-nav .owl-next {
    right: 23%;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .landing-hero {
        padding: 100px 0;
    }

    .header-transparent + .landing-hero {
        margin-top: 0;
    }

    .landing__hero-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .landing-carousel .owl-item {
        padding: 30px 50px;
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-prev {
        left: 0;
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-next {
        right: 0;
    }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .landing-hero {
        padding: 120px 0;
    }

    .header-transparent + .landing-hero {
        margin-top: 0;
    }

    .landing__hero-title {
        font-size: 40px;
    }

    .landing-carousel .owl-item {
        padding: 30px 50px;
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-prev {
        left: 0;
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-next {
        right: 0;
    }
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
    .landing-carousel .owl-item {
        padding: 20px 30px;
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-prev,
    .landing-carousel .carousel-arrows .owl-nav .owl-next {
        top: 100%;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-prev {
        left: 33%;
    }

    .landing-carousel .carousel-arrows .owl-nav .owl-next {
        right: 33%;
    }
}
@media (max-width: 992px) {
    .navbar a.navbar-brand {
        display: block !important;
    }
    .navbar-brand img {
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .cta__title {
        font-size: 35px !important;
    }
    .heading__title {
        font-size: 28px !important;
    }
}
