.reviews-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.reviews-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.reviews-image {
    flex: 1;
}

.reviews-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.reviews-left h1 {
    font-size: 34px;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 20px;
}

.reviews-left p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
}

.reviews-left p:last-of-type {
    margin-bottom: 30px;
}

.reviews-left button {
    width: 260px;
    padding: 15px 0;
}

@media (max-width: 992px) {
    .reviews-left h1 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .reviews-left p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .reviews-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .reviews-left {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .reviews-image {
        order: 0;
        width: 100%;
    }
    
    .reviews-left h1 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .reviews-left p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .reviews-left button {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .reviews-left h1 {
        font-size: 28px;
        line-height: 36px;
    }
}


.whats-reviews {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.whats-reviews h2 {
    font-size: 40px;
    line-height: 56px;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 30px;
}

.whats-reviews-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 50px;
}

.whats-reviews-border {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #5C84FB;
    border-radius: 15px;
    flex: 1 1 calc(25% - 25px);
    min-width: 250px;
}

.whats-reviews-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.whats-reviews-image img {
    margin-top: 34px;
    filter: brightness(0%);
}

.whats-reviews-border h3 {
    margin: 30px 36px 34px 36px;
    font-size: 20px;
    line-height: 28px;
}

.whats-reviews-border p {
    margin: 0;
    margin: 0 36px 34px 36px;
    font-size: 20px;
    line-height: 28px;
}

@media (max-width: 992px) {
    .whats-reviews h2 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .whats-reviews-border {
        flex: 1 1 calc(50% - 25px);
    }
    
    .whats-reviews-border h3,
    .whats-reviews-border p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .whats-reviews h2 {
        font-size: 32px;
        line-height: 42px;
        text-align: center;
    }
    
    .whats-reviews-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .whats-reviews-border {
        flex: 1 1 100%;
    }
    
    .whats-reviews-border h3,
    .whats-reviews-border p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {

    .whats-reviews h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .whats-reviews-image img {
        margin-top: 20px;
    }
    
    .whats-reviews-border h3,
    .whats-reviews-border p {
        margin: 0;
        padding: 5px 20px 5px 20px;
    }
    
    .whats-reviews-border p {
        padding-bottom: 20px;
    }

    .whats-reviews-border {
        align-items: center;
    }
}

.complex {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}

.complex h2 {
    font-size: 40px;
    line-height: 56px;
    text-align: left;
}

.complex-reviews {
    display: flex;
    flex-direction: column;
}

.complex-reviews-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 25px;
}

.complex-icon {
    display: flex;
    align-items: center;
}

.complex-reviews-container-info {
    display: flex;
    flex-direction: column;
    border: 1px solid #5C84FB;
    border-radius: 15px;
    box-shadow: 0px 0px 39px 2px rgba(34, 60, 80, 0.14);
    flex: 1;
}

.complex-reviews-container-info h3 {
    margin-left: 25px;
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 0;
}

.complex-reviews-container-info li {
    font-size: 20px;
    line-height: 28px;
}

.complex-reviews-container-info ul {
    margin-left: 25px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
}

#complex-main-icon {
    padding-right: 11px;
}

@media (max-width: 1200px) {
    .complex h2 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .complex-reviews-container-info h3 {
        font-size: 21px;
        line-height: 26px;
    }
    
    .complex-reviews-container-info li {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 992px) {
    .complex h2 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .complex-reviews-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .complex-icon {
        justify-content: center;
    }
    
    .complex-icon img.complex-arrow {
        display:none;
    }

    .complex-icon img {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .complex h2 {
        font-size: 28px;
        line-height: 36px;
        text-align: center;
    }
    
    .complex-reviews-container-info h3 {
        font-size: 20px;
        line-height: 24px;
        margin-left: 15px;
    }
    
    .complex-reviews-container-info li {
        font-size: 16px;
        line-height: 22px;
    }
    
    .complex-reviews-container-info ul {
        margin-left: 15px;
        padding-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .complex h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .complex-reviews-container-info h3 {
        font-size: 18px;
        line-height: 22px;
        margin-left: 10px;
    }
    
    .complex-reviews-container-info li {
        font-size: 14px;
        line-height: 20px;
    }
    
    .complex-reviews-container {
        margin-top: 15px;
    }

}

@media (max-width: 400px) {
    .complex h2 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .complex-reviews-container-info h3 {
        font-size: 16px;
        margin-left: 15px;
    }
    
}


.reviews .consult {
    background: none;
}

.reviews .grid-colums {
    border: 1px solid #5C84FB;
    border-radius: 15px;
}

.reviews .price-border {
    height: auto;
}