:root {
    --sg-container-padding: 20px;
    --sg-container-sm-padding: 20px;
    --sg-gap: 20px;
    --sg-container-xs: 100%;
    --sg-container-sm: 536px;
    --sg-container-md: 728px;
    --sg-container-lg: 984px;
    --sg-container-xl: 100%;
    --sg-container-xxl: 1330px;

    --white: #fff;
    --acsent: #fb8d69;
    --dark-txt: #1c4a66;
    --dark-blue: #0e2838;
    --bg: #061b28;
    --black: #252525;
    --font-family: "Aleo", sans-serif;
    --second-family: "Montserrat", sans-serif;
    --third-family: "Noto Sans", sans-serif;
}

/* container */
.sg-container {
    width: 100%;
    max-width: calc(100% - 140px);
    margin: 0 auto;
    padding-inline: var(--sg-container-padding);
}

.sg-inner-container {
    padding-inline: var(--sg-container-sm-padding);
}

/* breadcrums */
.breadcrums-container {
    width: max-content;
    display: flex;
    gap: 15px;
    margin: 20px auto 50px auto;
    border-radius: 10px;
    padding: 14px 24px;
    background: var(--black);
}

.breadcrums-text {
    margin: 0;
    padding: 0;
}

.separator-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrums-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--grey);
}

.breadcrums-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--acsent);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .breadcrums-text {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        color: var(--grey);

        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 567px) {
    .breadcrums-container {
        margin: 15px 15px 20px 15px;
        width: calc(100% - 30px);
    }

    .separator-holder {
        flex: 0 0 15px;
    }

    .breadcrums-text {
        max-width: 100%;
    }

    .breadcrums-text-container {
        flex: 0 0 auto;
    }

    .breadcrums-text-container:last-child {
        flex: 1;
        overflow: hidden;
    }
}

.reviews-container {
    padding: 50px 20px 70px 20px;
    display: flex;
    flex-flow: column;
}

.reviews {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 30px;
}

.review_wrapper {
    flex: 0 0 calc(33.333334% - 20px);
    display: flex;
    flex-flow: column;
    padding: 20px;
    border-radius: 50px;
    background: rgba(14, 40, 56, 24%);

}

.girl-thumbnail {
    position: relative;
    z-index: 1;
    height: 100%;
    max-height: 250px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.girl-thumb {
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.review-footer {
    background: rgba(14, 40, 56, 1);
    border-radius: 0 0 30px 30px;
    padding: 20px 30px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    gap: 15px;
}

.review_data {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.girl-name {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

time {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: right;
    color: #FFFFFF;
}

.review_header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    gap: 30px;
    width: 100%;
}

.review_header_name {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.review_text {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #FFFFFF;
}

.rankone-rating {
    display: none;
}

.rating_wrapper {
    width: auto;
    max-width: 120px;
    height: auto;
    max-height: 20px;
    flex: 1;
}

.star-rating {
    position: relative;
    width: 100%;
    max-width: 120px;
    height: auto;
}

.starone {
    position: absolute;
    left: 0;
    top: 0;
    height: auto;
    max-height: 20px;
}

.star-full {
    position: absolute;
    width: auto;
    height: auto;
    max-height: 20px;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
    z-index: 1;
}

.empty-stars {
    position: absolute;
    left: 0;
    width: 120px;
    height: auto;
    max-height: 20px;
}



@media screen and (max-width: 1240px) {
    .review_header {
        gap: 20px;
    }
}

@media screen and (max-width: 1100px) {
    .reviews-container {
        padding-top: 30px;
    }

    .reviews {
        gap: 20px;
    }

    .review-footer {
        padding: 20px;
    }

    .review_header {
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .rating_wrapper,
    .star-rating {
        max-width: 112px;
    }

 
}

@media screen and (max-width: 1024px) {
   
}

@media screen and (max-width: 900px) {
    .review_wrapper {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .reviews-container {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 650px) {
    .reviews-container {
        padding: 15px 15px 40px 15px;
    }

    .reviews {
        gap: 10px;
        justify-content: center;
    }

    .girl-thumbnail {
        max-height: 350px;
    }

    .review_wrapper {
        flex: 0 0 100%;
        padding: 10px;
        border-radius: 30px;
        height: auto;
    }
}

@media screen and (max-width: 560px) {
    .girl-thumbnail {
        max-height: 230px;
    }

    .review-footer {
        padding: 15px;
        gap: 10px;
    }

    .girl-name {
        font-size: 20px;
        line-height: 24px;
    }
}