* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
.wrapper {
    padding: 70px 140px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.content-wrapper {
    width: 85%;
}
#review-header {
    font-size: 40px;
    font-weight: 900;
}
.content-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 90px;
}
#header-btn {
    text-decoration: none;
    color: white;
    background-color: #1E3050;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 18px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-review-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.content-review-box-header {
    font-size: 24px;
    font-weight: bold;
}
.content-review-box-text {
    font-size: 36px;
    font-weight: bold;
}
.content-review-box-sub-text {
    font-size: 18px;
    font-weight: bold;
    color: #D7D7D7;
}
.content-review-header {
    display: flex;
    justify-content: space-between;
    height: 105px;
}
.line {
    height: 100%;
    width: 3px;
    background-color: #DFDFDF;
}
.content-review-box-rating {
    display: flex;
    gap: 5px;
    align-items: baseline;
}
.content-review-visualize {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 250px;
}
.content-review-visualize-circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.content-review-visualize-header {
    display: flex;
    gap: 5px;
    align-items: center;
}
.content-review-visualize-header p {
    font-weight: bold;
    width: 10px;
    
}
.content-review-visualize-box {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.content-review-visualize-line {
    background-color: #4285F4;
    height: 7px;
    border-radius: 5px;
    min-width: 7px;
}
.content-review-amount {
    font-weight: bold;
}
.bottom-line {
    margin-top: 90px;
    width: 100%;
    background-color: #DFDFDF;
    height: 3px;
    margin-bottom: 60px;
}
.reviews-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.review-author {
    font-size: 20px;
    font-weight: bold;
}
.review-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-text {
    font-size: 18px;
    line-height: 30px;
}
#more-reviews-btn {
    outline: none;
    border: 2px solid #1E3050;
    cursor: pointer;
    color: white;
    background-color: #1E3050;
    border-radius: 10px;
    padding: 10px 50px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .4s ease, color .4s ease;
}
#more-reviews-btn:hover {
    background-color: transparent;
    color: #1E3050;
}
.btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.review-bottom-line {
    margin-top: 30px;
    width: 100%;
    background-color: #DFDFDF;
    height: 3px;
    margin-bottom: 20px;
}