    /********** Template CSS **********/
    :root {
        --primary: #3CB815;
        --secondary: #F65005;
        --light: #F7F8FC;
        --dark: #111111;
    }

    body {
        font-family: "Raleway", sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000000;
        font-weight: 600;
        line-height: 1.2;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: "Raleway", sans-serif;
    }

    .back-to-top {
        position: fixed;
        display: none;
        right: 30px;
        bottom: 30px;
        z-index: 99;
    }

    .my-6 {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    .py-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .bg-icon {
        background: url(../img/bg-icon.png) center center repeat;
        background-size: contain;
    }


    /*** Spinner ***/
    #spinner {
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease-out, visibility 0s linear .5s;
        z-index: 99999;
    }

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


    /*** Button ***/
    .btn {
        font-weight: 500;
        transition: .5s;
    }

    .btn.btn-primary,
    .btn.btn-secondary,
    .btn.btn-outline-primary:hover,
    .btn.btn-outline-secondary:hover {
        color: #FFFFFF;
    }

    .btn-square {
        width: 38px;
        height: 38px;
    }

    .btn-sm-square {
        width: 32px;
        height: 32px;
    }

    .btn-lg-square {
        width: 48px;
        height: 48px;
    }

    .btn-square,
    .btn-sm-square,
    .btn-lg-square {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
    }


    /*** Navbar ***/
    .fixed-top {
        transition: .5s;
        box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    }

    .top-bar {
        height: 45px;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        background: #242424;
    }

    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 8px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 25px 15px;
        color: #555555;
        font-weight: 500;
        outline: none;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--dark);
    }

    @media (max-width: 991.98px) {
        .navbar .navbar-nav {
            margin-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, .07);
            background: #FFFFFF;
        }

        .navbar .navbar-nav .nav-link {
            padding: 10px 0;
        }
    }

    @media (min-width: 992px) {
        .navbar .nav-item .dropdown-menu {
            display: block;
            visibility: hidden;
            top: 100%;
            transform: rotateX(-75deg);
            transform-origin: 0% 0%;
            transition: .5s;
            opacity: 0;
        }

        .navbar .nav-item:hover .dropdown-menu {
            transform: rotateX(0deg);
            visibility: visible;
            transition: .5s;
            opacity: 1;
        }
    }


    /*** Header ***/
    .carousel-caption {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: start;
        z-index: 1;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 15%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        background-color: var(--primary);
        border: 10px solid var(--primary);
        border-radius: 3rem;
    }

    @media (max-width: 768px) {
        #header-carousel .carousel-item {
            position: relative;
            min-height: 450px;
        }
        
        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .page-header {
        padding-top: 12rem;
        padding-bottom: 6rem;
        background: url(../img/carousel-1.jpg) top right no-repeat;
        background-size: cover;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        color: #999999;
    }

    /*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
    #hero {
      width: 100%;
      height: 60vh;
      background: url("../img/home-banner.png") center center;
      background-size: cover;
      position: relative;
      margin-top: 120px;
      padding: 0;
    }

    /*#hero:before {
      content: "";
      background: rgba(56, 64, 70, 0.7);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
    }*/

    #hero .container {
      z-index: 2;
    }

    #hero h1 {
      margin: 0 0 10px 0;
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      color: #fff;
    }

    #hero h1 span {
      border-bottom: 4px solid #3498db;
    }

    #hero h2 {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 30px;
      font-size: 24px;
    }

    #hero .btn-get-started {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 2px;
      display: inline-block;
      padding: 12px 28px;
      border-radius: 4px;
      transition: ease-in-out 0.3s;
      color: #fff;
      background: #3498db;
      text-transform: uppercase;
    }

    #hero .btn-get-started:hover {
      background: #4ea5e0;
    }

    @media (max-width: 992px) {
      #hero {
        height: calc(100vh - 70px);
      }
    }

    @media (max-width: 768px) {
      #hero h1 {
        font-size: 30px;
        line-height: 36px;
      }

      #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
      }
    }

    /* --------------------
    :: 4.0 Wellcome Area CSS 
    -------------------- */

    .welcome-single-slide {
        position: relative;
        z-index: 1;
        overflow: hidden
    }

    .welcome-single-slide .project_title a > h5 {
        color: #ffffff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .welcome-single-slide .project_title {
        position: absolute;
        content: "";
        bottom: -300px;
        left: 0;
        z-index: 3;
        background: rgba(252, 108, 63, 0.7);
        padding: 30px;
        width: 100%;
        height: auto;
        -webkit-transition-duration: 750ms;
        transition-duration: 750ms;
    }

    .welcome-single-slide:hover .project_title {
        bottom: 0;
    }

    .welcome-single-slide .post-date-commnents a {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-bottom: 10px;
    }

    .welcome-single-slide .post-date-commnents a:hover {
        color: rgba(255, 255, 255, 0.9);
    }


    .welcome-single-slide .post-date-commnents a:first-child {
        margin-right: 30px;
    }

    .welcome-single-slide .post-date-commnents a:first-child:after {
        width: 2px;
        height: 80%;
        content: '';
        position: absolute;
        top: 10%;
        right: -14px;
        z-index: 2;
        background-color: #fff;
    }


    .welcome-post-sliders {
        position: relative;
        z-index: 1;
    }

    .welcome-post-sliders .owl-prev {
        position: absolute;
        width: 10%;
        background-color: transparent;
        height: 100%;
        top: 0;
        left: 0;
        cursor: url(img/core-img/back.png), auto !important;
        z-index: 9;
    }

    .welcome-post-sliders .owl-next {
        position: absolute;
        width: 10%;
        background-color: transparent;
        height: 100%;
        top: 0;
        right: 0;
        cursor: url(img/core-img/next.png), auto !important;
    }

    /*--------------------------------------------------------------
    # Sections General
    --------------------------------------------------------------*/
    section {
      padding: 60px 0;
    }

    .section-bg {
      background-color: #f7fbfe;
    }

    .section-title {
      text-align: center;
      padding-bottom: 30px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative;
    }

    .section-title h2::before {
      content: "";
      position: absolute;
      display: block;
      width: 120px;
      height: 1px;
      background: #ddd;
      bottom: 1px;
      left: calc(50% - 60px);
    }

    .section-title h2::after {
      content: "";
      position: absolute;
      display: block;
      width: 40px;
      height: 3px;
      background: #c1c1c1;
      bottom: 0;
      left: calc(50% - 20px);
    }

    .section-title p {
      margin-bottom: 0;
    }

    /*--------------------------------------------------------------
    # What We Do
    --------------------------------------------------------------*/
    .what-we-do {
        padding: 80px 0;
        background: #f1f1f1;
    }
    .what-we-do .icon-box {
      text-align: center;
      padding: 30px 20px;
      transition: all ease-in-out 0.3s;
      background: #fff;
    }

    .what-we-do .icon-box .icon {
      margin: 0 auto;
      width: 64px;
      height: 64px;
      background: #eaf4fb;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: ease-in-out 0.3s;
    }

    .what-we-do .icon-box .icon i {
      color: #3498db;
      font-size: 28px;
    }

    .what-we-do .icon-box h4 {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 24px;
    }

    .what-we-do .icon-box h4 a {
      color: #384046;
      transition: ease-in-out 0.3s;
    }

    .what-we-do .icon-box p {
      line-height: 24px;
      font-size: 14px;
      margin-bottom: 0;
    }

    .what-we-do .icon-box:hover {
      border-color: #fff;
      box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    }

    .what-we-do .icon-box:hover h4 a,
    .what-we-do .icon-box:hover .icon i {
      color: #3498db;
    }

    .service-item .service-image h5 {
        position: absolute;
        bottom: 0;
        margin: 0 auto;
        left: 0;
        right: 0;
        text-align: center;
        background: #00000069;
        padding: 10px;
        color: #fff;
        letter-spacing: 1px;
    }

    .service-item .service-overlay {
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        display: block;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .5);
        overflow: hidden;
        opacity: 0;
        transition: .5s;
        text-align: center;
        padding-top: 5em;
    }

    .service-item:hover .service-overlay {
        height: 100%;
        opacity: 1;
    }
    .service-item:hover .service-image h5 {
        opacity: 0;
    }

    .service-overlay h5 {
        color: #fff;
        font-size: 25px;
        font-weight: 700;
    }

    .service-overlay p {
        color: #1ddd34;
    }

    .service-overlay .btn {
        color: #fff;
        border: 1px solid #fff;
        align-items: center;
        margin: 0 auto;
        border-radius: 25px;
        text-transform: uppercase;
        font-size: 15px;
        padding: 10px 15px;
    }

    .btn-outline-primary:hover {
        color: #000;
        background-color: #1ddd34;
        border-color: #1ddd34;
    }

    /*--------------------------------------------------------------
    # Specials
    --------------------------------------------------------------*/
    .specials {
      overflow: hidden;
    }
    .specials .nav-tabs {
      border: 0;
      background: #fff;
    }
    .specials .nav-tabs li {
      border-bottom: 1px dotted #838181;
    }
    .specials .nav-tabs li:last-child {
      border-bottom: none;
    }
    .specials .nav-link {
        border: 0;
        padding: 18px 20px;
        transition: 0.3s;
        color: #000;
        border-radius: 0;
        border-right: 1px solid #e9ebe9;
        font-weight: 500;
        font-size: 15px;
        border-bottom: 1px solid #e9ebe9;
    }
    .specials .nav-link:hover {
      color: #151515;
      background: #858181;
    }
    .specials .nav-link.active {
      color: #f31212;
      background: #302f2f08;
      border-right: 1px solid #f31212;
      border-bottom: 1px solid #e9ebe9;
    }
    .specials .nav-link:hover {
      border-color: #f31212;
    }
    .specials .tab-pane.active {
      -webkit-animation: fadeIn 0.5s ease-out;
      animation: fadeIn 0.5s ease-out;
    }
    .specials .details h3 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #151515;
    }
    .specials .details p {
      color: #444444;
    }
    .specials .details p:last-child {
      margin-bottom: 0;
    }
    @media (max-width: 992px) {
      .specials .nav-link {
        border: 0;
        padding: 15px;
      }
    }

    /*-------------------------------------------------------------
    # Clients
    --------------------------------------------------------------*/
    .featured-in {
      padding: 4rem 0rem;
    }

    .featured-in h2 {
      text-transform: capitalize;
    }

    .featured-carousel .owl-stage {
      display: flex;
      align-items: center;
    }

    .featured-carousel .item img {
      max-width: 85%;
      display: block;
      margin: auto;
    }

    .featured-carousel .owl-nav .owl-dots {
      display: none;
      opacity: 0;
      visibility: hidden;
    }

    .featured-carousel .owl-nav .owl-prev,
    .featured-carousel .owl-nav .owl-next {
      position: absolute;
    }

    .featured-carousel .owl-nav .owl-prev {
      left: -32px;
    }

    .featured-carousel .owl-nav .owl-next {
      right: -32px;
    }

    .featured-carousel .owl-nav .owl-prev span {
      font-size: 0;
      background: url(../img/nav-left.png) no-repeat;
      width: 32px;
      height: 32px;
      background-size: 32px auto;
      display: table;
    }

    .featured-carousel .owl-nav .owl-next span {
      font-size: 0;
      background: url(../img/nav-right.png) no-repeat;
      width: 32px;
      height: 32px;
      background-size: 32px auto;
      display: table;
    }

    .featured-carousel .owl-nav {
      position: absolute;
      width: 100%;
      left: 0px;
      top: 40%;
    }

    /*********************************************************/
    /************* Client logo Slider ************************/
    /* Slider */

    .slick-slide {
        margin: 0px 20px;
    }

    .slick-slide img {
        width: 100%;
    }

    .slick-slider
    {
        position: relative;
        display: block;
        box-sizing: border-box;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
                user-select: none;
        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
            touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    .slick-list:focus
    {
        outline: none;
    }
    .slick-list.dragging
    {
        cursor: pointer;
        cursor: hand;
    }

    .slick-slider .slick-track,
    .slick-slider .slick-list
    {
        -webkit-transform: translate3d(0, 0, 0);
           -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
             -o-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }

    .slick-track
    {
        position: relative;
        top: 0;
        left: 0;
        display: block;
    }
    .slick-track:before,
    .slick-track:after
    {
        display: table;
        content: '';
    }
    .slick-track:after
    {
        clear: both;
    }
    .slick-loading .slick-track
    {
        visibility: hidden;
    }

    .slick-slide
    {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }
    [dir='rtl'] .slick-slide
    {
        float: right;
    }
    .slick-slide img
    {
        display: block;
    }
    .slick-slide.slick-loading img
    {
        display: none;
    }
    .slick-slide.dragging img
    {
        pointer-events: none;
    }
    .slick-initialized .slick-slide
    {
        display: block;
    }
    .slick-loading .slick-slide
    {
        visibility: hidden;
    }
    .slick-vertical .slick-slide
    {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }
    .slick-arrow.slick-hidden {
        display: none;
    }
    button.slick-next, button.slick-next:hover {
      position: absolute;
      top: 36%;
      right: 0;
      z-index: 1;
      background: transparent;
      border: none;
    }
    button.slick-prev, button.slick-prev:hover {
      position: absolute;
      top: 36%;
      left: 0;
      z-index: 1;
      background: transparent;
      border: none;
    }

    /*--------------------------------------------------------------
    # Portfolio
    --------------------------------------------------------------*/
    .portfolio {
      padding: 60px 0;
    }

    .portfolio #portfolio-flters {
      padding: 0;
      margin: 0 0 35px 0;
      list-style: none;
      text-align: center;
    }

    .portfolio #portfolio-flters li {
      cursor: pointer;
      margin: 0 15px 15px 0;
      display: inline-block;
      padding: 10px 20px;
      font-size: 12px;
      line-height: 20px;
      color: #444444;
      border-radius: 4px;
      text-transform: uppercase;
      background: #fff;
      margin-bottom: 5px;
      transition: all 0.3s ease-in-out;
    }

    .portfolio #portfolio-flters li:hover,
    .portfolio #portfolio-flters li.filter-active {
      background: #3498db;
      color: #fff;
    }

    .portfolio #portfolio-flters li:last-child {
      margin-right: 0;
    }

    .portfolio .portfolio-wrap {
      box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
    }

    .portfolio .portfolio-wrap:hover {
      box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
    }

    .portfolio .portfolio-item {
      position: relative;
      height: 360px;
      overflow: hidden;
    }

    .portfolio .portfolio-item figure {
      background: #000;
      overflow: hidden;
      height: 240px;
      position: relative;
      border-radius: 4px 4px 0 0;
      margin: 0;
    }

    .portfolio .portfolio-item figure:hover img {
      opacity: 0.4;
      transition: 0.4s;
    }

    .portfolio .portfolio-item figure .link-preview,
    .portfolio .portfolio-item figure .link-details {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      line-height: 0;
      text-align: center;
      width: 36px;
      height: 36px;
      background: #fff;
      border-radius: 50%;
      transition: all 0.2s linear;
      overflow: hidden;
      font-size: 20px;
    }

    .portfolio .portfolio-item figure .link-preview i,
    .portfolio .portfolio-item figure .link-details i {
      color: #384046;
      line-height: 0;
    }

    .portfolio .portfolio-item figure .link-preview:hover,
    .portfolio .portfolio-item figure .link-details:hover {
      background: #3498db;
    }

    .portfolio .portfolio-item figure .link-preview:hover i,
    .portfolio .portfolio-item figure .link-details:hover i {
      color: #fff;
    }

    .portfolio .portfolio-item figure .link-preview {
      left: calc(50% - 38px);
      top: calc(50% - 18px);
    }

    .portfolio .portfolio-item figure .link-details {
      right: calc(50% - 38px);
      top: calc(50% - 18px);
    }

    .portfolio .portfolio-item figure:hover .link-preview {
      opacity: 1;
      left: calc(50% - 44px);
    }

    .portfolio .portfolio-item figure:hover .link-details {
      opacity: 1;
      right: calc(50% - 44px);
    }

    .portfolio .portfolio-item .portfolio-info {
      background: #fff;
      text-align: center;
      padding: 30px;
      height: 90px;
      border-radius: 0 0 3px 3px;
    }

    .portfolio .portfolio-item .portfolio-info h4 {
      font-size: 18px;
      line-height: 1px;
      font-weight: 700;
      margin-bottom: 18px;
      padding-bottom: 0;
    }

    .portfolio .portfolio-item .portfolio-info h4 a {
      color: #333;
    }

    .portfolio .portfolio-item .portfolio-info h4 a:hover {
      color: #3498db;
    }

    .portfolio .portfolio-item .portfolio-info p {
      padding: 0;
      margin: 0;
      color: #b8b8b8;
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
    }

    /*--------------------------------------------------------------
    # Testimonials
    --------------------------------------------------------------*/
    #testimonials {
      padding: 60px 0;
    }

    #testimonials .section-header {
      margin-bottom: 40px;
    }

    #testimonials .testimonial-item {
      text-align: center;
    }

    #testimonials .testimonial-item .testimonial-img {
      width: 120px;
      border-radius: 50%;
      border: 4px solid #fff;
      margin: 0 auto;
    }

    #testimonials .testimonial-item h3 {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0 5px 0;
      color: #111;
    }

    #testimonials .testimonial-item h4 {
      font-size: 14px;
      color: #999;
      margin: 0 0 15px 0;
    }

    #testimonials .testimonial-item .quote-sign-left {
      margin-top: -15px;
      padding-right: 10px;
      display: inline-block;
      width: 37px;
    }

    #testimonials .testimonial-item .quote-sign-right {
      margin-bottom: -15px;
      padding-left: 10px;
      display: inline-block;
      max-width: 100%;
      width: 37px;
    }

    #testimonials .testimonial-item p {
      font-style: italic;
      margin: 0 auto 15px auto;
    }

    @media (min-width: 992px) {
      #testimonials .testimonial-item p {
        width: 80%;
      }
    }

    #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: #ddd;
    }

    #testimonials .owl-dot.active {
      background-color: #18d26e;
    }

    /* --------------------
    :: 4.0 Wellcome Area CSS 
    -------------------- */
    .welcome-post-sliders {
        padding: 60px 0 10px 0;
    }
    .welcome-single-slide {
        position: relative;
        z-index: 1;
        overflow: hidden
    }

    .welcome-post-sliders.owl-carousel .owl-item {
        top: 0;
        -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        position: relative;
        left: 0;
        background: #fff;
        width: 150px;
        height: 460px;
        opacity: 1;
        border-right: 10px solid rgba(0, 0, 0, 0.1);
        margin-right: 0 !important;
        top: -10px;
    }

    .welcome-single-slide .project_title a > h5 {
        color: #ffffff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .welcome-single-slide .project_title {
        position: absolute;
        content: "";
        bottom: -300px;
        left: -6px;
        z-index: 3;
        background: rgba(252, 108, 63, 0.7);
        padding: 30px;
        width: 330px;
        height: auto;
        -webkit-transition-duration: 750ms;
        transition-duration: 750ms;
        -webkit-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    .welcome-single-slide:hover .project_title {
        bottom: 0;
    }

    .welcome-single-slide .post-date-commnents a {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-bottom: 10px;
    }

    .welcome-single-slide .post-date-commnents a:hover {
        color: rgba(255, 255, 255, 0.9);
    }


    .welcome-single-slide .post-date-commnents a:first-child {
        margin-right: 30px;
    }

    .welcome-single-slide .post-date-commnents a:first-child:after {
        width: 2px;
        height: 80%;
        content: '';
        position: absolute;
        top: 10%;
        right: -14px;
        z-index: 2;
        background-color: #fff;
    }


    .welcome-post-sliders {
        position: relative;
        z-index: 1;
        margin-top: 65px;
    }

    .welcome-post-sliders .owl-prev {
        position: absolute;
        width: 10%;
        background-color: transparent;
        height: 100%;
        top: 0;
        left: 0;
        cursor: url(img/core-img/back.png), auto !important;
        z-index: 9;
    }

    .welcome-post-sliders .owl-next {
        position: absolute;
        width: 10%;
        background-color: transparent;
        height: 100%;
        top: 0;
        right: 0;
        cursor: url(img/core-img/next.png), auto !important;
    }



    /*** About ***/
    .about-img img {
        position: relative;
        z-index: 2;
    }

    .about-img::before {
        position: absolute;
        content: "";
        top: 0;
        left: -50%;
        width: 100%;
        height: 100%;
        background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
        background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
        background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
        background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
        background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
        background-size: 20px 20px;
        transform: skew(20deg);
        z-index: 1;
    }


    /*** item ***/
    .nav-pills .nav-item .btn {
        color: var(--dark);
    }

    .nav-pills .nav-item .btn:hover,
    .nav-pills .nav-item .btn.active {
        color: #FFFFFF;
    }

    .item-item {
        box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    }

    .item-item img {
        transition: .5s;
    }

    .item-item:hover img {
        transform: scale(1.1);
    }

    .item-item small a:hover {
        color: var(--primary) !important;
    }


    /*** Testimonial ***/
    .testimonial-carousel .owl-item .testimonial-item img {
        width: 60px;
        height: 60px;
    }

    .testimonial-carousel .owl-item .testimonial-item,
    .testimonial-carousel .owl-item .testimonial-item * {
        transition: .5s;
    }

    .testimonial-carousel .owl-item.center .testimonial-item {
        background: var(--primary) !important;
    }

    .testimonial-carousel .owl-item.center .testimonial-item * {
        color: #FFFFFF !important;
    }

    .testimonial-carousel .owl-item.center .testimonial-item i {
        color: var(--secondary) !important;
    }

    .testimonial-carousel .owl-nav {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        border: 2px solid var(--primary);
        border-radius: 50px;
        font-size: 18px;
        transition: .5s;
    }

    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        color: #FFFFFF;
        background: var(--primary);
    }


    /*** Footer ***/
    .footer {
        color: #999999;
    }

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #999999;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #999999;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--light);
        letter-spacing: 1px;
        box-shadow: none;
    }

    .footer .copyright {
        padding: 25px 0;
        font-size: 15px;
        border-top: 1px solid rgba(256, 256, 256, .1);
    }

    .footer .copyright a {
        color: var(--light);
    }

    .footer .copyright a:hover {
        color: var(--primary);
    }

    .navbar-light {
        background: #fff;
    }
    .top-bar small, .top-bar .text-body {
        color: #b1afaf !important;
    }


