:root {
  --dark-red: #981a1e;
  --alt-red: #b1050b;
  --white: white;
  --alt-white: #f7efe2;
  --alt-2-white: var(--alt-white);
  --trans-red: rgb(152, 26, 30, 0.3);
}

body {
  width: 100%;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
h1,
h2 {
  font-weight: 800;
}

a {
  color: var(--dark-red);
}

i {
  color: var(--dark-red);
}

#header-links a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--alt-red);
}
#header-links a:hover {
  text-decoration: underline;
  color: var(--alt-red);
}

.button-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--dark-red);
  color: var(--white);
  /* border: 1px solid pink; */
}
.button-link a {
  color: var(--white);
  text-decoration: none;
  /* border: 1px solid pink; */
}
.button-link:hover {
  /* transform: scale(1.05); */
  background-color: var(--alt-red);
  transition: 0.1s all;
  cursor: pointer;
}
img {
  width: 100%;
  height: auto;
  /* width: 100%;
  overflow: hidden; */
}

#logo-wrapper {
  display: flex;
  align-items: center;
}

#logo {
  width: 300px;
}
footer {
  display: flex;
  align-items: center;
  min-height: 2rem;
  background-color: var(--dark-red);
  color: var(--white);
  padding-left: 7rem;
}
footer a {
  color: var(--white);
}
footer a:hover,
footer a:active,
footer a:focus {
  color: var(--white);
}
.sticky-banner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: auto;
  padding: 1rem;
  /* min-height: 3rem; */
  background-color: var(--dark-red);
  color: var(--white);
}
.sticky-banner a {
  color: var(--white);
  text-decoration: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

nav {
  display: flex;
  height: auto;
  min-height: 7rem;
  justify-content: space-around;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: var(--alt-white);
}

#header-info {
  display: flex;
  width: 50%;
  /* margin-left: auto; */
  align-items: center;
}

#call-now {
  width: 30%;
}
#address {
  width: 50%;
  display: flex;
}
#address a {
  margin-left: auto;
}

#logo-wrapper {
  width: 30%;
}

#header-links {
  margin-left: auto;
  display: flex;
  justify-content: space-around;
}

#header-links ul {
  display: flex;
  text-decoration: none;
  list-style-type: none;
  justify-content: space-around;
  padding: 0;
  width: 22rem;
}

#main-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* min-height: 30rem; */
  overflow: hidden;
}
#main-banner img {
  display: inline-block;
  height: 100%;
  width: auto;
}

#bg-overlay {
  height: 100%;
  width: 100%;
}

#main-banner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--white);
  width: 75%;
  text-align: center;
  background-color: var(--trans-red);
  padding: 2rem;
  border-radius: 15px;
}

#main-banner-wrapper h1 {
  font-size: 4rem;
  padding: 1rem;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  /* background-color: rgb(152, 26, 30, 0.5); */
}

#salon-details,
#search,
#sold-homes,
#active-homes {
  display: flex;
  padding: 1.5rem;
  background-color: var(--alt-2-white);
  justify-content: space-around;
  padding-bottom: 2.5rem;
}

@media screen and (max-width: 450px) {
  #search {
    padding: 0;
  }
}
#sold-homes,
#active-homes {
  background-color: white;
}

#hours,
#location,
#contact {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}
#times {
  min-width: 10rem;
}
#address-value {
  min-width: 14rem;
}
#hours ul,
#location ul,
#contact ul {
  margin-top: 0;
  list-style-type: none;
}

#days-times,
#location-display,
#contact-display {
  display: flex;
}

.colons {
  padding-left: 0.2rem;
}
#times,
#address-value,
#contact-value {
  padding-left: 1rem;
}

#about {
  display: flex;
}
.about-section,
.about-image {
  width: 80%;
}

@media screen and (min-width: 450px) {
  .about-section,
  .about-image {
    width: 50%;
  }
}

.about-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem;
}
#about img {
  height: 100%;
}
.about-section p {
  max-width: 25rem;
  text-align: justify;
}

/* #search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);

  padding: 1.5rem;
  justify-content: space-around;
  padding-bottom: 2.5rem;
} */

#search h2 {
  padding-bottom: 0;
  margin-bottom: -33px;
}

.search-widget,
.sold-homes-widget,
.active-homes-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  width: 80%;
  flex-grow: 1;

  /* background-color: var(--trans-red); */
}

@media screen and (min-width: 960px) {
  .search-widget {
    width: 80%;
  }
}

.search--button button {
  background-color: var(--dark-red) !important;
  max-width: 47% !important;
  margin-left: 0 !important;
  font-weight: 700 !important;
}
.search--button button:hover {
  background-color: var(--alt-red) !important;
  transition: 0.1s all;
  cursor: pointer;
}
.realscout-search.advanced,
.realscout-listings.agent {
  width: 80%;
}
#realscout--kingdom
  #realscout--kingdom__castle
  #kingdom--castle
  #kingdom--castle__throne
  .realscout--listings {
  max-width: 100% !important;
}
@media screen and (max-width: 960px) {
  .sticky-banner {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    /* height: 12vh; */
    /* min-height: 5rem; */
    background-color: var(--dark-red);
    color: var(--white);
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #call-now,
  #address {
    width: auto;
  }
  #address a {
    display: flex;
    justify-content: center;
  }
  .sticky-banner a,
  #address a {
    padding-left: 0;
    padding-right: 0.2rem;
    margin-left: 0;
  }
  nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0 0;
    /* height: 18vh; */
  }

  #logo-wrapper {
    width: auto;
  }

  #header-info {
    width: auto;
    justify-content: center;
  }
  #header-links {
    margin-left: 0;
  }

  #address-header-value {
    display: flex;
    flex-direction: column;
  }

  #main-banner {
    /* min-height: 5rem;
    height: 70vh; */
  }

  #salon-details {
    flex-direction: column;
  }

  #about {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    width: 80%;
    margin-bottom: 4rem;
  }
  footer {
    padding-left: 2rem;
  }
  #days,
  #display-address,
  #contact-type {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 400px) {
  #main-banner-wrapper h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 600px) {
  #main-banner-wrapper h1 {
    font-size: 3rem;
  }
}

#above-fold {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 40rem;
  overflow: hidden;
}

#main-banner {
  flex-grow: 1;
}
.button-link {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
}
a:hover {
  text-decoration: underline;
}

.banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 960px) {
  .banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
}
footer.realscout--listings__footer {
  background-color: white;
}

.realscout--pagination.simple-pagination li {
  cursor: pointer;
}

.realscout--pagination.simple-pagination {
  font-size: 1.2rem !important;
}

#realscout--kingdom
  #realscout--kingdom__castle
  #kingdom--castle
  #kingdom--castle__throne
  .realscout--pagination
  li.active {
  /* background: var(--dark-red) !important; */
}

#sold-homes {
  padding-bottom: 0;
}
#active-homes {
  padding-top: 0;
  margin-top: -2rem;
}
@media screen and (max-width: 450px) {
  #active-homes {
    margin-top: -5rem;
  }
}
