    /**
* Template Name: Dewi - v2.1.0
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
    /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
    
    body {
        font-family: "Open Sans", sans-serif;
        color: #444444;
    }
    
    a {
        color: #ff4a17;
    }
    
    a:hover {
        color: #ff724a;
        text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Raleway", sans-serif;
    }
    /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
    
    .back-to-top {
        position: fixed;
        display: none;
        right: 15px;
        bottom: 15px;
        z-index: 99999;
    }
    
    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #ff4a17;
        color: #fff;
        transition: all 0.4s;
    }
    
    .back-to-top i:hover {
        background: #ff5e31;
        color: #fff;
    }
    /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
    
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: #fff;
    }
    
    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ff4a17;
        border-top-color: #ffe9e3;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }
    
    @-webkit-keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
    
    @media screen and (max-width: 768px) {
        [data-aos-delay] {
            transition-delay: 0 !important;
        }
    }
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    
    #header {
        transition: all 0.5s;
        z-index: 997;
        padding: 20px 0;
    }
    
    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgb(56 67 75);
        padding: 12px 0;
    }
    
    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
    }
    
    #header .logo a {
        color: #fff;
    }
    
    #header .logo img {
        max-height: 40px;
    }
    
    @media (max-width: 992px) {
        #header {
            padding: 12px 0;
        }
    }
    /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
    /* Desktop Navigation */
    
    .nav-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-menu>ul {
        display: flex;
    }
    
    .nav-menu>ul>li {
        position: relative;
        white-space: nowrap;
        padding: 10px 12px;
    }
    
    .nav-menu a {
        display: block;
        position: relative;
        color: rgba(255, 255, 255, 0.9);
        transition: 0.3s;
        font-size: 14px;
        font-family: "Open Sans", sans-serif;
        /* text-transform: uppercase; */
        font-weight: 600;
        padding: 0 3px;
    }
    
    .nav-menu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #ff4a17;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    
    .nav-menu a:hover:before,
    .nav-menu li:hover>a:before,
    .nav-menu .active>a:before {
        visibility: visible;
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu .active>a,
    .nav-menu li:hover>a {
        color: #fff;
    }
    
    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        left: 12px;
        top: calc(100% + 30px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }
    
    .nav-menu .drop-down:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    
    .nav-menu .drop-down li {
        min-width: 180px;
        position: relative;
    }
    
    .nav-menu .drop-down ul a {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: #15222b;
    }
    
    .nav-menu .drop-down ul a:hover,
    .nav-menu .drop-down ul .active>a,
    .nav-menu .drop-down ul li:hover>a {
        color: #ff4a17;
    }
    
    .nav-menu .drop-down>a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 5px;
    }
    
    .nav-menu .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }
    
    .nav-menu .drop-down .drop-down:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }
    
    .nav-menu .drop-down .drop-down>a {
        padding-right: 35px;
    }
    
    .nav-menu .drop-down .drop-down>a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }
    
    @media (max-width: 1366px) {
        .nav-menu .drop-down .drop-down ul {
            left: -90%;
        }
        .nav-menu .drop-down .drop-down:hover>ul {
            left: -100%;
        }
        .nav-menu .drop-down .drop-down>a:after {
            content: "\ea9d";
        }
    }
    /* Get Startet Button */
    
    .get-started-btn {
        margin-left: 25px;
        color: #fff;
        border-radius: 4px;
        padding: 8px 25px;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 14px;
        display: inline-block;
        border: 2px solid #fff;
    }
    
    .get-started-btn:hover {
        background: #fd3800;
        color: #fff;
        border-color: #ff4a17;
    }
    
    @media (max-width: 768px) {
        .get-started-btn {
            margin: 0 48px 0 0;
            padding: 6px 18px;
        }
    }
    /* Mobile Navigation */
    
    .mobile-nav-toggle {
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 9998;
        border: 0;
        background: none;
        font-size: 24px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
        text-align: right;
    }
    
    .mobile-nav-toggle i {
        color: #fff;
    }
    
    .mobile-nav {
        position: fixed;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        z-index: 9999;
        overflow-y: auto;
        background: #fff;
        transition: ease-in-out 0.2s;
        opacity: 0;
        visibility: hidden;
        border-radius: 10px;
        padding: 10px 0;
    }
    
    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .mobile-nav a {
        display: block;
        position: relative;
        color: #15222b;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }
    
    .mobile-nav a:hover,
    .mobile-nav .active>a,
    .mobile-nav li:hover>a {
        color: #ff4a17;
        text-decoration: none;
    }
    
    .mobile-nav .drop-down>a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }
    
    .mobile-nav .active.drop-down>a:after {
        content: "\eaa1";
    }
    
    .mobile-nav .drop-down>a {
        padding-right: 35px;
    }
    
    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }
    
    .mobile-nav .drop-down li {
        padding-left: 20px;
    }
    
    .mobile-nav-overly {
        width: 100%;
        height: 100%;
        z-index: 9997;
        top: 0;
        left: 0;
        position: fixed;
        background: rgba(4, 7, 9, 0.6);
        overflow: hidden;
        display: none;
        transition: ease-in-out 0.2s;
    }
    
    .mobile-nav-active {
        overflow: hidden;
    }
    
    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }
    /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
    
    #hero {
        width: 100%;
        height: 100vh;
        background: url("../img/hero-bg.jpg") top center;
        background-size: cover;
        position: relative;
        padding: 0;
    }
    
    #hero:before {
        content: "";
        background: rgba(13, 20, 26, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    
    #hero .hero-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    
    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        /* text-transform: uppercase; */
        color: #fff;
    }
    
    #hero h2 {
        color: #eee;
        margin-bottom: 50px;
        font-size: 24px;
    }
    
    .btn-get-started {
        font-family: "Open Sans", sans-serif;
        /* text-transform: uppercase; */
        font-weight: 500;
        font-size: 14px;
        display: inline-block;
        padding: 10px 35px 10px 35px;
        border-radius: 4px;
        transition: 0.5s;
        color: #fff;
        background: #ff4a17;
        border: 2px solid #ff4a17;
    }
    
    .btn-get-started:hover {
        border-color: #e1e1e1;
        background: rgba(255, 255, 255, 0.1);
    }
    
    #hero .btn-watch-video {
        font-size: 16px;
        display: inline-block;
        padding: 10px 25px 8px 40px;
        transition: 0.5s;
        margin-left: 25px;
        color: #fff;
        position: relative;
    }
    
    #hero .btn-watch-video i {
        color: #fff;
        font-size: 32px;
        position: absolute;
        left: 0;
        top: 7px;
        transition: 0.3s;
    }
    
    #hero .btn-watch-video:hover i {
        color: #ff4a17;
    }
    
    @media (min-width: 1024px) {
        #hero {
            background-attachment: fixed;
        }
    }
    
    @media (max-width: 768px) {
        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }
        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }
    }
    /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
    
    section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .section-bg {
        background-color: #f0f4f8;
    }
    
    .section-title {
        padding-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        /* text-transform: uppercase; */
        color: #5c8eb0;
        font-family: "Poppins", sans-serif;
    }
    
    .section-title h2::after {
        content: "";
        width: 120px;
        height: 1px;
        display: inline-block;
        background: #ff8664;
        margin: 4px 10px;
    }
    
    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 26px;
        /* font-weight: 700; */
        /* text-transform: uppercase; */
        font-family: "Poppins", sans-serif;
        color: #263d4d;
    }
    
    .testimonials .section-title p,
    .testimonials .section-title h2 {
        color: #fff;
    }
    /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
    
    .about .container {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding-bottom: 15px;
    }
    
    .about .count-box {
        padding: 60px 0;
        width: 100%;
    }
    
    .about .count-box i {
        display: block;
        font-size: 48px;
        color: #a1bdd1;
        float: left;
    }
    
    .about .count-box span {
        font-size: 28px;
        line-height: 25px;
        display: block;
        font-weight: 700;
        color: #365870;
        margin-left: 60px;
    }
    
    .about .count-box p {
        padding: 5px 0 0 0;
        margin: 0 0 0 60px;
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #2e4b5e;
    }
    
    .about .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #2e4b5e;
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        transition: ease-in-out 0.3s;
    }
    
    .about .count-box a:hover {
        color: #477392;
    }
    
    .about .content {
        font-size: 15px;
    }
    
    .about .content h3 {
        font-weight: 700;
        font-size: 24px;
        color: #263d4d;
    }
    
    .about .content ul {
        list-style: none;
        padding: 0;
    }
    
    .about .content ul li {
        padding-bottom: 10px;
        padding-left: 28px;
        position: relative;
    }
    
    .about .content ul i {
        font-size: 24px;
        color: #ff4a17;
        position: absolute;
        left: 0;
        top: -2px;
    }
    
    .about .content p:last-child {
        margin-bottom: 0;
    }
    
    .about .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#ff4a17 50%, rgba(255, 74, 23, 0.4) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }
    
    .about .play-btn::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    .about .play-btn::before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation: pulsate-btn 2s;
        animation: pulsate-btn 2s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: steps;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(255, 74, 23, 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }
    
    .about .play-btn:hover::after {
        border-left: 15px solid #ff4a17;
        transform: scale(20);
    }
    
    .about .play-btn:hover::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        -webkit-animation: none;
        animation: none;
        border-radius: 0;
    }
    
    @-webkit-keyframes pulsate-btn {
        0% {
            transform: scale(0.6, 0.6);
            opacity: 1;
        }
        100% {
            transform: scale(1, 1);
            opacity: 0;
        }
    }
    
    @keyframes pulsate-btn {
        0% {
            transform: scale(0.6, 0.6);
            opacity: 1;
        }
        100% {
            transform: scale(1, 1);
            opacity: 0;
        }
    }
    /*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
    
    .about-boxes {
        background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
        background-size: cover;
        padding: 60px 0 30px 0;
        position: relative;
    }
    
    .about-boxes::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        z-index: 9;
    }
    
    .about-boxes .container,
    .about-boxes .container-fluid {
        position: relative;
        z-index: 10;
    }
    
    .about-boxes .card {
        border-radius: 3px;
        border: 0;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .about-boxes .card-icon {
        text-align: center;
        margin-top: -32px;
    }
    
    .about-boxes .card-icon i {
        font-size: 32px;
        color: #fff;
        width: 64px;
        height: 64px;
        padding-top: 5px;
        text-align: center;
        background-color: #ff4a17;
        border-radius: 4px;
        text-align: center;
        border: 4px solid #fff;
        transition: 0.3s;
        display: inline-block;
    }
    
    .about-boxes .card-body {
        padding-top: 12px;
    }
    
    .about-boxes .card-title {
        /* font-weight: 700;
        text-align: center; */
    }
    
    .about-boxes .card-title a {
        color: #15222b;
    }
    
    .about-boxes .card-title a:hover {
        color: #ff4a17;
    }
    
    .about-boxes .card-text {
        color: #5e5e5e;
    }
    
    .about-boxes .card:hover .card-icon i {
        background: #fff;
        color: #ff4a17;
    }
    
    @media (max-width: 1024px) {
        .about-boxes {
            background-attachment: scroll;
        }
    }
    /*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
    
    .clients {
        background: #f0f4f8;
        padding: 15px 0;
        text-align: center;
    }
    
    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        -webkit-filter: grayscale(100);
        filter: grayscale(100);
    }
    
    .clients img:hover {
        -webkit-filter: none;
        filter: none;
        transform: scale(1.15);
    }
    
    @media (max-width: 768px) {
        .clients img {
            max-width: 40%;
        }
    }
    /*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
    
    .features .nav-tabs {
        border: 0;
    }
    
    .features .nav-link {
        border: 1px solid #b5ccdb;
        padding: 15px;
        transition: 0.3s;
        color: #15222b;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .features .nav-link i {
        padding-right: 15px;
        font-size: 48px;
    }
    
    .features .nav-link h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }
    
    .features .nav-link:hover {
        color: #ff4a17;
    }
    
    .features .nav-link.active {
        background: #ff4a17;
        color: #fff;
        border-color: #ff4a17;
    }
    
    @media (max-width: 768px) {
        .features .nav-link i {
            padding: 0;
            line-height: 1;
            font-size: 36px;
        }
    }
    
    @media (max-width: 575px) {
        .features .nav-link {
            padding: 15px;
        }
        .features .nav-link i {
            font-size: 24px;
        }
    }
    
    .features .tab-content {
        margin-top: 30px;
    }
    
    .features .tab-pane h3 {
        font-weight: 600;
        font-size: 26px;
    }
    
    .features .tab-pane ul {
        list-style: none;
        padding: 0;
    }
    
    .features .tab-pane ul li {
        padding-bottom: 10px;
    }
    
    .features .tab-pane ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #ff4a17;
    }
    
    .features .tab-pane p:last-child {
        margin-bottom: 0;
    }
    /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
    
    .services .icon-box {
        margin-bottom: 20px;
        padding: 30px;
        border-radius: 6px;
        background: #fff;
    }
    
    .services .icon-box i {
        float: left;
        color: #5c8eb0;
        font-size: 40px;
    }
    
    .services .icon-box h4 {
        margin-left: 70px;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .services .icon-box h4 a {
        color: #365870;
        transition: 0.3s;
    }
    
    .services .icon-box .icon-box:hover h4 a {
        color: #ff4a17;
    }
    
    .services .icon-box p {
        margin-left: 70px;
        line-height: 24px;
        font-size: 14px;
    }
    
    .services .icon-box:hover h4 a {
        color: #ff4a17;
    }
    /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
    
    .testimonials {
        padding: 80px 0;
        /* background: url("../img/testimonials-bg.jpg") no-repeat; */
        background-position: center center;
        background-size: cover;
        position: relative;
    }
    
    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(13, 20, 26, 0.7);
    }
    
    .testimonials .section-header {
        margin-bottom: 40px;
    }
    
    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }
    
    .testimonials .testimonial-item .testimonial-img {
        width: 100px;
        border-radius: 50%;
        border: 6px solid rgba(255, 255, 255, 0.15);
        margin: 0 auto;
    }
    
    .testimonials .testimonial-item h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #fff;
    }
    
    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #ddd;
        margin: 0 0 15px 0;
    }
    
    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: rgba(255, 255, 255, 0.4);
        font-size: 26px;
    }
    
    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }
    
    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }
    
    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
        color: #eee;
    }
    
    .testimonials .owl-nav,
    .testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }
    
    .testimonials .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4) !important;
    }
    
    .testimonials .owl-dot.active {
        background-color: #ff4a17 !important;
    }
    
    @media (min-width: 1024px) {
        .testimonials {
            background-attachment: fixed;
        }
    }
    
    @media (min-width: 992px) {
        .testimonials .testimonial-item p {
            width: 80%;
        }
    }
    /*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
    
    .portfolio #portfolio-flters {
        padding: 0;
        margin: 0 auto 25px auto;
        list-style: none;
        text-align: center;
        border-radius: 50px;
    }
    
    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        color: #444444;
        margin: 0 3px 10px 3px;
        transition: all ease-in-out 0.3s;
        background: #e5edf3;
        border-radius: 4px;
    }
    
    .portfolio #portfolio-flters li:hover,
    .portfolio #portfolio-flters li.filter-active {
        color: #fff;
        background: #ff4a17;
    }
    
    .portfolio #portfolio-flters li:last-child {
        margin-right: 0;
    }
    
    .portfolio .portfolio-item {
        margin-bottom: 30px;
        overflow: hidden;
    }
    
    .portfolio .portfolio-item img {
        position: relative;
        top: 0;
        transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
        border: 1px solid #e6edf4;
    }
    
    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: -50px;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: #ff4a17;
        padding: 15px 20px;
    }
    
    .portfolio .portfolio-item .portfolio-info h4 {
        font-size: 18px;
        color: #fff;
        font-weight: 600;
    }
    
    .portfolio .portfolio-item .portfolio-info p {
        color: #fff;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .portfolio .portfolio-item .portfolio-info .preview-link,
    .portfolio .portfolio-item .portfolio-info .details-link {
        position: absolute;
        right: 50px;
        font-size: 24px;
        top: calc(50% - 18px);
        color: white;
        transition: ease-in-out 0.3s;
    }
    
    .portfolio .portfolio-item .portfolio-info .preview-link:hover,
    .portfolio .portfolio-item .portfolio-info .details-link:hover {
        color: #ffc1b0;
    }
    
    .portfolio .portfolio-item .portfolio-info .details-link {
        right: 15px;
    }
    
    .portfolio .portfolio-item:hover img {
        top: -30px;
    }
    
    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 0;
    }
    /*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
    
    .team {
        position: relative;
    }
    
    .team .container {
        position: relative;
        z-index: 10;
    }
    
    .team .member {
        margin-bottom: 80px;
        position: relative;
    }
    
    .team .member .pic {
        overflow: hidden;
    }
    
    .team .member .member-info {
        position: absolute;
        bottom: -50px;
        left: 20px;
        right: 20px;
        background: #fff;
        padding: 20px 15px;
        color: #15222b;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: 0.5s;
    }
    
    .team .member h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 16px;
        color: #15222b;
        position: relative;
        padding-bottom: 10px;
    }
    
    .team .member h4::after {
        content: '';
        position: absolute;
        display: block;
        width: 50px;
        height: 1px;
        background: #7fa5c0;
        bottom: 0;
        left: 0;
    }
    
    .team .member span {
        font-style: italic;
        display: block;
        font-size: 13px;
    }
    
    .team .member .social {
        position: absolute;
        right: 15px;
        bottom: 15px;
    }
    
    .team .member .social a {
        transition: color 0.3s;
        color: #477392;
    }
    
    .team .member .social a:hover {
        color: #ff4a17;
    }
    
    .team .member .social i {
        font-size: 16px;
        margin: 0 2px;
    }
    
    @media (max-width: 992px) {
        .team .member {
            margin-bottom: 110px;
        }
    }
    /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
    
    .contact .info-box {
        color: #444444;
        text-align: center;
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 20px 0 30px 0;
    }
    
    .contact .info-box i {
        font-size: 32px;
        color: #ff4a17;
        border-radius: 50%;
        padding: 8px;
    }
    
    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }
    
    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .contact .php-email-form {
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 30px;
    }
    
    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }
    
    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    .contact .php-email-form .error-message br+br {
        margin-top: 25px;
    }
    
    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }
    
    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }
    
    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }
    
    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #ff4a17;
    }
    
    .contact .php-email-form input {
        padding: 20px 15px;
    }
    
    .contact .php-email-form textarea {
        padding: 12px 15px;
    }
    
    .contact .php-email-form button[type="submit"] {
        background: #ff4a17;
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }
    
    .contact .php-email-form button[type="submit"]:hover {
        background: #ff5e31;
    }
    
    @-webkit-keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    /*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
    
    .breadcrumbs {
        padding: 15px 0;
        background: #f0f4f8;
        min-height: 40px;
        margin-top: 66px;
    }
    
    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 400;
    }
    
    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .breadcrumbs ol li+li {
        padding-left: 10px;
    }
    
    .breadcrumbs ol li+li::before {
        display: inline-block;
        padding-right: 10px;
        color: #263d4d;
        content: "/";
    }
    
    @media (max-width: 992px) {
        .breadcrumbs {
            margin-top: 58px;
        }
        .breadcrumbs .d-flex {
            display: block !important;
        }
        .breadcrumbs ol {
            display: block;
        }
        .breadcrumbs ol li {
            display: inline-block;
        }
    }
    /*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
    
    .portfolio-details {
        padding-top: 40px;
    }
    
    .portfolio-details .portfolio-details-container {
        position: relative;
    }
    
    .portfolio-details .portfolio-details-carousel {
        position: relative;
        z-index: 1;
    }
    
    .portfolio-details .portfolio-details-carousel .owl-nav,
    .portfolio-details .portfolio-details-carousel .owl-dots {
        margin-top: 5px;
        text-align: left;
    }
    
    .portfolio-details .portfolio-details-carousel .owl-dot {
        display: inline-block;
        margin: 0 10px 0 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd !important;
    }
    
    .portfolio-details .portfolio-details-carousel .owl-dot.active {
        background-color: #ff4a17 !important;
    }
    
    .portfolio-details .portfolio-info {
        padding: 30px;
        position: absolute;
        right: 0;
        bottom: -70px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }
    
    .portfolio-details .portfolio-info h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .portfolio-details .portfolio-info ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }
    
    .portfolio-details .portfolio-info ul li+li {
        margin-top: 10px;
    }
    
    .portfolio-details .portfolio-description {
        padding-top: 50px;
    }
    
    .portfolio-details .portfolio-description h2 {
        width: 50%;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .portfolio-details .portfolio-description p {
        padding: 0 0 0 0;
    }
    
    @media (max-width: 768px) {
        .portfolio-details .portfolio-info {
            position: static;
            margin-top: 30px;
        }
    }
    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    
    #footer {
        background: #121d24;
        padding: 0 0 30px 0;
        color: #fff;
        font-size: 14px;
    }
    
    #footer .footer-top {
        background: #15222b;
        border-bottom: 1px solid #1d303c;
        padding: 60px 0 30px 0;
    }
    
    #footer .footer-top .footer-info {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-info h3 {
        font-size: 28px;
        margin: 0 0 15px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700;
    }
    
    #footer .footer-top .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "Raleway", sans-serif;
        color: #fff;
    }
    
    #footer .footer-top .social-links a {
        font-size: 18px;
        display: inline-block;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }
    
    #footer .footer-top .social-links a:hover {
        background: #ff4a17;
        color: #fff;
        text-decoration: none;
    }
    
    #footer .footer-top h4 {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding-bottom: 12px;
    }
    
    #footer .footer-top .footer-links {
        margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    #footer .footer-top .footer-links ul i {
        padding-right: 2px;
        color: #ff5e31;
        font-size: 18px;
        line-height: 1;
    }
    
    #footer .footer-top .footer-links ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }
    
    #footer .footer-top .footer-links ul li:first-child {
        padding-top: 0;
    }
    
    #footer .footer-top .footer-links ul a {
        color: #fff;
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
    }
    
    #footer .footer-top .footer-links ul a:hover {
        color: #ff4a17;
    }
    
    #footer .footer-top .footer-newsletter form {
        margin-top: 30px;
        background: #fff;
        padding: 6px 10px;
        position: relative;
        border-radius: 4px;
    }
    
    #footer .footer-top .footer-newsletter form input[type="email"] {
        border: 0;
        padding: 4px;
        width: calc(100% - 110px);
    }
    
    #footer .footer-top .footer-newsletter form input[type="submit"] {
        position: absolute;
        top: 0;
        right: -2px;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px;
        background: #ff4a17;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
    }
    
    #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
        background: #ff5e31;
    }
    
    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }
    
    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }
    
    #footer .credits a {
        transition: 0.3s;
    }
    /*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
    
    .pricing .box {
        padding: 20px;
        background: #fff;
        text-align: center;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }
    
    .pricing .box h3 {
        font-weight: 400;
        padding: 15px;
        font-size: 18px;
        /* text-transform: uppercase; */
        font-weight: 600;
    }
    
    .pricing .box h4 {
        font-size: 42px;
        font-weight: 500;
        font-family: "Open Sans", sans-serif;
        margin-bottom: 20px;
    }
    
    .pricing .box h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }
    
    .pricing .box h4 span {
        font-size: 16px;
        font-weight: 300;
    }
    
    .pricing .box ul {
        padding: 0;
        list-style: none;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }
    
    .pricing .box ul li {
        padding-bottom: 16px;
    }
    
    .pricing .box ul i {
        color: #ff4a17;
        font-size: 18px;
        padding-right: 4px;
    }
    
    .pricing .box ul .na {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: line-through;
    }
    
    .pricing .box .btn-wrap {
        padding: 15px;
        text-align: center;
    }
    
    .pricing .box .btn-buy {
        display: inline-block;
        padding: 10px 40px 12px 40px;
        border-radius: 4px;
        color: #333;
        transition: none;
        font-size: 14px;
        font-weight: 400;
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        transition: 0.3s;
        border: 2px solid rgba(161, 161, 161, 0.3);
    }
    
    .pricing .box .btn-buy:hover {
        border-color: rgb(184, 184, 184);
    }
    
    .pricing .featured {
        background: #ff4a17;
        color: #fff;
    }
    
    .pricing .featured .btn-buy {
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #fff;
    }
    
    .pricing .featured .btn-buy:hover {
        border-color: #fff;
    }
    /*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
    
    .faq .faq-list {
        padding: 0;
        list-style: none;
    }
    
    .faq .faq-list li {
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: #ff4a17;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        padding-right: 25px;
    }
    
    .faq .faq-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }
    
    .faq .faq-list p {
        margin-bottom: 0;
        padding: 20px 0 0 0;
    }
    
    .faq .faq-list .icon-show {
        display: none;
    }
    
    .faq .faq-list a.collapsed {
        color: #343a40;
    }
    
    .faq .faq-list a.collapsed:hover {
        color: #ff4a17;
    }
    
    .faq .faq-list a.collapsed .icon-show {
        display: inline-block;
    }
    
    .faq .faq-list a.collapsed .icon-close {
        display: none;
    }
    /* Blog */
    
    .blog {
        padding: 40px 0 20px 0;
    }
    
    .blog .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .entry .entry-img {
        max-height: 400px;
        margin: -30px -30px 20px -30px;
        overflow: hidden;
    }
    
    .blog .entry .entry-title {
        font-size: 28px;
        font-weight: bold;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .blog .entry .entry-title a {
        color: #111111;
        transition: 0.3s;
    }
    
    .blog .entry .entry-title a:hover {
        color: #ff4a17;
    }
    
    .blog .entry .entry-meta {
        margin-bottom: 15px;
        color: #777777;
    }
    
    .blog .entry .entry-meta ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .blog .entry .entry-meta ul li+li {
        padding-left: 20px;
    }
    
    .blog .entry .entry-meta i {
        font-size: 14px;
        padding-right: 4px;
    }
    
    .blog .entry .entry-meta a {
        color: #5e5e5e;
        font-size: 14px;
        display: inline-block;
        line-height: 1;
    }
    
    .blog .entry .entry-content p {
        line-height: 24px;
    }
    
    .blog .entry .entry-content .read-more {
        -moz-text-align-last: right;
        text-align-last: right;
    }
    
    .blog .entry .entry-content .read-more a {
        display: inline-block;
        background: #ff4a17;
        color: #fff;
        padding: 6px 20px;
        transition: 0.3s;
        font-size: 14px;
    }
    
    .blog .entry .entry-content .read-more a:hover {
        background: #e65d5f;
    }
    
    .blog .entry .entry-content h3 {
        font-size: 22px;
        margin-top: 30px;
        font-weight: bold;
    }
    
    .blog .entry .entry-content blockquote {
        overflow: hidden;
        background-color: #fafafa;
        padding: 60px;
        position: relative;
        text-align: center;
        margin: 20px 0;
    }
    
    .blog .entry .entry-content blockquote p {
        color: #444444;
        line-height: 1.6;
        margin-bottom: 0;
        font-style: italic;
        font-weight: 500;
        font-size: 22px;
    }
    
    .blog .entry .entry-content blockquote .quote-left {
        position: absolute;
        left: 20px;
        top: 20px;
        font-size: 36px;
        color: #e7e7e7;
    }
    
    .blog .entry .entry-content blockquote .quote-right {
        position: absolute;
        right: 20px;
        bottom: 20px;
        font-size: 36px;
        color: #e7e7e7;
    }
    
    .blog .entry .entry-content blockquote::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: #111111;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .blog .entry .entry-footer {
        padding-top: 10px;
        border-top: 1px solid #e6e6e6;
    }
    
    .blog .entry .entry-footer i {
        color: #5e5e5e;
        display: inline;
    }
    
    .blog .entry .entry-footer a {
        color: #8b8b8b;
        transition: 0.3s;
    }
    
    .blog .entry .entry-footer a:hover {
        color: #ff4a17;
    }
    
    .blog .entry .entry-footer .cats {
        list-style: none;
        display: inline;
        padding: 0 20px 0 0;
        font-size: 14px;
    }
    
    .blog .entry .entry-footer .cats li {
        display: inline-block;
    }
    
    .blog .entry .entry-footer .tags {
        list-style: none;
        display: inline;
        padding: 0;
        font-size: 14px;
    }
    
    .blog .entry .entry-footer .tags li {
        display: inline-block;
    }
    
    .blog .entry .entry-footer .tags li+li::before {
        padding-right: 6px;
        color: #6c757d;
        content: ",";
    }
    
    .blog .entry .entry-footer .share {
        font-size: 16px;
    }
    
    .blog .entry .entry-footer .share i {
        padding-left: 5px;
    }
    
    .blog .entry-single {
        margin-bottom: 30px;
    }
    
    .blog .blog-author {
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .blog-author img {
        width: 120px;
    }
    
    .blog .blog-author h4 {
        margin-left: 140px;
        font-weight: 600;
        font-size: 22px;
        margin-bottom: 0px;
        padding: 0;
    }
    
    .blog .blog-author .social-links {
        margin: 0 0 5px 140px;
    }
    
    .blog .blog-author .social-links a {
        color: #777777;
    }
    
    .blog .blog-author p {
        margin-left: 140px;
        font-style: italic;
        color: #b7b7b7;
    }
    
    .blog .blog-comments {
        margin-bottom: 30px;
    }
    
    .blog .blog-comments .comments-count {
        font-weight: bold;
    }
    
    .blog .blog-comments .comment {
        margin-top: 30px;
        position: relative;
    }
    
    .blog .blog-comments .comment .comment-img {
        width: 50px;
    }
    
    .blog .blog-comments .comment h5 {
        margin-left: 65px;
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .blog .blog-comments .comment h5 a {
        font-weight: bold;
        color: #444444;
        transition: 0.3s;
    }
    
    .blog .blog-comments .comment h5 a:hover {
        color: #ff4a17;
    }
    
    .blog .blog-comments .comment h5 .reply {
        padding-left: 10px;
        color: #111111;
    }
    
    .blog .blog-comments .comment time {
        margin-left: 65px;
        display: block;
        font-size: 14px;
        color: #777777;
        margin-bottom: 5px;
    }
    
    .blog .blog-comments .comment p {
        margin-left: 65px;
    }
    
    .blog .blog-comments .comment.comment-reply {
        padding-left: 40px;
    }
    
    .blog .blog-comments .reply-form {
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .blog-comments .reply-form h4 {
        font-weight: bold;
        font-size: 22px;
    }
    
    .blog .blog-comments .reply-form p {
        font-size: 14px;
    }
    
    .blog .blog-comments .reply-form input {
        border-radius: 4px;
        padding: 20px 10px;
        font-size: 14px;
    }
    
    .blog .blog-comments .reply-form input:focus {
        box-shadow: none;
        border-color: #ee9293;
    }
    
    .blog .blog-comments .reply-form textarea {
        border-radius: 4px0;
        padding: 10px 10px;
        font-size: 14px;
    }
    
    .blog .blog-comments .reply-form textarea:focus {
        box-shadow: none;
        border-color: #ee9293;
    }
    
    .blog .blog-comments .reply-form .form-group {
        margin-bottom: 25px;
    }
    
    .blog .blog-comments .reply-form .btn-primary {
        border-radius: 4px;
        padding: 8px 20px;
        border: 0;
        background-color: #111111;
    }
    
    .blog .blog-comments .reply-form .btn-primary:hover {
        background-color: #ff4a17;
    }
    
    .blog .blog-pagination {
        color: #444444;
    }
    
    .blog .blog-pagination ul {
        display: flex;
        padding-left: 0;
        list-style: none;
    }
    
    .blog .blog-pagination li {
        border: 1px solid white;
        margin: 0 5px;
        transition: 0.3s;
    }
    
    .blog .blog-pagination li.active {
        background: white;
    }
    
    .blog .blog-pagination li a {
        color: #aaaaaa;
        padding: 7px 16px;
        display: inline-block;
    }
    
    .blog .blog-pagination li.active,
    .blog .blog-pagination li:hover {
        background: #ff4a17;
        border: 1px solid #ff4a17;
    }
    
    .blog .blog-pagination li.active a,
    .blog .blog-pagination li:hover a {
        color: #fff;
    }
    
    .blog .blog-pagination li.disabled {
        background: #fff;
        border: 1px solid white;
    }
    
    .blog .blog-pagination li.disabled i {
        color: #f1f1f1;
        padding: 10px 16px;
        display: inline-block;
    }
    
    .blog .sidebar {
        padding: 30px;
        margin: 0 0 60px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .sidebar .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        padding: 0 0 0 0;
        margin: 0 0 15px 0;
        color: #111111;
        position: relative;
    }
    
    .blog .sidebar .sidebar-item {
        margin-bottom: 30px;
    }
    
    .blog .sidebar .search-form form {
        background: #fff;
        border: 1px solid #ddd;
        padding: 3px 10px;
        position: relative;
    }
    
    .blog .sidebar .search-form form input[type="text"] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px);
    }
    
    .blog .sidebar .search-form form button {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 15px;
        margin: -1px;
        background: #ff4a17;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
    }
    
    .blog .sidebar .search-form form button:hover {
        background: rgb(56 67 75);
    }
    
    .blog .sidebar .categories ul {
        list-style: none;
        padding: 0;
    }
    
    .blog .sidebar .categories ul li+li {
        padding-top: 10px;
    }
    
    .blog .sidebar .categories ul a {
        color: #515151;
    }
    
    .blog .sidebar .categories ul a:hover {
        color: #ff4a17;
    }
    
    .blog .sidebar .categories ul a span {
        padding-left: 5px;
        color: #777777;
        font-size: 14px;
    }
    
    .blog .sidebar .recent-posts .post-item+.post-item {
        margin-top: 15px;
    }
    
    .blog .sidebar .recent-posts img {
        width: 80px;
        float: left;
    }
    
    .blog .sidebar .recent-posts h4 {
        font-size: 15px;
        margin-left: 95px;
        font-weight: bold;
    }
    
    .blog .sidebar .recent-posts h4 a {
        color: black;
        transition: 0.3s;
    }
    
    .blog .sidebar .recent-posts h4 a:hover {
        color: #ff4a17;
    }
    
    .blog .sidebar .recent-posts time {
        display: block;
        margin-left: 95px;
        font-style: italic;
        font-size: 14px;
        color: #777777;
    }
    
    .blog .sidebar .tags {
        margin-bottom: -10px;
    }
    
    .blog .sidebar .tags ul {
        list-style: none;
        padding: 0;
    }
    
    .blog .sidebar .tags ul li {
        display: inline-block;
    }
    
    .blog .sidebar .tags ul a {
        color: #515151;
        font-size: 14px;
        padding: 6px 14px;
        margin: 0 6px 8px 0;
        border: 1px solid #c4c4c4;
        display: inline-block;
        transition: 0.3s;
    }
    
    .blog .sidebar .tags ul a:hover {
        color: #fff;
        border: 1px solid #111111;
        background: #111111;
    }
    
    .blog .sidebar .tags ul a span {
        padding-left: 5px;
        color: #aaaaaa;
        font-size: 14px;
    }
    /*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
    
    .shop-links {
        font-size: 0.9rem;
        color: #666;
        display: block;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .shop-links:hover {
        color: #ff4a17;
        ;
    }
    
    .shop-item {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .shop-item:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .shop-item .social a {
        padding-left: 15px;
        padding-right: 15px;
        width: auto!important;
    }
    
    .cat-span {
        background-color: rgb(56 67 75);
        color: #fff;
        padding: 10px 15px;
        border-radius: 50px;
        font-size: 14px;
    }
    
    .btn-buy-now {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 30px;
        color: #fff;
        background: #ff4a17;
        border: 2px solid #ff4a17;
    }
    
    .btn-buy-now:hover {
        background: transparent;
        border-color: rgb(56 67 75);
        color: rgb(56 67 75);
    }
    
    .item-image {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }
    
    .item-count {
        width: 60px;
        text-align: right;
        border: none;
        margin-right: 15px;
        font-weight: 600;
        background: rgb(56 67 75);
        color: #fff;
    }
    
    .qpm-block {
        background: rgb(56 67 75);
        padding: 5px;
        border-radius: 5px;
    }
    
    .qpm-block a {
        color: #fff;
    }
    
    .qpm-block a:hover {
        color: #e1e1e1;
    }
    
    .right-info-block {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        padding: 15px;
        border-radius: 5px;
    }
    
    .shop-tabs .nav-link i {
        padding-right: 15px;
        font-size: 20px;
    }
    
    .shop-invoice {
        background: #fff;
        position: relative;
    }
    
    .shop .member .member-info {
        position: absolute;
        bottom: -70px;
        left: 10px;
        right: 10px;
        background: #fff;
        padding: 10px;
        color: #15222b;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: 0.5s;
    }
    
    .shop .member .pic {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    @media print {
        header,
        .fixed-top,
        #footer,
        .breadcrumbs,
        .back-to-top,
        .no-print {
            display: none;
        }
    }
    /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
    
    #hero {
        width: 100%;
        height: 100vh;
        background-color: rgba(4, 12, 21, 0.8);
        overflow: hidden;
        position: relative;
    }
    
    #hero .carousel,
    #hero .carousel-inner,
    #hero .carousel-item,
    #hero .carousel-item::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }
    
    #hero .carousel-item {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }
    
    #hero .carousel-item::before {
        content: '';
        background-color: rgba(4, 12, 21, 0.5);
    }
    
    #hero .carousel-container {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 82px;
        left: 50px;
        right: 50px;
    }
    /* #hero h2 {
    color: #fff;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
} */
    
    #hero p {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        color: #fff;
        margin-top: 10px;
    }
    
    @media (min-width: 1200px) {
        #hero p {
            width: 50%;
        }
    }
    
    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        background-position: center top;
    }
    
    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-left,
    #hero .carousel-inner .active.carousel-item-right {
        opacity: 0;
    }
    
    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-left,
    #hero .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
        transition: 0.5s;
    }
    
    #hero .carousel-inner .carousel-item-next,
    #hero .carousel-inner .carousel-item-prev,
    #hero .carousel-inner .active.carousel-item-left,
    #hero .carousel-inner .active.carousel-item-right {
        left: 0;
        transform: translate3d(0, 0, 0);
    }
    
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 10%;
        top: 112px;
    }
    
    @media (max-width: 992px) {
        #hero .carousel-control-prev,
        #hero .carousel-control-next {
            top: 66px;
        }
    }
    
    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        background: none;
        font-size: 36px;
        line-height: 1;
        width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 10px;
        transition: 0.3s;
        color: rgba(255, 255, 255, 0.5);
    }
    
    #hero .carousel-control-next-icon:hover,
    #hero .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }
    
    #hero .carousel-indicators li {
        cursor: pointer;
        background: #fff;
        overflow: hidden;
        border: 0;
        width: 12px;
        height: 12px;
        border-radius: 50px;
        opacity: .6;
        transition: 0.3s;
    }
    
    #hero .carousel-indicators li.active {
        opacity: 1;
        background: #ed502e;
    }
    
    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        background: #ed502e;
        margin-top: 15px;
    }
    
    #hero .btn-get-started:hover {
        background: #ef6445;
    }
    
    @media (max-width: 992px) {
        #hero {
            height: 100vh;
        }
        #hero .carousel-container {
            text-align: center;
            top: 74px;
        }
    }
    /* @media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
} */
    
    @media (min-width: 1024px) {
        #hero .carousel-control-prev,
        #hero .carousel-control-next {
            width: 5%;
        }
    }
    
    @media (max-height: 500px) {
        #hero {
            height: 120vh;
        }
    }.shop-item {
    box-shadow: none;
    border: 1px solid #e9e8e8;
}

