@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  outline: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  letter-spacing: 0.05vw;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  background-color: #000;
}























.top-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  margin-top: 0vw;
}

.top-container-gradient {
  position: absolute;
  width: 100%;
  height: 15vw;
  top: 25vw;
  left: 0;
  background: linear-gradient(to top, black, #00000000);
  z-index: 2;
  pointer-events: none;
  animation: none;
  transition: none;
}

.carousel {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
}

.top-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.65;
}

.top-banner-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, black, #000000d1, #00000000);
  z-index: 2;
  pointer-events: none;
  animation: none;
  transition: none;
}

.text-content {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 0.2vw 0.2vw 0.5vw rgba(0, 0, 0, 0.7);
  width: 100%;
  z-index: 100;
  text-align: center;
}

.top-title {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
}

.top-description {
  font-size: 1.15vw;
  margin-top: 1vw;
  text-align: center;
}

.top-button {
  font-size: 1.35vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 0.35vw 4vw;
  text-align: center;
  border: 0.5vw solid #bd010100;
  background-color: #1d1d1d7d;
  border-radius: 1vw;
  text-decoration: none;
  margin-top: 1vw;
  display: inline-block;
  z-index: 4;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.progress-bar {
  width: 100%;
  height: 40vw;
  background: #dddddd26;
  overflow: hidden;
  position: relative;
  transform: translateY(-40vw);
  z-index: 0;
}

.progress-bar div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #89898914;
  animation: progress 20s linear infinite;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.indicators {
  display: none;
  gap: 1vw;
  margin-top: 26vw;
  z-index: 5;
  position: absolute;
}

.indicators div {
  width: 1vw;
  height: 1vw;
  background: #dddddd1a;
  border-radius: 50%;
  transition: background 0.3s;
}

.indicators .active {
  background: #ffffff59;
}







@media (max-width: 768px) {
  .top-container {
    width: 100%;
    gap: 2vw;
    margin-top: 7vw;
  }
  
  .carousel {
    width: 100%;
    height: 40vw;
    border-radius: 0vw;
  }
  

  
  .top-title {
    font-size: 5vw;
  }
  
  .top-description {
    font-size: 3vw;
    margin-top: 0.5vw;
  }
  
  .top-button {
    font-size: 4vw;
    padding: 0.5vw 3vw;
    border: 0.25vw solid white;
    border-radius: 1vw;
    margin-top: 2vw;
  }
  
  .progress-bar {
    width: 100%;
    height: 0.75vw;
  }
  .indicators {
    display: flex;
    gap: 2vw;
    margin-top: 17.5vw;
    z-index: 5;
    position: absolute;
  }
  
  .indicators div {
    width: 3vw;
    height: 3vw;
    margin-top: 16vw;
  }
}










/* NEWS & BLOG */
.news-container {
  width: 90vw;
  margin: 0 auto;
  color: white;
  margin-top: -40vw;

}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 0;
}

.news-title {
  font-size: 4vw;
  font-weight: bold;
  margin-bottom: 0.75vw;
}

.news-button {
  font-size: 1.5vw;
  color: rgb(255, 255, 255);
  cursor: pointer;
  text-decoration: none;
}

.news-divider {
  width: 50%;
  height: 0.1vw;
  background-color: #2e2e2e;
  margin: 0vw;
  margin-top: -1vw;
  margin-bottom: 3vw;
}

.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}

.news-card {
  display: flex;
  border-radius: 0.5vw;
  overflow: hidden;
  width: 44vw;
}

.news-image {
  height: 10vw;
  width: 20vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1vw;
  transition: 0.35s ease;
}

.news-image:hover {
  transform: scale(1.025);
}

.news-content {
  padding: 1vw;
  width: 28vw;
  margin-top: -0.55vw;
}

.news-card-title {
  font-size: 1.5vw;
  margin: 0;
}

.news-card-description {
  font-size: 1vw;
  margin: 0.5vw 0;
  
  padding-top: 0.25vw;
  padding-bottom: 0.25vw;
  border-radius: 0.25vw 0vw 0vw 0.25vw;
}

.news-card-button {
  font-size: 1.2vw;
  color: rgb(204, 204, 204);
  cursor: pointer;
  letter-spacing: 0.0;
}