/********* Shop Page Owl Carousal ************/
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-item {
    opacity: .4;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: #e6e6e6;
    position: relative;
}

.owl-carousel .owl-dots .owl-dot:after {
    position: absolute;
    top: -2px;
    left: -2px;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot:focus {
    outline: none !important;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: #b3b3b3;
}

.owl-carousel.home-slider {
    position: relative;
    height: 650px;
    z-index: 0;
}

.owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 650px;
    position: relative;
    z-index: 0;
}

@media (max-width: 1199.98px) {
    .owl-carousel.home-slider .slider-item {
        background-position: center center !important;
    }
}

.owl-carousel.home-slider .slider-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: .2;
}

.owl-carousel.home-slider .slider-item .slider-text {
    height: 650px;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .owl-carousel.home-slider .slider-item .slider-text {
        text-align: center;
    }
}

.owl-carousel.home-slider .slider-item .slider-text .subheading {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
}

.owl-carousel.home-slider .slider-item .slider-text h1 {
    font-size: 4vw;
    color: #fff;
    line-height: 1.3;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 40px;
    }
}

.owl-carousel.home-slider .slider-item .slider-text p {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .owl-carousel.home-slider .slider-item .slider-text p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 23px;
    }
}

.owl-carousel.home-slider .owl-nav {
    position: absolute;
    bottom: 60px !important;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .owl-carousel.home-slider .owl-nav {
        display: none;
    }
}