.shop .sidebar {
    box-shadow: none;
    background: #f5f5f5;
    padding: 30px;
    margin: 0;
    border: 1px solid #e9e8e8;
    border-radius: 5px;
}

.shop .sidebar .sidebar-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
}

.shop .sidebar .categories ul li ul {
    padding-left: 15px;
    padding-top: 10px;
    font-size: 0.80rem;
}

.shop .sidebar .categories ul li ul li+li {
    padding-top: 2px;
}

.shop .member .member-info h4 {
    float: left;
}

.shop .old_price {
    white-space: nowrap;
    text-decoration: line-through;
    font-weight: bold!important;
    color: #333!important;
    font-size: 15px;
    margin-left: 10px;
    float: left;
}

.shop .discount {
    position: absolute;
    top: -19px;
    right: 10px;
    background: url('/images/shop_discount.png') no-repeat center;
    color: #dd001e;
    width: 91px;
    height: 89px;
    line-height: 106px;
    text-align: center;
    text-shadow: 0 1px 0 #ba3434;
    font-weight: bold;
    font-size: 23px;
    padding-left: 30px;
    /* float: right;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background: #e03a3c;
    color: #fff;
    width: 70px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-top-right-radius: 5px;
    transition: ease-in-out 0.3s; */
}

.shop .discount_item {
    top: -18px;
    right: 30px;
}

