:root {
  --cdl-blue: #0d6efd;
  --cdl-indigo: #6610f2;
  --cdl-purple: #6f42c1;
  --cdl-pink: #d63384;
  --cdl-red: #dc3545;
  --cdl-orange: #fd7e14;
  --cdl-yellow: #ffc107;
  --cdl-green: #198754;
  --cdl-teal: #20c997;
  --cdl-cyan: #0dcaf0;
  --cdl-black: #191919;
  --cdl-white: #FFFFFF;
  --cdl-gray: #686868;
  --cdl-gray-dark: #343a40;
  --cdl-gray-100: #F4F4F4;
  --cdl-gray-200: #EAEAEA;
  --cdl-gray-300: #dee2e6;
  --cdl-gray-400: #ced4da;
  --cdl-gray-500: #8E969C;
  --cdl-gray-600: #0d3354;
  --cdl-gray-700: #495057;
  --cdl-gray-800: #343a40;
  --cdl-gray-900: #212529;
  --cdl-primary: #A40404;
  --cdl-secondary: #8E969C;
  --cdl-success: #198754;
  --cdl-info: #0dcaf0;
  --cdl-warning: #ffc107;
  --cdl-danger: #dc3545;
  --cdl-light: #f8f9fa;
  --cdl-dark: #191919;
  --cdl-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --cdl-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --cdl-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --cdl-body-font-family: var(--cdl-font-sans-serif);
  --cdl-body-font-size: 1rem;
  --cdl-body-font-weight: 400;
  --cdl-body-line-height: 1.5;
  --cdl-body-color: #212529;
  --cdl-body-bg: #FFFFFF;
  --cdl-border-width: 1px;
  --cdl-border-style: solid;
  --cdl-border-color: #dee2e6;
  --cdl-border-color-translucent: rgba(25, 25, 25, 0.175);
  --cdl-border-radius: 0.375rem;
  --cdl-border-radius-sm: 0.25rem;
  --cdl-border-radius-lg: 0.5rem;
  --cdl-border-radius-xl: 1rem;
  --cdl-border-radius-2xl: 2rem;
  --cdl-border-radius-pill: 50rem;
  --cdl-link-color: #0d6efd;
  --cdl-link-hover-color: #0a58ca;
  --cdl-code-color: #d63384;
  --cdl-highlight-bg: #fff3cd;
}

html[data-theme='light'] {
  --cdl-primary: #A40404;
  --cdl-primary-dark: #A40404;
  --cdl-secondary: #8E969C;
  --cdl-gray: #686868;
  --cdl-gray-100: #F4F4F4;
  --cdl-gray-200: #EAEAEA;
  --cdl-gray-500: #8E969C;
  --cdl-black: #191919;
  --cdl-white: #ffffff;
  --cdl-dark: #191919;
  --cdl-body-bg: #ffffff;
}

html[data-theme='dark'] {
  --cdl-primary: #A40404;
  --cdl-primary-dark: #ffffff;
  --cdl-secondary: #ffffff;
  --cdl-gray: #ffffff;
  --cdl-gray-100: #401E1E;
  --cdl-gray-200: #ffffff;
  --cdl-gray-500: #8E969C;
  --cdl-black: #ffffff;
  --cdl-white: #ffffff;
  --cdl-dark: #191919;
  --cdl-body-bg: #191919;
}

header#header {
  width: 100%;
  min-height: 9rem;
}

header#header.darkHeader .header {
  position: fixed;
  top: 0;
  z-index: 3;
  background: #FFFFFF;
  border-bottom: 1px #DADADA solid;
}

header#header.darkHeader .header-top {
  display: none !important;
}

header#header.darkHeader .header .logo img {
  width: 12rem;
}

header#header.darkHeader .header .header-right {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header#header.darkHeader .header .header-right .navigation-section {
  width: 100%;
}

@media (max-width: 960px) {
  header#header.darkHeader .header .header-right .navigation-section {
    width: 80%;
  }
}

header#header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px #DADADA solid;
}

@media (max-width: 960px) {
  header#header .header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.5rem 1rem;
  }
}

header#header .header .menu-click {
  display: none;
}

@media (max-width: 960px) {
  header#header .header .menu-click {
    display: block;
  }
  header#header .header .menu-click img {
    display: block;
    max-width: 100%;
  }
}

header#header .header .logo {
  width: 20%;
  text-align: center;
}

@media (max-width: 960px) {
  header#header .header .logo {
    width: 40%;
    text-align: center;
  }
}

header#header .header .logo img {
  display: block;
  margin: auto;
  width: 100%;
}

header#header .header .header-right {
  width: 80%;
}

@media (max-width: 960px) {
  header#header .header .header-right {
    width: auto;
  }
}

header#header .header .header-right .header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: #302E30;
  height: 5rem;
  padding: 0 5rem 0 1.5rem;
}

@media (max-width: 960px) {
  header#header .header .header-right .header-top {
    display: none;
  }
}

header#header .header .header-right .header-top .header-search {
  background: #525252;
  border-radius: 6px;
  width: 21.25rem;
  height: 3rem;
}

header#header .header .header-right .header-top .header-search input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0 1rem;
  color: #B6B6B6;
  font-size: 1.2rem;
}

header#header .header .header-right .header-top .header-search input::-webkit-input-placeholder {
  color: #B6B6B6;
}

header#header .header .header-right .header-top .header-search input:-ms-input-placeholder {
  color: #B6B6B6;
}

header#header .header .header-right .header-top .header-search input::-ms-input-placeholder {
  color: #B6B6B6;
}

header#header .header .header-right .header-top .header-search input::placeholder {
  color: #B6B6B6;
}

header#header .header .header-right .header-top .header-search input:-ms-input-placeholder {
  color: #B6B6B6;
}

header#header .header .header-right .header-top .header-search input::-ms-input-placeholder {
  color: #B6B6B6;
}

header#header .header .header-right .header-top .header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header#header .header .header-right .header-top .header-btn .header-links {
  position: relative;
  background: #FFFFFF;
  border-radius: 6px;
  width: 9rem;
  padding: 0.8rem 1rem;
  font-weight: 700;
  margin-right: 1rem;
  background-image: url(../images/profile-arrow.svg);
  background-repeat: no-repeat;
  background-position: 90%;
  padding-right: 2rem;
}

header#header .header .header-right .header-top .header-btn .header-links span {
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
}

header#header .header .header-right .header-top .header-btn .header-links span a {
  color: #302E30;
}

header#header .header .header-right .header-top .header-btn .login-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

header#header .header .header-right .navigation-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 5rem 0.5rem 2rem;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section {
    background: #302E30;
    height: 100%;
    z-index: 9;
    width: 80%;
    display: block;
    padding-top: 6rem;
    position: fixed;
    right: -100%;
    height: 100%;
    top: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  header#header .header .header-right .navigation-section.active {
    right: 0;
  }
  header#header .header .header-right .navigation-section.active::before {
    background: rgba(48, 46, 48, 0.5);
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

header#header .header .header-right .navigation-section .nav-close {
  display: none;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section .nav-close {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  header#header .header .header-right .navigation-section .nav-close img {
    display: block;
  }
}

header#header .header .header-right .navigation-section .msite-header-btn {
  display: none;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section .msite-header-btn {
    display: block;
  }
}

header#header .header .header-right .navigation-section .msite-header-btn span {
  display: block;
}

header#header .header .header-right .navigation-section .msite-header-btn .msite-login-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: inline-block;
}

header#header .header .header-right .navigation-section .msite-header-btn .msite-register-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #FFFFFF;
  display: inline-block;
}

header#header .header .header-right .navigation-section nav {
  width: 100%;
}

header#header .header .header-right .navigation-section nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section nav ul {
    display: block;
  }
}

header#header .header .header-right .navigation-section nav ul li {
  padding: 0.3rem 1.4rem 0.3rem 1.4rem;
}

header#header .header .header-right .navigation-section nav ul li:nth-child(4) {
  background-color: #F59D24;
  border-radius: 100px;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section nav ul li:nth-child(4) {
    display: inline-block;
    margin: 1rem 0;
  }
}

header#header .header .header-right .navigation-section nav ul li:nth-child(4) a {
  color: #FFFFFF;
  border: 0;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section nav ul li:nth-child(4) a {
    padding: 0 2rem;
  }
}

header#header .header .header-right .navigation-section nav ul li:nth-child(4) a.active {
  color: #FFFFFF;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section nav ul li {
    padding: 0.7rem 0;
  }
}

header#header .header .header-right .navigation-section nav ul li a {
  color: #302E30;
  font-weight: 400;
  font-size: 1.125rem;
  border-bottom: 3px #FFFFFF solid;
  padding-bottom: 0.2rem;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section nav ul li a {
    color: #FFFFFF;
    border-color: #302E30;
  }
}

header#header .header .header-right .navigation-section nav ul li a.active {
  color: #F59D24;
  font-weight: 700;
  border-bottom: 2px #F59D24 solid;
}

header#header .header .header-right .navigation-section .wishlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #302E30;
  font-size: 1rem;
}

@media (max-width: 960px) {
  header#header .header .header-right .navigation-section .wishlist {
    display: none;
  }
}

header#header .header .header-right .navigation-section .wishlist i {
  background: #F59D24;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 100px;
  margin-right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header#header .header .header-right .navigation-section .wishlist i img {
  display: block;
  margin: auto;
}

header#header .msite-search {
  display: none;
  width: 100%;
  background-color: #302E30;
  width: 100%;
}

@media (max-width: 960px) {
  header#header .msite-search {
    display: block;
  }
}

header#header .msite-search i {
  background-color: #F59D24;
  min-width: 30px;
  min-height: 30px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

header#header .msite-search i img {
  display: block;
}

header#header .msite-search .header-search {
  width: 90%;
  padding-left: 1rem;
}

header#header .msite-search .header-search input {
  background-color: #525252;
  border: 0;
  border-radius: 6px;
}

header#header .user-login {
  position: relative;
  width: 143px;
}

header#header .user-login:hover span {
  background-color: #FFFFFF;
}

header#header .user-login:hover ul {
  display: block;
}

header#header .user-login span {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 1rem;
  display: block;
  background-image: url(../images/profile-arrow.svg);
  background-repeat: no-repeat;
  background-position: 90%;
}

header#header .user-login ul {
  display: none;
  position: absolute;
  top: 45px;
  background: #FFFFFF;
  border-radius: 0px 0px 6px 6px;
  padding: 1rem;
  width: 100%;
  z-index: 1;
}

@media (max-width: 960px) {
  header#header .user-login ul {
    padding-top: 0;
  }
}

header#header .user-login ul li {
  padding: 0.6rem 0;
  line-height: 1.7rem;
}

