/* ===================== 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: 1199px), only screen and (min-width: 768px) and (max-width: 991px), 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: 1199px), only screen and (min-width: 768px) and (max-width: 991px), 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: 991px), 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.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: 991px), 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:1199px){
  .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: 1200px) 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: 1199px) {
  .header-top-info-slider-werap {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .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: 1200px) 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: 991px), 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: 1200px) 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: 1199px) {
  .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: 1199px) {
  .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: 991px), 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;
}









/*-- =============  Banner Css ============ -- */

.banner {
  margin-top: -2px;
}

.banner .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: '';
  background-image: none;
}

.banner .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: '';
}

/* Custom Swiper Navigation Styles */
.custom-swiper-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 0%;
  background-image: none;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.banner .swiper-button-prev i,
.banner .swiper-button-next i {
  font-size: 20px;
}



/* =========== Feature_Categories section here ============ */

.feature_categories .upper{
	font-size: 18px;
	color: black;
	font-weight: 700;
}

.feature_categories .top{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.feature_categories .navi{
	display: flex;
	width: 120px;
	position: relative;
	height: 40px;
}

.feature_categories .swiper-pagination-fraction{
	position: absolute;
	top: 3px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	font-weight: 900;
	font-size: 20px;
}

.feature_categories .swiper-button-next, .feature_categories .swiper-button-prev{
	height: 40px;
	width: 40px;
	border-radius: 10% !important;
	background-color: var(--orange);
	display: grid;
	place-items: center;
	margin-top: 0;
	top: 0;
  background-image: none;
}
  
.feature_categories .swiper-button-prev:after, .feature_categories .swiper-button-next:after{
	font-size: 16px;
	color: white;
	font-weight: 900;
}

.feature_categories .top h3{
	font-size: 35px;
	font-weight: 700;
	color: var(--black);
}

.feature_categories .feature_categoriess .data{
	padding: 30px 15px;
	border-radius: 10px;
	background-color: var(--lightBg);
	height: 60%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}
.feature_categories .feature_categoriess .swiper-slide .icon{
  display: grid;
  place-items: center;
}

.feature_categories .feature_categoriess .swiper-slide .icon img{
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 30px;

}
.feature_categories .feature_categoriess .swiper-slide h4{
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
}

.feature_categories .feature_categoriess .data:hover{
    background-color: var(--blue);
    transform: translateY(-10px);
    cursor: pointer;
}

.feature_categories .data:hover .detail h4{
  color: var(--white) !important;
}




/* ================ discount section here =============== */

.discount-section{
  padding-top: 20px;
  padding-bottom: 70px;
}

.discount-section .image{
  border-radius: 10px;
  overflow: hidden;
}

.discount-section .image a{
  display: inline;
}






/* =========== flash sale section here ============ */

  .flash_sale{
    background-color: var(--lightBg);
  }
  
  .flash_sale .top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
  }
  .flash_sale .top .head h2{
    font-size: 35px;
    font-weight: 700;
  }
  .flash_sale .navi{
    display: flex;
    justify-content: space-between;
    width: 200px;
    position: relative;
    height: 40px;
  }
  
  .flash_sale .swiper-pagination-fraction{
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    font-weight: 900;
    font-size: 20px;
  }
  
  .flash_sale .swiper-button-next, .flash_sale .swiper-button-prev{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--orange);
    display: grid;
    place-items: center;
    margin-top: 0;
    top: 0;
    background-image: none;
  }
    
  .flash_sale .swiper-button-prev:after, .flash_sale .swiper-button-next:after{
    font-size: 16px;
    color: white;
    font-weight: 900;
  }
  
  .flash_sale .top h3{
    font-size: 35px;
    font-weight: 700;
    color: #055986;
  }
  
  .flash_sale .flash_slider .data{
    border-radius: 10px;
    background-color: white;
  }
  .flash_sale .flash_slider .swiper-slide .icon{
   border-bottom: 2px solid rgb(205, 205, 205);
   padding-top: 50px;
   position: relative;
  }
  
  .flash_sale .flash_slider .data .details{
   padding: 24px;
  }
  
  .flash_sale .flash_slider .swiper-slide .icon img{
    width: 150px;
    height: 150px;
    margin-bottom: 40px;
    border-radius: 20px !important;
    overflow: hidden;
    transform: perspective(500px) rotateY(-7deg) rotateX(10deg);
    transition: transform 0.3s ease;
  }
  
  .flash_sale .flash_slider .swiper-slide .icon .offer{
    position: absolute;
    left: 20px;
    top: 20px;
  }
  .flash_sale .flash_slider .swiper-slide .icon .offer h6{
    background-color: var(--orange);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
  }
  .flash_sale .flash_slider .swiper-slide:hover .icon img {
    transform: perspective(500px) rotateY(0deg) rotateX(0deg);
    right: 0px;
  }
  
  .flash_sale .flash_slider .swiper-slide h4{
    font-size: 25px;
    font-weight: 700;
    color: var(--black);
  }
  
  .flash_sale .flash_slider .data .details .star i{
    color: var(--orange);
    font-size: 16px;
  }
  
  .flash_sale .flash_slider .data .details .star h5{
    font-size: 16px;
  }
  .flash_sale .flash_slider .data .details .star span{
    font-weight: 700;
    padding-left: 4px;
    font-size: 18px;
  }
  .flash_sale .flash_slider .data .details h6{
  font-weight: 600;
  font-size: 20px;
  }
  .flash_sale .flash_slider .data .details .anchor .cart-btn{
    border: 2px solid var(--blue);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    transition: 300ms;
  }
  .flash_sale .flash_slider .data .details .anchor .cart-btn:hover{
    background-color: var(--blue);
    color: var(--white);
  }













  /* ================ free shipping section here =============== */