.shop .shopping-cart {
    float: right;
    position: absolute;
    bottom: -1px;
    right: 0px;
    font-size: 20px;
    background: #e03a3c;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: ease-in-out 0.3s;
}

.shop .shopping-cart:hover {
    background: #111111;
}

.shop .spinner-border {
    display: block;
    margin: 0 auto;
}

.btn-buy-now,
.btn-add-to-bag {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    color: #fff;
}

.btn-add-to-bag {
    background: #e03a3c!important;
    border: 2px solid #e03a3c!important;
}

.btn-buy-now {
    background: #ffc600!important;
    border: 2px solid #ffc600!important;
}

.invoice-col {
    font-size: 0.9rem;
}

.shop .contact .php-email-form {
    box-shadow: none;
    border: none;
    padding: 0;
    border-radius: unset;
}

.ol-geocoder .gcd-gl-input {
    padding: 5px!important;
    font-size: .875em!important;
}

.shop .right-info-block {
    box-shadow: none;
}

.shop .item-image {
    box-shadow: none;
    border: 1px solid #e9e8e8;
}

.shop .item-image:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.my-bag-modal-body .spinner-border {
    display: block;
    margin: 0 auto!important;
}

.shop .bread-bag-div .bbd-ib {
    display: block;
    float: right;
    font-size: 1.5rem;
    margin-left: 15px;
}

