.promotion{
  min-height: 500px;
  background-image: url('../img/promotion/bg.jpg');
  background-size: cover;
  background-position: center;
}

.promotion_content{
  display:flex;
  flex-direction: column;
  align-items: center;
}


.promotion_nav{
  display:flex;
  align-items: center;
  justify-content: center;
  margin:50px 0;
  background: var(--gradient1);
  border-radius: 20px;
  padding:2px;
}

.promotion_nav_item{
  background: black;
  color:var(--color1);
  margin-right: 2px;
  min-width: 100px;
  text-align: center;
  padding:5px;
  padding-left: 10px;
  padding-right: 25px;
  font-size: 13px;
  cursor:pointer;
  display:flex;
  align-items: center;
  justify-content: center;
  height:25px;
}

.promotion_nav_item img{
  height:35px;
  margin-right: 10px;
}

.promotion_nav_item:first-child{
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.promotion_nav_item:last-child{
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  margin:0;
}

.promotion_nav_active, .promotion_nav_item:hover{
  background: linear-gradient(to right, var(--color1),var(--color2));
  color:black;
}

/*----------------Promotion Slider-----------------------------*/

.promotion_body{
  /*height:1100px;*/
  width:100%;
}

.promotion_list{
  width:100%;
  display:flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.promo_item{
  display:flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 5px;
  margin:1%;
  width:48%;
}

.promo_item img{
  width:100%;
}

.promo_btns{
  display:flex;
  align-items: center;
  width:100%;
}

.promo_btn{
  flex:1;
  text-align: center;
  background: var(--gradient1);
  color:black;
  font-weight: bold;
  padding:8px 0;
  cursor:pointer;
}

.promo_join{
  background: linear-gradient(var(--color2),var(--color1),var(--color2));
}

.promo_btn:hover{
  filter:brightness(1.2);
}


.promo_popup{
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display:none;
}

.promo_window{
  max-height: 80%;
  width:700px;
  display:flex;
  flex-direction: column;
  background: var(--gradient1);
  padding:2px;
  z-index: 2;
}


.promo_header{
  font-weight: bold;
  font-size: 20px;
  padding:5px;
  display:flex;
  align-items: center;
  justify-content: space-between;
}

.promo_close{
  font-weight: bold;
  cursor:pointer;
}

.promo_body{
  min-height: 200px;
  background: rgb(20,20,20);
  padding:20px;
  display:flex;
  flex-direction: column;
  align-items: center;
  color:white;
  overflow-y: auto;
}

.promo_banner{
  width:100%;
}



/* width */
.promo_body::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.promo_body::-webkit-scrollbar-track {
  background: rgb(30,30,30);
}

/* Handle */
.promo_body::-webkit-scrollbar-thumb {
  background: rgb(10,10,10);
  border-radius: 10px;
}

/* Handle on hover */
.promo_body::-webkit-scrollbar-thumb:hover {
  background: rgb(40,40,40);
}
