.section_container{
    margin: 0 auto;
    max-width: var(--wrapper_width);
    padding: 0 var(--wrapper_padding);
}
.holder{
    background-color: var(--main-white-color);
}
.profile__main_section{
    background-color: var(--main-dark-blue-color);
    color: var(--main-white-color);
    padding: 60px 0;
}
h1.profile__user_name{
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    font-family: var(--second_font_family);
    line-height: 130%;
    color: var(--main-white-color);
}
.profile__pro_badge{
    vertical-align: middle;
    margin-left: 5px;
}
.profile__header{
    text-align: center;
}
.profile__tags_holder{
    display: flex;
    column-gap: 15px;
    row-gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.profile__image_container{
    --chart-height: 210px;
    --chart-gap: 20px;
    --image-height: calc(var(--chart-height) - var(--chart-gap) * 2);
    max-height: var(--chart-height);
    height: var(--chart-height);
    width: var(--chart-height);
    position: relative;
    margin: 25px auto 0;
}
.profile__chart{
    --chart-opacity: 0.8;
    position: absolute;
    left: 0;
    top: 0;
}
.profile__chart .circle-bg{
    stroke-width:3.3
}
.profile__chart .circular-chart{
    height: var(--chart-height);
    margin: 0;
}
.profile__chart .circle{
    stroke:#FF5CA1;
}
.profile__image{
    border-radius: 50%;
    height: var(--image-height);
    width: var(--image-height);
    aspect-ratio: 1/1;
    object-fit: cover;
    /* border: var(--chart-gap) solid transparent; */
    z-index: 1;
    top: var(--chart-gap);
    position: relative;
}
.profile__image.no_image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-white-color);
    font-size: 50px;
    text-align: center;
    width: 100%;
}
.profile__info{
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    text-align: center;
    row-gap: 7px;
}
.profile__company{
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 5px 0;
}
/* -------------------------------- */
.pro_badge{
    display: inline-block;
    background: var(--main-blue-color);
    color: var(--main-white-color);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    transition: background 0.3s;
}
.pro_badge:hover{
    background: var(--main-light-blue-color);
}
.profile__info--link{
    color: var(--main-white-color);
    text-decoration: underline;
}
.contact_btn{
    width: 227px;
    background-color: transparent;
    height: 60px;
    color: var(--main-white-color);
    border: 1px solid var(--main-white-color);
    align-content: center;
    margin-top: 20px;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.contact_btn:hover{
    background-color: var(--main-lighter-blue-color);
    border-color: var(--main-lighter-blue-color);
}
.profile__social_links{
    display: flex;
    justify-content: center;
    column-gap: 5px;
    row-gap: 5px;
    margin-top: 50px;
}
.profile__social_links .social_link{
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-white-color);
    transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;

}
.profile__social_links .social_link:hover {
    background-color: var(--main-light-blue-color);
    border: 2px solid var(--main-light-blue-color);
}
.profile__social_links .social_link svg path{
    /* transition: fill var(--transition-time) var(--transition-duration) linear; */
}
.profile__social_links .social_link svg path{
    fill: #fff ;
}
.profile__score--holder{
    margin-top: 60px;
    text-align: center;
}
.profile__trust_score{
    font-size: 24px;
    font-weight: 500;
}

/* ------------------------------------------------------ */
.profile__description{
    padding: 20px 0 40px;
}
/* ------------------------------------------------------ */
.bottom__section{
    padding: 40px 0;
}
.company__item{
    border-bottom: unset;
}
/* ------------------------------------------------------ */

footer{
    padding-top: 100px;
}

@media (max-width: 601px) {
    .profile__main_section{
        padding: 40px 0;
    }
    h1.profile__user_name{
        font-size: 30px;
    }

    .contact_btn{
        width: 100%;
        max-width: 300px;
        height: 50px;
        font-size: 16px;
    }
    .profile__social_links{
        margin-top: 30px;
    }
    .profile__score--holder{
        margin-top: 40px;
    }
    .company__section{
        padding: 20px 0;
    }

    .profile__description {
        padding: 20px 0 20px;
    }
    .company__item{
        padding-bottom: unset;
    }
    .company__info{
        margin-bottom: 0;
    }

    footer{
        padding-top: 50px;
    }

}