.shop .bread-bag-div .bbd-kb {
    font-size: 1rem;
    text-decoration: underline;
}

.shop .bread-bag-div .bread-bag-indiv {
    display: block;
    float: right;
    font-size: 0.8rem;
    text-align: right;
}

.shop .member .member-info {
    padding: 10px 15px;
}

@media (max-width: 768px) {
    .breadcrumbs.shop ol {
        position: absolute;
        width: 1000px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        align-items: center;
    }
    .breadcrumbs.shop {
        padding: 10px 0;
    }
    .breadcrumbs.shop .overf {
        overflow-x: overlay;
        line-height: 32px;
    }
    .shop {
        padding: 20px 0 20px 0;
    }
}

.shop .bread-bag-div .bb-items-cur {
    font-weight: 600;
    color: #e03a3c;
}

.shop .item-count {
    width: 60px;
    text-align: right;
    margin-right: 10px;
    margin-left: 10px;
    font-weight: 600;
    float: left;
}

.shop .qpm-block a {
    color: #000;
    float: left;
    /* margin-top: 10px; */
}

.shop .qpm-block a {
    color: #000;
    float: left;
}

.shop .qpm-block {
    background: none;
    padding: 5px;
    border-radius: 5px;
    display: block;
    width: 122px;
    height: 50px;
    line-height: 40px;
    float: left;
}

