@charset "utf-8";
/* CSS Document */

.topdeal_sec.sec_padd .container .title {
    text-align: center;
    margin-bottom: 30px;
}

.topdealcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.topdealbx {
    position: relative;
    max-width: 480px;
    width: calc(33.33% - 44px);
    margin: 0 22px 44px;
    height: 350px;
}

.topdealbgimg {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    background-color: var(--black);
    position: absolute;
    z-index: -1;
    max-width: 480px;
    height: 350px;
}

.topdealbgimg img {
    opacity: 0.6;
    position: absolute;
    min-width: 480px;
    min-height: 350px;
    z-index: 1;
    top: 0;
    left: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
}

.topdealcontainer .topdealbx:hover .topdealbgimg img {
    transform: scale(1.1);
}

.dealmachineimg {
    position: absolute;
    left: -30px;
    bottom: -50px;
}

.dealtitle {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    margin: 40px 0 0 35px;
}

.dealsubtitle {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    margin: 10px 0 0 35px;
}

.dealpricetag {
    position: absolute;
    background: url(../images/top-deal-price.svg)no-repeat 0 0;
    width: 105px;
    height: 105px;
    right: 35px;
    top: 35%;
    padding: 25px 0 0 0;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
    font-family: 'Anton';
    font-weight: normal;
    line-height: 1.2;
}

.dealpricetag sup {
    font-size: 18px;
}

.dealpricetag span {
    display: block;
    font-size: 16px;
    font-family: 'Albert Sans';
    font-weight: 700;
}

.dealspecialtag {
    position: absolute;
    right: 0;
    bottom: 40px;
    background: var(--white);
    color: var(--black);
    padding: 6px 10px;
    text-transform: uppercase;
    font-weight: 900;
}

.dealspecialtag:before {
    content: '';
    position: absolute;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 25% 50%, 0% 0%);
    background-color: var(--white);
    left: -10px;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: -1;
}


a.dealbx2 .dealpricetag {
    right: inherit;
    left: 35px;
}

a.dealbx2 .dealmachineimg {
    right: 30px;
    left: inherit;
}

a.dealbx2 .dealspecialtag {
    right: inherit;
    left: 0;
}

a.dealbx2 .dealspecialtag:before {
    content: '';
    position: absolute;
    background-color: var(--white);
    right: -10px;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 1;
    left: initial;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}



/*----- MEDIA QUERIES  -----*/
@media(max-width:1900px) {}

@media(max-width:1600px) {}

@media(max-width:1440px) {

    .dealtitle {
        margin: 30px 0 0 20px;
    }

    .dealsubtitle {
        margin: 10px 0 0 20px;
    }

}

@media(max-width:1200px) {}

@media(max-width:992px) {

    .topdealcontainer {
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .topdealbx {
        position: relative;
        max-width: 480px;
        width: calc(100% - 44px);
        margin: 0 22px 60px;
        height: 350px;
    }

}

@media(max-width:768px) {}

@media(max-width:576px) {

    .dealmachineimg {
        left: -50px;
    }

    a.dealbx2 .dealmachineimg {
        right: -20px;
    }

}

@media(max-width:480px) {}

@media(max-width:360px) {}