body {
    margin-top:120px;
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    color:#000000;
}

a {
    text-decoration: none;
    color: #000000;
}

a:hover {
    text-decoration: none;
    color: #f00000;
}

.popular a {
    text-decoration: underline;
    color: #000000;
}

.popular a:hover {
    text-decoration: none;
    color: #f00000;
}

h1 {
    font-size: 38px;
}

h2  {
    font-size: 21px; 
}

.header-one {
    background-color: #38ab49;
}

.header-one a {
    color: #ffffff;
    text-decoration: none;
}

.header-one a:hover {
    color: #ffffff;
    text-decoration: none;
}

.header-one a:active {
    color: #ffffff;
}

.header-one a:visited {
    color: #ffffff;
}

.header-one .nav-link {
    padding: 5px;
}

.header-one .nav {
    border-bottom: 0px;
}

.slide {
    color: #fff;
    width: 100%;
    height: 100%;
    background-image: url('../img/slides/westwood-3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.shadow1 {
    border:2px solid #eee;
    border-radius: 6px;
    /*
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    box-shadow: 0 0 40px rgba(200, 200, 200, 0.5);
    */
  }
  

  .box1 {
    border:1px solid #eee; 
    padding:30px; 
    border-radius:20px;
    box-shadow: 0 0 10px rgba(213, 219, 241, 0.5);
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
  }

  .bg-grey-grad {
    background: #f4f4f4;
    /*
    background: -webkit-linear-gradient(top, #f4f4f4, #ffffff);
    background: -moz-linear-gradient(top, #f4f4f4, #ffffff);
    background: -o-linear-gradient(top, #f4f4f4, #ffffff);
    background: linear-gradient(to bottom, #f4f4f4, #ffffff);
    */
  }

  .img-thumbnail {
    padding:8px;
    border:0px;
  }

  .media-scroller-container {
    position: relative;
    display: flex;
    align-items: center;
}

.media-scroller {
    display: grid;
    gap: var(--size-1);
    grid-auto-flow: column;
    grid-auto-columns: 22%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    padding-top:8px;
}

.media-element {
    display: grid;
    grid-template-rows: min-content;
    gap: var(--size-2);
}

.media-element-box {
    display: block;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.media-element-box:hover {
    transform: translateY(-8px);
    color: #ffffff;
}

.hours-style {
    font-size:13px;
    line-height: 24px;
}

.hours-style ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.hours-style li {
    margin: 0;
    padding: 0;
}

.img-fixed {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 5px;
}

.media-element-box {
    overflow: hidden;
}


.related-listing-img {
    width: 100%;
    height: 120px; /* Adjust the height as needed */
    object-fit: cover; /* This ensures the aspect ratio is maintained */
    border-radius: 8px;
}


.fixed-size-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.fixed-size-img-sm {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}




/* Styles for phones (extra small and small devices, less than 768px) */
@media (max-width: 767px) {
    .media-scroller {
        grid-auto-columns:30%!important;
        padding-top:8px;
    }
}