.shop .qpm-block-label {
    float: left;
    line-height: 46px;
}

.shop .item-price {
    font-weight: 600;
    color: #e03a3c;
}

.shop .item-price span {
    white-space: nowrap;
    text-decoration: line-through;
    font-weight: bold!important;
    color: #333!important;
    font-size: 80%;
    margin-left: 10px;
}

.shop .item-price .saving {
    margin-top: 10px;
    color: #249041;
    font-size: 1.2rem;
}

.shop .total-amount {
    font-weight: 600;
    color: #e03a3c;
}

.shop .block-title:after {
    display: block;
    border-bottom: 2px solid #d21e51;
    content: "";
    width: 67px;
    margin-top: 5px;
}

.shop .s-add-info {
    font-size: 0.8rem;
    border: 1px solid #e9e8e8;
    border-radius: 5px;
    padding: 15px;
    background: #f5f5f5;
}

.shop .cbi-list b {
    color: #e03a3c;
}

.shop .dropdown .sidebar {
    padding: 10px;
}

.shop .sidebar .sidebar-item {
    margin-bottom: 0px;
}

.shop .sidebar .categories ul {
    margin-bottom: 0px;
}

.shop .shop-links {
    margin-bottom: 1px;
}

.shop .member .member-info span {
    margin-bottom: 10px;
}

