/* OUR TESTIMONIAL */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Antique&display=swap");

.content-wrapper {
    width: 100%;
    max-width: 100rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper-for-arrows {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
}

.review-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(2rem + 1vmin);
    padding-bottom: calc(2rem + 1vmin);
    background-color: var(--color1);
    width: 100%;
    max-width: 940px;
    border-radius: 15px;
}

#imgDiv {
    border-radius: 50%;
    width: calc(6rem + 4vmin);
    height: calc(6rem + 4vmin);
    position: relative;
    box-shadow: 5px -3px var(--color2);
    background-size: cover;
    margin-bottom: calc(0.7rem + 0.5vmin);
}

#imgDiv::after {
    content: "''";
    font-size: calc(2rem + 2vmin);
    font-family: sans-serif;
    line-height: 150%;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color2);
    position: absolute;
    top: 10%;
    left: -10%;
    width: calc(2rem + 2vmin);
    height: calc(2rem + 2vmin);
}

#clientName {
    margin-bottom: calc(0.7rem + 0.5vmin);
    font-size: calc(1rem + 0.5vmin);
    letter-spacing: calc(0.1rem + 0.1vmin);
    font-weight: bold;
    color: var(--fgColor);
}

#address {
    font-size: calc(1rem + 0.2vmin);
    margin-bottom: calc(0.7rem + 0.5vmin);
    color: var(--color2);
}

#description {
    width: clamp(10rem, 80%, 45rem);
    font-size: clamp(12px, 2vw, 16px);
    text-align: center;
    /* margin-bottom: calc(1.4rem + 1vmin); */
    color: var(--fgColor);
    line-height: 2rem;
}

.arrow-wrap {
    position: absolute;
    top: 50%;
}

.arrow {
    width: calc(1.4rem + 0.6vmin);
    height: calc(1.4rem + 0.6vmin);
    border: solid var(--color2);
    border-width: 0 calc(0.5rem + 0.2vmin) calc(0.5rem + 0.2vmin) 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.arrow:hover {
    transition: 0.3s;
    transform: scale(1.15);
}

.left-arrow-wrap {
    left: 5%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    right: 5%;
}

/* .know-more-btn {
    border: 2px solid var(--color1);
    background-color: rgb(224, 238, 255);
    color: var(--color2);
    border-radius: 2rem;
    padding: calc(0.5rem + 0.2vmin) 0;
    width: calc(7rem + 5vmin);
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    margin-bottom: calc(1.4rem + 1vmin);
}

.know-more-btn:hover {
    transition: background-color 0.3s, transform 0.3s;
    background-color: rgb(255, 255, 255);
    transform: scale(1.1);
} */

.move-head {
    animation: moveHead 1.55s infinite;
    animation-delay: -0.8s;
}

@keyframes moveHead {
    0% {}

    25% {
        transform: translate(0.5rem, 1rem) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(-5deg);
    }
}

@media screen and (max-width: 900px) {
    .content-wrapper {
        width: 100%;
    }
}