/*Layouts css goes here*/

body {
  line-height: 1.45em;
}

.overlay-grid {
   display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    list-style: none;
    padding: 0;
}
.overlay-grid img {
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: overlay;
  transition: .2s all;
  border-radius: 8px;
  
}

.overlay-grid a:link, .overlay-grid a:visited {
  background: rgba(226, 52, 44, .9);
  color: white;
  display: inline-block;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 33svh;
  transition: .2s all;
  text-shadow: 0 3px 6px rgba(0,0,0,.1);
  
}

.overlay-grid a:hover {
  background: rgba(226, 52, 44, .2);
  text-shadow: 0 3px 6px rgba(0,0,0,.9);
}
.overlay-grid li {
 border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.overlay-grid .overlay-content {
 padding: 20px; 
  position: relative;
  z-index: 100;
}


.search-results {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  grid-gap: 20px;
}

.search-results li img {
    height: auto;
    aspect-ratio: 4/3; 
}
.hero-heading {
  font-size: 92px;
  font-weight: bold;
  font-family: 'Muli', sans-serif;
  line-height: 1.2em;
  margin: 0;
  color: white; 
}
.hero-sub-heading {
  font-size:32px;
  font-family: 'Muli', sans-serif;
  color: white;
}
@media screen and (max-width: 900px) {
  .hero-heading {
    font-size: 48px;
  }
  .hero-sub-heading {
   	font-size: 26px; 
  }
}
.search-container {
 box-shadow: 0 50px 100px -20px rgba(50,50,93,0.25),0 30px 60px -30px rgba(0,0,0,0.3);
}
.hero-container p {
 
}
.search-container input[type="text"], .search-container input[type="select"] {
 border: 1px solid #ccc; 
}
.overlay-box {
 box-shadow: 0px -14px 15px -10px rgba(0,0,0,.2);
  border-top: none;
}

.hero-container h1 {
	text-wrap: balance;  
}

.hero-container {
 background-color: #333; 
}
.hero-container .bg-image {
	opacity: .7;
	z-index: unset;
}
/*.hero-container {
 position: relative; 
  overflow: hidden;
}
.hero-container img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hero-content {
 position: relative;
  z-index: 3;
  text-shadow: 2px 3px 0px rgba(0,0,0,1);
  
}
.feature-bubbles li {
  padding: 7px 0px;
  
  border-radius: 8px;
  display: flex;
  gap: 15px;
}
.feature-bubbles li:before {
 content: "\2713";
  color: #E2352C;
  font-weight: bold;
}
.feature-bubbles {
  list-style: none;
  padding: 0;
  column-count: 2;
}
.sc {
 text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8em;
}
.sidebar {
 padding-right: 0; 
  background: #efefef;
}
.sidebar:after {
  	content: "";
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: inset -3px 0 7px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 0;
    left: 0;
}

.about-us-gallery img {
 	aspect-ratio: 3/3;
  object-position: top; 
}

details {
  
    background-color: #fff;
    border: 1px solid #aaa;
    position: relative;
    display: block;
    margin: 0 auto 1em;
    color: #111;
    border-radius: 8px;
    overflow: hidden;
  padding: 20px;
}
details summary {
 	margin-bottom: 0!important;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 700; 
}
details summary:after {
    content: "\25b8";
    position: absolute;
    transition: .2s all;
    right: 15px;
    font-size: 1.5rem; 
}
details[open] summary:after {
    transform: rotate(90deg);
}
details h3 {
 margin-top: 0; 
}