.shop table.my-order td {
    font-size: 0.8rem;
}

.shop .my-order-item-desc .shop-links {
    font-size: 1.2rem;
    color: #666;
    display: block;
    line-height: 1.5;
    margin-bottom: 10px;
}

.shop .my-order-item-desc h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #e03a3c;
}

.shop .my-order-item-desc h4 span {
    display: contents;
}

.shop .my-order-item-desc span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.shop .my-order-item-block {
    clear: both;
    padding: 15px 10px;
    border-bottom: 1px solid #f9f6f6;
}

.shop .sortselector label {
    float: right;
    line-height: 40px;
    margin-right: 15px;
}

.shop .sortselector select {
    width: auto;
    float: right;
}

.shop .member .social a {
    height: auto;
    min-height: 36px;
    border-radius: 5px;
}.catalogue-item {
    box-shadow: none;
    border: 1px solid #e9e8e8;
}

.catalogue .sidebar {
    box-shadow: none;
    background: #f5f5f5;
    padding: 30px;
    margin: 0;
    border: 1px solid #e9e8e8;
    border-radius: 5px;
}

.catalogue .sidebar .sidebar-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
}

.catalogue .sidebar .categories ul li ul {
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.80rem;
    font-weight: normal;
}

.catalogue .sidebar .categories ul li ul li+li {
    padding-top: 2px;
}