@media (max-width: 768px) {
  .news-container {
  width: 90vw;
  margin: 0 auto;
}

  .news-title {
    font-size: 7vw;
    font-weight: bold;
  }

  .news-divider {
    width: 60%;
    height: 0.3vw;
  }

  .news-button {
    font-size: 3.5vw;
    color: rgb(255, 255, 255);
    cursor: pointer;
  }

  .news-card {
    width: 95vw;
    margin-bottom: 3vw;
  }
  
  .news-image {
    height: 20vw;
    width: 40vw;
  }
  
  .news-card-title {
    font-size: 3.5vw;
    margin: 0;
    width: 50vw;
    margin-bottom: 2.5vw;
    margin-top: -1vw;
  }
  
  .news-card-description {
    font-size: 2vw;
    margin: 0.5vw 0;
    width: 45vw;
  }
  
  .news-card-button {
    font-size: 2.5vw;
    margin-top: 2.5vw;
    color: rgb(204, 204, 204);
    cursor: pointer;
  }

  .news-content {

    margin-left: 1vw;
  }
}

















/* MARKET */
.market-bg {
    background-color: #c9c9c938;
    width: 120vw;
    height: 15vw;
    position: absolute;
    transform: rotate(-15deg);
    filter:blur(18vw);

    margin-top: 25vw;
    margin-left: -10vw;
    overflow: none;
}

@media (max-width: 768px) {
  .market-bg {
  width: 60vw;
  }
}


.market-container {
  width: 80vw;
  height: 38vw;
  margin: 0 auto;
  margin-top: 8vw;
  margin-bottom: 10vw;
  border-radius: 1vw;
  padding: 2vw;
  box-sizing: border-box;
  background-color: #44444406;
}

@media (max-width: 768px) {
  .market-container {
    width: 93vw;
    height: 47.5vw;
  }
}


.market-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vw;
  margin-top: -1vw;
  margin-left: 1vw;
}

.market-title {
  font-size: 3vw;
  font-weight: 600;
  color: #c7c7c7;
  cursor: pointer;
}

@media (max-width: 768px) {
  .market-title {
    font-size: 3.75vw;
  }
}


.market-link {
  font-size: 1.5vw;
  font-weight: 500;
  color: #d8d8d8;
  text-decoration: none;
  margin-right: 1vw;
}

@media (max-width: 768px) {
  .market-link {
    font-size: 2.75vw;
  }
}

.market-divider {
  border-top: 0.1vw solid #2b2b2bc7;
  margin-bottom: 2vw;
}


.market-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}

@media (max-width: 768px) {
  .market-products {
    gap: 1.7vw;
  }
}

.market-card {
  background-color: rgba(80, 80, 80, 0.352);
  width: 24vw;
  border-radius: 0.5vw;
  overflow: hidden;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 1vw;
  position: relative;
  margin-bottom: 2vw;
}

@media (max-width: 768px) {
  .market-card {
    width: 28vw;
    height: 36.5vw;
  }
}


.discount-badge {
  position: absolute;
  top: 7.5vw;
  right: -3vw;
  background-color: yellow;
  color: #000;
  font-size: 1.5vw;
  font-weight: bold;
  padding: 0.5vw 1vw;
  transform: rotate(45deg);
  transform-origin: top right;
  text-align: center;
  white-space: nowrap;
  width: 15vw;
  text-align: center;
  margin: 0 auto;
  z-index: 10000;
}

@media (max-width: 768px) {
  .discount-badge {
  font-size: 2vw;
  width: 18vw;
  top: 9vw;
  right: -3.5vw;
}
}


.market-card-image {
  width: 100%;
  height: 15vw;
  margin-bottom: 1vw;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
  border-radius: 1vw;
}

@media (max-width: 768px) {
  .market-card-image {
    height: 20vw;
  }
}


.main-image, .hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

.main-image {
  opacity: 1;
}

.hover-image {
  opacity: 0;
}

.market-card-image:hover .main-image {
  opacity: 0;
}

.market-card-image:hover .hover-image {
  opacity: 1;
}

.market-card-image:hover {
  transform: scale(1.025);
}

