.wrap {
    max-width: 700px;
    margin: auto;
    text-align: center
}

.carousel {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

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

.slide {
    opacity: 0;
    transform: scale(.96);
    transition: .45s;
    display: none
}

.slide.active {
    display: block;
    opacity: 1;
    transform: scale(1)
}

.slide img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain
}

.name {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #123b72
}

.visit {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #ff7b22;
    color: #fff;
    text-decoration: none;
    border-radius: 999px
}

button.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #123b72;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer
}

.prev {
    left: 10px
}

.next {
    right: 10px
}

.dots {
    margin-top: 18px
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8d1dc;
    margin: 0 4px;
    cursor: pointer
}

.dot.active {
    background: #ff7b22
}