
body{
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight:normal;
  font-style: italic;
}


span,
label {
    font-size: 1.2rem;
    /* Default font size */
}

.schedule {
    display: block;
    font-size: 1rem;
}

.map {
  
    width: 200px;
    height: 200px;
}

.socialmedia {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.nav-link {
    font-size: 1.5rem;
}

.imgDiv{
    display: flex;
    flex-direction: column;
    align-items: center;

}

@media (min-width:336px) {

    /* Small screens (sm) and up */
    span,
    label {
        font-size:14px;
    }

    .schedule {
        display: block;
        font-size: 0.7rem;
    }

    .socialmedia {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .map {
        margin: 10px;
        width: 220px;
        height: 200px;
    }

    .button-container {
        height: 30%;
        width: auto;
    }

    .divServiceVideo {
        width: 160px;
    }

    .divServiceVideo video {
        height: 150px;
        width: 150px;
    }

    .divServicePicture {
        width: 100px;
        
    }
    
    .divServicePicture img {
        height: 90px;
        width: 90px;
    }
   
    .imgDiv img{
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .modal img{
        width: 70%;
    }
}

@media(max-width:336px) {

    .button-container {
        height: 10%;
        width: auto;
    }
    
    .imgDiv img{
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
}

@media (min-width: 576px) {

    /* Small screens (sm) and up */
    span,
    label {
        font-size:16px;
    }

    .schedule {
        display: block;
        font-size: 1.1rem;
    }

    .socialmedia {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .map {
       
        width: 300px;
        height: 200px;
    }

    .button-container {
        height: 40%;
        width: auto;
    }

    .divServiceVideo {
        width: 200px;
    }

    .divServiceVideo video {
        height: 180px;
        width: 180px;
    }

    .divServicePicture {
        width:130px;
        
    }
    
    .divServicePicture img {
        height: 120px;
        width: 120px;
    }

    .imgDiv img{
        width: 130px;
        height: 130px;
        border-radius: 50%;
    }
    .modal img{
        width: 50%;
    }
}

@media (min-width: 768px) {

    /* Medium screens (md) and up */
    /*jawad alnabwani*/
    span,
    label {
        font-size: 20px;
    }

    .schedule {
        display: block;
        font-size: 1.4rem;
    }

    .socialmedia {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .map {
       
        width: 300px;
        height: 200px;
    }

    .button-container {
        height: 60%;
        width: auto;
    }

    
    .divServicePicture {
        width: 160px;
        
    }
    
    .divServicePicture img {
        height: 150px;
        width: 150px;
    }

    .divServiceVideo {
        width: 220px;
    }

    .divServiceVideo video {
        height: 200px;
        width: 200px;
    }


    .imgDiv img{
        width: 170px;
        height: 170px;
        border-radius: 50%;
    }
    .modal img{
        width: 50%;
    }
}


@media(max-width:380px) {
    .schedule {
        display: block;
        font-size: 0.5rem;
    }
    
}
@media (min-width: 992px) {

    /* Large screens (lg) and up */
    span,
    label {
        font-size: 22px;
    }

    .schedule {
        display: block;
        font-size: 1.5rem;
    }

    .socialmedia {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .map {
       
        width: 400px;
        height: 400px;
    }

    .divServiceVideo {
        width: 270px;
    }

    .divServiceVideo video {
        height: 250px;
        width: 250px;
    }

    .divServicePicture {
       
        width: 170px;
    }

    .divServicePicture img {
        height: 160px;
        width: 160px;
    }
    .imgDiv img{
        width: 170px;
        height: 170px;
        border-radius: 50%;
    }
    .modal img{
        width: 40%;
    }
}

@media (min-width: 1200px) {

    /* Extra-large screens (xl) and up */
    span,
    label {
        font-size: 24px;
    }

    .schedule {
        display: block;
        font-size: 2rem;
    }

    .socialmedia {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .map {
        
        width: 400px;
        height: 400px;
    }
    .imgDiv img{
        width: 200px;
        height: 200px;
        border-radius: 100%;
    }
    .modal img{
        width: 30%;
        /* height: 600px; */
    }

}

.card-img-top {
    padding: 10px 0px;
}


.button-container {
    /* Set the desired width */
    /* height:890px; */
    /* Set a fixed height for the container */
    overflow-x: hidden;
    /* Allows horizontal scrolling */
    overflow-y: auto;
    /* Hides vertical overflow */
    white-space: nowrap;
    /* Prevents buttons from wrapping */
    border: 1px solid #ccc;
    /* Optional: add a border */
    border-radius: 5px;
    /* Optional: rounded corners */
    padding: 5px;
    /* Optional: add some padding */
}

.button-container::-webkit-scrollbar {

    /* Set the height and width of the scrollbar */
}

.button-container::-webkit-scrollbar-thumb {
    background-color: #e61c1c;
    /* Color of the scrollbar thumb */
    border-radius: 4px;
    /* Rounded edges for the thumb */
}

.button-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Darker thumb color on hover */
}

.button-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the scrollbar track */
    border-radius: 4px;
    /* Rounded edges for the track */
}

.image-container img {
    cursor: pointer;
    transition: transform 0.3s ease;
}


.modal img {
    display: none;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#next,
#prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    cursor: pointer;
}

#next {
    right: 10px;
}

#prev {
    left: 10px;
}

.hidden {
    display: none;
}

#socialDiv {
    display: none;
}

label i {
    margin-right: 5px;
    padding: 8px;
    border-radius: 50%;
    background-color: gainsboro
}


@media(min-width:991px){
   
}