.owl-carousel.home-slider .owl-nav .owl-prev,
.owl-carousel.home-slider .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff !important;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    transition: all 0.7s ease;
    opacity: 1;
}

.owl-carousel.home-slider .owl-nav .owl-prev span:before,
.owl-carousel.home-slider .owl-nav .owl-next span:before {
    font-size: 20px;
    margin-top: 7px;
    color: #000000;
}

.owl-carousel.home-slider .owl-nav .owl-prev {
    top: 0 !important;
    right: 0 !important;
}

@media (min-width: 992px) {
    .owl-carousel.home-slider .owl-nav .owl-prev {
        right: 61px !important;
    }
}

.owl-carousel.home-slider .owl-nav .owl-prev:hover,
.owl-carousel.home-slider .owl-nav .owl-prev:focus {
    background: #000000 !important;
    outline: none !important;
}

.owl-carousel.home-slider .owl-nav .owl-prev:hover span:before,
.owl-carousel.home-slider .owl-nav .owl-prev:focus span:before {
    font-size: 20px;
    margin-top: 7px;
    color: #82ae46;
}

.owl-carousel.home-slider .owl-nav .owl-next {
    top: 0 !important;
    right: 0 !important;
}

@media (min-width: 992px) {
    .owl-carousel.home-slider .owl-nav .owl-next {
        right: 0 !important;
    }
}

