/* ==========================================
   PRICE LIST BAR
========================================== */

.pricelist-bar {
    width: 100%;

    margin-top: 0px;

    background: linear-gradient(
        to bottom,
        #0b0b0b,
        #050505
    );

    border-top: 1px solid rgba(255,255,255,.06);

    border-bottom: 1px solid rgba(255,255,255,.03);
}


/* ==========================================
   CONTAINER
========================================== */

.pricelist-container {
    width: min(1400px,90%);

    margin: auto;

    min-height: 160px;

    display: flex;

    justify-content: flex-start;

    align-items: flex-start;

    padding: 50px 0;
}


/* ==========================================
   PRICE LIST ITEM
========================================== */

.pricelist-item {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 0;

    padding: 0 20px;

    text-decoration: none;

    transition: all .4s cubic-bezier(.22,.61,.36,1);
}


/* ==========================================
   PRICE LIST TITLE
========================================== */

.pricelist-title {
    position: relative;

    display: inline-block;
}


/* ==========================================
   PRICE LIST ICON
========================================== */

.pricelist-item img {
    width: 200px;

    height: auto;

    display: block;

    margin-bottom: -30px;

    transition: transform .35s ease;
}


/* ==========================================
   ICON HOVER
========================================== */

.pricelist-item:hover img {
    transform: scale(1.05);
}


/* ==========================================
   PRICE LIST TEXT
========================================== */

.pricelist-item span {
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    display: inline-block;
}


/* ==========================================
   TEXT HOVER
========================================== */

.pricelist-item:hover span {
    color: #ffde73;
}


/* ==========================================
   PRICE LIST ANIMATION
========================================== */

.pricelist-item.animate span {
    animation: pricelistSlide 1s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes pricelistSlide {

    from {
        opacity: 0;

        transform: translateX(-40px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }

}


/* ==========================================
   RESPONSIVE
========================================== */


/* ==========================================
   COMPUTER
========================================== */

@media (min-width:1367px) {

    .pricelist-container {
        padding: 50px 0;
    }

    .pricelist-item img {
        width: clamp(190px,14vw,220px);
    }

    .pricelist-item span {
        font-size: clamp(23px,1.7vw,25px);
    }

}


/* ==========================================
   IPAD
========================================== */

@media (min-width:769px) and (max-width:1366px) {

    .pricelist-container {
        padding: 40px 0;
    }

    .pricelist-item {
        padding: 0 15px;
    }

    .pricelist-item img {
        width: clamp(170px,22vw,200px);
    }

    .pricelist-item span {
        font-size: clamp(20px,2.4vw,25px);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px) {

    .pricelist-container {
        width: 90%;

        min-height: auto;

        padding: 30px 0;

        justify-content: center;

        transform: translateX(-5px);
    }

    .pricelist-item {
        padding: 0 10px;
    }

    .pricelist-item img {
        width: clamp(140px,55vw,190px);

        margin-bottom: -22px;
    }

    .pricelist-item span {
        font-size: clamp(18px,6vw,23px);

        letter-spacing: .10em;
    }

}