@charset "UTF-8";
@keyframes stripeBackgroundPosition {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -50px 0;
  }
}
.stripes {
  overflow: hidden;
}
.stripes::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%);
  background-size: 50px 50px;
  animation: stripeBackgroundPosition 2s linear infinite;
}

.nav {
  display: block;
  position: fixed;
  background: #000000;
  color: #ffffff;
  height: 80px;
  width: 100vw;
  box-shadow: 0 0 20px -10px #000000;
  z-index: 99;
  top: 0px;
  left: 0px;
}
.nav .inner {
  display: flex;
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.nav .inner > div {
  display: block;
  position: relative;
}
.nav .inner > div.logo {
  position: absolute;
  flex-basis: 150px;
  width: 150px;
  height: 150px;
  background: #000000;
  padding: 10px;
  box-shadow: 0 0 20px -10px #000000;
  top: 0px;
  left: 0px;
  z-index: 5;
}
.nav .inner > div.logo img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
.nav .inner > div.nav-items {
  display: block;
  position: relative;
  width: 100%;
  padding-left: 170px;
  height: 80px;
}
.nav .inner > div.nav-items .hamburger {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
}
.nav .inner > div.nav-items .hamburger .hamburger-inner, .nav .inner > div.nav-items .hamburger .hamburger-inner::before, .nav .inner > div.nav-items .hamburger .hamburger-inner::after {
  background-color: #ffffff;
}
.nav .inner > div.nav-items .hamburger:hover .hamburger-inner, .nav .inner > div.nav-items .hamburger:hover .hamburger-inner::before, .nav .inner > div.nav-items .hamburger:hover .hamburger-inner::after {
  background-color: #EDC378;
}
.nav .inner > div.nav-items .hamburger.is-active .hamburger-inner::before, .nav .inner > div.nav-items .hamburger.is-active .hamburger-inner::after {
  background-color: #EDC378 !important;
}
.nav .inner > div.nav-items .hamburger.is-active:hover .hamburger-inner::before, .nav .inner > div.nav-items .hamburger.is-active:hover .hamburger-inner::after {
  background-color: #ffffff !important;
}
.nav .inner > div.nav-items > div.menu-top-menu-container {
  display: block;
  position: relative;
  width: 100%;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul {
  display: block;
  position: absolute;
  width: auto;
  text-align: right;
  top: 0px;
  right: 0px;
  padding: 0px;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul::after {
  content: "";
  display: block;
  position: relative;
  width: 0px;
  height: 0px;
  clear: both;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li {
  display: block;
  float: left;
  position: relative;
  height: 80px;
  margin: 0px;
  z-index: 1;
  color: #ffffff;
  transition: 0.6s all;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 0px;
  background: #EDC378;
  width: 100%;
  transition: 0.6s height;
  z-index: -1;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > a {
  display: block;
  position: relative;
  height: 80px;
  padding: 25px 20px;
  color: inherit;
  text-decoration: none;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li:hover {
  color: #000000;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li:hover::before {
  height: 80px;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li:hover > ul {
  opacity: 1;
  top: 100%;
  max-height: 350px;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > ul {
  display: block;
  position: absolute;
  top: 70%;
  right: 0px;
  width: 210px;
  background: #000000;
  padding: 0px;
  border-right: solid 3px #EDC378;
  box-shadow: 0 0 10px -5px #000000;
  z-index: -10;
  opacity: 0;
  overflow: hidden;
  max-height: 0px;
  transition: 0.6s opacity, 0.6s top, 0.6s max-height;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > ul > li {
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > ul > li > a {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.6s all;
  overflow: hidden;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > ul > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  background: #EDC378;
  width: 0px;
  transition: 0.6s width;
  z-index: -1;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > ul > li > a:hover {
  color: #000000;
}
.nav .inner > div.nav-items > div.menu-top-menu-container > ul > li > ul > li > a:hover::before {
  width: 207px;
}

.header {
  display: block;
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.header.main .background {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.header.main .background > img {
  display: block;
  position: absolute;
  width: 110%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.header.main .background::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 7%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}
.header.main .inner {
  display: block;
  position: absolute;
  width: 90%;
  max-width: 1400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  align-items: center;
}
.header.main .inner h1 {
  display: block;
  position: relative;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  width: 100%;
}
.header.main .inner .links {
  display: block;
  position: relative;
  margin-top: 20px;
}
.header.main .inner .links a {
  display: inline-block;
  position: relative;
  padding: 10px 40px;
  background: #EDC378;
  color: #000000;
  font-weight: 400;
  border-radius: 10px;
  margin-right: 10px;
  text-decoration: none;
  transition: 0.4s all;
}
.header.main .inner .links a:last-of-type {
  margin-right: 0px;
}
.header.main .inner .links a:hover {
  background: #ffffff;
}
.header .item {
  display: block;
  position: relative;
  width: 100%;
  height: 600px;
}
.header .item .background-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.header .item .background-image > img {
  display: block;
  position: absolute;
  width: 110%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.header .item .background-image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 7%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}
.header .item .inner {
  display: flex;
  position: absolute;
  width: 90%;
  max-width: 1400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  align-items: center;
}
.header .item .inner .content {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
}
.header .item .inner .content h5 {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ffffff;
  background: rgb(212, 40, 40);
}
.header .item .inner .content h2 {
  font-size: 3rem;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
}
.header .item .inner .content p {
  color: #ffffff;
  margin-top: 20px;
}
.header .item .inner .content a {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  background: #EDC378;
  margin-top: 40px;
  text-decoration: none;
  transition: 0.6s all;
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
}
.header .item .inner .content a span {
  display: inline-block;
  position: relative;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 400;
  transition: 0.6s all;
  transform: skew(20deg);
  -webkit-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
}
.header .item .inner .content a:hover {
  background: #000000;
  color: #ffffff;
}
.header .item .inner .content a:hover span {
  color: #ffffff;
}
.header .item .inner .product-image {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
}
.header .item .inner .product-image div.product-overlay {
  display: block;
  position: relative;
  width: 100%;
}
.header .item .inner .product-image div.product-overlay > img {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.section-title {
  display: block;
  position: relative;
  width: 100%;
  padding: 40px 0px;
}
.section-title h2 {
  display: block;
  position: relative;
  font-size: 3rem;
  line-height: 1.3em;
  color: #000000;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}

.comp-section {
  display: block;
  position: relative;
  width: 100%;
  padding: 40px 0px;
}
.comp-section > .inner {
  display: flex;
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.comp-section .more-button {
  displaY: block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 40px 0px;
}
.comp-section .more-button > a {
  display: inline-block;
  position: relative;
  padding: 10px 40px;
  background: #EDC378;
  margin-top: 40px;
  text-decoration: none;
  transition: 0.6s all;
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
}
.comp-section .more-button > a span {
  display: inline-block;
  position: relative;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 400;
  transition: 0.6s all;
  transform: skew(20deg);
  -webkit-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
}
.comp-section .more-button > a:hover {
  background: #000000;
  color: #ffffff;
}
.comp-section .more-button > a:hover span {
  color: #ffffff;
}

.how-it-works {
  display: block;
  position: relative;
  width: 100%;
  background: linear-gradient(162deg, #313131 0%, #000000 100%), #000000;
  padding: 40px 0px;
  margin-top: 100px;
}
.how-it-works > .inner {
  display: flex;
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: center;
}
.how-it-works > .inner .video {
  display: block;
  position: relative;
  flex-basis: 50%;
  width: 50%;
}
.how-it-works > .inner .video video {
  display: block;
  position: relative;
  width: 100%;
  margin-top: -100px;
  float: right;
  cursor: pointer;
}
.how-it-works > .inner > .content {
  display: block;
  position: relative;
  flex-basis: 50%;
  width: 50%;
}
.how-it-works > .inner > .content h2 {
  font-size: 2.5rem;
  color: #EDC378;
  font-weight: 400;
  margin-bottom: 20px;
}
.how-it-works > .inner > .content .point {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}
.how-it-works > .inner > .content .point .icon {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EDC378;
}
.how-it-works > .inner > .content .point .icon img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
.how-it-works > .inner > .content .point .content {
  display: block;
  position: relative;
}
.how-it-works > .inner > .content .point .content p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 100%;
}

.reviews {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 40px;
  background: rgb(255, 255, 255);
  background: linear-gradient(164deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 50.1%, rgba(255, 255, 255, 0.1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  height: 400px;
}
.reviews h2 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 20px;
}

.product-item {
  display: block;
  position: relative;
  width: 400px;
  flex-basis: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px -10px #444444;
  text-decoration: none;
  color: #000000;
}
.product-item .image {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0px;
  padding-top: 100%;
}
.product-item .image img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.product-item .image > .price {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000000;
  border: solid 5px #EDC378;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 20px -10px #000000;
}
.product-item .image > .price > p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.6rem;
  line-height: 1.6rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}
.product-item .image > .price > p > span {
  display: block;
  position: relative;
  font-size: 1rem;
  margin-top: -5px;
  font-weight: 300;
}
.product-item .content {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px;
}
.product-item .content h4 {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.product-item .content .lty-lottery-countdown-timer {
  display: flex;
  gap: 5%;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product-item .content .lty-lottery-countdown-timer span.lty-lottery-timer {
  border-top: solid 5px #EDC378;
  padding-top: 20px;
  font-weight: 300 !important;
  width: 20%;
  flex-basis: 20%;
}
.product-item .content .lty-lottery-countdown-timer span.lty-lottery-timer > b {
  font-weight: 300 !important;
  font-size: 1rem !important;
}
.product-item .content .lty-lottery-countdown-timer span.lty-lottery-timer > span {
  font-size: 1.4rem !important;
  font-weight: 400 !important;
}
.product-item .content .progress-bar {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.product-item .content .progress-bar p.title {
  display: block;
  position: relative;
  font-size: 0.6rem;
  font-weight: 400;
  text-align: center;
}
.product-item .content .progress-bar .bar {
  display: block;
  position: relative;
  width: 100%;
  background: #ededed;
  border-radius: 5px;
}
.product-item .content .progress-bar .bar::before {
  content: "0";
  display: block;
  position: absolute;
  color: #000000;
  font-size: 0.6rem;
  bottom: 50%;
  left: 0px;
}
.product-item .content .progress-bar .bar::after {
  content: attr(max);
  display: block;
  position: absolute;
  color: #000000;
  font-size: 0.6rem;
  bottom: 50%;
  right: 0px;
}
.product-item .content .progress-bar .bar .inner {
  display: block;
  position: relative;
  background: rgb(212, 40, 40);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  height: 15px;
  border-radius: 5px;
  left: 0px;
}
.product-item .content .progress-bar .bar .inner::after {
  content: attr(perc);
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 0.6rem;
  font-weight: 400;
  color: #ffffff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.product-item .content .progress-bar .bar .inner[perc="0%"]::after, .product-item .content .progress-bar .bar .inner[perc="1%"]::after, .product-item .content .progress-bar .bar .inner[perc="2%"]::after, .product-item .content .progress-bar .bar .inner[perc="3%"]::after, .product-item .content .progress-bar .bar .inner[perc="4%"]::after, .product-item .content .progress-bar .bar .inner[perc="5%"]::after, .product-item .content .progress-bar .bar .inner[perc="6%"]::after, .product-item .content .progress-bar .bar .inner[perc="7%"]::after, .product-item .content .progress-bar .bar .inner[perc="8%"]::after, .product-item .content .progress-bar .bar .inner[perc="9%"]::after, .product-item .content .progress-bar .bar .inner[perc="10%"]::after {
  content: attr(perc);
  display: block;
  position: absolute;
  top: 50%;
  right: -25px;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgb(212, 40, 40);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.product-item .content div.button {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px;
  background: #EDC378;
  color: #000000;
  text-align: center;
  border-radius: 10px;
  transition: 0.4s all;
}
.product-item .content div.button:hover {
  background: #000000;
  color: #ffffff;
}

.footer {
  display: block;
  position: relative;
  width: 100%;
  background: #000000;
  padding: 80px 0px;
}
.footer > .inner {
  display: flex;
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 5%;
}
.footer > .inner .logo {
  display: block;
  position: relative;
  width: 200px;
  flex-basis: 200px;
}
.footer > .inner > .socials {
  display: block;
  position: relative;
  width: 33%;
  flex-basis: 33%;
  margin-top: 50px;
}
.footer > .inner > .socials h3 {
  display: block;
  position: absolute;
  top: -50px;
  left: 0px;
  font-size: 24px;
  color: #EDC378;
  font-weight: 400;
  text-align: left;
}
.footer > .inner > .socials .social-inner {
  display: flex;
  position: relative;
  width: 100%;
  gap: 10px;
}
.footer > .inner > .socials .social-inner a {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  flex-basis: 60px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.4s all;
}
.footer > .inner > .socials .social-inner a svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
.footer > .inner > .socials .social-inner a svg path {
  fill: #000000 !important;
  transition: 0.4s all;
}
.footer > .inner > .socials .social-inner a:hover {
  background: #EDC378;
}
.footer > .inner > .socials .social-inner a:hover svg path {
  fill: #000000 !important;
}
.footer > .inner > .col {
  display: block;
  position: relative;
  width: 20%;
  flex-basis: 20%;
  margin-top: 50px;
}
.footer > .inner > .col:nth-child(3n) {
  width: 33%;
  flex-basis: 33%;
}
.footer > .inner > .col h3 {
  display: block;
  position: absolute;
  top: -50px;
  left: 0px;
  font-size: 24px;
  color: #EDC378;
  font-weight: 400;
  text-align: left;
}
.footer > .inner > .col a {
  display: block;
  position: relative;
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
  text-decoration: none;
  padding: 5px 20px;
  transition: 0.4s all;
}
.footer > .inner > .col a::before {
  content: "›";
  displaY: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  color: #ffffff;
  opacity: 0;
  transition: 0.4s all;
}
.footer > .inner > .col a:hover {
  color: #EDC378;
}
.footer > .inner > .col a:hover::before {
  opacity: 1;
}
.footer .copyright {
  display: block;
  position: relative;
  width: 100%;
  background: #EDC378;
  color: #000000;
  padding: 20px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: -80px;
}
.footer .copyright .inner {
  display: flex;
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.footer .copyright .inner > .col {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
}
.footer .copyright .inner > .col:nth-child(2n) {
  text-align: right;
}
.footer .copyright .inner > .col p {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
}
.footer .copyright .inner > .col a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  text-align: right;
  color: #000000;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.4s all;
}
.footer .copyright .inner > .col a svg {
  display: inline-block;
  position: relative;
  width: 200px;
  margin-left: 10px;
}
.footer .copyright .inner > .col a svg path {
  fill: #000000 !important;
  transition: 0.4s all;
}
.footer .copyright .inner > .col a:hover {
  background: #000000;
  color: #ffffff;
}
.footer .copyright .inner > .col a:hover svg path {
  fill: #ffffff !important;
}

.flickity-prev-next-button {
  top: auto;
  bottom: 10px;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #EDC378;
  z-index: 10;
}
.flickity-prev-next-button:focus {
  border: none !important;
}
.flickity-prev-next-button svg path {
  fill: #000000;
}

.flickity-page-dots {
  bottom: 20px;
}
.flickity-page-dots .dot {
  width: 30px;
  height: 10px;
  border-radius: 20px;
  background: #fff;
}
.flickity-page-dots .is_selected {
  background: #EDC378 !important;
}

.charity-work {
  display: block;
  position: relative;
  width: 100%;
  padding: 40px 0px;
}
.charity-work .inner {
  display: block;
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.charity-work .inner h2 {
  display: block;
  position: relative;
  font-size: 3rem;
  line-height: 1.3em;
  color: #000000;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.charity-work .inner .charity-items {
  display: flex;
  position: relative;
  width: 100%;
  gap: 30px;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.charity-work .inner .charity-items .item {
  display: block;
  position: relative;
  width: 280px;
  flex-basis: 280px;
  box-shadow: 0 0 20px -10px #000000;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 50px;
}
.charity-work .inner .charity-items .item .images {
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 100%;
  overflow: hidden;
  border-bottom: solid 3px #EDC378;
}
.charity-work .inner .charity-items .item .images > img.background {
  display: block;
  position: absolute;
  height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.charity-work .inner .charity-items .item .images > .logo {
  display: block;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: #ffffff;
  width: 50%;
  height: 0px;
  padding-top: 50%;
  transition: 0.6s cubic-bezier(0, 1.06, 0.86, 1.16);
  border-radius: 10px;
  overflow: hidden;
}
.charity-work .inner .charity-items .item .images > .logo > img {
  display: block;
  position: absolute;
  top: 50%;
  lefT: 50%;
  height: auto;
  width: auto;
  max-width: 80%;
  max-height: 80%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.charity-work .inner .charity-items .item .content {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px;
}
.charity-work .inner .charity-items .item .content h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}
.charity-work .inner .charity-items .item .content p {
  font-weight: 300;
  font-size: 16px;
}
.charity-work .inner .charity-items .item a {
  display: block;
  position: absolute;
  width: calc(100% - 20px);
  bottom: 10px;
  left: 10px;
  padding: 5px;
  text-align: center;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  margin-top: 20px;
  border-radius: 5px;
  transition: 0.4s all;
}
.charity-work .inner .charity-items .item a:hover {
  background: #EDC378;
  color: #000000;
}
.charity-work .inner .charity-items .item:hover .images .logo {
  bottom: 10px;
}

.singleProduct {
  display: block;
  position: relative;
  width: 100%;
  padding: 80px 0px;
}
.singleProduct .backgroundImage {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.singleProduct .backgroundImage > img {
  display: block;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.singleProduct .productTile {
  display: block;
  position: relative;
  width: 95%;
  max-width: 1400px;
  background: #ffffff;
  margin: 0 auto;
  box-shadow: 0 0 20px -10px #000000;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.singleProduct .productTile .inner {
  display: flex;
  position: relative;
}
.singleProduct .productTile .inner .productImage {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
  overflow: hidden;
  height: 0px;
  padding-top: 50%;
}
.singleProduct .productTile .inner .productImage > img {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.singleProduct .productTile .inner .productImage > .price {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000000;
  border: solid 5px #EDC378;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 20px -10px #000000;
}
.singleProduct .productTile .inner .productImage > .price > p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.6rem;
  line-height: 1.6rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}
.singleProduct .productTile .inner .productImage > .price > p > span {
  display: block;
  position: relative;
  font-size: 1rem;
  margin-top: -5px;
  font-weight: 300;
}
.singleProduct .productTile .inner .productImage .countDown {
  display: block;
  position: absolute;
  background: #ededed;
  bottom: 20px;
  left: 20px;
  border-radius: 10px;
  padding: 10px;
}
.singleProduct .productTile .inner .productImage .countDown .lty-lottery-countdown-timer p {
  display: inline-block;
  margin-right: 5px;
}
.singleProduct .productTile .inner .productImage .countDown .lty-lottery-countdown-timer > span {
  display: inline-block;
  margin-right: 5px;
}
.singleProduct .productTile .inner .productImage .countDown .lty-lottery-countdown-timer > span:last-of-type {
  margin-right: 0px;
}
.singleProduct .productTile .inner .productImage .countDown .lty-lottery-countdown-timer > span > span {
  margin-right: 3px;
}
.singleProduct .productTile .inner .productContent {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
  padding: 40px 40px 140px 40px;
}
.singleProduct .productTile .inner .productContent > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 400;
}
.singleProduct .productTile .inner .productContent .description {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 300;
}
.singleProduct .productTile .inner .productContent .description h1, .singleProduct .productTile .inner .productContent .description h2, .singleProduct .productTile .inner .productContent .description h3, .singleProduct .productTile .inner .productContent .description h4, .singleProduct .productTile .inner .productContent .description h5, .singleProduct .productTile .inner .productContent .description h6 {
  font-weight: 400;
  margin-bottom: 10px;
}
.singleProduct .productTile .inner .productContent .description b, .singleProduct .productTile .inner .productContent .description strong {
  font-weight: 400;
}
.singleProduct .productTile .inner .productContent .description p {
  margin-bottom: 10px;
}
.singleProduct .productTile .inner .productContent .quantityForm {
  display: block;
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: calc(100% - 80px);
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar p.title {
  display: block;
  position: relative;
  font-size: 0.6rem;
  font-weight: 400;
  text-align: center;
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar {
  display: block;
  position: relative;
  width: 100%;
  background: #ededed;
  border-radius: 5px;
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar::before {
  content: "0";
  display: block;
  position: absolute;
  color: #000000;
  font-size: 0.6rem;
  bottom: 50%;
  left: 0px;
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar::after {
  content: attr(max);
  display: block;
  position: absolute;
  color: #000000;
  font-size: 0.6rem;
  bottom: 50%;
  right: 0px;
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner {
  display: block;
  position: relative;
  background: rgb(212, 40, 40);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  height: 15px;
  border-radius: 5px;
  left: 0px;
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner::after {
  content: attr(perc);
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 0.6rem;
  font-weight: 400;
  color: #ffffff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="0%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="1%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="2%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="3%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="4%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="5%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="6%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="7%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="8%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="9%"]::after, .singleProduct .productTile .inner .productContent .quantityForm .progress-bar .bar .inner[perc="10%"]::after {
  content: attr(perc);
  display: block;
  position: absolute;
  top: 50%;
  right: -25px;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgb(212, 40, 40);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.singleProduct .productTile .inner .productContent .quantityForm > form {
  display: flex;
  position: relative;
  width: 100%;
  gap: 40px;
}
.singleProduct .productTile .inner .productContent .quantityForm > form button.single_add_to_cart_button {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
  background: #EDC378;
  color: #000000;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: 0.4s all;
}
.singleProduct .productTile .inner .productContent .quantityForm > form button.single_add_to_cart_button:hover {
  background: #000000;
  color: #EDC378;
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity {
  display: flex;
  position: relative;
  width: 50%;
  flex-basis: 50%;
  border-radius: 10px;
  box-shadow: 0 0 20px -15px #313131;
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .plus, .singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .minus {
  display: block;
  position: relative;
  width: 20%;
  flex-basis: 20%;
  padding: 10px;
  background: #EDC378;
  color: #000000;
  border: none;
  outline: none;
  -moz-appearance: textfield; /* Firefox */
  cursor: pointer;
  transition: 0.4s all;
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .plus:hover, .singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .minus:hover {
  background: #000000;
  color: #EDC378;
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .plus::-webkit-outer-spin-button, .singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .plus::-webkit-inner-spin-button, .singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .minus::-webkit-outer-spin-button, .singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .minus::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .minus {
  border-radius: 10px 0px 0px 10px;
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .plus {
  border-radius: 0px 10px 10px 0px;
}
.singleProduct .productTile .inner .productContent .quantityForm > form div.quantity .qty {
  display: block;
  position: relative;
  width: 60%;
  flex-basis: 60%;
  padding: 10px;
  outline: none;
  border: none;
  background: #ededed;
  text-align: center;
}

.mini-cart-button {
  padding: 20px;
  cursor: pointer;
}
.mini-cart-button svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}
.mini-cart-button svg path {
  fill: #ffffff;
  transition: 0.4s all;
}
.mini-cart-button:hover svg path {
  fill: #000000;
}

.notices {
  display: block;
  position: fixed;
  z-index: 5;
  bottom: 0px;
  right: 20px;
}
.notices.mobile {
  right: auto;
  left: 50%;
  width: 95%;
  z-index: 51;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.notices .woocommerce-message {
  border-top-color: #EDC378;
}
.notices .woocommerce-message a {
  margin-left: 20px;
  padding: 5px 10px;
  margin-top: -5px;
  background: #EDC378;
  border-radius: 10px;
  color: #000000;
  text-decoration: none;
}
.notices .woocommerce-message a:hover {
  background: #313131;
  color: #ffffff;
}
.notices .woocommerce-message::before {
  content: "\e015";
  color: #EDC378;
}

.mini-cart-modal {
  display: none;
  position: absolute;
  width: 500px;
  top: 90px;
  right: 0px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0px;
  box-shadow: 0 0 20px -10px #313131;
  z-index: 50;
}
.mini-cart-modal > .cart_list {
  display: block;
  position: relative;
  width: 100%;
}
.mini-cart-modal > .cart_list .mini_cart_item {
  display: block;
  position: relative;
  width: 100%;
}
.mini-cart-modal > .cart_list .mini_cart_item .remove {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  text-decoration: none;
  color: rgb(212, 40, 40);
  z-index: 5;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  text-align: center;
  border-radius: 50%;
  transition: 0.4s all;
}
.mini-cart-modal > .cart_list .mini_cart_item .remove:hover {
  background: rgb(212, 40, 40);
  color: #ffffff;
}
.mini-cart-modal > .cart_list .mini_cart_item .content {
  display: flex;
  position: relative;
  width: 100%;
  text-decoration: none;
  padding: 10px;
  border: solid 1px #ededed;
  align-items: center;
}
.mini-cart-modal > .cart_list .mini_cart_item .content img {
  display: block;
  position: relative;
  width: 20%;
  flex-basis: 20%;
  height: auto;
}
.mini-cart-modal > .cart_list .mini_cart_item .content .miniProductContent {
  display: block;
  position: relative;
  width: 80%;
  flex-basis: 80%;
  padding: 0px 10px;
  color: #000000;
}
.mini-cart-modal > .cart_list .mini_cart_item .content .miniProductContent span {
  color: #313131;
}
.mini-cart-modal > .total {
  display: block;
  position: relative;
  width: 100%;
  color: #313131;
  padding: 10px;
  text-align: right;
}
.mini-cart-modal > .buttons {
  display: flex;
  position: relative;
  width: 100%;
  gap: 30px;
  padding: 10px 10px 0px 10px;
}
.mini-cart-modal > .buttons > a {
  display: block;
  position: relative;
  width: 50%;
  flex-basis: 50%;
  padding: 10px;
  text-decoration: none;
  background: #313131;
  color: #ffffff;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s all;
}
.mini-cart-modal > .buttons > a:hover {
  background: #EDC378;
  color: #000000;
}
.mini-cart-modal .woocommerce-mini-cart__empty-message {
  color: #313131;
  text-align: center;
  padding: 10px;
}
.mini-cart-button-mobile {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(162deg, #313131 0%, #000000 100%), #000000;
  z-index: 50;
  box-shadow: 0 0 20px -10px #313131;
}
.mini-cart-button-mobile.cartCount::after {
  content: attr(data-count);
  display: block;
  position: absolute;
  bottom: 55%;
  left: 55%;
  background: rgb(212, 40, 40);
  color: #ffffff;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}
.mini-cart-button-mobile#mini_cart_button_mobile_close {
  display: none;
  background: #EDC378;
}
.mini-cart-button-mobile#mini_cart_button_mobile_close svg path {
  stroke: #000000;
}
.mini-cart-button-mobile svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.mini-cart-button-mobile svg path {
  fill: #ffffff;
}

.mini-cart-modal.mobile {
  position: fixed;
  width: 95%;
  bottom: 100px;
  top: auto;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media only screen and (max-width: 1300px) {
  .singleProduct .productTile {
    max-width: 600px;
    width: 90%;
  }
  .singleProduct .productTile .inner {
    flex-direction: column;
  }
  .singleProduct .productTile .inner .productImage, .singleProduct .productTile .inner .productContent {
    flex-basis: 100%;
    width: 100%;
  }
  .singleProduct .productTile .inner .productImage .quantityForm > form, .singleProduct .productTile .inner .productContent .quantityForm > form {
    gap: 10px;
  }
  .singleProduct .productTile .inner .productImage {
    padding-top: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .singleProduct {
    padding: 20px 0px;
  }
  .product-item {
    max-width: 400px;
    width: 90%;
    flex-basis: 90%;
  }
  .footer > .inner {
    align-items: center;
    flex-direction: column;
    max-width: 600px;
  }
  .footer > .inner > .col, .footer > .inner .socials, .footer > .inner .col:nth-child(3n) {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
    margin-top: 0px;
  }
  .footer > .inner > .col h3, .footer > .inner .socials h3, .footer > .inner .col:nth-child(3n) h3 {
    position: relative;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    left: auto;
    top: auto;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .footer > .inner > .col .social-inner, .footer > .inner .socials .social-inner, .footer > .inner .col:nth-child(3n) .social-inner {
    justify-content: center;
  }
  .footer > .copyright .inner {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer > .copyright .inner > .col {
    width: 100%;
    flex-basis: 100%;
  }
  .footer > .copyright .inner > .col p, .footer > .copyright .inner > .col a {
    display: block;
    text-align: center;
  }
  .footer > .copyright .inner > .col a {
    margin-top: 10px;
  }
  .how-it-works .inner {
    justify-content: center;
    flex-direction: column;
    max-width: 700px;
  }
  .how-it-works .inner > .content, .how-it-works .inner .video {
    flex-basis: 100%;
    width: 100%;
  }
  .how-it-works .inner > .content {
    text-align: center;
  }
  .how-it-works .inner > .content .point {
    justify-content: center;
  }
  .nav .inner {
    width: 100%;
  }
  .nav .inner > div.logo {
    margin-left: 2%;
    width: 100px;
    flex-basis: 100px;
    height: 100px;
  }
  .nav .inner > div.nav-items .hamburger {
    display: block;
    padding: 0px;
  }
  .nav .inner > div.nav-items .hamburger > span.hamburger-box {
    display: block;
    position: relative;
    width: 40px;
    height: 24px;
    top: 15%;
    left: 50%;
    padding: 0px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .nav .inner > div.nav-items .hamburger > span.hamburger-box .hamburger-inner, .nav .inner > div.nav-items .hamburger > span.hamburger-box .hamburger-inner::before, .nav .inner > div.nav-items .hamburger > span.hamburger-box .hamburger-inner::after {
    height: 2px;
    border-radius: 2px;
    transition: 0.4s all;
  }
  .nav .inner > div.nav-items div.menu-top-menu-container {
    display: block;
    position: absolute;
    width: 100%;
    height: calc(100vh - 80px);
    left: 0px;
    top: 100%;
    background: #000000;
    max-height: 0px;
    overflow: hidden;
    transition: 0.4s all;
  }
  .nav .inner > div.nav-items div.menu-top-menu-container ul.menu {
    display: block;
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0px;
    margin: 0 auto;
    height: auto;
  }
  .nav .inner > div.nav-items div.menu-top-menu-container ul.menu > li {
    float: none;
    width: 100%;
    text-align: center;
    height: auto;
  }
  .nav .inner > div.nav-items div.menu-top-menu-container ul.menu > li::before {
    bottom: auto;
    top: 0px;
  }
  .nav .inner > div.nav-items div.menu-top-menu-container ul.menu > li.active::before {
    height: 100%;
  }
  .nav .inner > div.nav-items div.menu-top-menu-container ul.menu > li > ul {
    position: relative;
    width: 100%;
    right: 0px;
    top: 0px;
    border-right: none;
    background: rgba(255, 255, 255, 0.1);
  }
  .nav .inner > div.nav-items.active div.menu-top-menu-container {
    max-height: calc(100vh - 80px);
  }
  .header .item .background-image img {
    width: auto;
    height: 100%;
    left: auto;
    right: 0px;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
  }
  .header .item .inner .content {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .header {
    height: calc(80vh - 80px);
  }
  .header .item {
    height: calc(80vh - 80px);
  }
  .header .item .inner {
    flex-direction: column-reverse;
    top: 45%;
  }
  .header .item .inner .product-image {
    width: 100%;
    flex-basis: 100%;
    max-height: 200px;
  }
  .header .item .inner .product-image .product-overlay {
    height: 200px;
  }
}
@media only screen and (max-width: 500px) {
  .singleProduct .productTile .inner .productImage .countDown {
    width: 95%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    padding: 10px 0px;
  }
  .singleProduct .productTile .inner .productImage > .price {
    bottom: 80px;
  }
  .singleProduct .productTile .inner .productContent {
    padding: 20px 20px 120px 20px;
  }
  .singleProduct .productTile .inner .productContent h1 {
    margin-bottom: 20px;
  }
  .singleProduct .productTile .inner .productContent .quantityForm {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 420px) {
  .header .item .inner {
    top: 40%;
  }
  .header .item .inner .product-image .product-overlay {
    height: 160px;
  }
  .header .item .inner .content h2 {
    font-size: 2.4rem;
    line-height: 1.1em;
  }
  .header .item .inner .content a {
    margin-top: 20px;
  }
  .header .item .inner .content a span {
    font-size: 1.2rem;
  }
  .charity-work .inner .charity-items .item {
    width: 90%;
    flex-basis: 90%;
  }
}/*# sourceMappingURL=brand.css.map */