.quotes {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(13, 13, 13);
}

.quotes .cardsContainer {
    width: 1100px;
    max-width: 95vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.quotes .cardsContainer .wrapper {
    flex-basis: 18em;
    margin: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid rgb(78, 78, 78);
    box-shadow: rgba(255, 253, 253, 0.25) 0px 14px 28px, rgba(255, 255, 255, 0.22) 0px 10px 10px;
    background: whitesmoke;
    color: var(--blackish);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quotes .cardsContainer .wrapper .content {
    width: 100%;
    font-style: italic;
}

.quotes .cardsContainer .wrapper .content svg {
    float: left;
    shape-outside: circle(50%);
    width: 100px;
    height: 90px;
    margin: 5px;
}

/* -------------------------
      box gallery component
    -------------------------- */
.box-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    max-width: 100%;
    width: 100%;
    position: relative;
}

.box-gallery .box-title {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.box-gallery .box-gallery-item {
    position: relative;
    height: 150px;
    margin: 0.5%;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    border: #000000 1px solid;
    border-radius: 5px;
}

.box-gallery .box-gallery-item i {
    position: absolute;
    bottom: 40%;
    left: 50%;
    margin: 0 0 -28px -28px;
    font-size: 2em !important;
    border-radius: 50%;
    padding: 10px;
    background: var(--accent-color);
    color: #fff;
    opacity: 0;
    transition: all 0.25s;
}

.box-gallery .box-gallery-item:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
}

.box-gallery .box-gallery-item:hover i {
    bottom: 50%;
    opacity: 1;
}

.box-gallery .box-gallery-item:hover .imageWrap {
    opacity: 0.6;
}

.box-gallery .box-gallery-item .imageWrap {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    background-size: cover;
}

.box-gallery .box-gallery-item .imageWrap:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
}

.maincontent {
    position: relative;
    padding: 50px 0px;
    width: 100%;
    max-width: 100%;
}

.form {
    display: flex;
    justify-content: center;
}

.form .wrapper {
    width: 1150px;
    max-width: 95vw;
}

.required_field {
    width: 95% !important;
}

/*# sourceMappingURL=review.css.map */

.review-sites-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.review-site {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 45%
}

.review-card{
    border: 5px solid var(--accent-color);
}

.review-site>img {
    max-width: 400px;
    width: 100%;
}

@media(max-width: 500px) {
    .review-site {
        width: 100%;
    }
}

.review-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 50px;
justify-content: center;
}

@media(max-width: 1024px){
    .review-card{
        margin: 0 !important;
    }
}

@media(max-width: 1024px){
    .review-sites-container {
    flex-direction: column;
    }
}