.catalogue .member .member-info h4 {
    float: left;
}

.catalogue .old_price {
    white-space: nowrap;
    text-decoration: line-through;
    font-weight: bold!important;
    color: #333!important;
    font-size: 15px;
    margin-left: 10px;
    float: left;
}

.catalogue .discount {
    position: absolute;
    top: -19px;
    right: 10px;
    background: url('/images/shop_discount.png') no-repeat center;
    color: #dd001e;
    width: 91px;
    height: 89px;
    line-height: 106px;
    text-align: center;
    text-shadow: 0 1px 0 #ba3434;
    font-weight: bold;
    font-size: 23px;
    padding-left: 30px;
    /* float: right;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background: #e03a3c;
    color: #fff;
    width: 70px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-top-right-radius: 5px;
    transition: ease-in-out 0.3s; */
}

.catalogue .discount_item {
    top: -18px;
    right: 30px;
}

.catalogue .shopping-cart {
    float: right;
    position: absolute;
    bottom: -1px;
    right: 0px;
    font-size: 20px;
    background: #e03a3c;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: ease-in-out 0.3s;
}

.catalogue .shopping-cart:hover {
    background: #111111;
}

.catalogue .spinner-border {
    display: block;
    margin: 0 auto;
}

.btn-buy-now,
.btn-add-to-bag {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    color: #fff;
}

