/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Goal */
.goal{
    margin: 38px 0 39px;
    background-color: rgba(246, 246, 246, 0.03);
    border: 1px solid #58585861;
    padding: 30px 40px 35px;
    border-radius: 20px;
}

.goal h4{
    font-size: 27px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.goal p{
    font-weight: 400;
    font-size: 16px;
    color: rgba(135, 135, 135, 0.65);
}

.goal__status{
    margin-top: 30px;
    width: 100%;
    height: 50px;
    background-color: #292929;
    border-radius: 50px;
    position: relative;
}

.goal__status h6{
    position: absolute;
    top: 15px;
    color: #ffffff;
}

.goal__progress{
    background-color: #A52222;
    height: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    border-radius: 50px;
}

@media only screen and (max-width: 1100px) {
    .goal{
        margin: 28px 6% 30px;
    }
}

/* Shop */
.shop{
    margin: 0;
    padding-bottom: 40px;
}

.shop__card{
    border: 2px solid #58585861;
    border-radius: 30px;
    padding: 30px 0 0 0;
    position: relative;
    transition: .4s;
    margin-bottom: 26px;
}

.shop__card--img{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
}

.shop__card--img img{
    filter: drop-shadow(0px 0px 110px 16px rgb(37, 37, 37));
    width: 150px;
    margin-bottom: 10px;
}

.shop__card--footer{
    margin-top: 20px;
    background-color: #252525;
    border-radius: 0 0 28px 28px;
    padding: 22px 50px;
    transition: .4s;
    cursor: pointer;
}

.shop__card--footer:hover{
    background-color: #100e0e;
    transition: .4s;
}

.shop__card--footer a{
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.shop__card--footer img{
    filter: invert(100%) sepia(1%) saturate(7497%) hue-rotate(338deg) brightness(103%) contrast(98%);
    width: 20px;
}

.shop__card--info{
    padding: 0 15% 20px;
    text-align: center;
}

.shop__card--info h5{
    padding-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(98, 98, 98, 0.51);
    margin-bottom: 30px;
    color: white;
}

.shop__card--info p{
    font-weight: 400;
    font-size: 15px;
    color: #646464;
    height: 70px;
    overflow: auto;
}

.shop__card .sale__badge{
    display: none;
}

.sale .sale__badge{
    display: flex;
    position: absolute;
    top: 0px;
    right: 0px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
    background: #A52222;
    border-radius: 0 28px;
    width: 80px;
    height: 30px;
}

@media only screen and (max-width: 1100px) {
    .shop{
        margin: 0 6%;
    }
}

/* Top */
.top{
    margin: 60px 0;
    padding-bottom: 20px;
}

.top h2{
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.top__cards{
    padding: 100px 10%;
}

.top__card{
    margin: 0 30px 20px;
    border-radius: 25px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.top__card img{
    width: 115px;
    margin-bottom: 30px;
    transition: .3s;
}

.top__card h5{
    font-weight: 700;
    color: rgba(121, 121, 121, 0.96);
    margin-bottom: 10px;
}

.top__card h2{
    font-weight: 800;
}

.top__card h4{
    font-weight: 700;
    position: absolute;
    font-size: 35px;
    top: 30px;
    left: 30px;
    color: #4e393980;
}

.top--gold{
    margin-top: -50px;
    background: linear-gradient(180deg, rgba(176, 135, 56, 0.08) 0%, rgba(151, 151, 151, 0) 100%);
}

.top--silver{
    background: linear-gradient(180deg, rgba(220, 220, 220, 0.08) 0%, rgba(151, 151, 151, 0) 100%);
}

.top--bronze{
    background: linear-gradient(180deg, rgba(78, 57, 57, 0.08) 0%, rgba(151, 151, 151, 0) 100%);
}

@media only screen and (max-width: 1100px) {
    .top{
        margin: 20px 6%;
        padding-bottom: 70px;
    }

    .top__cards{
        padding: 0;
    }

    .top__card{
        margin: 0 0 20px 0;
    }
}

@media only screen and (max-width: 1400px) {
    .top__cards{
        padding: 80px 0;
    }
}

/* Last */
.last{
    margin: -80px 0% 0;
    padding-bottom: 150px;
}

.last h2{
    text-align: center;
    font-weight: 600;
    color: #898989;
    font-size: 22px;
    margin-bottom: 40px;
}

.last__card{
    border: 1.9px solid #58585861;
    border-radius: 30px;
    min-height: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    transition: .4s;
}

.last__card img{
    width: 50px;
}

.last__card:hover{
    scale: .95;
    transition: .4s;
}

@media only screen and (max-width: 1100px) {
    .last{
        margin: -30px 6%;
        padding-bottom: 90px;
    }

    .last__card{
        min-height: 160px;
    }
}