@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #0c1118;
  font-family: "Montserrat", sans-serif;
  padding: 0 0 30px 0;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: 1px 1px 11px 15px rgba(0, 0, 0, 0.156);
}

.logo {
  position: relative;
  text-align: center;
  padding: 15px;
  z-index: 2;
  margin-bottom: 100px;
}
.logo img {
  height: 70px;
}

.banner {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: #0c1118;
  width: 100%;
  height: 550px;
  color: #fff;
}
.banner .title {
  margin-top: 35px;
}
.banner .title h1 {
  font-weight: 600;
  font-size: 4.3rem;
  line-height: 75px;
}
.banner .title h3 {
  font-weight: 400;
  font-size: 1.1rem;
  margin-top: 5px;
}
.banner .divider {
  width: 60px;
  height: 10px;
}
.banner .light {
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  opacity: 0.5;
}
.banner .light img {
  width: 370px;
  z-index: 2;
}
.banner .light2 {
  position: absolute;
  top: -205px;
  right: 0;
  z-index: 2;
  opacity: 0.3;
}
.banner .light2 img {
  width: 370px;
  z-index: 2;
}
.banner .rope {
  position: absolute;
  top: -220px;
  right: -80px;
  z-index: 1;
}
.banner .rope img {
  width: 370px;
  z-index: 1;
}
.banner .rope2 {
  position: absolute;
  top: -218px;
  left: -135px;
  z-index: 1;
}
.banner .rope2 img {
  height: 768px;
  z-index: 1;
}
.banner .circle {
  display: flex;
  justify-content: center;
  margin-left: 30px;
}
.banner .circle img {
  height: 250px;
}