.owl-carousel.home-slider .owl-nav .owl-next:hover,
.owl-carousel.home-slider .owl-nav .owl-next:focus {
    background: #000000 !important;
    outline: none !important;
}

.owl-carousel.home-slider .owl-nav .owl-next:hover span:before,
.owl-carousel.home-slider .owl-nav .owl-next:focus span:before {
    font-size: 24px;
    margin-top: 7px;
    color: #82ae46;
}

.owl-carousel.home-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

@media (min-width: 992px) {
    .owl-carousel.home-slider .owl-dots {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .owl-carousel.home-slider .owl-dots {
        bottom: 5px;
    }
}

.owl-carousel.home-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
    background: #fff;
}

.bg-color-1 {
  background: #e4b2d6; 
}

.bg-color-2 {
  background: #dcc698; 
}

.bg-color-3 {
  background: #a2d1e1; 
}

.bg-color-4 {
  background: #dcd691; 
}

.hero-wrap,
.img,
.blog-img,
.user-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ftco-services .services {
    display: block;
    width: 100%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ftco-services .services .icon {
    line-height: 1.3;
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000;
    font-size: 35px;
}

.ftco-services .services .icon:after {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    content: '';
    border: 2px solid rgb(22 20 20 / 78%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.ftco-services .services .icon span {
    font-size: 50px;
    color: #fff;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ftco-services .services .media-body {
    width: 100%;
}

.ftco-services .services .media-body h3 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Poppins", Arial, sans-serif;
    color: #000000;
}

.ftco-services .services .media-body span {
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    font-weight: 500;
}

.ftco-services .services:hover .icon,
.ftco-services .services:focus .icon {
    background: #82ae46;
}

.ftco-services .services:hover .icon span,
.ftco-services .services:focus .icon span {
    color: #fff;
}

.ftco-category .category-wrap {
    display: block;
    width: 100%;
    height: 250px;
}

.ftco-category .category-wrap .text {
    background: #82ae46;
}

.ftco-category .category-wrap .text h2 {
    font-size: 18px;
    font-family: "Poppins", Arial, sans-serif;
}

.ftco-category .category-wrap .text h2 a {
    color: #fff;
}

.ftco-category .category-wrap-2 {
    width: 100%;
}

.ftco-category .category-wrap-2 .text {
    width: 100%;
}

.ftco-category .category-wrap-2 .text h2 {
    color: #82ae46;
    font-family: "Lora", Georgia, serif;
    font-style: italic;
    font-size: 24px;
}


.item {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

@media (max-width: 991.98px) {
    .item {
        margin-bottom: 30px;
    }
}

.item .img-prod {
    position: relative;
    display: block;
    overflow: hidden;
}

.item .img-prod .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: #82ae46;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item .img-prod span.status {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px 10px;
    color: #fff;
    font-weight: 300;
    background: #82ae46;
    font-size: 12px;
}

.item .img-prod img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item .img-prod:hover img,
.item .img-prod:focus 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);
}

