/* ===================== Default Css ========================== */

*, *::after, *::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: "Outfit", sans-serif;
  }
  
  body::-webkit-scrollbar{
    width: 8px;
    background: var(--lightBg);
    border-radius: 10px;
  }
  
  body::-webkit-scrollbar-thumb{
    background-color: var(--outline);
    border-radius: 10px;
  }
  
  p:last-child {
    margin-bottom: 0;
  }
  
  a, button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  
  a, button, img, input {
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
  *:focus {
    outline: none !important;
  }
  
  a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
  }
  
  .btn.focus, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
  }
  
  ::-moz-selection {
    color: #ffffff;
    background-color: var(--blue);
  }
  
  ::selection {
    color: #ffffff;
    background-color: var(--orange);
  }
  
  .close-btn{
    font-size: 14px;
  }
  
  /*=============================================
     - Scroll top         
  =============================================*/
  .scroll-top {
    position: fixed;
    right: 20px;
    bottom: -60px;
    z-index: 999;
    -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
    display: block;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    line-height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    background-color: var(--blue);
    background-size: 200% auto;
    background-position: left center;
    color: #ffffff;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow: hidden;
  }
  
  .scroll-top.show {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
  }
  .scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #ffffff;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .scroll-top .arrow-top {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .scroll-top .arrow-bottom {
    -webkit-transform: translate(-50%, 80px);
        -ms-transform: translate(-50%, 80px);
            transform: translate(-50%, 80px);
  }
  .scroll-top:hover {
    background-position: right center;
  }
  .scroll-top:hover .arrow-top {
    -webkit-transform: translate(-50%, -80px);
        -ms-transform: translate(-50%, -80px);
            transform: translate(-50%, -80px);
  }
  .scroll-top:hover .arrow-bottom {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  /*=============================================
  =              05. Header Css            =
  =============================================*/
  .header-area {
    position: relative;
    z-index: 9;
  }
  .header-area .is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
            animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  .header-area .is-sticky .navigation-menu--text_white > ul > li > a {
    color: #444;
  }
  .header-area .is-sticky .navigation-menu--text_white > ul > li > a > span:after {
    background-color: #444;
  }
  .header-area .is-sticky .navigation-menu--text_white > ul > li.active > a {
    color: #000000;
  }
  .header-area .is-sticky .navigation-menu--text_white > ul > li:hover > a:after, .header-area .is-sticky .navigation-menu--text_white > ul > li.active > a:after {
    color: #000000;
  }
  .header-area .is-sticky .navigation-menu--text_white > ul > li:hover > a > span, .header-area .is-sticky .navigation-menu--text_white > ul > li.active > a > span {
    color: #000000;
  }
  .header-area .is-sticky .header-search-form .search-form-top .style-02 {
    background-color: transparent;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .header-area .is-sticky .header-search-form .search-form-top.style-03 {
    background-color: transparent;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .header-area .is-sticky .header-search-form .search-form-top.style-03 input::-webkit-input-placeholder, .header-area .is-sticky .header-search-form .search-form-top.style-03 textarea::-webkit-input-placeholder {
    color: #333;
  }
  .header-area .is-sticky .header-search-form .search-form-top.style-03 input::-moz-placeholder, .header-area .is-sticky .header-search-form .search-form-top.style-03 textarea::-moz-placeholder {
    color: #333;
  }
  .header-area .is-sticky .header-search-form .search-form-top.style-03 input:-ms-input-placeholder, .header-area .is-sticky .header-search-form .search-form-top.style-03 textarea:-ms-input-placeholder {
    color: #333;
  }
  .header-area .is-sticky .header-search-form .search-form-top.style-03 input::-ms-input-placeholder, .header-area .is-sticky .header-search-form .search-form-top.style-03 textarea::-ms-input-placeholder {
    color: #333;
  }
  .header-area .is-sticky .header-search-form .search-form-top.style-03 input::placeholder, .header-area .is-sticky .header-search-form .search-form-top.style-03 textarea::placeholder {
    color: #333;
  }
  .header-area .is-sticky .header-search-form .search-form-top .search-field {
    color: #000;
  }
  .header-area .is-sticky .header-search-form .search-form-top .search-submit {
    color: #333;
  }
  .header-area .is-sticky .header__logo .dark-logo {
    display: inherit;
  }
  .header-area .is-sticky .header__logo .light-logo {
    display: none;
  }
  .header-area .is-sticky .menu-style-four .navigation-menu > ul > li > a {
    color: #333;
  }
  .header-area .is-sticky .menu-style-four .navigation-menu > ul > li:hover > a:after, .header-area .is-sticky .menu-style-four .navigation-menu > ul > li.active > a:after {
    color: #333;
  }
  .header-area .is-sticky .menu-style-four .navigation-menu > ul > li:hover > a > span, .header-area .is-sticky .menu-style-four .navigation-menu > ul > li.active > a > span {
    color: #333;
  }
  .header-area .is-sticky .menu-style-four .navigation-menu > ul > li:hover > a:before, .header-area .is-sticky .menu-style-four .navigation-menu > ul > li.active > a:before {
    width: 100%;
    left: 0;
  }
  .header-area .is-sticky .header-search-form-two.white-icon a {
    color: #333;
  }
  @media only screen and (min-width: 992px) and (max-width: 1100px), only screen and (min-width: 768px) and (max-width: 991.5px), only screen and (max-width: 767px) {
    .header-area.is-sticky.only-mobile-sticky {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
              animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
      z-index: 999;
      -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
      -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
      -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
      background-color: #fff;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1100px), only screen and (min-width: 768px) and (max-width: 991.5px), only screen and (max-width: 767px) {
    .header-area.is-sticky.only-mobile-sticky .header-bottom-wrap.is-sticky {
      display: none !important;
    }
  }
  .header-area--absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }
  @media only screen and (min-width: 768px) and (max-width: 991.5px), only screen and (max-width: 767px) {
    .header-area--absolute {
      position: static;
    }
  }
  .header-area--absolute__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }
  .header-area--default {
    border-color: #E4E8F6;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }
  
  .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    /* logo */
  }
  .header__logo {
    /* -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%; */
    padding: 14px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }

  .header__logo .name-logo{
    width: 100px !important;
    margin-left: 10px;
  }

  @media (max-width:576px){

    .header__logo .name-logo{
      width: 80px !important;
      margin-left: 5px;
    }

  }

  @media (max-width:450px){

    .header__logo .name-logo{
      width: 70px !important;
      margin-left: 5px;
    }

  }

  @media (max-width:400px){

    .header__logo .name-logo{
      display: none;
    }

  }

  .header__logo.top-logo {
    padding: 25px 0;
  }
  
  @media only screen and (max-width: 767px) {
    .header__logo.top-logo {
      padding: 15px 0;
    }
  }
  
  .header__logo > a img {
    width: 160px;
  }
  .header__logo .dark-logo {
    display: none;
  }
  .header__logo .light-logo {
    display: inherit;
  }
  @media only screen and (min-width: 768px) and (max-width: 991.5px), only screen and (max-width: 767px) {
    .header__logo .dark-logo {
      display: inherit;
    }
    .header__logo .light-logo {
      display: none;
    }
  }
  .header.default-menu-style .header__logo {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 14px 0;
  }
  
  .header.default-menu-style .header-midle-box {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  
  @media (max-width:991.5px){
    .header.default-menu-style .header-midle-box {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
  }
  
  .header.default-menu-style .header-right-box {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  @media only screen and (min-width: 1100px) and (max-width: 1499px) {
    .header.default-menu-style .header-right-box {
      -webkit-flex-basis: 23%;
          -ms-flex-preferred-size: 23%;
              flex-basis: 23%;
    }
  }
  
  .header.default-menu-style .header-right-box .header-right-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -12px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  @media only screen and (max-width: 767px) {
    .header.default-menu-style .header-right-box .header-right-inner {
      margin: auto;
    }
  }
  
  .header-right {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  
  .header-right-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -12px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 0 12px;
  }
  @media only screen and (max-width: 767px) {
    .header-right-inner {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      margin: auto;
      width: 100%;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 20px;
      -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
              box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
      -webkit-transform: translateY(30px);
          -ms-transform: translateY(30px);
              transform: translateY(30px);
      background-color: #ffffff;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
      -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  @media only screen and (max-width: 767px) {
    .header-right-inner.active {
      visibility: visible;
      opacity: 1;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      z-index: 999;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .header-right-box .header-right-inner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
    }
  }
  @media only screen and (max-width: 575px) {
    .header-right-box .header-right-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  
  .header-top-info-slider-werap {
    overflow: hidden;
    max-width: 770px;
    width: 100%;
  }
  @media only screen and (min-width: 992px) and (max-width: 1100px) {
    .header-top-info-slider-werap {
      max-width: 540px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.5px) {
    .header-top-info-slider-werap {
      max-width: 280px;
    }
  }
  @media only screen and (max-width: 767px) {
    .header-top-info-slider-werap {
      max-width: 100%;
    }
  }
  
  .header-top-info-slider-werap {
    padding: 0 12px;
  }
  @media only screen and (max-width: 767px) {
    .header-top-info-slider-werap {
      padding: 0 0px;
    }
  }
  
  .header-top-info-inner .info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 1px solid #ddd;
    padding-left: 19px;
  }
  .header-top-info-inner .info-item .info-icon {
    width: 41px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    font-size: 30px;
    line-height: 1;
    color: #d2a98e;
  }
  .header-top-info-inner .info-item .info-content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .header-top-info-inner .info-item .info-content .info-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 6px;
  }
  .header-top-info-inner .info-item .info-content .info-sub-title {
    font-size: 14px;
  }
  @media only screen and (max-width: 767px) {
    .header-top-info-inner .info-item {
      padding-left: 0px;
      margin-top: 20px;
    }
  }
  .header-top-info-inner.default-color .info-item .info-icon {
    color: var(--blue);
  }
  
  .top-info-slider__container {
    cursor: w-resize;
  }
  .top-info-slider__container .swiper-slide-active .info-item {
    border-left: none;
  }
  
  .header-social-networks.style-icons a {
    display: inline-block;
    padding: 0 10px;
    font-size: 18px;
    margin-top: 10px;
  }
  
  .header-bottom-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .header-bottom-left-wrap {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  
  .header-search-form {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
  }
  .header-search-form .search-form-top {
    position: relative;
    background-color: rgba(0, 47, 166, 0.3);
  }
  .header-search-form .search-form-top .search-field {
    width: 270px;
    border-radius: 0;
    border: 0 !important;
    background: 0 0 !important;
    min-height: 60px;
    padding-right: 50px;
    padding-left: 10px;
    color: #fff;
  }
  .header-search-form .search-form-top input::-webkit-input-placeholder, .header-search-form .search-form-top textarea::-webkit-input-placeholder {
    color: #333;
  }
  .header-search-form .search-form-top input::-moz-placeholder, .header-search-form .search-form-top textarea::-moz-placeholder {
    color: #333;
  }
  .header-search-form .search-form-top input:-ms-input-placeholder, .header-search-form .search-form-top textarea:-ms-input-placeholder {
    color: #333;
  }
  .header-search-form .search-form-top input::-ms-input-placeholder, .header-search-form .search-form-top textarea::-ms-input-placeholder {
    color: #333;
  }
  .header-search-form .search-form-top input::placeholder, .header-search-form .search-form-top textarea::placeholder {
    color: #333;
  }
  .header-search-form .search-form-top .search-submit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    font-size: 18px;
    background: 0 0;
    width: 48px;
    height: 48px;
    line-height: 50px;
    padding: 0;
    border: 0;
    color: #ffffff;
  }
  .header-search-form .search-form-top.style-02 {
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
  }
  .header-search-form .search-form-top.style-02 .search-field {
    width: 232px;
    border-radius: 0;
    background: #fff !important;
    border: 0 !important;
    min-height: 60px;
    color: #333;
  }
  .header-search-form .search-form-top.style-02 .search-submit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    font-size: 18px;
    background: 0 0;
    width: 48px;
    height: 48px;
    line-height: 50px;
    padding: 0;
    border: 0;
    color: #000000;
  }
  .header-search-form .search-form-top.style-03 input::-webkit-input-placeholder {
    color: #ddd;
  }
  .header-search-form .search-form-top.style-03 input::-moz-placeholder {
    color: #ddd;
  }
  .header-search-form .search-form-top.style-03 input:-ms-input-placeholder {
    color: #ddd;
  }
  .header-search-form .search-form-top.style-03 input::-ms-input-placeholder {
    color: #ddd;
  }
  .header-search-form .search-form-top.style-03 input::placeholder {
    color: #ddd;
  }
  .header-search-form.default-search {
    height: 100%;
  }
  .header-search-form.default-search .search-form-top {
    background: transparent;
    border-left: 1px solid #eee;
    margin-right: 5px;
  }
  @media only screen and (max-width: 575px) {
    .header-search-form.default-search .search-form-top {
      margin-top: 15px;
      background: #eee;
    }
  }
  .header-search-form.default-search .search-form-top .search-field {
    max-width: 225px;
    color: #333;
    min-height: 80px;
  }
  @media only screen and (min-width: 1100px) and (max-width: 1499px) {
    .header-search-form.default-search .search-form-top .search-field {
      max-width: 160px;
    }
  }
  @media only screen and (max-width: 767px) {
    .header-search-form.default-search .search-form-top .search-field {
      min-height: 40px;
    }
  }
  .header-search-form.default-search .search-form-top .search-submit {
    color: #000000;
  }
  .header-search-form-two {
    padding-left: 24px;
    display: block;
  }
  .header-search-form-two a {
    line-height: 0;
    font-size: 18px;
  }
  .header-search-form-two a:hover {
    -webkit-transform: scale(1.15, 1.15);
        -ms-transform: scale(1.15, 1.15);
            transform: scale(1.15, 1.15);
  }
  .header-search-form-two.white-icon a {
    color: #ffffff;
  }
  @media only screen and (min-width: 768px) and (max-width: 991.5px), only screen and (max-width: 767px) {
    .header-search-form-two.white-icon a {
      color: #333;
    }
  }
  
  /*============================== 
      - Navigation Menu Css
  ===============================*/
  .navigation-menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation-menu > ul > li {
    margin: 0 15px;
  }
  
  @media only screen and (min-width: 1100px) and (max-width: 1499px) {
    .navigation-menu > ul > li {
      margin: 0 15px;
    }
  }
  .navigation-menu > ul > li > a {
    display: block;
    color: black;
    padding: 21px 2px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.18;
    -webkit-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
  .navigation-menu > ul > li > a:before {
    content: "";
    width: 0;
    height: 3px;
    bottom: 0;
    position: absolute;
    left: 0;
    background-color: var(--blue);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navigation-menu > ul > li > a span {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navigation-menu > ul > li.has-children > a {
    position: relative;
  }
  .navigation-menu > ul > li.has-children > a:after {
    position: static;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 600;
    font-size: 14px;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navigation-menu > ul > li.has-children--multilevel-submenu {
    position: relative;
  }
  .navigation-menu > ul > li.has-children:hover .megamenu {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .navigation-menu > ul > li.has-children:hover .megamenu--home-variation__item {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .navigation-menu > ul > li.has-children:hover > .submenu {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .navigation-menu > ul > li:hover > a:after{
    color: var(--blue);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navigation-menu > ul > li:hover > a span{
    color: var(--blue);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* .navigation-menu > ul > li:hover > a:before, .navigation-menu > ul > li.active > a:before {
    width: 100%;
    left: 0;
  } */
  .navigation-menu.primary--menu > ul > li > a {
    font-weight: 700;
    font-size: 17px;
    padding: 30px 0px;
  }
  .navigation-menu--text_white > ul > li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  .navigation-menu--text_white > ul > li > a:before {
    background-color: #ffffff;
  }
  .navigation-menu--text_white > ul > li.active > a {
    color: #ffffff;
  }
  .navigation-menu--text_white > ul > li:hover > a:after, .navigation-menu--text_white > ul > li.active > a:after {
    color: #ffffff;
  }
  .navigation-menu--text_white > ul > li:hover > a > span, .navigation-menu--text_white > ul > li.active > a > span {
    color: #ffffff;
  }
  
  /* .header-bottom-left-wrap .navigation-menu > ul > li:first-child {
    margin: 0 24px 0 0;
  } */
  
  /*===================================
      - Multilevel Submenu Css
  ====================================*/
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--blue);
    background-color: #ffffff;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transition-duration: 0.4s;
         -o-transition-duration: 0.4s;
            transition-duration: 0.4s;
    visibility: hidden;
    opacity: 0;
    min-width: 280px;
    padding: 20px 0;
    z-index: 9;
  }
  
  .submenu > li {
    position: relative;
  }
  .submenu > li > a {
    display: block;
    padding: 5px 30px;
    color: black;
    font-weight: 400;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
  }
  .submenu > li > a > span {
    position: relative;
  }
  .submenu > li > a > span:after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    background-color: var(--blue);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .submenu > li > a:hover {
    color: var(--blue);
  }
  .submenu > li > a:hover > span:after {
    width: 100%;
    left: 0;
    right: auto;
  }
  .submenu > li:hover > .submenu {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    opacity: 1;
    z-index: 9;
  }
  .submenu > li.active > a {
    /* color: var(--blue); */
  }
  .submenu > li.has-children > a {
    position: relative;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .submenu > li.has-children > a:after {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f105";
    font-size: 14px;
    vertical-align: middle;
    color: #ababab;
  }
  .submenu > li.has-children > a:hover:after {
    color: var(--blue);
  }
  .submenu > li.has-children.active > a {
    /* color: var(--blue); */
  }
  .submenu .submenu {
    top: 0px;
    left: 100%;
    right: auto;
  }
  .submenu .submenu.left {
    right: 100%;
    left: auto;
  }
  .submenu .submenu .submenu {
    top: 0;
    left: 100%;
    right: auto;
  }
  .submenu .submenu .submenu.left {
    right: 100%;
    left: auto;
  }
  .submenu .submenu .submenu .submenu {
    top: 0;
    left: 100%;
    right: auto;
  }
  .submenu .submenu .submenu .submenu.left {
    right: 100%;
    left: auto;
  }
  .submenu .submenu .submenu .submenu .submenu {
    top: 0;
    left: 100%;
    right: auto;
  }
  .submenu .submenu .submenu .submenu .submenu.left {
    right: 100%;
    left: auto;
  }
  
  /* Mobile Mavigation icon */
  .mobile-navigation-icon {
    width: 24px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    /* margin-left: 30px; */
  }
  .mobile-navigation-icon:hover i {
    background-color: var(--blue);
  }
  .mobile-navigation-icon:hover i:before {
    width: 80%;
    background-color: var(--blue);
  }
  .mobile-navigation-icon:hover i:after {
    background-color: var(--blue);
    width: 60%;
  }
  .mobile-navigation-icon i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-navigation-icon i:before {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    content: "";
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-navigation-icon i:after {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    content: "";
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  @media only screen and (min-width: 992px) and (max-width: 1100px) {
    .mobile-navigation-icon.white-md-icon i {
      background-color: #fff;
    }
    .mobile-navigation-icon.white-md-icon i:before {
      background-color: #fff;
    }
    .mobile-navigation-icon.white-md-icon i:after {
      background-color: #fff;
    }
    .mobile-navigation-icon.white-md-icon:hover i {
      background-color: var(--blue);
    }
    .mobile-navigation-icon.white-md-icon:hover i:before {
      width: 80%;
      background-color: var(--blue);
    }
    .mobile-navigation-icon.white-md-icon:hover i:after {
      background-color: var(--blue);
      width: 60%;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1100px) {
    .is-sticky .white-md-icon i {
      background-color: #333;
    }
    .is-sticky .white-md-icon i:before {
      background-color: #333;
    }
    .is-sticky .white-md-icon i:after {
      background-color: #333;
    }
  }
  
  /*================================ 
      - Mobile Menu Overlay Css
  ==================================*/
  .mobile-menu-overlay, .page-oppen-off-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    overflow: auto;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    cursor: url(../images/icons/light-close.webp) 16 16, pointer;
    visibility: hidden;
    opacity: 0;
  }
  .mobile-menu-overlay__inner, .page-oppen-off-sidebar__inner {
    -webkit-transform: translateX(120%);
        -ms-transform: translateX(120%);
            transform: translateX(120%);
    width: 400px;
    height: 100%;
    float: right;
    cursor: default;
    background: var(--blue);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow-y: auto;
  }
  @media only screen and (max-width: 479px) {
    .mobile-menu-overlay__inner, .page-oppen-off-sidebar__inner {
      width: 300px;
    }
    .mobile-menu-overlay__body, .page-oppen-off-sidebar__body {
      padding: 20px 20px 100px !important;
    }
  }
  .mobile-menu-overlay.active, .page-oppen-off-sidebar.active {
    visibility: visible;
    opacity: 1;
  }
  .mobile-menu-overlay.active .mobile-menu-overlay__inner, .page-oppen-off-sidebar.active .mobile-menu-overlay__inner {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobile-menu-overlay__header, .page-oppen-off-sidebar__header {
    background-color: #ffffff;
    padding: 15px 0;
  }
  .mobile-menu-overlay__header .mobile-navigation-close-icon, .page-oppen-off-sidebar__header .mobile-navigation-close-icon {
    position: relative;
    cursor: pointer;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: inline-block;
  }
  .mobile-menu-overlay__header .mobile-navigation-close-icon:before, .page-oppen-off-sidebar__header .mobile-navigation-close-icon:before {
    position: absolute;
    top: 23px;
    left: 8px;
    content: "";
    width: 24px;
    height: 3px;
    background: #333333;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-menu-overlay__header .mobile-navigation-close-icon:after, .page-oppen-off-sidebar__header .mobile-navigation-close-icon:after {
    position: absolute;
    top: 23px;
    left: 8px;
    content: "";
    width: 24px;
    height: 3px;
    background: #333333;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-menu-overlay__header .mobile-navigation-close-icon:hover, .page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover {
    color: var(--blue);
  }
  .mobile-menu-overlay__header .mobile-navigation-close-icon:hover:before, .mobile-menu-overlay__header .mobile-navigation-close-icon:hover:after, .page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover:before, .page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover:after {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .mobile-menu-overlay__body, .page-oppen-off-sidebar__body {
    padding: 20px 40px 100px;
  }
  .mobile-menu-overlay__body .offcanvas-navigation, .page-oppen-off-sidebar__body .offcanvas-navigation {
    /* onepage style */
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li > a, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li > a {
    display: block;
    color: #ffffff;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li > a:hover, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li > a:hover {
    color: #ffffff;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li:last-child, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li:last-child {
    border-bottom: 0;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children {
    position: relative;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children.active .menu-expand:before, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children.active .menu-expand:before {
    content: "\f106";
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .menu-expand, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .menu-expand {
    position: absolute;
    right: 0;
    top: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .menu-expand:hover, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .menu-expand:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .menu-expand:before, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .menu-expand:before {
    content: "\f107";
    font-size: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu {
    padding: 12px 0 14px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li a, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 0;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li a:hover, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li a:hover {
    color: #ffffff;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li:last-child, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li:last-child {
    border-bottom: 0;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children {
    position: relative;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children.active .menu-expand:before, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children.active .menu-expand:before {
    content: "\f106";
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand {
    position: absolute;
    right: 0;
    top: 6px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:hover, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:before, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:before {
    content: "\f107";
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children {
    position: relative;
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children.active .menu-expand:before, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children.active .menu-expand:before {
    content: "\f106";
  }
  .mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children .menu-expand:before, .page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children .menu-expand:before {
    content: "\f107";
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .mobile-menu-overlay__body .offcanvas-navigation--onepage > ul > li.active > a, .page-oppen-off-sidebar__body .offcanvas-navigation--onepage > ul > li.active > a {
    font-weight: 700;
  }
  
  .header__navigation.preview-menu {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .header__navigation.preview-menu .navigation-menu-right {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  
  .preview-header-inner {
    padding: 20px 0;
  }
  @media only screen and (min-width: 768px) and (max-width: 991.5px), only screen and (max-width: 767px) {
    .preview-header-inner {
      padding: 0;
    }
  }
  .preview-header-inner.is-sticky {
    padding: 0px 0;
  }
  .preview-header-inner.is-sticky .header__navigation.preview-menu ul > li > a {
    color: #333;
  }
  .preview-header-inner.is-sticky .header__actions--preview .ht-btn {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    line-height: 42px;
    height: 43px;
  }
  .preview-header-inner .header__actions--preview .ht-btn {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #ffffff;
  }
  .preview-header-inner .header__actions--preview .ht-btn:hover {
    background: #ffffff;
    color: var(--blue);
  }
  
  /* =============== New Header CSS ================ */
  
  .header-top .image img{
    width: 100px;
  }
  
  .header-top .heading-2{
    font-size: 22px;
    font-weight: 700;
    margin-top: -10px;
    animation: blink 700ms linear infinite;
  }
  
  .submenu-corner{
    left: calc(100% - 280px);
  }
  
  .submenu .submenu-corner{
    left: -100% !important;
  }
  
  .header-bottom-wrap .header__logo img{
    width: 70px;
  }
  
  .mobile-menu-overlay .logo img{
    width: 70px;
  }
  
  .mobile-menu-overlay.active .mobile-menu-overlay__inner::-webkit-scrollbar{
    width: 5px;
    background: var(--black);
    border-radius: 10px;
  }
  
  .mobile-menu-overlay.active .mobile-menu-overlay__inner::-webkit-scrollbar-thumb{
    background-color: var(--orange);
    border-radius: 10px;
  }
  
  /* ============ addon CSS here for header =========== */
  
  .header-area .icons{
    display: flex;
  }
  
  .header-area .icons i{
    padding: 0px 12px;
    font-size: 22px;
    cursor: pointer;
  }
  
  .header-area .icons .quantity{
    position: absolute;
    right: -5px;
    top: -8px;
    font-size: 10px;
    color: white;
    background-color: black;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  
  



 


/* ========== upper section here ========== */

.upper_section{
  background-color: var(--yellowBg);
  height: 300px;
  border-bottom: 1px solid var(--outline);
  background-image: url(../images/about-bg.png);
  background-size: cover;
  background-position: center;
}

.upper_section h1{
  font-size: 40px;
  font-weight: 700;
}

.upper_section .breadcrumbs a{
  font-weight: 500;
}

.upper_section .breadcrumbs span{
  color: gray;
}


  





/* -- ===================== Footer section here ======================= -- */

.footer-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('../images/2nd.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
  }
  
  .footer-section .container {
    max-width: 1400px !important;
  }
  
  .footer-cta {
    border-bottom: 1px solid #ccc;
  }
  
  .single-cta i {
    color: var(--orange);
    font-size: 30px;
    float: left;
    margin-top: 8px;
  }
  
  .cta-text {
    padding-left: 15px;
    display: inline-block;
  }
  
  .cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .cta-text span a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
  }
  
  .cta-text span a:hover{
    color: var(--orange);
  }

  .footer-section .all-products ul{
    display: flex;
    color: white;
    flex-wrap: wrap;
    gap: 5px 30px;
  }

  .footer-section .all-products ul li{
    position: relative;
    font-weight: 500;
  }

  .footer-section .all-products ul li:not(:last-child)::after{
    content: '';
    position: absolute;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    background-color: #ccc;
    right: -15px;
    bottom: 0;
  }

  .footer-section .all-products ul li a:hover{
    color: var(--orange);
    transition: 0ms;
    text-decoration: underline;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    max-width: 150px;
  }
  
  .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--white);
    line-height: 28px;
    font-weight: 600;
  }
  
  .footer-social-icon span {
    position: relative;
    color: var(--orange);
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .footer-social-icon span::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background-color: var(--orange);
  }
  
  .footer-social-icon a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
  }
  
  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
  }
  
  .facebook-bg {
    background: #00c6ff;
    background: linear-gradient(to right,
        #00c6ff, #0072ff);
  }
  
  .instagram-bg {
    background: #833ab4;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  }
  
  .whatsaap-bg {
    background: #25D366;
  }

  .youtube-bg {
      background: #FF0033;
  }
  
  .footer-widget-heading h3 {
    color: var(--orange);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
  }
  
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--orange);
  }

.footer-widget ul li {
    width: 100%;
}
  
  .footer-widget ul li:not(:last-child){
    margin-bottom: 12px;
  }
  
  .footer-widget ul li a:hover {
    color: var(--orange);
  }
  
  .footer-widget ul li a {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    transition: 100ms;
  }
  
  .copyright-area {
    background: #202020;
    padding: 15px 0;
  }
  
  .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
  }
  
  .copyright-text p a {
    color: var(--white);
  }
  
  .footer-menu li {
    display: inline-block;
    margin-left: 20px;
  }
  
  .footer-menu li:hover a {
    color: var(--white);
  }
  
  .footer-menu li a {
    font-size: 14px;
    color: #878787;
  }
  
  .extra-widget {
    width: 200px;
  }
  
  








  
  
/* ================= Media Query here =================== */

@media (max-width:992px) {

    .extra-widget {
        width: auto;
    }

    .footer-section .container {
        max-width: 1320px;
    }

}

@media (max-width:768px){

  .upper_section{
      height: 200px;
  }

}

@media (max-width:576px){

  .upper_section h1{
      font-size: 30px;
  }

}
  
@media (max-width:450px) {

    .header-area .icons i {
        padding: 0px 8px;
        font-size: 20px;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }

}

@media (max-width:400px) {

    .footer-widget1 ul li {
        float: none;
    }

}