.market_strip{
    background:#000;
    padding:60px 50px;
}

.market_strip .market_box{
    background:#0c0b09;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    overflow:hidden;
}

.market_strip .market_box .market_header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.market_strip .market_box .market_tabs{
    display:flex;
    gap:35px;
}

.market_strip .market_box .market_tabs button{
    background:none;
    border:none;
    color:#cfcfcf;
    font-size:15px;
    font-weight:600;
    padding:0;
    transition:.3s;
}

.market_strip .market_box .market_tabs button.active,
.market_strip .market_box .market_tabs button:hover{
    color:#d6a128;
}

.market_strip .market_box .view_market{
    color:#d6a128;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.market_strip .market_box .market_card{
    padding:20px;
    border-right:1px solid rgba(255,255,255,.08);
    transition:.35s;
    height:100%;
}

.market_strip .market_box .market_card:hover{
    background:#15120d;
}

.market_strip .market_box .market_card h6{
    color:#d8d8d8;
    font-size:15px;
    margin-bottom:8px;
}

.market_strip .market_box .market_card h3{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.market_strip .market_box .bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.market_strip .market_box .green{
    color:#35b46b;
    font-size:15px;
    font-weight:600;
}

.market_strip .market_box .red{
    color:#db4d4d;
    font-size:15px;
    font-weight:600;
}

.market_strip .market_box .market_card svg{
    transition:.35s;
}

.market_strip .market_box .market_card:hover svg{
    transform:scale(1.08);
}

.market_strip .market_box .market_card:hover{
    box-shadow:inset 0 -2px 0 #d6a128;
}

.market_strip .market_box .market_card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.market_strip .market_box .market_card:nth-child(1) {
  animation-delay: 0.1s;
}

.market_strip .market_box .market_card:nth-child(2) {
  animation-delay: 0.2s;
}

.market_strip .market_box .market_card:nth-child(3) {
  animation-delay: 0.3s;
}

.market_strip .market_box .market_card:nth-child(4) {
  animation-delay: 0.4s;
}

.market_strip .market_box .market_card:nth-child(5) {
  animation-delay: 0.5s;
}

.market_strip .market_box .market_card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(min-width:992px) and (max-width:1199px){
    .market_strip .market_box .market_card h3 {

    font-size: 22px;
}
.market_strip .market_box .market_card h6 {

    font-size: 13px;
    
}
}
@media (min-width:576px) and (max-width:991px){

.market_strip .market_box .market_tabs{
    gap:18px;
    flex-wrap:wrap;
}

.market_strip .market_box .market_header{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.market_strip .market_box .market_card{
    border-bottom:1px solid rgba(255,255,255,.08);
}
.market_strip .market_box .market_card h3 {

    font-size: 20px;
}
.market_strip .market_box .market_card h6 {
  
    font-size: 13px;
   
}

}

/* Mobile */

@media (min-width:0px) and (max-width:575px){

.market_strip{
    padding:30px 0;
}

.market_strip .market_box .market_header {
    display: unset;
}
.market_strip .market_box .market_tabs{
    gap:15px;
}

.market_strip .market_box .market_tabs button{
    font-size:13px;
}

.market_strip .market_box .market_card{
    padding:16px;
}

.market_strip .market_box .market_card h3 {
    font-size: 16px;
}

.market_strip .market_box .market_card h6 {
    font-size: 12px;
}
.market_strip .market_box .green,
.market_strip .market_box .red{
    font-size:13px;
}

.market_strip .market_box .view_market{
    font-size:14px;
}

}