.pw-container {
    position: relative;
    width: fit-content;
    height: fit-content;
    animation: growing-portrait ease-in-out 3s;
    display: flex;
    align-items: end;
    justify-content: end;
}

.pw-portrait {
   height: 650px;
   transform: translateY(30px);
}

.pw-badge-container {
    position: absolute;
    top: 20%;
    left: 50px;
    width: 200px;
    animation: pw-badgePulse 4s ease-in-out infinite;
}

.pw-round-badge {
    text-align: center;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C16B5A;
    animation: 1s ease-out forwards;
    font-size: 20px;
}

.pw-under-badge {
    position: absolute;
    font-size: 18px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8C4233;
    color: white;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    min-width: 120px;
    border-radius: 10px;
}

@keyframes pw-badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

@keyframes growing-portrait {
    0% {
        scale: 0.95;
    }

    100% {
        scale: 1;
    }
}

@media (max-width: 1450px) {
 
    .pw-portrait {
        height: 550px;
    }

}

@media (max-width: 1200px) {

    .pw-portrait {
        height: 550px;
    }

}


@media (max-width: 555px) {

    .pw-container {
        height: 580px;
    }

    .pw-portrait {
        height: 380px;
        transform: translateY(0px);
    }

    .pw-badge-container {
        top: 10px;
        left: 20px;
        scale: 0.9;
    }



}