.item .img {
    display: block;
    height: 500px;
}

.item .icon {
    width: 60px;
    height: 60px;
    background: #fff;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item .icon span {
    color: #000000;
}

.item:hover .icon {
    opacity: 1;
}

.item:hover .img-prod .overlay {
    opacity: 0;
}

.item .text {
    background: #fff;
    position: relative;
    width: 100%;
}

.item .text h3 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Poppins", Arial, sans-serif;
}

.item .text h3 a {
    color: #000000;
}

.item .text p.price {
    margin-bottom: 0;
    color: #82ae46;
    font-weight: 400;
}

.item .text p.price span.price-dc {
    text-decoration: line-through;
    color: #b3b3b3;
}

.item .text p.price span.price-sale {
    color: #82ae46;
}

.item .text .pricing {
    width: 100%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item .text .bottom-area {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    opacity: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item .text .bottom-area a {
    color: #fff;
    width: 100%;
    background: #82ae46;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.item .text .bottom-area .m-auto {
    margin: 0 auto;
}

.item:hover {
    -webkit-box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
}

.item:hover .pricing {
    opacity: 0;
}

.item:hover .text .bottom-area {
    opacity: 1;
}

/*---------------------
  Categories
-----------------------*/

.categories__item {
    height: 270px;
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    width: 270px;
}

.categories__item h5 {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 20px;
    bottom: 20px;
    text-align: center;
}

.categories__item h5 a {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 0 10px;
    background: #ffffff;
    display: block;
}

.categories__slider .col-lg-3 {
    max-width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
    font-size: 18px;
    color: #1c1c1c;
    height: 70px;
    width: 30px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #ebebeb;
    position: absolute;
    left: -35px;
    top: 50%;
    -webkit-transform: translateY(-35px);
    background: #ffffff;
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -35px;
}

/***************************************************************/
/* :: Hero Slides Area CSS */
.hero-slides .single-hero-slide {
  height: 950px;
  position: relative;
  z-index: 1;
  padding: 0 40px 100px;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  overflow: visible;
  cursor: pointer; }
  .hero-slides .single-hero-slide .hero-slides-content {
    position: relative;
    z-index: 1;
    -webkit-transform: translateY(75%);
    transform: translateY(75%);
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    bottom: 0; }
    .hero-slides .single-hero-slide .hero-slides-content .line {
      width: 100px;
      height: 1px;
      background-color: #ffffff;
      margin-bottom: 30px;
      display: block; }
    .hero-slides .single-hero-slide .hero-slides-content h2 {
      color: #ffffff;
      font-weight: 100; }
    .hero-slides .single-hero-slide .hero-slides-content p {
      color: #ffffff;
      margin-bottom: 0;
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      margin-top: 140px; }
  .hero-slides .single-hero-slide:hover .hero-slides-content {
    -webkit-transform: translateY(0%);
    transform: translateY(0%); }
  .hero-slides .single-hero-slide:hover p {
    margin-top: 40px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slides .single-hero-slide {
      height: 800px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slides .single-hero-slide {
      height: 700px; } }
  @media only screen and (max-width: 767px) {
    .hero-slides .single-hero-slide {
      height: 550px; } }
.hero-slides .owl-dots {
  position: absolute;
  left: 50px;
  bottom: 50px; }
  .hero-slides .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    border: 1px solid #6a6a67;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block; }
    .hero-slides .owl-dots .owl-dot.active {
      border: 1px solid #ffffff;
      background-color: #ffffff; }

/*************************************************/
.single-feature {
    padding: 30px 15px;
    text-align: center;
    border: 1px solid #eff2f3;
    margin-bottom: 50px
}

.single-feature h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 25px
}

.single-feature .title i {
    color: #4a4a4a;
    font-weight: 600 !important;
    font-size: 40px;
    display: inline-block;
}

.single-feature p {
    margin-bottom: 0px;
    margin-top: 10px
}
