/***************************** Promotion Block **********************************/
.promotion-block {
    padding: 25px 0;
}

.promotion-block .button-title {
    list-style: none;
    border-radius: 999px;
    background: #2b1af1;
    padding: 4px 20px;
    margin-right: 8px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    display: inline-block;
}

.promotion-block .main-title {
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.promotion-block .promotion-content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.promotion-block .promotion-group {
    list-style: none;
    margin-bottom: 15px;
}

.promotion-block .promotion-group li {
    position: relative;
    padding-left: 14px;
    color: #1c0e40;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 8px;
    display: flex;
}

.promotion-block .promotion-group li:before {
    position: absolute;
    content: '';
    top: 12px;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2b1af1;
}

.promotion-block .promotion-group .promotion-title {
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.promotion-block .call-to-action {
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.promotion-block .call-to-action .button-call-to-action {
    text-decoration: none;
    position: relative;
    padding-right: 50px;
}

.promotion-block .call-to-action .button-call-to-action:after {
    content: '';
    position: absolute;
    background-image: url('../img/arrow-right-white.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    right: 20px;
    top: 11px;
}

.promotion-block .call-to-action .first-btn:hover:after {
    background-image: url('../img/arrow-right-black.svg');
}

.promotion-block .call-to-action:before {
    display: none;
}

.promotion-block .call-to-action .secondary-btn {
    margin-top: 15px;
    background-color: #f9d5b8;
    color: #1c0e40;
}

.promotion-block .call-to-action .secondary-btn:after {
    background-image: url('../img/arrow-right-black.svg');
}

.promotion-block .call-to-action .secondary-btn:hover {
    background-color: transparent;
}



/***************************** Ranking V1 Block **********************************/
.ranking-v1-block {
    padding: 25px 0;
}

.ranking-v1-block .total-ranking-title {
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}

.ranking-v1-block .total-ranking-number {
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    margin: 0;
}

.ranking-v1-block .total-ranking-main {
    display: flex;
    justify-content: space-between;
}

.ranking-v1-block .progress {
    background: #fff;
    border-radius: 13px;
    height: 12px;
    display: block;
    width: 100%;
    box-shadow: none;
    -webkit-animation: progress 5s forwards;
    animation: progress 3s forwards;

}

.ranking-v1-block .progress:after {
    content: '';
    display: block;
    background: #2b1af1;
    width: 50%;
    height: 100%;
    border-radius: 9px;
}

.ranking-v1-block .ranking-items-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding-top: 25px;
}

.ranking-v1-block .ranking-items-group .circle {
    width: 160px;
    margin: 6px 6px 20px;
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 1.2;
}

.ranking-v1-block .ranking-items-group .circle strong {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    font-family: "Playfair Display", Arial, Helvetica, sans-serif;
}

.ranking-v1-block .ranking-items-group .circle .ranking-title {
    display: block;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding-top: 15px;
    text-transform: uppercase;
    max-width: 200px;
    padding-top: 20px;
    font-family: "Playfair Display", Arial, Helvetica, sans-serif;
}


/* Animation */
@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Mobile css */
@media only screen and (max-width : 768px) {
    .promotion-block .promotion-content-section {
        flex-wrap: wrap;
    }

    .ranking-v1-block .ranking-items-group {
        justify-content: space-around;
    }

    .ranking-v1-block .ranking-items-group .circle {
        width: 145px;
    }
}