.btn-add-to-bag {
    background: #e03a3c!important;
    border: 2px solid #e03a3c!important;
}

.btn-buy-now {
    background: #ffc600!important;
    border: 2px solid #ffc600!important;
}

.invoice-col {
    font-size: 0.9rem;
}

.catalogue .contact .php-email-form {
    box-shadow: none;
    border: none;
    padding: 0;
    border-radius: unset;
}

.ol-geocoder .gcd-gl-input {
    padding: 5px!important;
    font-size: .875em!important;
}

.catalogue .right-info-block {
    box-shadow: none;
}

.catalogue .item-image {
    box-shadow: none;
    border: 1px solid #e9e8e8;
}

.catalogue .item-image:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.my-bag-modal-body .spinner-border {
    display: block;
    margin: 0 auto!important;
}

.catalogue .bread-bag-div .bbd-ib {
    display: block;
    float: right;
    font-size: 1.5rem;
    margin-left: 15px;
}

.catalogue .bread-bag-div .bbd-kb {
    font-size: 1rem;
    text-decoration: underline;
}

.catalogue .bread-bag-div .bread-bag-indiv {
    display: block;
    float: right;
    font-size: 0.8rem;
    text-align: right;
}

.catalogue .member .member-info {
    /* padding: 10px 15px; */
}

@media (max-width: 768px) {
    .breadcrumbs.catalogue ol {
        position: absolute;
        width: 1000px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        align-items: center;
    }
    .breadcrumbs.catalogue {
        padding: 10px 0;
    }
    .breadcrumbs.catalogue .overf {
        overflow-x: overlay;
        line-height: 32px;
    }
    .catalogue {
        padding: 20px 0 20px 0;
    }
}

.catalogue .bread-bag-div .bb-items-cur {
    font-weight: 600;
    color: #e03a3c;
}

.catalogue .item-count {
    width: 60px;
    text-align: right;
    margin-right: 10px;
    margin-left: 10px;
    font-weight: 600;
    float: left;
}

.catalogue .qpm-block a {
    color: #000;
    float: left;
    /* margin-top: 10px; */
}

.catalogue .qpm-block a {
    color: #000;
    float: left;
}

.catalogue .qpm-block {
    background: none;
    padding: 5px;
    border-radius: 5px;
    display: block;
    width: 122px;
    height: 50px;
    line-height: 40px;
    float: left;
}

.catalogue .qpm-block-label {
    float: left;
    line-height: 46px;
}

.catalogue .item-price {
    font-weight: 600;
    color: #e03a3c;
}

.catalogue .item-price span {
    white-space: nowrap;
    text-decoration: line-through;
    font-weight: bold!important;
    color: #333!important;
    font-size: 80%;
    margin-left: 10px;
}

.catalogue .item-price .saving {
    margin-top: 10px;
    color: #249041;
    font-size: 1.2rem;
}

.catalogue .total-amount {
    font-weight: 600;
    color: #e03a3c;
}

.catalogue .block-title:after {
    display: block;
    border-bottom: 2px solid #d21e51;
    content: "";
    width: 67px;
    margin-top: 5px;
}

.catalogue .s-add-info {
    font-size: 0.8rem;
    border: 1px solid #e9e8e8;
    border-radius: 5px;
    padding: 15px;
    background: #f5f5f5;
}

.catalogue .cbi-list b {
    color: #e03a3c;
}

.catalogue .dropdown .sidebar {
    padding: 10px;
}

.catalogue .sidebar .sidebar-item {
    margin-bottom: 0px;
}

.catalogue .sidebar .categories ul {
    margin-bottom: 0px;
    font-weight: 600;
}

.catalogue .catalogue-links {
    margin-bottom: 1px;
}

.catalogue .member {
    position: relative;
}

.catalogue .member .bottom-info {
    background: #2b2b2b;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 15px;
    font-size: .8rem;
    margin-left: -15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.catalogue table.my-order td {
    font-size: 0.8rem;
}

.catalogue .catalogue-links {
    font-size: 0.9rem;
    color: #666;
    display: block;
    line-height: 1.5;
    margin-bottom: 30px;
}

.catalogue .catalogue-links:hover {
    color: #e03a3c;
}

.catalogue .my-order-item-desc h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #e03a3c;
}

.catalogue .my-order-item-desc h4 span {
    display: contents;
}

.catalogue .my-order-item-desc span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.catalogue .my-order-item-block {
    clear: both;
    padding: 15px 10px;
    border-bottom: 1px solid #f9f6f6;
}

.catalogue .sortselector label {
    float: right;
    line-height: 40px;
    margin-right: 15px;
}

.catalogue .sortselector select {
    width: auto;
    float: right;
}

.catalogue .member .social a {
    height: auto;
    min-height: 36px;
    border-radius: 5px;
}

.catalogue .tabs .nav-link i {
    font-size: 20px;
}

.catalogue-tabs .nav-tabs {
    border-bottom: 1px solid #e03a3c!important;
}

.catalogue .scat {
    font-size: 0.9rem;
}