.baner-review {
    padding: 150px 0;
    background: linear-gradient(180deg, #427fe0 0%, #3b70bd 100%);
}

.review-banners {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-banners h1 {
    font-size: 45px;
    font-weight: 600;
    color: white;
}

.reviews-star svg {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-bottom: 10px;
    fill: #ffda00;
}

.reviews-star {
    text-align: end;
}

.reviews-star a {
    background: linear-gradient(-28deg, #00caff 0%, #000c69 60%);
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
    background-color: rgb(255 153 0 / 80%);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

.client-reviews {
    padding: 100px 0;
}

.main-review-show {
    text-align: center;
    position: relative;
    z-index: 0;
    margin-bottom: 80px;
}

.main-review-show::before {
    position: absolute;
    z-index: 1;
    content: "";
    left: 10px;
    top: 0;
    background-image: url(../images/icon-quote-red.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 16px;
}

.main-review-show::after {
    position: absolute;
    z-index: 1;
    content: "";
    right: 10px;
    bottom: 0;
    background-image: url(../images/icon-quote-red.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 16px;
    transform: rotate(180deg);
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars img {
    width: 5%;
}

.main-review-show p {
    font-size: 14px;
    font-style: italic;
    line-height: 23px;
    padding: 0;
    color: #666666;
    font-weight: 500;
}

.main-review-show h6 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1.63px;
    text-transform: uppercase;
    color: #666666;
}

.survay-reviews {
    padding: 100px 0;
}

.review-form {
    text-align: center;
}

.review-form h5 {
    font-size: 20px;
    margin: 40px 0;
}

.review-form ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.review-form .rating-select-star {
    align-items: center;
    justify-content: space-around;
}

.review-form .rating-select-star li {
    position: relative;
    z-index: 0;
}

.review-form .rating-select-star li input[type="radio"] {
    display: none;
}

.review-form .rating-select-star li span {
    background-color: #ddd;
    padding: 15px 30px;
    cursor: pointer;
    font-family: proxima-nova, sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.review-form input[type=radio]:checked+.rating_select {
    background-color: #427FE0;
    color: white;
}

.review-ration {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.review-ration span {
    font-size: 16px;
    font-weight: 500;
}

.services-rating {
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px !important;
}

.services-rating li {
    width: 30%;
    text-align: start;
    position: relative;
    z-index: 0;
}

.services-rating li span {
    cursor: pointer;
    margin-left: 6px;
    color: #00225d;
    font-weight: 500;
    font-size: 18px;
    margin-left: 40px;
    position: relative;
    z-index: 0;
}

.services-rating li input[type=checkbox] {
    position: absolute;
    visibility: hidden;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.services-rating li input[type=checkbox]:checked+span:before {
    background-color: #427FE0;
}

.services-rating li input[type=checkbox]:checked+span:after {
    visibility: visible;
}

.services-rating li span:before {
    z-index: 0;
    display: block;
    background: #ddd;
    position: absolute;
    content: '';
    height: 30px;
    width: 30px;
    top: 0;
    left: -40px;
    border-radius: 10px;
}

.services-rating li span:after {
    display: block;
    position: absolute;
    content: "\2713";
    color: #fff;
    height: 30px;
    width: 30px;
    top: 0;
    left: -40px;
    visibility: hidden;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}



.review-form .form-control {
    box-shadow: 0px 0px 14px 4px rgb(221 221 221) !important;
    -moz-box-shadow: 0px 0px 14px 4px rgb(221, 221, 221) !important;
    padding: 10px;
    padding-left: 18px;
    height: 70px;
    width: 100%;
    border: 1px solid #d2d1d1c7;
    font-size: 17px !important;
    font-weight: 600;
    margin-bottom: 30px;
}

.review-form #textarea {
    height: unset !important;
}

.red-btn {
    color: #ffffff;
    background-color: #ff5254;
    width: 100%;
    height: 80px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media (max-width:991px) {

    .review-form h5 {
        font-size: 15px;
    }

    .review-form .rating-select-star {
        flex-wrap: wrap;
        gap: 40px;
    }

    .review-form .rating-select-star li {
        width: 13%;
    }

    .services-rating li span {
        font-size: 15px;
    }

    .review-banners h1 {
        font-size: 35px;
    }
}

@media (max-width: 767px) {

    .review-form .rating-select-star li {
        margin: auto;
        width: 10%;
    }

    .review-form .rating-select-star li span {
        padding: 10px 20px;
    }

    .review-form .rating-select-star {
        gap: 20px;
    }

    .services-rating li {
        width: 45%;
    }

    .review-form h5 {
        font-size: 14px;
    }

    .review-form .form-control {
        font-size: 14px !important;
    }

    .red-btn {
        height: 60px;
        font-size: 18px;
    }

    .review-banners h1 {
        font-size: 20px;
    }

    .reviews-star svg {
        width: 40%;
    }

    .reviews-star a {
        font-size: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .services-rating li {
        width: 100%;
    }

    .review-form .rating-select-star li {
        width: 13%;
    }

    .review-form .rating-select-star {
        gap: 23px;
    }

    .baner-review {
        padding: 70px 0;
    }

    .review-banners {
        display: block;
        text-align: center;
    }

    .reviews-star {
        text-align: center;
    }

    .reviews-star svg {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .client-reviews {
        padding: 50px 0;
    }
}