.prom-bar {
  display: flex;
  align-items: center;
  background: rgb(157, 31, 54);
  background: linear-gradient(90deg, #9d1f36 0%, rgb(133, 15, 36) 35%, #7e192c 100%);
  color: #fff;
  font-size: 22px;
  height: 75px;
  padding-left: 30px;
}

.prom-bar-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(157, 31, 54);
  background: linear-gradient(90deg, #9d1f36 0%, rgb(133, 15, 36) 35%, #7e192c 100%);
  color: #fff;
  font-size: 22px;
  height: 75px;
  margin-top: 40px;
}
.prom-bar-1 a {
  color: #fff;
  text-decoration: none;
}

.product-grid {
  margin-top: 125px;
  position: relative;
  display: flex;
  justify-content: space-around;
}
.product-grid .left-product {
  flex: 1;
  display: flex;
  justify-content: center;
  background-color: #fff;
  margin-right: 5px;
  z-index: 2;
}
.product-grid .left-product .product-promo-item {
  height: auto;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.product-grid .left-product .product-promo-item.fade-out {
  opacity: 0;
}
.product-grid .left-product .product-promo-item.fade-in {
  opacity: 1;
}
.product-grid .left-product .product-promo-item .promo-title {
  background-color: #9d1f36;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-size: 24px;
}
.product-grid .left-product .product-promo-item img {
  width: 100%;
}
.product-grid .left-product .product-promo-item h3 {
  padding: 0 30px;
}
.product-grid .left-product .product-promo-item .price {
  font-size: 24px;
  color: #a0212e;
  font-weight: bold;
}
.product-grid .left-product .product-promo-item .price .old-price {
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 400;
  color: #181818;
}
.product-grid .left-product .product-promo-item .check-btn {
  background-color: #a0212e;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}
.product-grid .left-product .product-promo-item .check-btn:hover {
  background-color: #7d1724;
}
.product-grid .left-product .product-promo-item .countdown-section {
  text-align: center;
  background-color: rgba(247, 247, 247, 0.1647058824);
  padding: 20px;
  margin: 20px 0;
}
.product-grid .left-product .product-promo-item .countdown-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.product-grid .left-product .product-promo-item .countdown-section .countdown-timer {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.product-grid .left-product .product-promo-item .countdown-section .countdown-timer .time-unit {
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.product-grid .left-product .product-promo-item .countdown-section .countdown-timer .time-unit span {
  display: block;
  font-size: 30px;
  font-weight: bold;
}
.product-grid .left-product .product-promo-item .countdown-section .countdown-timer .time-unit p {
  font-size: 14px;
  margin: 5px 0 0;
  color: #555;
}
.product-grid .left-product .product-promo-item .countdown-section .progress-bar {
  height: 5px;
  background-color: #a0212e;
  margin-top: 10px;
  width: 0;
  animation: progress-animation 8s linear infinite;
}
@keyframes progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.product-grid .right-product {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  z-index: 2;
}
.product-grid .right-product .product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 250px;
  padding: 10px;
  text-align: center;
  z-index: 7;
}
.product-grid .right-product .product-item h3 {
  font-size: 14px;
  margin-bottom: 5px;
}
.product-grid .right-product .product-item img {
  max-height: 150px;
  max-width: 150px;
  margin-bottom: 25px;
}
.product-grid .right-product .product-item .price {
  font-size: 20px;
  color: #a0212e;
  font-weight: bold;
}
.product-grid .right-product .product-item .price .old-price {
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 400;
  color: #181818;
}
.product-grid .right-product .product-item .check-btn {
  background-color: #a0212e;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  margin-top: 10px;
  transition: 0.4s;
  font-family: "Montserrat", sans-serif;
}
.product-grid .right-product .product-item .check-btn:hover {
  background-color: #7d1724;
}
.product-grid .rope3 {
  position: absolute;
  bottom: 40px;
  left: -290px;
  z-index: 1;
  transform: rotate(-20deg);
}
.product-grid .rope3 img {
  width: 600px;
  opacity: 0.6;
}

.rules-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
  z-index: 2;
}
.rules-section .weeks {
  flex: 1.5;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.rules-section .weeks .week {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  width: 48%;
  height: 280px;
  margin: 5px;
  text-align: center;
}
.rules-section .weeks .week .promo-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 25px;
  transition: 0.2s;
  font-family: "Montserrat", sans-serif;
}
.rules-section .weeks .week .promo-btn:hover {
  background-color: #efefef;
}
.rules-section .weeks .active {
  background-color: #9d1f36;
}
.rules-section .weeks .prev {
  background-color: #3f3f3f;
  opacity: 0.8;
}
.rules-section .weeks .next {
  background-color: #99394a;
}
.rules-section .influencer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.rules-section .influencer img {
  width: 80%;
  transform: translateY(10px);
  z-index: -1;
}
.rules-section .influencer .week {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  width: 95%;
  height: 200px;
  margin: 5px;
  text-align: center;
  background-color: #14141c;
  box-shadow: 1px 1px 10px 5px rgba(113, 113, 113, 0.156);
}
.rules-section .influencer .week .promo-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 25px;
  transition: 0.2s;
  font-family: "Montserrat", sans-serif;
}
.rules-section .influencer .week .promo-btn:hover {
  background-color: #efefef;
}

.g-kitchen {
  margin-top: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.g-kitchen h2 {
  font-size: 38px;
  color: #fff;
  text-align: center;
  margin: 30px 0;
}
.g-kitchen img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.g-kitchen .kitchen-btn {
  background-color: #a0212e;
  color: white;
  width: 250px;
  height: 50px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  margin: 20px 0;
  transition: 0.4s;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.g-kitchen .kitchen-btn:hover {
  background-color: #7d1724;
}
.g-kitchen .rope3 {
  position: absolute;
  bottom: 0;
  right: -300px;
  transform: rotate(190deg);
  z-index: 1;
  opacity: 0.5;
}
.g-kitchen .rope3 img {
  width: 400px;
  opacity: 0.6;
}

.numbers {
  margin-top: 50px;
  padding: 30px 30px;
  display: flex;
  justify-content: space-around;
  list-style: none;
}
.numbers li {
  display: flex;
  align-items: center;
  color: #fff;
}
.numbers li h2 {
  text-align: center;
  font-size: 54px;
  font-weight: 400;
  margin-right: 10px;
  color: #ffffff;
}
.numbers img {
  width: 100px;
}

.logo-bar {
  background-color: #9d1f36;
  text-align: center;
}
.logo-bar img {
  width: 150px;
  padding: 20px;
}

@media screen and (max-width: 840px) {
  .logo {
    margin-bottom: 50px;
  }
  .banner {
    flex-direction: column;
    height: 400px;
  }
  .banner .title {
    margin: 0;
    z-index: 3;
  }
  .banner .title h1 {
    font-size: 3.5rem;
  }
  .banner .title h2 {
    font-size: 2rem;
  }
  .banner .rope {
    z-index: 1;
    right: 0;
  }
  .banner .rope img {
    width: 300px;
    opacity: 0.4;
  }
  .banner .rope2 {
    left: 0;
    top: -150px;
  }
  .banner .rope2 img {
    width: 450px;
    height: auto;
    opacity: 0.3;
  }
  .banner .circle {
    z-index: 10;
    margin-left: 0;
  }
  .banner .circle img {
    height: 150px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .prom-bar {
    position: relative;
    z-index: 10;
  }
  .product-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 50px;
  }
  .product-grid .left-product {
    margin: 0 auto 10px;
  }
  .product-grid .right-product {
    flex-wrap: wrap;
  }
  .product-grid .rope3 {
    display: none;
  }
  .rules-section {
    flex-direction: column;
  }
  .numbers {
    flex-direction: column;
  }
  .numbers li {
    justify-content: center;
  }
  .bar {
    flex-direction: column;
  }
  .bar p {
    margin: 5px 0;
  }
}
@media screen and (max-width: 500px) {
  .logo img {
    height: 50px;
  }
  .banner {
    height: 380px;
  }
  .banner .title h1 {
    font-size: 2.6rem;
  }
  .banner .title h2 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .banner .rope {
    display: none;
  }
  .banner .rope img {
    width: 300px;
  }
  .banner .rope2 {
    left: -75px;
  }
  .banner .rope2 img {
    width: 450px;
  }
  .banner .circle {
    top: 220px;
    right: 10px;
  }
  .prom-bar {
    font-size: 15px;
    padding: 5px;
    justify-content: center;
  }
  .product-grid .left-product .product-promo-item .countdown-section .countdown-timer .time-unit {
    padding: 5px;
  }
  .product-grid .left-product .product-promo-item .countdown-section .countdown-timer .time-unit span {
    font-size: 18px;
  }
  .product-grid .right-product .product-item {
    width: 155px;
    padding: 10px;
    margin-bottom: 50px;
    margin-top: 10px;
  }
  .product-grid .right-product .product-item h3 {
    font-size: 14px;
  }
  .product-grid .right-product .product-item img {
    max-width: 135px;
  }
  .product-grid .right-product .product-item .price {
    font-size: 16px;
  }
  .product-grid .right-product .product-item .price .old-price {
    font-size: 12px;
  }
  .rules-section .weeks .week {
    width: calc(50% - 10px);
    font-size: 16px;
    height: 200px;
  }
  .rules-section .weeks .week .promo-btn {
    padding: 5px;
    margin: 25px 5px;
    font-size: 12px;
  }
  .g-kitchen h2 {
    font-size: 22px;
  }
  .g-kitchen .kitchen-btn {
    font-size: 14px;
    width: 225px;
  }
  .numbers {
    margin-top: 20px;
  }
  .numbers li {
    margin: 10px 0;
  }
}/*# sourceMappingURL=style.css.map */