main {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--Very-Dark-Blue);
}

.review {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.review .row.front {
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    min-height: 400px;
    justify-content: space-around;
}

.review .row .star {
    width: 50px;
    height: 50px;
    background-color: var(--dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.star svg path {
    fill: var(--primary-color);
}



.review .row h3 {
   padding-top: 0.8rem;
}


.review .flex-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review .flex-col .btn-row {
    padding-top: 0.8rem;
}


.review .btn.secondary {
    padding-top: 0.5rem;
}

.row.back {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background-color: var(--bg);
    border-radius: var(--border-radius);
    display: none;
    min-height: 438px;
     padding: 40px 30px;
}

.back p:first-of-type{
 text-align: center;
 display: flex;
 align-items: center;
    background: var(--dark-grey);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    width: fit-content;
    color: var(--primary-color);
}



.row.back h2 {
padding-top: 1.2rem;
}