.contact {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2%;
    padding-right: 2%;
}

.contact div {
    padding: 2rem;
    box-shadow: 2.5rem 3.75rem 3rem -3rem #7c7b7b;
    transition: 0.8s;
    border-radius: 0.5rem;
    background: #d7b49e;
}

h4 {
    text-transform: uppercase;
}

.contact div:hover {
    background: #B4876C;
    transition: 0.5s;
}

.grid-col {
    grid-column: span 2;
}

i {
    color: #984807;
}

@media (max-width: 1000px) {
    .contact {
        display: block;
        padding-right: 0;
        padding-bottom: 3%;
    }

    .contact div {
        background: #d7b49e;
        margin-bottom: 3%;
        overflow-wrap: break-word;
    }

    .contact div:hover {
        background: #d7b49e;
    }
}

.carousel {
    position: relative;
    height: 20vh;
    width: 20%;
    margin: 0 auto;
}

.carousel__image {
    width: 100%;
    height: 20vh;
    object-fit: cover;
}

.carousel_track-container {
    height: 20vh;
    position: relative;
    box-shadow: .5rem .5rem 3rem -0.5rem #7c7b7b;
    overflow: hidden;
    border-radius: 1rem;
}

.carousel__track {
    padding: 0;
    margin: 0;
    list-style: none;
    transition: 0.5s;
}

.carousel__slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.carousel__button--left {
    left: -40px;
}

.carousel__button--right {
    right: -40px;
}

.carousel_button i {
    width: 12px;
}

.carousel__nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;

}

.carousel__indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 12px;
    cursor: pointer;
}

.carousel__indicator.current-slide {
    background: rgba(0, 0, 0, 0.75);
}

.is-hidden {
    display: none;
}

.customer__comments {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2%;
    margin: 5rem 2% 4vh 0;
}

.customer__comments-col {
    background: #d7b49e;
    padding: 2rem;
    box-shadow: 2.5rem 3.75rem 3rem -3rem #7c7b7b;
    transition: 0.8s;
    border-radius: 0.5rem;
}

.customer__comments-col:hover {
    background: #B4876C;
    transition: 0.5s;
}

@media (max-width: 1000px) {
    .customer__comments-col:hover {
        background: #d7b49e;
    }

    .carousel {
        height: fit-content;
        width: 50%;
    }
}