.free_shipping .image{
  border-radius: 10px;
  overflow: hidden;
}

.free_shipping .image a{
  display: inline;
}

.free_shipping .image img{
  width: 100%;
  height: 100%;
}















/* =============== trending section here ============= */

.trending{
  background-color: var(--lightBg);
}

.trending .box h5{
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 30px;
}

.trending .box .data_card{
  padding: 20px 16px;
  border-radius: 12px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  transition: 200ms;
  border: 2px solid transparent;
}

.trending .box a:not(:last-child){
  margin-bottom: 20px;
}

.trending .box .data_card:hover{
  border: 2px solid var(--outline);
}

.trending .box .data_card:not(:last-child){
  margin-bottom: 20px;
}

.trending .box .data_card .image{
  width: 30%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trending .box .data_card .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trending .box .data_card .info{
  padding-left: 20px;
  border-left: 1.5px solid var(--outline);
}

.trending .box .data_card .info h6{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trending .box .data_card .info p{
  font-size: 18px;
  font-weight: 600;
}



















/* ================ choose us section here =============== */

.why-choose_us{
  background-image: url(../images/choose_bg.webp);
  position: relative;
  overflow: hidden;
  height: 850px;
}

.why-choose_us h2{
  font-weight: 700;
  text-align: center;
  font-size: 35px;
  margin-bottom: 50px;
  position: relative;
}

.why-choose_us h2::before{
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  border-radius: 100px;
  background-color: black;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.why-choose_us .image1 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 50%;
  animation: revolve 30s linear infinite;
}

@keyframes revolve {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

.why-choose_us .col{
  height: 450px;
}

.why-choose_us .data .icon{
  height: 120px;
  width: 120px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.why-choose_us .data{
  height: 270px;
  width: 80%;
  background-color: white;
  text-align: center;
  border-radius: 10px;
  padding: 25px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.why-choose_us .data:hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .25);
}

.why-choose_us .data .icon img{
  width: 80%;
}

.why-choose_us .data h6{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--blue);
}




/* ==================== testimonial section here ==================== */

.testimonial {
    background-image: url(../images/shape-6.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.testimonial .upper h2 {
    font-size: 35px;
    font-weight: 700;
    color: #055986
}

.testimonial .upper p {
    color: #f17732;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700
}

.testimonial .icon-box img {
    height: 65px;
    margin: auto;
}

.testimonial .inner-box p {
    line-height: 25px
}

.testimonial .inner-box h4 {
    color: #03c0b4;
    font-weight: 600
}

.testimonial .swiper-slide .star i {
    color: #f7b704
}

.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction,
.testimonial .swiper-horizontal>.swiper-pagination-bullets {
    bottom: -5px
}

@media (max-width: 576px) {

    .testimonial .upper h2 {
        font-size: 30px
    }

    .testimonial .upper p {
        font-size: 18px
    }

    .testimonial .testimonial_slider p {
        font-size: 15px;
        text-align: justify;
        text-align-last: center
    }

}

/* ================== Social media section =============== */

.social_media .gt-6{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 200px;
  opacity: 0.5;
}

.social_media .gt-7{
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 200px;
  opacity: 0.5;
}

.social_media h2{
  font-size: clamp(32px, 3vw, 80px);
  font-weight: 900;
  color: black;
}

.social_media h3{
  color: var(--blue);
  font-size: 22px;
  font-weight: 600;
}

.social_media .swiper-slide{
  height: 330px;
  border-radius: 12px;
  overflow: hidden;
}

.social_media .swiper-slide a{
  display: inline;
  height: 100%;
}

.social_media .swiper-slide img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.social_media .anchor2{
  padding: 15px 28px;
  background-color: var(--orange);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  border: 2px solid var(--orange);
  transition: 300ms;
}

.social_media .anchor2:hover{
  background-color: transparent;
  color: black;
}










/* -- ===================== 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.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.footer-section .container {
  max-width: 1400px !important;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.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;
}

.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;
}

.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 {
  display: inline-block;
  width: 50%;
}

.footer-widget ul li:not(:last-child){
  margin-bottom: 12px;
}

.footer-widget1 ul li {
  float: left;
}

.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;
}

.footer-widget1 .ps1 {
  padding-left: 20px;
}

.extra-widget {
  width: 200px;
}













/* ================= Media Query here =============== */

@media (max-width:1400px){
  .trending .box .data_card .info h6{
    font-size: 18px;
  }
}

@media (max-width:1200px){

  .trending .box .data_card{
    padding: 15px;
  }
  .trending .box .data_card .info h6{
    font-size: 17px;
  }


  .why-choose_us{
    height: 800px;
  }

  .why-choose_us .image1 {
    top: 60%;
    width: 70%;
  }

  .why-choose_us .data{
    width: 100%;
  }

}

@media (max-width:992px){

  .footer-section .container{
    max-width: 1320px;
  }
  .footer-widget1 .ps1{
    padding-left: 0px;
  }
  
}

@media (max-width: 850px) {

  .why-choose_us{
    height: 750px;
  }

  .why-choose_us .image1 {
    top: 65%;
  }

  .why-choose_us .data{
    height: 300px;
    width: 100%;
  }

}

@media (max-width:768px){

  .flash_sale .flash_slider .swiper-slide h4{
    font-size: 20px;
  }

  .trending .box .data_card .info h6{
    font-size: 22px;
  }

}

@media (max-width: 767.5px) {

  .why-choose_us{
    height: 1050px;
  }

  .why-choose_us .col{
    height: auto;
  }

  .why-choose_us .data{
    height: 250px;
  }

  .why-choose_us .image1 {
    top: 65%;
    width: 100%;
  }

}

@media (max-width:576px){

  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    height: 30px;
    width: 30px;
  }
  .banner .swiper-button-prev i,
  .banner .swiper-button-next i {
    font-size: 16px;
  }

  .feature_categories .top h3, .flash_sale .top .head h2, .trending .box h5{
    font-size: 28px;
  }

  .trending .box .data_card .info h6{
    font-size: 18px;
  }

}

@media (max-width: 575.5px) {

  .why-choose_us{
    height: auto;
  }

  .why-choose_us .data{
    height: auto;
  }

  .why-choose_us .data .icon{
    height: auto;
    margin-bottom: 20px;
  }

}

@media (max-width:450px){

  .header-area .icons i{
    padding: 0px 8px;
    font-size: 20px;
  }

  .feature_categories .top h3, .flash_sale .top .head h2, .trending .box h5{
    font-size: 22px;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }


  .why-choose_us h2{
    font-size: 22px;
  }

}

@media (max-width:400px){

  .feature_categories .feature_categoriess .data{
    padding: 15px 15px;
  }

  .footer-widget1 ul li{
    float: none;
  }

}
.cvno {
    padding: 7px 9px 7px 40px;
    background: url(../images/cvno.png) no-repeat 1.5% 45%;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #C0392B;
    background-color: #F2DEDE;
    font-weight: bold;
    border-color: #D8BDBD;
}
.cvyes {
    padding: 7px 9px 7px 40px;
    background: url(../images/cvyes.png) no-repeat 1.5% 45%;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #3C763D;
    font-weight: bold;
    background-color: #DFF0D8;
    border-color: #B9DDAB;
}




/* ========== Popup Code Here =========== */

#blur-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1000;
}

/* Modal content */
.blur-content {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 8px;
  max-width: 50%;
  width: 100%;
  text-align: center;
}

#blur-box .close-btn {
  position: absolute;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  top: -10px;
  right: -10px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  border-radius: 50%;
  background-color: var(--orange);
}

#blur-box .close-btn:hover{
  scale: 1.1;
}

.blur-content img {
  max-width: 100%;
  height: auto;
}


@media (max-width:1400px){
  .blur-content {
    max-width: 70%;
  }
}

@media (max-width:1100px){
  .blur-content {
    max-width: 80%;
  }
}

@media (max-width: 576px){
  .blur-content {
    padding: 7px;
    max-width: 70%;
  }
}

@media (max-width: 500px){
  .blur-content {
    max-width: 80%;
  }
}

@media (max-width: 400px){
  .blur-content {
    max-width: 90%;
  }
}
   .wrap {
            padding: 15px;
        }

        h1 {
            font-size: 28px;
        }

        h4,
        modal-title {
            font-size: 18px;
            font-weight: bold;
        }

        .no-borders {
            border: 0px;
        }

        .body-message {
            font-size: 18px;
        }

        .centered {
            text-align: center;
        }

        .btn-primary {
            background-color: #2086c1;
            border-color: transparent;
            outline: none;
            border-radius: 8px;
            font-size: 15px;
            padding: 10px 25px;
        }

            .btn-primary:hover {
                background-color: #2086c1;
                border-color: transparent;
            }

            .btn-primary:focus {
                outline: none;
            }