@charset "utf-8";
/* CSS Document */


.clinic_info1,.clinic_info2, .gallery{
	height: 100vh;
	overflow: hidden;
	background-color: #fffcf7;
}
.clinic-info2 {
  	display: flex;
  	align-items: center;
  	margin: 10px 30px;
}

.profile_i {
  width: 100%;
	width: 80px;
  border-radius: 9px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}


.clinic-profile {
	margin-left: 10px;
	color: #4a2b0f;
	padding: 0;
}

.clinic-name2{
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

.clinic-rating2{
	display: flex;
	gap: 6.5rem;
	align-items: center;
	font-size: 12px;
	margin-top: 10px;
}

.review2{
	display: flex;
	justify-content: center;
	align-items: center;
}
.review-img2{
	margin-right: 5px;
}

.rate-board{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffd700;
	border-radius: 5px;
	color: #512C00;
	width:45px;
}
.star2 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}

.rating2 {
	font-weight: bold;
	font-size: 12px;
	margin-left: 3px;
}

.clinic-container{
	padding: 0 20px 10px;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.clinic-box{
	display: flex;
	justify-content: space-between;
	margin-top: 1em;
}

.clinic-detail{
	display: flex;
	align-items: center;
	font-size: 12px;
}

.clinic-detail i{
	margin-right: 1em;
	font-size: 16px;
}

.smallTitle{
	font-size: 16px;
	font-weight: bold;
	margin: 0;
}

.flex_service{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-box{
	margin-bottom: 40px;
}

.button_seeAll{
	color: grey;
}

.location-box, .service-box{
	margin: 0px;
	font-size: 12px;
}

.location-box img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2em;
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.book-appointment{
	background-color: #fff;
	border-radius: 30px 30px 0 0;
	font-size: 14px;
	
	height: 30px;
	bottom: 0;
	
	position: fixed;
	left: 0;
	right: 0;
	padding: 30px;
	text-align: center;
	justify-content: center;
	align-items: center;
	box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
	
	cursor: pointer;
}

.book-appointment i{
	margin: 0 10px;
}

.services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
	margin: 10px 0;
        }
.service-item2 {
    background-color: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
	padding: 10px;
    font-size: 12px;
	align-items: center;
        }
.service-item2 img{
	margin-right: 10px;
	width: 15px;
}


.gallery-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 3em 2em 1em;
}

.gallery-title {
	font-size: 30px;
	font-weight: bold;
	color: #512c00;
}
.close-button {
	font-size: 30px; 
	color: #512c00;
	cursor: pointer;
        }

.image-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	padding: 15px;
	align-content: center;
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
	opacity: 0;
    transform: translateY(80%);
}

.image-grid.slide_up {
     transform: translateY(0);
    opacity: 1;
}
        
.image-item { 
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 10px;
}

.image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-album {
	height: 100vh;
	background-color: #282828;
	overflow: hidden;
}

.closebtn{
	font-size: 30px; 
	color: #512c00;
	cursor: pointer;
	position: fixed;
	right: 0;
	margin-right: 1em;
}

.image-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 40%;
}

.image-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