header#header .user-login ul li:last-child {
  padding-bottom: 0;
}

header#header .user-login ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
}

header#header .user-login ul li a i {
  min-width: 24px;
  min-height: 24px;
  background-color: #F59D24;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.5rem;
}

header#header .user-login ul li a i img {
  display: block;
}

.cart-icon-fixed {
  position: fixed;
  right: 2rem;
  top: 80%;
  z-index: 9;
}

@media (max-width: 960px) {
  .cart-icon-fixed {
    right: 1rem;
  }
}

.cart-icon-fixed img {
  display: block;
}

@media (max-width: 960px) {
  .cart-icon-fixed img {
    width: 4rem;
  }
}

.footer {
  width: 100%;
  position: relative;
  background: #302E30;
  background-image: url(../images/footer-circel-g.png), url(../images/footer-bg-icon.png);
  background-repeat: no-repeat;
  background-size: 31vw, 31%;
}

@media (max-width: 960px) {
  .footer {
    background-image: none;
  }
}

.footer .footer-logo {
  background: #FFFFFF;
  border-radius: 100px;
  text-align: center;
  height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 4vw;
  top: 6vw;
  width: 20vw;
}

@media (max-width: 960px) {
  .footer .footer-logo {
    display: none;
  }
}

@media (max-width: 960px) {
  .footer .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer .footer-nav ul li {
  padding: 0.1rem 0;
}

@media (max-width: 960px) {
  .footer .footer-nav ul li {
    width: 50%;
    padding: 0.3rem 0;
  }
}

.footer .footer-nav ul li a {
  color: #FFFFFF;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
}

@media (max-width: 960px) {
  .footer .footer-nav ul li a {
    font-size: 1.2rem;
  }
}

.footer .footer-Subscribe {
  width: 100%;
}

.footer .footer-Subscribe span {
  color: #F59D24;
  font-weight: 700;
  font-size: 1rem;
  padding-bottom: 1.5rem;
  display: block;
}

@media (max-width: 960px) {
  .footer .footer-Subscribe span {
    padding-bottom: 0.7rem;
  }
}

.footer .footer-Subscribe input {
  background: #FFFFFF;
  border-radius: 6px;
  width: 16rem;
  border: 0;
  padding: 0 1rem;
  height: 38px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  margin-bottom: 1.5rem;
}

.footer .footer-Subscribe button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  font-size: 1rem;
  display: block;
}

.footer .footer-contact {
  width: 100%;
}

@media (max-width: 960px) {
  .footer .footer-contact {
    margin: 0.9rem 0;
  }
}

.footer .footer-contact span {
  color: #F59D24;
  font-weight: 700;
  font-size: 1rem;
  padding-bottom: 1.5rem;
  display: block;
}

@media (max-width: 960px) {
  .footer .footer-contact span {
    padding-bottom: 0.5rem;
  }
}

.footer .footer-contact p {
  display: block;
}

.footer .footer-contact p a {
  color: #FFFFFF;
  font-size: 1rem;
}

.footer .footer-contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-contact ul li {
  padding-right: 1rem;
}

.footer .footer-contact ul li:last-child {
  padding-right: 0;
}

.footer .footer-contact ul img {
  display: block;
}

.footer .copy-right {
  width: 100%;
  padding-top: 1rem;
}

.footer .copy-right p {
  color: #F59D24;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 960px) {
  .footer .copy-right p {
    width: 125px;
  }
}

.footer .copy-right ul {
  padding-left: 2rem;
}

@media (max-width: 960px) {
  .footer .copy-right ul {
    padding-left: 0;
    padding-bottom: 0.5rem;
    width: 100%;
  }
}

.footer .copy-right ul li {
  padding: 0 0.8rem;
}

@media (max-width: 960px) {
  .footer .copy-right ul li {
    padding: 0;
    width: 100%;
    padding-bottom: 0.4rem;
  }
}

.footer .copy-right ul li a {
  color: #FFFFFF;
  font-size: 1rem;
  text-decoration: underline;
}

.footer .copy-right .for-msite {
  display: none;
}

@media (max-width: 960px) {
  .footer .copy-right .for-msite {
    display: block;
    margin-right: -15px;
  }
}

.footer .copy-right .for-msite img {
  display: block;
  max-width: 100%;
}

