.mpage-appointment {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 120px 0 0;
	width: 100%;
    display: none;
}
.mpage-appointment > .content {
	box-sizing: border-box;
	max-width: 2560px;
	padding: 0 40px;
	width: 100%;
}
.appointment-items {
    flex-wrap: wrap;
    gap: 40px 40px;
    width: 100%;
}
.appointment-item {
    max-width: 800px;
	position: relative;
    width: calc((100% - 80px) / 3);
}
.appointment-item .image {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    max-width: 800px;
    width: 100%;
}
.appointment-item .image > img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.appointment-item .info {
    bottom: 40px;
    gap: 30px 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.appointment-item .info .name {
    color: #fff;
    font-family: 'Geologica';
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}
.appointment-item .info .button {
    align-items: center;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 100px;
    box-sizing: border-box;
    color: var(--la-grey-basic);
    font-family: 'Geologica';
    font-size: 15px;
    line-height: 1.6;
    padding: 10px 38px;
    text-decoration: none;
    transition: .3s;
}
.appointment-item .info .button:hover {
    background: transparent;
	color: #fff;
}