@import url('https://fonts.googleapis.com/css?family=Aclonica');

.combos {
    color: white;
    position: relative;
}

.combos-img { 
    padding: 5px;
    height: 40px; 
    width: 40px; 
    background: white; 
    text-align: center; 
    line-height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    font-size: 3.25vh; 
    transform: translateY(-50%); 
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); 
}

.combos img:first-child { 
    left: 10px; 
  
} 
  
.combos img:last-child { 
    right: 10px; 
  
} 

.combos .carrusel { 
    height: 360px;
    display: grid; 
    grid-auto-flow: column; 
    grid-auto-columns: calc((100% / 4) - 10px); 
    gap: 16px; 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    scrollbar-width: 0; 
    
}

  
.combos h1 {
    font-size: 1.5vw;
    color:rgba(253,137,51);
    font-family: Aclonica !important;
}

.combos-card{
    display: flex;
    flex-direction: column;
    height: 340px;
    width: auto;
    text-align: center;
    align-items: center;
    align-self: center;
    justify-content: space-between;
}

.combos-card h2{
    background-color: white;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: rgba(253,137,51);
    font-weight: bold;
    text-align: center;
}

.combos-card img {
    height: 200px;
    width: max-content;
}

@media screen and (max-width: 1000px) {
    .combos .carrusel {
        grid-auto-columns: calc((100% / 3) - 10px); 
    }

    .combos h1 {
        font-size: 2.5vw;
    }

    .combos-img{
        height: 30px; 
        width: 30px; 
    }
}

@media screen and (max-width: 550px) {

    .combos .carrusel {
        grid-auto-columns: calc((100% / 2) - 10px); 
        margin-left: -65px;
    }

    .combos h1 {
        font-size: 4vw;
    }

    .combos-img{
        height: 20px; 
        width: 20px; 
    }
}