.page-load .home-hero-section .trans {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.home-hero-section {
  width: 100%;
  background: linear-gradient(97.02deg, #F59D24 0.23%, #F8BA64 99.17%);
  position: relative;
  padding: 5rem 0;
}

.home-hero-section .fade-in {
  opacity: 0;
}

.home-hero-section .right-trans {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.home-hero-section .trans {
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-property: all;
  -webkit-transition-timing-function: ease;
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.4s;
  -moz-transition-property: all;
  -moz-transition-timing-function: ease;
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.4s;
  -ms-transition-property: all;
  -ms-transition-timing-function: ease;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.4s;
  -o-transition-property: all;
  -o-transition-timing-function: ease;
}

@media (max-width: 960px) {
  .home-hero-section {
    padding: 2rem 0 4rem;
  }
}

.home-hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-image: url(../images/hero-bg-img.png);
  top: 0;
  background-size: contain;
  background-repeat: repeat;
  background-position: left center;
}

.home-hero-section .container {
  width: 90%;
}

.home-hero-section .home-hero-img {
  width: 100%;
}

.home-hero-section .home-hero-img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

@media (min-width: 960px) {
  .home-hero-section .home-hero-img img {
    width: 44vw;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.home-hero-section .home-hero-content {
  background: #FFFFFF;
  height: 100%;
  margin-left: -2rem;
  padding: 4rem 3rem;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .home-hero-section .home-hero-content {
    padding: 1rem;
    margin: -2rem auto;
    width: 93%;
  }
}

.home-hero-section .home-hero-content h2 {
  font-size: 1.875rem;
  padding-bottom: 1.3rem;
  font-weight: 700;
}

.home-hero-section .home-hero-content p {
  line-height: 1.4375rem;
  color: #302E30;
}

.home-hero-section .home-hero-content .hero-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: inline-block;
}

.home-hero-section .home-hero-slider {
  width: 100%;
}

.home-hero-section .home-hero-slider .slick-list {
  overflow: hidden;
}

.home-hero-section .home-hero-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.home-hero-section ul.slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.home-hero-section ul.slick-dots li {
  display: inline-block;
  padding: 0 0.3rem;
}

.home-hero-section ul.slick-dots li.slick-active button {
  background-color: #302E30;
}

.home-hero-section ul.slick-dots li button {
  font-size: 0;
  border: 0;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

.fact-section {
  width: 100%;
  background: linear-gradient(90.05deg, #7D4B05 0.63%, #302E30 99.93%);
}

.fact-section .fact-row i {
  margin-right: 1rem;
}

.fact-section .fact-row i img {
  display: block;
}

@media (max-width: 960px) {
  .fact-section .fact-row i img {
    width: 3rem;
  }
}

.fact-section .fact-row p {
  color: #F59D24;
  margin: 0;
}

.fact-section .fact-row p strong {
  display: block;
  color: #FFFFFF;
  font-size: 3.125rem;
  line-height: 3.5625rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .fact-section .fact-row p strong {
    font-size: 2.5rem;
  }
}

.fact-section .container {
  position: relative;
}

.fact-section .container .cart-icon {
  position: absolute;
  right: 6rem;
  z-index: 2;
  bottom: -4rem;
}

.fact-section .container .cart-icon img {
  width: 5rem;
  display: block;
}

.devenir-vendor-section {
  width: 100%;
  text-align: center;
  background-image: url(../images/devenir-vendor-img.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 22rem;
  position: relative;
}

.devenir-vendor-section::after {
  background: linear-gradient(90.05deg, #D57B00 0.63%, #B56B06 99.93%);
  opacity: 0.85;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
}

.devenir-vendor-section div {
  position: relative;
  z-index: 2;
}

.devenir-vendor-section div h2 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 960px) {
  .devenir-vendor-section div h2 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.devenir-vendor-section div h2::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.devenir-vendor-section div p {
  color: #FFFFFF;
}

.devenir-vendor-section div .apply-btn {
  background-color: #FFFFFF;
  border: 1px solid #302E30;
  border-radius: 6px;
  color: #302E30;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  padding: 0.8rem 1rem;
  display: inline-block;
  background-image: url(../images/apply-arrow.svg);
  background-repeat: no-repeat;
  background-position: 94%;
  padding-right: 3rem;
}

.page-head {
  width: 100%;
  text-align: center;
}

.page-head h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .page-head h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.page-head h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.page-head p {
  color: #302E30;
}

.search-and-filter .search {
  width: 25.75rem;
}

@media (max-width: 960px) {
  .search-and-filter .search.entrepreneur-search input[type=text] {
    width: 70%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .search-and-filter .search.entrepreneur-search .filter {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1rem;
  }
  .search-and-filter .search.entrepreneur-search button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.search-and-filter .search button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  text-align: center;
  padding: 0 1rem;
  margin-left: 1rem;
  height: 3.2rem;
}

.search-and-filter .search .filter {
  color: #302E30;
  font-size: 1rem;
  font-weight: bold;
  background-image: url(../images/filter-icon.svg);
  background-repeat: no-repeat;
  padding-left: 2rem;
  background-position: left center;
  margin-left: 1rem;
  cursor: pointer;
}

.search-and-filter .sort-by {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-and-filter .sort-by span {
  color: #302E30;
  font-weight: 700;
  font-size: 16px;
  padding-right: 0.5rem;
}

.get-in-touch {
  width: 100%;
}

.get-in-touch .heading {
  width: 100%;
  text-align: center;
}

.get-in-touch .heading h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .get-in-touch .heading h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.get-in-touch .heading h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.get-in-touch .get-in-touch-row {
  width: 100%;
  background: #FBD49F;
}

.get-in-touch .get-in-touch-row .we-help {
  margin: auto;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 6rem;
}

@media (max-width: 960px) {
  .get-in-touch .get-in-touch-row .we-help {
    padding: 2rem;
  }
}

.get-in-touch .get-in-touch-row .we-help h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.125rem;
  letter-spacing: 0.02em;
  color: #302E30;
  padding-bottom: 0.7rem;
}

.get-in-touch .get-in-touch-row .we-help p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.02em;
  color: #302E30;
  padding-bottom: 1rem;
}

.get-in-touch .get-in-touch-row .we-help .info-row {
  width: 100%;
  background-color: #F59D24;
  text-align: center;
  border-radius: 6px;
}

@media (max-width: 960px) {
  .get-in-touch .get-in-touch-row .we-help .info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.get-in-touch .get-in-touch-row .we-help .info-row i {
  width: 3rem;
  height: 3rem;
  background-color: #FFFFFF;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 960px) {
  .get-in-touch .get-in-touch-row .we-help .info-row i {
    margin: 0;
  }
}

.get-in-touch .get-in-touch-row .we-help .info-row i img {
  display: block;
  margin: auto;
}

.get-in-touch .get-in-touch-row .we-help .info-row span {
  font-weight: 700;
  font-size: 1.125rem;
  padding-top: 1rem;
  display: block;
}

@media (max-width: 960px) {
  .get-in-touch .get-in-touch-row .we-help .info-row span {
    padding: 0;
    padding-left: 1rem;
  }
}

.get-in-touch .get-in-touch-row .we-help .info-row span a {
  color: #302E30;
}

.my-profile {
  width: 100%;
}

@media (max-width: 960px) {
  .my-profile .tab {
    padding: 0 15px;
  }
}

.my-profile .profile-heading {
  width: 100%;
  text-align: center;
}

.my-profile .profile-heading h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .my-profile .profile-heading h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.my-profile .profile-heading h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.my-profile .my-profile-row {
  max-width: 428px;
  margin: auto;
}

@media (max-width: 960px) {
  .my-profile .my-profile-row ul.profile-tab {
    overflow: auto;
    white-space: nowrap;
    padding: 1rem 0;
    padding-left: 1rem;
  }
}

.my-profile .my-profile-row ul.profile-tab li {
  margin: 0 0.3rem;
}

.my-profile .my-profile-row ul.profile-tab li a {
  background: #FFE9CA;
  border: 1px #FFE9CA solid;
  text-align: center;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #302E30;
  font-size: 1rem;
}

.my-profile .my-profile-row ul.profile-tab li a.active-a {
  border-color: #302E30;
  background: #F59D24;
}

.my-profile .my-profile-row .my-account {
  border: 1px solid #726E72;
  border-radius: 10px;
  width: 100%;
  position: relative;
}

.my-profile .my-profile-row .my-account h2 {
  color: #F59D24;
  font-size: 1.25rem;
  font-weight: 700;
}

.my-profile .my-profile-row .my-account .edit-profile {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-image: url(../images/edit-icon.svg);
  color: #000000;
  padding-left: 2rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  cursor: pointer;
}

.my-profile .my-profile-row .my-account .account-info {
  width: 100%;
}

.my-profile .my-profile-row .my-account .account-info label {
  color: #726E72;
  padding-bottom: 0;
}

.my-profile .my-profile-row .my-account .account-info strong {
  color: #302E30;
  font-size: 1.35rem;
}

.my-profile .my-profile-row .my-account .change-pwd span {
  color: #F59D24;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 1px #F59D24 solid;
}

.my-profile .my-profile-row .my-account .add-payment {
  width: 100%;
  text-align: center;
}

.my-profile .my-profile-row .my-account .add-payment i {
  display: block;
}

.my-profile .my-profile-row .my-account .add-payment i img {
  display: block;
  margin: auto;
}

.my-profile .my-profile-row .my-account .add-payment span {
  color: #BEBEBE;
  font-weight: 700;
  display: block;
}

.my-profile .my-profile-row .my-account .add-payment button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

.my-profile .my-profile-row .my-account .card-info-row {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 14px #d5d5d5;
          box-shadow: 0px 0px 14px #d5d5d5;
  border-radius: 10px;
}

.my-profile .my-profile-row .my-account .card-info-row i {
  width: 30%;
}

.my-profile .my-profile-row .my-account .card-info-row i img {
  display: block;
}

.my-profile .my-profile-row .my-account .card-info-row .card-info {
  padding-left: 0.7rem;
  width: 70%;
}

.my-profile .my-profile-row .my-account .card-info-row .card-info h3 {
  color: #F59D24;
  font-weight: 700;
  font-size: 1.2rem;
}

.my-profile .my-profile-row .my-account .card-info-row .card-info p {
  color: #A8A8A8;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.my-profile .my-profile-row .my-account .card-info-row .card-info code {
  font-family: "Ubuntu", sans-serif;
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
}

.my-profile .my-profile-row .my-account .card-info-row .card-info .remove-icon {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  border: 0;
  margin-left: 0.4rem;
}

.my-profile .my-profile-row .my-account .card-info-row .card-info .remove-icon img {
  display: block;
  border: 0;
}

.my-profile .my-profile-row .my-account .Notification-row {
  width: 80%;
}

.my-profile .my-profile-row .my-account .Notification-row p {
  margin: 0;
  color: #000000;
  font-size: 1.2rem;
}

.my-profile .my-profile-row .my-account .Notification-row select {
  width: 100%;
}

.popup-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(48, 46, 48, 0.5);
  top: 0;
  left: 0;
  overflow: auto;
  padding: 3rem 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.popup-wrapper.active {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.popup-wrapper .popup-heading {
  color: #F59D24;
  font-size: 1.25rem;
  font-weight: 700;
}

.popup-wrapper .popup-row {
  width: 350px;
  background: #FFFFFF;
  margin: auto;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

@media (max-width: 960px) {
  .popup-wrapper .popup-row {
    width: 95%;
  }
}

.popup-wrapper .popup-row .save-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
}

@media (max-width: 960px) {
  .popup-wrapper .popup-row .save-btn {
    padding: 0.8rem 0rem;
  }
}

.popup-wrapper .popup-row .cancel-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #FFFFFF;
  width: 100%;
}

.popup-wrapper .remove-card-row {
  width: 450px;
  background: #FFFFFF;
  margin: auto;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

@media (max-width: 960px) {
  .popup-wrapper .remove-card-row {
    width: 95%;
  }
}

.popup-wrapper .remove-card-row .remove-card p {
  color: #1D1D1B;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.popup-wrapper .remove-card-row .remove-card span {
  color: #706F6F;
  font-size: 1rem;
  font-weight: 400;
}

.popup-wrapper .remove-card-row .remove-card ul li {
  margin-left: 0.7rem;
}

.popup-wrapper .remove-card-row .remove-card ul li:nth-child(1) button {
  border: 1px #302E30 solid;
  background-color: transparent;
  color: #302E30;
}

.popup-wrapper .remove-card-row .remove-card ul li button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #FC5555;
  color: #FFFFFF;
}

.Objectifs-section {
  background: #FBD49F;
  width: 100%;
}

.Objectifs-section .Objectifs-heading {
  font-weight: 700;
  font-size: 1.875rem;
  color: #302E30;
  text-align: center;
}

.Objectifs-section .Objectifs-row {
  background: #FFFFFF;
  border-radius: 10px;
  text-align: center;
}

.Objectifs-section .Objectifs-row i {
  background: #FFB933;
  width: 6.25rem;
  height: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  border-radius: 100px;
}

.Objectifs-section .Objectifs-row i img {
  display: block;
  width: 50%;
  margin: auto;
}

.Objectifs-section .Objectifs-row h4 {
  color: #F59D24;
  font-size: 1.375rem;
  padding: 1rem 0;
}

.Objectifs-section .Objectifs-row p {
  color: #302E30;
}

.la-naissance {
  background: #F59D24;
  width: 100%;
}

.la-naissance .la-naissance-heading {
  width: 100%;
  text-align: center;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-heading {
    margin-bottom: 1rem;
  }
}

.la-naissance .la-naissance-heading h3 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #302E30;
  display: inline-block;
  margin-bottom: 0.8rem;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-heading h3 {
    margin-bottom: 0;
  }
}

.la-naissance .la-naissance-heading h3 span {
  z-index: 2;
  position: relative;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-heading h3 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.la-naissance .la-naissance-heading h3::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.la-naissance .la-naissance-heading h3::after {
  background-color: #FFFFFF;
  z-index: 1;
}

.la-naissance .la-naissance-heading h4 {
  color: #302E30;
  display: block;
}

.la-naissance .la-naissance-heading h4 span {
  z-index: 2;
  position: relative;
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-heading h4 span {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.la-naissance .la-naissance-heading h4 span::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-heading h4 span {
    margin-bottom: 0;
  }
}

.la-naissance .la-naissance-heading h4 span::after {
  background-color: #FFFFFF;
}

.la-naissance .la-naissance-content {
  width: 100%;
  background: #FFFFFF;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-content {
    width: 95%;
    margin: -5rem auto 0;
  }
}

.la-naissance .la-naissance-content p {
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #302E30;
}

.la-naissance .la-naissance-content p:last-child {
  margin: 0;
}

.la-naissance .la-naissance-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 4rem;
  margin-left: -4rem;
}

@media (max-width: 960px) {
  .la-naissance .la-naissance-img {
    margin: 0;
  }
}

.la-naissance .la-naissance-img img {
  display: block;
  width: 100%;
}

.limpact-section {
  width: 100%;
  background: #FFFFFF;
}

.limpact-section .limpact-heading {
  width: 100%;
  text-align: center;
}

.limpact-section .limpact-heading br {
  display: none;
}

@media (max-width: 960px) {
  .limpact-section .limpact-heading br {
    display: block;
  }
}

.limpact-section .limpact-heading h3 span {
  z-index: 2;
  position: relative;
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 0px 0.5rem;
}

@media (max-width: 960px) {
  .limpact-section .limpact-heading h3 span {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.limpact-section .limpact-heading h3 span::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 960px) {
  .limpact-section .limpact-heading h3 span:nth-child(odd) {
    padding-right: 10px;
  }
}

@media (max-width: 960px) {
  .limpact-section .limpact-heading h3 span:nth-child(even) {
    padding-left: 10px;
  }
}

.limpact-section .limpact-heading h3 span:last-child {
  margin-bottom: 20px;
}

.limpact-section .limpact-heading h3::after {
  z-index: 1;
}

.limpact-section .limpact-content {
  width: 100%;
}

.limpact-section .limpact-content p {
  color: #302E30;
}

.limpact-section .limpact-content p:last-child {
  margin: 0;
}

.limpact-section .limpact-content span {
  background: #FBD49F;
  border-radius: 10px;
  display: block;
}

.limpact-section .limpact-img {
  width: 100%;
}

.limpact-section .limpact-img img {
  max-width: 100%;
  display: block;
  margin: auto;
}

@media (max-width: 960px) {
  .limpact-section .limpact-img img {
    max-width: 70%;
  }
}

.about-hero {
  width: 100%;
}

.about-hero img {
  width: 100%;
  display: block;
}

@media (max-width: 960px) {
  .about-hero img {
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about-intro {
  width: 100%;
  background: #FBD49F;
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.about-intro .about-initiative {
  width: 70%;
  margin: auto;
  background: #FFFFFF;
  border-radius: 10px;
  margin-top: -5rem;
  position: relative;
  text-align: center;
}

@media (max-width: 960px) {
  .about-intro .about-initiative {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

.about-intro .about-initiative h1 {
  text-align: center;
}

.about-intro .about-initiative h1 span {
  position: relative;
  z-index: 2;
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .about-intro .about-initiative h1 span {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.about-intro .about-initiative h1 span::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.about-intro .about-initiative h1 span:nth-child(odd) {
  padding-right: 0;
}

.about-intro .about-initiative h1 span:nth-child(even) {
  padding-left: 0;
}

.about-intro .about-initiative h1 span:last-child {
  margin-bottom: 20px;
}

.about-intro .about-initiative h1::after {
  z-index: 1;
}

.about-intro .about-initiative p {
  color: #302E30;
  letter-spacing: 0.02em;
  text-align: left;
  line-height: 1.6rem;
}

.about-intro .about-initiative p:last-child {
  margin: 0;
}

.about-intro .about-initiative p a {
  color: #F59D24;
  text-decoration: underline;
}

.support-women {
  width: 70%;
  margin: auto;
}

@media (max-width: 960px) {
  .support-women {
    width: 100%;
  }
}

.support-women .support-heading {
  width: 100%;
  text-align: center;
}

.support-women .support-heading h2 span {
  position: relative;
  z-index: 2;
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .support-women .support-heading h2 span {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.support-women .support-heading h2 span::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.support-women .support-heading h2 span:nth-child(odd) {
  padding-right: 0;
}

.support-women .support-heading h2 span:nth-child(even) {
  padding-left: 1rem;
}

.support-women .support-heading h2 span:last-child {
  margin-bottom: 20px;
}

.support-women .support-heading h2::after {
  z-index: 1;
}

.support-women .support-women-img {
  width: 100%;
}

.support-women .support-women-img img {
  width: 100%;
  display: block;
}

.support-women .support-women-content {
  width: 100%;
}

.support-women .support-women-content p {
  letter-spacing: 0.02em;
  color: #302E30;
}

.female-Brussels {
  width: 100%;
  background: linear-gradient(90.05deg, #7D4B05 0.63%, #302E30 99.93%);
  height: 25rem;
  overflow: hidden;
}

@media (max-width: 960px) {
  .female-Brussels {
    height: auto;
  }
}

.female-Brussels .Brussels-heading {
  text-align: center;
}

.female-Brussels .Brussels-heading h3 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

@media (max-width: 960px) {
  .female-Brussels .Brussels-heading h3 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.female-Brussels .Brussels-heading h3::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 960px) {
  .female-Brussels .Brussels-heading h3 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 3px;
  }
}

.female-Brussels .Brussels-heading h3 span {
  position: relative;
  z-index: 2;
}

.female-Brussels .Brussels-heading h3::after {
  z-index: 1;
}

.female-Brussels .Brussels-heading h4 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 960px) {
  .female-Brussels .Brussels-heading h4 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.female-Brussels .Brussels-heading h4::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 960px) {
  .female-Brussels .Brussels-heading h4 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.female-Brussels .Brussels-heading h4 span {
  position: relative;
  z-index: 2;
}

.female-Brussels .Brussels-heading h4::after {
  z-index: 1;
}

.female-Brussels .female-Brussels-content {
  height: 20rem;
  overflow: scroll;
  width: 100%;
  display: block;
  margin-bottom: 2rem;
  overflow-x: hidden;
}

@media (max-width: 960px) {
  .female-Brussels .female-Brussels-content {
    height: auto;
  }
}

.female-Brussels .female-Brussels-content::-webkit-scrollbar {
  width: 0px;
}

.female-Brussels .female-Brussels-content::-webkit-scrollbar-track {
  background: transparent;
}

.female-Brussels .female-Brussels-content::-webkit-scrollbar-thumb {
  background: transparent;
}

.female-Brussels .female-Brussels-content::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.female-Brussels .female-Brussels-content .Brussels-info {
  width: 100%;
  border-bottom: 1px #555555 solid;
  padding: 1.4rem 0;
}

.female-Brussels .female-Brussels-content .Brussels-info:first-child p {
  width: 50%;
  margin: 0;
}

.female-Brussels .female-Brussels-content .Brussels-info p {
  letter-spacing: 0.02em;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1rem;
}

.female-Brussels .female-Brussels-content .Brussels-info p:last-child {
  margin: 0;
}

.female-Brussels .female-Brussels-content .Brussels-info p span {
  color: #F59D24;
}

.female-Brussels .female-Brussels-content .Brussels-info strong {
  color: #F59D24;
  font-size: 1.875rem;
  line-height: 2.125rem;
  letter-spacing: 0.02em;
}

.female-Brussels .female-Brussels-content .Brussels-info strong sub {
  font-size: 1rem;
  top: 0;
}

.female-Brussels .female-Brussels-content .Brussels-info > span {
  color: #FFFFFF;
  font-size: 1.875rem;
  line-height: 2.125rem;
  letter-spacing: 0.02em;
  display: block;
}

.login-page {
  width: 100%;
  min-height: 100vh;
}

@media (max-width: 960px) {
  .login-page {
    min-height: auto;
  }
}

.login-page .backtoplogin {
  width: 420px;
  margin: auto;
  text-align: left;
}

@media (max-width: 960px) {
  .login-page .backtoplogin {
    width: 100%;
  }
}

.login-page .backtoplogin a {
  color: #302E30;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  background-image: url(../images/back-top-login.svg);
  padding: 0.6rem 0rem 0.6rem 3.5rem;
  background-repeat: no-repeat;
  background-position: left center;
}

.login-page .login-heading {
  width: 100%;
  text-align: center;
}

.login-page .login-heading h2 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .login-page .login-heading h2 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.login-page .login-heading h2::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.login-page .login-heading h2 br {
  display: none;
}

@media (max-width: 960px) {
  .login-page .login-heading h2 br {
    display: block;
  }
}

.login-page .login-form {
  width: 100%;
  margin: auto;
}

@media (max-width: 960px) {
  .login-page .login-form {
    padding: 0 15px;
  }
}

@media (max-width: 960px) {
  .login-page .login-form p {
    text-align: left;
  }
}

.login-page .login-form .login-btn {
  width: 320px;
  margin: auto;
}

@media (max-width: 960px) {
  .login-page .login-form .login-btn {
    width: 100%;
  }
}

.login-page .login-form .login-btn button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
}

.login-page .login-form .input-row {
  width: 320px;
  margin: auto;
  position: relative;
}

@media (max-width: 960px) {
  .login-page .login-form .input-row {
    width: 100%;
  }
}

.login-page .login-form .forgot {
  width: 100%;
  text-align: right;
}

.login-page .login-form .forgot a {
  color: #F59D24;
  font-weight: 400;
  font-size: 1rem;
}

.login-page .login-form .dont-have {
  width: 100%;
  text-align: center;
}

.login-page .login-form .dont-have p {
  color: #302E30;
  font-size: 1rem;
}

.login-page .login-form .dont-have p a {
  color: #F59D24;
  font-weight: 700;
  border-bottom: 2px #F59D24 solid;
  margin-left: 0.7rem;
}

.login-page .login-bg {
  width: 100%;
  background-image: url(../images/login-bg.jpg);
  min-height: 100vh;
  background-size: cover;
  background-position: top center;
  position: relative;
}

@media (max-width: 960px) {
  .login-page .login-bg {
    min-height: 320px;
  }
}

.login-page .login-bg::after {
  content: "";
  position: absolute;
  background-image: url(../images/login-bg-img.png);
  height: 100%;
  width: 30%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-page .sent-links {
  width: 100%;
  text-align: center;
}

@media (max-width: 960px) {
  .login-page .sent-links {
    text-align: left;
  }
}

.login-page .sent-links p {
  color: #302E30;
  font-size: 1.1rem;
}

.login-page .sent-links p button {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #A6A6A6;
  text-decoration: underline;
  font-weight: 700;
  outline: none;
  font-size: 1.1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.login-page .sent-links span {
  color: #726E72;
  display: block;
  padding: 1rem 0 2rem;
}

.my-orders-page {
  width: 100%;
}

.my-orders-page .my-oders-top {
  width: 100%;
  text-align: center;
}

.my-orders-page .my-oders-top h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .my-orders-page .my-oders-top h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.my-orders-page .my-oders-top h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.my-orders-page .my-oders-top ul.profile-tab li {
  background: #FFE9CA;
  border: 1px #FFE9CA solid;
  margin: 0 0.3rem;
  text-align: center;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #302E30;
  font-size: 1rem;
}

.my-orders-page .my-oders-top ul.profile-tab li.active {
  border-color: #302E30;
  background: #F59D24;
}

.my-orders-page .order-table-row {
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  width: 100%;
}

.my-orders-page .order-table-row .order-info {
  text-align: left;
}

.my-orders-page .order-table-row .order-info span {
  display: block;
  color: #949494;
  font-size: 1.1rem;
  padding-bottom: 0.2rem;
}

.my-orders-page .order-table-row .order-info strong {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
}

.my-orders-page .order-table-row .order-img {
  min-width: 90px;
  height: 110px;
}

.my-orders-page .order-table-row .order-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.my-orders-info {
  width: 100%;
}

.my-orders-info .order-info-title {
  margin: 0;
  color: #F59D24;
  font-weight: 700;
  font-size: 1.25rem;
}

.my-orders-info .my-orders-head {
  width: 100%;
  text-align: center;
}

.my-orders-info .my-orders-head h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 960px) {
  .my-orders-info .my-orders-head h1 {
    display: block;
  }
}

.my-orders-info .my-orders-head h1 span {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
  padding: 0 0.5rem;
}

@media (max-width: 960px) {
  .my-orders-info .my-orders-head h1 span {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.my-orders-info .my-orders-head h1 span::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 960px) {
  .my-orders-info .my-orders-head h1 span:first-child {
    margin-bottom: 0;
  }
}

.my-orders-info .my-orders-head strong {
  color: #302E30;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  padding-bottom: 1.2rem;
}

.my-orders-info .my-orders-head > span {
  font-weight: 400;
  font-size: 1.1rem;
  color: #302E30;
  display: block;
}

.my-orders-info .backto {
  color: #302E30;
  font-weight: 700;
  font-size: 1.45rem;
  cursor: pointer;
}

.my-orders-info .backto i {
  margin-right: 0.5rem;
}

.my-orders-info .backto i img {
  display: block;
}

.my-orders-info .order-info-row {
  width: 100%;
}

.my-orders-info .order-info-row span {
  color: #726E72;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 18px;
  display: block;
  padding-bottom: 0.3rem;
}

.my-orders-info .order-info-row strong {
  color: #302E30;
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.3rem;
}

.my-orders-info .for-any-contact {
  background: #FBD49F;
  border-radius: 4px;
  width: 100%;
}

.my-orders-info .for-any-contact span {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #302E30;
}

.my-orders-info .for-any-contact span i {
  min-width: 3rem;
  min-height: 3rem;
  background-color: #FFFFFF;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1rem;
}

.my-orders-info .for-any-contact span i img {
  display: block;
}

.breadcrumbs li {
  padding: 0 0.5rem;
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
}

.breadcrumbs li:first-child {
  padding-left: 0;
}

.breadcrumbs li a {
  color: #726E72;
  font-weight: 400;
}

.proceed-to-checkout {
  width: 100%;
  background: #F1F1F1;
  height: 100%;
  padding: 0 5rem;
}

@media (max-width: 960px) {
  .proceed-to-checkout {
    padding: 0 1rem;
  }
}

.proceed-to-checkout .input-row select {
  width: 100%;
  border: 1px solid #E3E3E3;
}

.proceed-to-checkout .already-user span {
  color: #302E30;
  font-size: 1.2rem;
}

.proceed-to-checkout .already-user span a {
  color: #F59D24;
  font-weight: 700;
  border-bottom: 2px #F59D24 solid;
}

@media (max-width: 960px) {
  .proceed-to-checkout .already-user span a {
    margin-left: 1rem;
  }
}

.news-details {
  width: 100%;
}

.news-details .backto-news a {
  background-image: url(../images/arrow-back.svg);
  color: #302E30;
  font-weight: 700;
  font-size: 1.2rem;
  padding-left: 1.4rem;
  background-repeat: no-repeat;
  background-position: left center;
}

.news-details .news-details-img {
  width: 100%;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .news-details .news-details-img {
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}

.news-details .news-details-img > img {
  width: 100%;
  display: block;
  border-radius: 10px;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 960px) {
  .news-details .news-details-img > img {
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0px;
  }
}

.news-details .news-intro {
  width: 60%;
  margin: auto;
}

@media (max-width: 960px) {
  .news-details .news-intro {
    width: 100%;
  }
}

.news-details .news-intro h1 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.125rem;
  color: #302E30;
}

.news-details .news-intro span {
  color: #F59D24;
  font-size: 1.2rem;
  display: block;
}

.news-details .news-intro p {
  color: #302E30;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
}

.shareing-row {
  position: absolute;
  right: 1rem;
  bottom: -15px;
}

@media (max-width: 960px) {
  .shareing-row {
    margin: auto;
    position: relative;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 19px;
  }
}

.shareing-row .shareing {
  background: #FFFFFF;
  border-radius: 50px;
}

.shareing-row .shareing li {
  padding: 0 0.5rem;
}

.shareing-row .shareing li img {
  display: block;
}

.stories-img {
  width: 94%;
  text-align: center;
  border: 5px solid #FBD49F;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: auto;
}

.stories-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55.6%, rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.6%, #000000 100%);
  top: 0;
  left: 0;
}

.stories-img img {
  display: block;
  width: 100%;
  height: 265px;
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-img h2 {
  position: absolute;
  bottom: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3125rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.stories-img h2 a {
  color: #FFFFFF;
}

.stories-intro {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 14px #d5d5d5;
          box-shadow: 0px 0px 14px #d5d5d5;
  border-radius: 10px;
  padding: 6rem 1.5rem 1.5rem 1.5rem;
  overflow: hidden;
  margin-top: -5rem;
}

.stories-intro p {
  letter-spacing: 0.07em;
  color: #726E72;
}

.stories-intro .know-more {
  text-align: right;
  display: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #F59D24;
  background-image: url(../images/know-more.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 2rem;
}

.promotions-item {
  width: 100%;
  margin: 0 0.6rem;
}

.promotions-item .img {
  width: 100%;
  position: relative;
}

.promotions-item .img img {
  display: block;
  width: 100%;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.promotions-item .img i {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 100px;
  background-color: #FFFFFF;
  background-image: url(../images/heart-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.promotions-item .img i.active {
  background-image: url(../images/wishlist-save.svg);
}

.promotions-item .promotions-info {
  width: 100%;
}

.promotions-item .promotions-info h2 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2rem;
}

.promotions-item .promotions-info h2 a {
  color: #444444;
}

.promotions-item .promotions-info p {
  color: #726E72;
}

.promotions-item .promotions-info span {
  color: #F59D24;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  background-image: url(../images/euro-icon.svg);
  padding-left: 1.6rem;
  background-repeat: no-repeat;
  background-position: left center;
}

.insights-box {
  background: var(white);
  -webkit-box-shadow: 0px 0px 14px #d5d50d;
          box-shadow: 0px 0px 14px #d5d50d;
  border-radius: 10px;
  padding: 1.2rem;
  width: 100%;
}

.insights-box .insights-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.insights-box .insights-img img {
  width: 100%;
  display: block;
  border-radius: 4px;
  max-height: 155px;
  -o-object-fit: cover;
     object-fit: cover;
}

.insights-box .insights-content h2 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3125rem;
}

.insights-box .insights-content h2 a {
  color: #302E30;
}

.insights-box .insights-content span {
  color: #F59D24;
  display: block;
  font-size: 1rem;
}

.insights-box .insights-content p {
  letter-spacing: 0.02em;
}

.promotions-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(48, 46, 48, 0.5);
  top: 0;
  left: 0;
  overflow: auto;
  padding: 3rem 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.promotions-popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.promotions-popup .promotions-popup-row {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 14px black;
          box-shadow: 0px 0px 14px black;
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 874px;
  margin: auto;
}

@media (max-width: 960px) {
  .promotions-popup .promotions-popup-row {
    width: 95%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    top: 6%;
  }
}

.promotions-popup .promotions-popup-row .m-title {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.9rem;
  color: #726E72;
}

.promotions-popup .promotions-popup-row .m-title span {
  display: block;
  color: #F59D24;
}

.promotions-popup .promotions-popup-row .promotions-popup-img {
  width: 100%;
}

.promotions-popup .promotions-popup-row .promotions-popup-img img {
  width: 100%;
  display: block;
}

.promotions-popup .promotions-popup-row .promotions-popup-info {
  width: 100%;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-price {
  width: 100%;
  border-bottom: 1px #EBEBEB solid;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-price h2 {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.9rem;
  color: #302E30;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-price h2 span {
  display: block;
  color: #F59D24;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-price .promotions-close {
  cursor: pointer;
}

@media (max-width: 960px) {
  .promotions-popup .promotions-popup-row .promotions-popup-info .promotions-price .promotions-close {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-price .promotions-close img {
  display: block;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .MyCandle p {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #302E30;
  margin: 0;
  margin-bottom: 0.9rem;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  padding-right: 1rem;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .MyCandle span {
  color: #726E72;
  font-size: 1rem;
  background-image: url(../images/map-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1.5rem;
  background-size: contain;
  display: block;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .price-range span {
  display: block;
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .price-range strong {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #F59D24;
  display: block;
  padding-top: 0.4rem;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .product-description strong {
  display: block;
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .product-description p {
  font-size: 1rem;
  color: #726E72;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-btn .more-products {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border: 1px #302E30 solid;
  background-color: transparent;
}

@media (max-width: 960px) {
  .promotions-popup .promotions-popup-row .promotions-popup-info .promotions-btn .more-products {
    width: 60%;
  }
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-btn .cart-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

.promotions-popup .promotions-popup-row .promotions-popup-info .promotions-btn .save-wish {
  background-image: url(../images/heart-icon.svg);
  width: 20px;
  height: 18px;
  background-position: center;
  margin-left: 1rem;
}

.pagination-row {
  width: 100%;
}

.pagination-row p {
  border: 1px solid #D9D9D9;
  margin: 0 0.5rem;
  line-height: 0.5rem;
  cursor: pointer;
  width: 2.3rem;
  height: 2.3rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
}

.pagination-row p.active {
  border-color: #F59D24;
  color: #F59D24;
  font-weight: bold;
}

.pagination-row i {
  border: 1px solid #D9D9D9;
  margin: 0 0.5rem;
  line-height: 0.5rem;
  cursor: pointer;
  width: 2.3rem;
  height: 2.3rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
}

.Newsletter_popup {
  background: rgba(48, 46, 48, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.Newsletter_popup.active {
  opacity: 1;
  z-index: 9;
  visibility: visible;
}

.Newsletter_popup .Newsletter_popup_row {
  background: #FFFFFF;
  border-radius: 10px;
  max-width: 515px;
  margin: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: 0;
  background-image: url(../images/newsletter-bg.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

@media (max-width: 960px) {
  .Newsletter_popup .Newsletter_popup_row {
    width: 97%;
  }
}

.Newsletter_popup .Newsletter_popup_row .Newsletter_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}

.Newsletter_popup .Newsletter_popup_row .Newsletter_close img {
  display: block;
}

.Newsletter_popup .Newsletter_popup_row p {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.125rem;
  color: #302E30;
}

@media (max-width: 960px) {
  .Newsletter_popup .Newsletter_popup_row p {
    width: 70%;
  }
}

.Newsletter_popup .Newsletter_popup_row span {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  color: #726E72;
  display: block;
}

.Newsletter_popup .Newsletter_popup_row button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

.Order-Summary {
  border: 1px solid #E3E3E3;
  -webkit-box-shadow: 0px 1px 2px #334156;
          box-shadow: 0px 1px 2px #334156;
  border-radius: 6px;
  width: 100%;
  background-color: #FFFFFF;
}

.Order-Summary .Summary-heading {
  font-weight: 700;
  font-size: 1.25rem;
  color: #000000;
}

.Order-Summary .Summary-subheading {
  color: #726E72;
  display: block;
}

.Order-Summary .Order-Summary-product {
  width: 100%;
}

.Order-Summary .Order-Summary-product .Summary-product-left {
  width: 80%;
}

.Order-Summary .Order-Summary-product .Summary-product-left .product-img {
  width: 67px;
  height: 67px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 1rem;
}

.Order-Summary .Order-Summary-product .Summary-product-left .product-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.Order-Summary .Order-Summary-product .Summary-product-left strong {
  padding-right: 2rem;
  color: #302E30;
  font-size: 1rem;
  font-weight: 700;
}

.Order-Summary .Order-Summary-product .Summary-product-right {
  color: #302E30;
  font-size: 1rem;
  font-weight: 700;
}

.Order-Summary ul.total-list {
  width: 100%;
}

.Order-Summary ul.total-list li {
  border-bottom: 1px solid #E3E3E3;
  width: 100%;
}

.Order-Summary ul.total-list li:last-child {
  border: 0;
}

.Order-Summary ul.total-list li:last-child p {
  color: #F59D24;
  font-weight: 700;
  font-size: 1.375rem;
}

.Order-Summary ul.total-list li p {
  margin: 0;
  color: #000000;
  font-size: 1.1rem;
}

.Order-Summary .Purchase-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: block;
  width: 100%;
  text-transform: capitalize;
}

.membership-page {
  width: 100%;
}

.membership-page .membership-head {
  width: 100%;
  text-align: center;
}

.membership-page .membership-head h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .membership-page .membership-head h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.membership-page .membership-head h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.membership-page .membership-head p {
  color: #302E30;
  letter-spacing: 0.02em;
  text-align: justify;
  width: 80%;
  margin: auto;
  line-height: 1.67rem;
}

@media (max-width: 960px) {
  .membership-page .membership-head p {
    width: 100%;
  }
}

.membership-page .Pourquoi-devenir-section {
  width: 100%;
  background: #FBD49F;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-head {
  width: 100%;
  text-align: center;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-head h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.125rem;
  color: #302E30;
  text-transform: uppercase;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-head p {
  color: #302E30;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-row {
  width: 100%;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-row i {
  min-width: 5.375rem;
  min-height: 5.375rem;
  background: #F59D24;
  border-radius: 100px;
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-row i img {
  display: block;
  margin: auto;
}

.membership-page .Pourquoi-devenir-section .Pourquoi-devenir-row h3 {
  margin: 0;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 1rem;
  line-height: 22px;
  color: #302E30;
}

@media (max-width: 960px) {
  .membership-page .Pourquoi-devenir-section .Pourquoi-devenir-row h3 {
    width: 100%;
    margin-top: 1rem;
  }
}

.membership-page .Pourquoi-devenir-section .votre-rintroow {
  background-color: #FFFFFF;
  border-radius: 4px;
}

.membership-page .Pourquoi-devenir-section .votre-rintroow p {
  margin: 0;
  color: #302E30;
}

.membership-page .Les-formules-section {
  width: 100%;
}

.membership-page .Les-formules-section .Les-formules-head {
  width: 100%;
  text-align: center;
}

.membership-page .Les-formules-section .Les-formules-head h3 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .membership-page .Les-formules-section .Les-formules-head h3 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.membership-page .Les-formules-section .Les-formules-head h3::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.membership-page .Les-formules-section .Les-formules-head p {
  letter-spacing: 0.02em;
  color: #302E30;
}

.membership-page .Les-formules-section .Les-formules-box {
  width: 100%;
  border: 1px solid #302E30;
  border-radius: 6px;
}

.membership-page .Les-formules-section .Les-formules-box.last-child {
  background-color: #F59D24;
}

.membership-page .Les-formules-section .Les-formules-box.last-child .Les-boxtop span {
  color: #FFFFFF;
}

.membership-page .Les-formules-section .Les-formules-box.last-child .Les-formules-list button {
  background-color: #FFFFFF;
}

.membership-page .Les-formules-section .Les-formules-box .Les-boxtop {
  width: 100%;
  pointer-events: none;
}

@media (max-width: 960px) {
  .membership-page .Les-formules-section .Les-formules-box .Les-boxtop {
    background-image: url(../images/click-arrow.svg);
    background-repeat: no-repeat;
    background-position: right center;
    pointer-events: all;
  }
}

.membership-page .Les-formules-section .Les-formules-box .Les-boxtop h3 {
  color: #302E30;
  font-size: 1.25rem;
}

.membership-page .Les-formules-section .Les-formules-box .Les-boxtop span {
  font-size: 3.75rem;
  color: #F59D24;
  line-height: 4.375rem;
  font-weight: 700;
}

.membership-page .Les-formules-section .Les-formules-box .Les-boxtop span sub {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #302E30;
  left: 1rem;
}

.membership-page .Les-formules-section .Les-formules-box .Les-formules-list {
  width: 100%;
  border-top: 1px #302E30 solid;
}

@media (max-width: 960px) {
  .membership-page .Les-formules-section .Les-formules-box .Les-formules-list {
    display: none;
  }
}

.membership-page .Les-formules-section .Les-formules-box .Les-formules-list ul {
  width: 100%;
  padding-bottom: 1rem;
}

.membership-page .Les-formules-section .Les-formules-box .Les-formules-list ul li {
  letter-spacing: 0.07em;
  color: #302E30;
  font-size: 0.975rem;
  line-height: 1.3125rem;
  padding-bottom: 1rem;
  background-image: url(../images/verify-icon.svg);
  background-repeat: no-repeat;
  background-position: left top;
  padding-left: 2.5rem;
  margin-bottom: 0.3rem;
}

.membership-page .Les-formules-section .Les-formules-box .Les-formules-list button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: #FBD49F;
  border: 1px solid #302E30;
  width: 100%;
}

.membership-page .devenir-membre-section {
  width: 100%;
}

@media (max-width: 960px) {
  .membership-page .devenir-membre-section {
    padding: 0 1rem;
  }
}

.membership-page .devenir-membre-section .devenir-membre-row {
  max-width: 650px;
  margin: auto;
}

.membership-page .devenir-membre-section .devenir-membre-row .devenir-membre-head h4 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.125rem;
  color: #302E30;
  text-transform: uppercase;
  text-align: center;
}

.membership-page .devenir-membre-section .devenir-membre-row .devenir-membre-head p {
  text-align: left;
  color: #302E30;
}

.membership-page #msform .Formulaire-heading {
  color: #302E30;
  font-weight: 700;
  font-size: 1.3rem;
}

.membership-page #msform .action-button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  float: right;
}

.membership-page #msform .action-button-previous {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  float: left;
}

.membership-page #msform #progressbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.membership-page #msform #progressbar li {
  height: 56px;
  cursor: pointer;
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  padding-left: 2rem;
  margin-right: 1rem;
  color: #302E30;
  font-weight: 700;
  background-image: url(../images/Steps-Arrow.png);
  background-size: 100% 100%;
  padding-right: 1rem;
  font-size: 0.9rem;
}

.membership-page #msform #progressbar li.add {
  background-image: url(../images/Arrow-Stepper-bg.png) !important;
}

@media (max-width: 960px) {
  .membership-page #msform #progressbar li {
    font-size: 0.9rem;
    margin-right: 0.3rem;
    padding-left: 1rem;
    line-height: 1rem;
    padding-right: 1rem;
    height: 57px;
  }
}

.membership-page #msform #progressbar li.active {
  background-image: url(../images/step-bg-active.png);
}

.membership-page #msform fieldset:not(:first-of-type) {
  display: none;
}

.membership-page #msform fieldset .form-input {
  width: 400px;
  margin: 0 auto 1rem;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset .form-input {
    width: 100%;
  }
}

.membership-page #msform fieldset .form-input .iti__flag-box {
  display: none;
}

.membership-page #msform fieldset .form-input .iti__country-name {
  display: none;
}

.membership-page #msform fieldset .form-input .iti__flag {
  display: none;
}

.membership-page #msform fieldset .form-input .iti {
  width: 100%;
}

.membership-page #msform fieldset .form-input .iti__country-list {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 4px;
}

.membership-page #msform fieldset .form-input .iti__selected-flag {
  background-color: transparent;
}

.membership-page #msform fieldset .form-input label {
  color: #302E30;
  letter-spacing: 0.02em;
  font-weight: 400;
  padding-right: 1rem;
  line-height: 1.4rem;
  padding-bottom: 0;
  text-align: right;
  width: 100px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset .form-input label {
    padding-bottom: 0.7rem;
    text-align: left;
  }
}

.membership-page #msform fieldset .form-input input {
  width: 100%;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset .form-input input {
    width: 100%;
  }
}

.membership-page #msform fieldset .form-input #attributes {
  width: 300px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset .form-input #attributes {
    width: 100%;
  }
}

.membership-page #msform fieldset .form-input #attributes .remove {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: 0.7rem;
}

.membership-page #msform fieldset .form-input textarea {
  width: 300px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset .form-input textarea {
    width: 100%;
  }
}

.membership-page #msform fieldset .form-input select {
  width: 300px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset .form-input select {
    width: 100%;
  }
}

.membership-page #msform fieldset.left-side .form-input {
  margin: 0;
  margin-bottom: 2rem;
  width: 512px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset.left-side .form-input {
    width: 100%;
  }
}

.membership-page #msform fieldset.left-side .form-input .add-more {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 0.3rem;
  cursor: pointer;
}

.membership-page #msform fieldset.left-side .form-input .add-more span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F59D24;
}

.membership-page #msform fieldset.left-side .form-input .add-more span img {
  display: block;
  margin-right: 0.5rem;
}

.membership-page #msform fieldset.left-side label {
  min-width: 212px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset.left-side label {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .membership-page #msform fieldset.left-side label br {
    display: none;
  }
}

.membership-page #msform fieldset.left-side.left-side2 .form-input {
  width: 400px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset.left-side.left-side2 .form-input {
    width: 100%;
  }
}

.membership-page #msform fieldset.Successfully-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(48, 46, 48, 0.5);
  top: 0;
  left: 0;
  z-index: 9;
}

.membership-page #msform fieldset.Successfully-popup .Successfully-popup-row {
  margin: auto;
  background: #FFFFFF;
  width: 423px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 6px;
}

@media (max-width: 960px) {
  .membership-page #msform fieldset.Successfully-popup .Successfully-popup-row {
    width: 97%;
    top: 20%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.membership-page #msform fieldset.Successfully-popup .Successfully-popup-row i {
  display: block;
  margin: auto;
}

.membership-page #msform fieldset.Successfully-popup .Successfully-popup-row i img {
  display: block;
  margin: auto;
}

.membership-page #msform fieldset.Successfully-popup .Successfully-popup-row strong {
  padding: 0.9rem 0;
  display: block;
  color: #302E30;
  font-size: 1rem;
}

.membership-page #msform fieldset.Successfully-popup .Successfully-popup-row p {
  color: #726E72;
  text-align: left;
}

.membership-page #msform fieldset.Successfully-popup .Successfully-popup-row button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
}

select {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  border: 1px solid #302E30;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3.2rem;
  padding: 0 1rem;
  background-color: #FFFFFF;
  outline: none;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 95%;
  padding-right: 2rem;
}

select:disabled {
  background-color: #E3E3E3;
  border-color: #E3E3E3;
}

input[type="text"] {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3.2rem;
  padding: 0 1rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  background-color: #FFFFFF;
}

input[type="number"] {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3.2rem;
  padding: 0 1rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  background-color: #FFFFFF;
}

input[type="password"] {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3.2rem;
  padding: 0 1rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  background-color: #FFFFFF;
}

input[type="date"] {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3.2rem;
  padding: 0 1rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  background-color: #FFFFFF;
}

label {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  display: block;
  letter-spacing: 0.02em;
  font-family: "Ubuntu", sans-serif;
  padding-bottom: 0.5rem;
}

textarea {
  color: #302E30;
  font-weight: 400;
  font-size: 1rem;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 1rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  background-color: #FFFFFF;
  height: 7.25rem;
}

.submit-btn {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

.input-row {
  margin: auto;
  position: relative;
}

.input-row .iti__flag-box {
  display: none;
}

.input-row .iti__country-name {
  display: none;
}

.input-row .iti__flag {
  display: none;
}

.input-row .iti {
  width: 100%;
}

.input-row .iti__country-list {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 4px;
}

.input-row .iti__selected-flag {
  background-color: transparent;
}

.input-row.error input {
  border-color: #FC5555;
}

.input-row.error p {
  color: #FC5555;
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0.5rem;
  line-height: 1;
}

.input-row > span {
  position: absolute;
  right: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  top: 46px;
  cursor: pointer;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.input-row > span.fa-eye {
  background-image: url(../images/fa-eye.svg);
}

.input-row > span.fa-eye-slash {
  background-image: url(../images/fa-eye-open.svg);
}

.on-off-toggle {
  width: 56px;
  height: 24px;
  position: relative;
  display: inline-block;
}

.on-off-toggle__slider {
  width: 56px;
  height: 24px;
  display: block;
  border-radius: 34px;
  background-color: #726E72;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
  color: #FFFFFF;
}

.on-off-toggle__slider:before {
  content: '';
  display: block;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0 1px #949494;
          box-shadow: 0 0 0 1px #949494;
  bottom: 3px;
  height: 18px;
  left: 3px;
  position: absolute;
  -webkit-transition: .4s;
  transition: .4s;
  width: 18px;
  z-index: 5;
  border-radius: 100%;
}

.on-off-toggle__slider:after {
  display: block;
  line-height: 24px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  content: 'off';
  color: #FFFFFF;
  padding-left: 26px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.on-off-toggle__input {
  position: absolute;
  opacity: 0;
}

.on-off-toggle__input:checked + .on-off-toggle__slider {
  background-color: #F59D24;
}

.on-off-toggle__input:checked + .on-off-toggle__slider:before {
  -webkit-transform: translateX(32px);
          transform: translateX(32px);
}

.on-off-toggle__input:checked + .on-off-toggle__slider:after {
  content: 'on';
  color: #FFFFFF;
  padding-left: 8px;
}

.qty-container button {
  background: #F3F3F3;
  border-radius: 5px;
  min-width: 40px;
  min-height: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
}

.qty-container input {
  width: 50px;
  background-color: transparent;
  border: 0;
  height: 40px;
  text-align: center;
}

.checkbox {
  position: absolute;
  opacity: 0;
}

.checkbox + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #302E30;
  padding-left: 2rem;
  font-weight: 400;
  padding-bottom: 0;
  line-height: 1.6rem;
}

.checkbox + label:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background: transparent;
  width: 20px;
  height: 20px;
  border: 1px #D9D9D9 solid;
  -webkit-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  background-color: #FFFFFF;
}

.checkbox + label:after {
  position: absolute;
  display: block;
  top: 2px;
  left: 8px;
  content: "";
  width: 6px;
  height: 11px;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}

.checkbox + label:hover {
  color: #F59D24;
}

.checkbox + label:focus {
  outline: none;
}

.checkbox:checked + label {
  font-weight: 700;
}

.checkbox:checked + label:before {
  background: #F59D24;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox:checked + label:after {
  border-color: #FFFFFF;
}

.checkbox:checked:disabled + label:before {
  background: #f2f2f2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox:checked:disabled + label:after {
  border-color: #cecece;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group .multiselect {
  width: 100%;
  font-size: 1rem;
  border: 1px solid #E3E3E3;
  text-align: left;
  height: 3.2rem;
  padding: 0 1rem;
}

.form-group .btn-group {
  width: 100%;
}

.form-group .open .dropdown-menu {
  display: block;
  margin-top: 50px;
  width: 100%;
  text-align: left;
  padding: 5px 10px;
  height: 180px;
  overflow: auto;
  padding-bottom: 20px;
}

.form-group .open .dropdown-menu::-webkit-scrollbar {
  width: 0px;
}

.form-group .open .dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.form-group .open .dropdown-menu::-webkit-scrollbar-thumb {
  background: transparent;
}

.form-group .open .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.form-group .open .dropdown-menu li {
  width: 100%;
  text-align: left;
  margin: 7px 0;
}

.form-group .open .dropdown-menu li.active label {
  font-weight: 700 !important;
}

.form-group .open .dropdown-menu li.active label::after {
  background-color: #F59D24;
  background-image: url(../images/right-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.form-group .open .dropdown-menu li label {
  padding: 0;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  min-width: 100% !important;
  opacity: 1;
}

.form-group .open .dropdown-menu li label::after {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background: transparent;
  width: 20px;
  height: 20px;
  border: 1px #D9D9D9 solid;
  -webkit-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  background-color: #FFFFFF;
}

.form-group .open .dropdown-menu li label::before {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background: transparent;
  width: 20px;
  height: 20px;
  border: 1px #D9D9D9 solid;
  -webkit-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  background-color: #FFFFFF;
}

.form-group .open .dropdown-menu li label input {
  width: auto !important;
  margin-right: 15px;
  margin-bottom: 0 !important;
  opacity: 0;
}

.form-group .dropdown-toggle::after {
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 95%;
  border: 0;
  position: absolute;
  right: 10px;
  width: 18px;
  height: 11px;
  top: 16px;
}

html,
body {
  font-size: 16px;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Ubuntu", sans-serif;
  overflow-x: hidden;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #726E72;
}

a {
  text-decoration: none;
}

.promotions-section {
  width: 100%;
  padding: 5rem 0;
}

@media (max-width: 960px) {
  .promotions-section {
    padding: 2rem 0;
  }
}

@media (max-width: 960px) {
  .promotions-section .container {
    padding: 0;
  }
}

.promotions-section .promotions-top {
  width: 100%;
  text-align: center;
}

.promotions-section .promotions-top h2 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .promotions-section .promotions-top h2 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.promotions-section .promotions-top h2::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.promotions-section .promotions-top .button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: inline-block;
}

.promotions-section .promotions-slider {
  width: 100%;
  position: relative;
  padding: 0 3rem;
}

@media (max-width: 960px) {
  .promotions-section .promotions-slider {
    padding: 0;
  }
}

.promotions-section .promotions-slider .slick-list {
  width: 100%;
  overflow: hidden;
}

.promotions-section .promotions-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.promotions-section .promotions-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  font-size: 0;
  width: 17px;
  height: 28px;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
}

.promotions-section .promotions-slider .slick-arrow.slick-prev {
  left: 0;
  background-image: url(../images/left-arrow.svg);
}

.promotions-section .promotions-slider .slick-arrow.slick-next {
  right: 0;
  background-image: url(../images/right-arrow.svg);
}

.home-product-section {
  width: 100%;
  padding: 10rem 0 10rem 4rem;
  position: relative;
  background-image: url(../images/product-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

@media (max-width: 960px) {
  .home-product-section {
    padding: 2rem 0;
  }
}

.home-product-section .home-circle {
  background: #F59D24;
  min-width: 23vw;
  min-height: 23vw;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-product-section .home-circle::after {
  content: "";
  position: absolute;
  border: 1px #302E30 solid;
  min-width: 21vw;
  min-height: 21vw;
  border-radius: 100%;
}

@media (max-width: 960px) {
  .home-product-section .home-circle::after {
    width: 80vw;
    height: 80vw;
  }
}

@media (max-width: 960px) {
  .home-product-section .home-circle {
    -webkit-transform: none;
            transform: none;
    position: static;
    width: 90vw;
    height: 90vw;
    margin: auto;
  }
}

.home-product-section .home-circle h2 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .home-product-section .home-circle h2 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.home-product-section .home-circle h2::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.home-product-section .home-circle h2 span {
  position: relative;
  z-index: 2;
}

.home-product-section .home-circle h2:after {
  background-color: #FFFFFF;
  z-index: 1;
}

.home-product-section .home-circle p {
  font-weight: 700;
  color: #302E30;
}

.home-product-section .home-circle .more-btn {
  background-color: #FFFFFF;
  border: 1px solid #302E30;
  border-radius: 6px;
  color: #302E30;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  padding: 0.8rem 1rem;
  display: inline-block;
}

.home-product-section .product-slider {
  width: 100%;
  position: relative;
  padding-left: 18vw;
}

@media (max-width: 960px) {
  .home-product-section .product-slider {
    padding-left: 1rem;
    margin-top: -5rem;
  }
}

.home-product-section .product-slider .slick-list {
  width: 100%;
  overflow: hidden;
}

.home-product-section .product-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media (max-width: 960px) {
  .home-product-section .product-slider .slick-list .slick-track .promotions-item {
    margin-left: 1rem;
    margin-right: 0;
  }
}

.home-product-section .product-slider .slick-arrow {
  position: absolute;
  bottom: -5rem;
  border: 0;
  font-size: 0;
  width: 4.3125rem;
  height: 2.6875rem;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  background-size: contain;
  background-repeat: no-repeat;
}

.home-product-section .product-slider .slick-arrow.slick-prev {
  right: 40%;
  background-image: url(../images/product-arrow-left.svg);
}

.home-product-section .product-slider .slick-arrow.slick-next {
  right: 25%;
  background-image: url(../images/product-arrow-right.svg);
}

.stories-section {
  width: 100%;
  background-image: url(../images/stories-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  padding: 6rem 0;
}

@media (max-width: 960px) {
  .stories-section {
    padding: 3rem 0;
  }
}

.stories-section .stories-top {
  width: 100%;
  text-align: center;
}

.stories-section .stories-top h2 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .stories-section .stories-top h2 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.stories-section .stories-top h2::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.stories-section .stories-top p {
  color: #302E30;
}

.insights-section {
  width: 100%;
}

.insights-section .insights-top {
  width: 100%;
  text-align: center;
}

.insights-section .insights-top h2 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .insights-section .insights-top h2 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.insights-section .insights-top h2::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.insights-section .insights-top .button {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: inline-block;
}

.promotions-page .promotions-item {
  margin: 0;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1380px;
}

@media (max-width: 960px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 1600px) {
  html,
  body {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
  }
}

@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
  }
}

@media (max-width: 960px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 50%;
  }
}

.filter_body {
  overflow: hidden;
}

.tab {
  display: none;
}

.tab.tab-active {
  display: block;
}

.entrepreneur-page {
  width: 100%;
  display: block;
  background: #F1F1F1;
}

@media (max-width: 960px) {
  .entrepreneur-page {
    background-color: transparent;
  }
}

.entrepreneur-page .entrepreneur-left {
  padding-left: 5rem;
  padding-right: 2rem;
}

.entrepreneur-page .entrepreneur-left #show-more {
  text-align: center;
  padding: 1rem 0;
  color: #726E72;
  display: none;
}

@media (max-width: 960px) {
  .entrepreneur-page .entrepreneur-left #show-more {
    display: block;
  }
}

.entrepreneur-page .entrepreneur-left #show-more a {
  color: #726E72;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  background-image: url(../images/know-more-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}

.entrepreneur-page .entrepreneur-left #show-less {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  width: calc(100% + 40px);
  text-align: center;
  padding: 10px;
  background: #F1F1F1;
  border-radius: 0px 0px 30px 30px;
  margin: 0 -20px;
}