.market-card-title {
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 0.5vw;
  color: #d6d6d6;
  text-align: center;
}

@media (max-width: 768px) {
  .market-card-title {
    font-size: 2.25vw;
    letter-spacing: 0.1vw;
  }
}


.market-card-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110%;
  margin-bottom: 1vw;
  font-size: 2vw;
  background-color: #19191986;
  position: relative;
  left: -5%;
}



@media (max-width: 768px) {
  .market-card-prices {
    font-size: 3vw;
    letter-spacing: 0.5vw;
}
}


.market-card-newprice {
  color: #ffffff;
  text-align: right;
  line-height: 1;
  font-weight: 500;
  padding: 0.5vw;
  font-size: 2.25vw;
}



.market-card-buttons {
  display: flex;
  justify-content: center;
  gap: 0.65vw;
}

@media (max-width: 768px) {
  .market-card-buttons {

  margin-top: 1.5vw;
}
}

.market-card-button {
  display: block;
  text-align: center;
  padding: 0.25vw;
  background-color: #6d6d6da2;
  color: white;
  text-decoration: none;
  border-radius: 0.5vw;
  transition: 0.25s ease;
  font-size: 2vw;
  font-weight: 300;
  width: 50%;
}


.market-card-button.see-more {
  width: 60%;
  font-weight: 500;
}

@media (max-width: 768px) {
  .market-card-button.see-more {
    font-size: 2.5vw;
  }
}

.market-card-button.cart {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.market-card-button.cart i {
  font-size: 1.5vw;
}

.market-card-button:hover {
  background-color: #6b6b6bd7;
}









/* QUIZ */
.quiz-bg {
    background-color: #c9c9c938;
    width: 120vw;
    height: 10vw;
    position: absolute;
    transform: rotate(5deg);
    filter:blur(6vw);

    margin-top: 10vw;
    margin-left: -10vw;
    overflow: none;
}

@media (max-width: 768px) {
  .quiz-bg {
  display: none;
}
}

.quiz-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  height: auto;
  z-index: 1000;
  margin-top: -6vw;
  margin-bottom: 5vw;
}

@media (max-width: 768px) {
  .quiz-container {
    margin-top: 20vw;
    padding-bottom: 40vw;
}
}

.quiz-circle:hover .quiz-car {
    transform: rotate(-1deg) translateY(-3px);
    width: 35vw;

}

.quiz-car {
    width: 35vw;
    margin-right: 5vw;
    transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .quiz-car {
    display: none;
}
}

.quiz-content {
  color: white;
}

.quiz-title {
  font-size: 4vw;
  margin: 0;
  width: 100%;
  margin-top: -9vw;
  margin-bottom: 1vw;
  text-shadow: 0.1vw 0.1vw 0.3vw rgba(255, 255, 255, 0.836);
}

.quiz-description {
  font-size: 3vw;
  margin: 0;
  margin-top: -1vw;
}
  
.quiz-button {
  position: absolute;
  color: white;
  font-size: 3vw;
  font-weight: 500;
  text-decoration: none;
  border-radius: 1vw;
  padding: 0.25vw 1vw;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
  margin-top: 2vw;
  margin-left: -10vw;
  text-shadow: 0.2vw 0.1vw 0.3vw black;
  background-color: rgba(255, 255, 255, 0);
  border-width: 0.3vw;
  border-style: solid;
  border-color: rgb(65, 65, 65);
}

.quiz-button:hover {
  border-width: 0.3vw;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.4);
}


@media (max-width: 768px) {
  .quiz-title {
    font-size: 7.5vw;
    margin: 0;
    width: 100%;
    margin-top: -9vw;
    margin-bottom: 1vw;
    text-shadow: 0.1vw 0.1vw 0.3vw rgba(255, 255, 255, 0.836);
  }
  
  .quiz-description {
    font-size: 5.25vw;
    margin: 0;
    margin-top: -1vw;
  }
  .quiz-button {
    font-size: 6vw;
    border-radius: 1.5vw;
    padding: 0.5vw 1.5vw;
    margin: 2vw auto 0;
    width: 40vw;
    margin-left: 0;
    transform: translate(-50%, 50%);
    left: 50%;
    margin-top: -2vw; 
  }
  
}