.entrepreneur-page .entrepreneur-left #show-less a {
  color: #726E72;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  background-image: url(../images/show-less-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}

@media (max-width: 960px) {
  .entrepreneur-page .entrepreneur-left {
    padding: 0 1rem 0rem;
    height: auto;
    border-radius: 0px 0px 30px 30px;
    background: #F1F1F1;
    max-height: 460px;
    overflow: auto;
    position: relative;
    overflow-x: hidden;
  }
}

.entrepreneur-page .entrepreneur-left .backto-news a {
  background-image: url(../images/arrow-back.svg);
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
  padding-left: 1.4rem;
  background-repeat: no-repeat;
  background-position: left center;
}

.entrepreneur-page .entrepreneur-left .Promotions-img {
  width: 100%;
}

.entrepreneur-page .entrepreneur-left .Promotions-img img {
  width: 100%;
  display: block;
  max-height: 14rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.entrepreneur-page .entrepreneur-left .Promotions-info {
  width: 100%;
}

.entrepreneur-page .entrepreneur-left .Promotions-info h1 {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.9rem;
  color: #302E30;
}

.entrepreneur-page .entrepreneur-left .Promotions-info p {
  color: #726E72;
  font-size: 1rem;
  background-image: url(../images/map-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1.5rem;
  background-size: contain;
  display: block;
  margin-top: 1rem;
}

.entrepreneur-page .entrepreneur-left .Promotions-info span {
  display: block;
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.entrepreneur-page .entrepreneur-left .Promotions-info span strong {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #F59D24;
  display: block;
  padding-top: 0.4rem;
}

.entrepreneur-page .entrepreneur-left .story-info {
  width: 100%;
}

@media (min-width: 960px) {
  .entrepreneur-page .entrepreneur-left .story-info {
    display: block !important;
  }
}

@media (max-width: 960px) {
  .entrepreneur-page .entrepreneur-left .story-info {
    display: none;
  }
}

.entrepreneur-page .entrepreneur-left .story-info h3 {
  font-weight: 700;
  font-size: 1rem;
  color: #302E30;
  margin-bottom: 0.5rem;
}

.entrepreneur-page .entrepreneur-left .story-info strong {
  display: block;
  color: #726E72;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}

.entrepreneur-page .entrepreneur-left .story-info p {
  color: #726E72;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  padding-bottom: 0.5rem;
  display: block;
}

.entrepreneur-page .entrepreneur-left .story-info img {
  max-width: 100%;
  display: block;
  padding: 0.7rem 0;
}

.entrepreneur-page .entrepreneur-right {
  background-color: #FFFFFF;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

@media (max-width: 960px) {
  .entrepreneur-page .entrepreneur-right {
    height: auto;
    position: static;
  }
}

.entrepreneur-page .entrepreneur-right .promotions-item {
  margin: 0;
}

.find-and-support-page {
  width: 100%;
}

.find-and-support-page .view-map {
  background: #FBD49F;
  border: 1px solid #F59D24;
  border-radius: 20px;
  width: 118px;
  height: 32px;
  color: #302E30;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  margin-top: 30px;
  background-image: url(../images/map-icon2.svg);
  background-repeat: no-repeat;
  background-position: 10px;
  padding-left: 26px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

.find-and-support-page .view-list {
  background: #FBD49F;
  border: 1px solid #F59D24;
  border-radius: 20px;
  width: 118px;
  height: 32px;
  color: #302E30;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  margin-top: 30px;
  background-image: url(../images/list-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px;
  padding-left: 26px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  margin-left: 10px;
  margin-bottom: 20px;
}

.find-and-support-page .entrepreneur-search {
  width: 100%;
  background: #FBD49F;
}

.find-and-support-page .entrepreneur-search .filter-click {
  margin-left: 1rem;
  color: #302E30;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  background-image: url(../images/filter-icon.svg);
  padding-left: 1.4rem;
  background-repeat: no-repeat;
  border: 0;
  background-color: transparent;
  background-position: left center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.find-and-support-page .entrepreneur-search .Search-filter {
  background: #F59D24;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #302E30;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

.find-and-support-page .entrepreneur-left {
  padding-left: 5rem;
  padding-right: 2rem;
}

@media (max-width: 960px) {
  .find-and-support-page .entrepreneur-left {
    padding: 0 1rem;
  }
}

.find-and-support-page .entrepreneur-left .entrepreneur-top {
  width: 100%;
}

.find-and-support-page .entrepreneur-left .entrepreneur-top h1 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #000000;
}

.find-and-support-page .entrepreneur-left .entrepreneur-top select {
  border: 0;
}

.find-and-support-page .find-listing .promotions-item {
  margin: 0;
}

.find-and-support-page .support-map {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.find-and-support-page .support-map.active {
  display: block;
}

@media (max-width: 960px) {
  .find-and-support-page .support-map {
    height: 500px;
    display: none;
    margin-bottom: 60px;
  }
  .find-and-support-page .support-map iframe {
    height: 100%;
  }
}

.my-cart-page {
  width: 100%;
}

.my-cart-page .cart-listing-row {
  width: 100%;
}

.my-cart-page .cart-listing-row .cart-listing-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 960px) {
  .my-cart-page .cart-listing-row .cart-listing-top {
    display: none;
  }
}

.my-cart-page .cart-listing-row .cart-listing-top label {
  font-weight: 700;
  font-size: 1.1rem;
}

.my-cart-page .cart-listing-row .cart-listing-top label:nth-child(1) {
  width: 30%;
  text-align: left;
}

.my-cart-page .cart-listing-row .cart-listing-top label:nth-child(2) {
  width: 10%;
  text-align: center;
}

.my-cart-page .cart-listing-row .cart-listing-top label:nth-child(3) {
  width: 30%;
  text-align: center;
}

.my-cart-page .cart-listing-row .cart-listing-top label:nth-child(4) {
  width: 20%;
  text-align: center;
}

.my-cart-page .cart-listing-row .cart-listing {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px #F1F1F1 solid;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .my-cart-page .cart-listing-row .cart-listing {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.my-cart-page .cart-listing-row .cart-listing:nth-child(2) {
  margin-top: 0;
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img {
  width: 30%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 960px) {
  .my-cart-page .cart-listing-row .cart-listing .cart-listing-img {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img .form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: -10px;
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row .img img {
  width: 100%;
  display: block;
  max-width: 90px;
  max-height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row .name {
  margin: 0;
  padding-left: 1rem;
  color: #302E30;
  font-size: 1rem;
  font-weight: 700;
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row .name span {
  display: block;
  color: #302E30;
  font-weight: 400;
}

.my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row .msite-price {
  display: none;
}

@media (max-width: 960px) {
  .my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row .msite-price {
    display: block;
    padding-left: 1rem;
    margin: 0;
    color: #000000;
    font-size: 1rem;
    margin-top: 0.9rem;
  }
  .my-cart-page .cart-listing-row .cart-listing .cart-listing-img .img-row .msite-price span {
    padding-left: 2rem;
    font-weight: 700;
  }
}

.my-cart-page .cart-listing-row .cart-listing .cart-price {
  width: 10%;
  text-align: center;
  font-weight: 700;
  color: #302E30;
  font-size: 1.3rem;
}

@media (max-width: 960px) {
  .my-cart-page .cart-listing-row .cart-listing .cart-price {
    display: none;
  }
}

.my-cart-page .cart-listing-row .cart-listing .cart-qnt {
  width: 30%;
  text-align: center;
}

@media (max-width: 960px) {
  .my-cart-page .cart-listing-row .cart-listing .cart-qnt {
    width: 50%;
  }
}

.my-cart-page .cart-listing-row .cart-listing .cart-qnt .qty-container {
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-cart-page .cart-listing-row .cart-listing .cart-total {
  width: 20%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-weight: 700;
  color: #302E30;
  font-size: 1.3rem;
}

.my-cart-page .Order-Summary-row {
  background: #F1F1F1;
  width: 100%;
  height: 100%;
}

.my-cart-page .my-cart-left {
  width: 100%;
  padding-left: 6rem;
}

@media (max-width: 960px) {
  .my-cart-page .my-cart-left {
    padding: 0 1rem;
  }
}

.my-cart-page .my-cart-left .cart-heading {
  width: 100%;
  text-align: right;
  padding-right: 4rem;
}

@media (max-width: 960px) {
  .my-cart-page .my-cart-left .cart-heading {
    padding: 0;
    text-align: center;
  }
}

.my-cart-page .my-cart-left .cart-heading h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .my-cart-page .my-cart-left .cart-heading h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.my-cart-page .my-cart-left .cart-heading h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.my-favorites {
  width: 100%;
}

.my-favorites .head {
  width: 100%;
  text-align: center;
}

.my-favorites .head h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .my-favorites .head h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.my-favorites .head h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.my-favorites .promotions-item {
  margin: 0;
}

.terms-of-use .head {
  width: 100%;
  text-align: center;
}

.terms-of-use .head h1 {
  color: #302E30;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.5625rem;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  padding: 0 1rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .terms-of-use .head h1 {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}

.terms-of-use .head h1::after {
  content: "";
  background: #F59D24;
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.terms-of-use .terms-text {
  width: 60%;
  margin: auto;
}

@media (max-width: 960px) {
  .terms-of-use .terms-text {
    width: 100%;
  }
}

.terms-of-use .terms-text p {
  color: #726E72;
  font-size: 1rem;
  line-height: 1.5rem;
}

.body-fixed .entrepreneur-left {
  display: none;
}

.body-fixed .view-map {
  opacity: 0;
  display: none !important;
}
/*# sourceMappingURL=style.css.map */